00001
00002
00003 #ifndef STJETSCRATCH_H
00004 #define STJETSCRATCH_H
00005
00006 #include "StMaker.h"
00007 #include <Rtypes.h>
00008
00009 class TDirectory;
00010 class TTree;
00011
00012 class StjTrgWriter;
00013
00014 class StMuDstMaker;
00015
00016 class StJetScratch : public StMaker {
00017
00018 public:
00019
00020 StJetScratch(const Char_t *name, TDirectory* file, StMuDstMaker* uDstMaker);
00021 virtual ~StJetScratch() { }
00022
00023 Int_t Init();
00024 Int_t Make();
00025 Int_t Finish();
00026
00027 const char* GetCVS() const
00028 {static const char cvs[]="Tag $Name: $ $Id: StJetScratch.h,v 1.7 2008/08/03 00:26:17 tai Exp $ built "__DATE__" "__TIME__; return cvs;}
00029
00030 private:
00031
00032 TDirectory* _file;
00033
00034 StMuDstMaker* _uDstMaker;
00035
00036
00037 ClassDef(StJetScratch, 0)
00038
00039 };
00040
00041 #endif // STJETSCRATCH_H