00001 #ifndef FNHISTS_H 00002 #define FNHISTS_H 00003 #include "TH1D.h" 00004 #include "TH2D.h" 00005 #include "TDirectory.h" 00006 00007 class FNHists 00008 { 00009 00010 public: 00011 00012 FNHists(std::string); 00013 ~FNHists(); 00014 00015 TDirectory *fDirectory; 00016 00017 TH1D *fND_RecoEnergy; 00018 TH1D *fFD_RecoEnergy; 00019 TH1D *fND_TrueEnergy; 00020 TH1D *fFD_TrueEnergy; 00021 00022 }; 00023 #endif //FNHISTS_H
1.3.9.1