StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StJetScratch.cxx
1 // $Id: StJetScratch.cxx,v 1.6 2008/08/03 00:26:17 tai Exp $
2 #include "StJetScratch.h"
3 
4 #include "StjTPCMuDst.h"
5 #include "StjBEMCMuDst.h"
6 #include "StjEEMCMuDst.h"
7 
8 #include <StMuDSTMaker/COMMON/StMuDstMaker.h>
9 #include <StMuDSTMaker/COMMON/StMuDst.h>
10 #include <StMuDSTMaker/COMMON/StMuEvent.h>
11 
12 #include <TFile.h>
13 #include <TTree.h>
14 
15 #include <iostream>
16 
17 using namespace std;
18 
19 ClassImp(StJetScratch)
20 
21 
22 StJetScratch::StJetScratch(const Char_t *name, TDirectory* file, StMuDstMaker* uDstMaker)
23  : StMaker(name)
24  , _file(file)
25  , _uDstMaker(uDstMaker)
26 { }
27 
28 Int_t StJetScratch::Init()
29 {
30  return kStOk;
31 }
32 
34 {
35  return kStOk;
36 }
37 
39 {
40  return kStOk;
41 }
Int_t Finish()
Definition: Stypes.h:41