00001
00002 #include "StJetScratch.h"
00003
00004 #include "StjTPCMuDst.h"
00005 #include "StjBEMCMuDst.h"
00006 #include "StjEEMCMuDst.h"
00007
00008 #include <StMuDSTMaker/COMMON/StMuDstMaker.h>
00009 #include <StMuDSTMaker/COMMON/StMuDst.h>
00010 #include <StMuDSTMaker/COMMON/StMuEvent.h>
00011
00012 #include <TFile.h>
00013 #include <TTree.h>
00014
00015 #include <iostream>
00016
00017 using namespace std;
00018
00019 ClassImp(StJetScratch)
00020
00021
00022 StJetScratch::StJetScratch(const Char_t *name, TDirectory* file, StMuDstMaker* uDstMaker)
00023 : StMaker(name)
00024 , _file(file)
00025 , _uDstMaker(uDstMaker)
00026 { }
00027
00028 Int_t StJetScratch::Init()
00029 {
00030 return kStOk;
00031 }
00032
00033 Int_t StJetScratch::Make()
00034 {
00035 return kStOk;
00036 }
00037
00038 Int_t StJetScratch::Finish()
00039 {
00040 return kStOk;
00041 }