TCHist.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 //
4 // TCAlg debug struct
5 //
6 // Bruce Baller
7 //
8 ///////////////////////////////////////////////////////////////////////
9 #ifndef TRAJCLUSTERALGHISTSTRUCT_H
10 #define TRAJCLUSTERALGHISTSTRUCT_H
11 
12 #include "art_root_io/TFileService.h"
14 #include "TH1F.h"
15 #include "TProfile.h"
16 
17 namespace art { class TFileService; }
18 class TH1F;
19 class TH2F;
20 class TProfile;
21 
22 namespace tca {
23 
24  struct HistStuff {
25  void CreateHists(art::ServiceHandle<art::TFileService const>& tfs);
26 
27  // True kinetic energy (MeV)
28  TH1F *fTruT[5];
29  TProfile* fEff_T[5];
30  TProfile* fPur_T[5];
31 
32  };
33 } // namespace tca
34 
35 #endif // ifndef TRAJCLUSTERALGHISTSTRUCT_H