#ifndef TTriggerInfo_h #define TTriggerInfo_h // ROOT include #include "TTree.h" #include "TFile.h" #include #include #include "ICOMETEvent.hxx" #include "ISOFFVTask.hxx" struct tree_t { Int_t nevent; }; tree_t treee; /// Class to count the number of FGD hits (calibrated) /// and the number of FGD pulses (uncalibrated). class ITriggerInfo : public ISOFFVTask{ public: ITriggerInfo(){} virtual ~ITriggerInfo(){} /// Initialization of task (at start of first file) int Initialize(); /// Method to be run on every event. /// Must be implemented in any inherited class. int Process(COMET::ICOMETEvent& event); /// Finalization of task (at end of last file). int Finalize(); protected: double scaclock; TTree *treefile; bool first; private: TH1F *fTriggerType; TGraph *gMissTrigger; TGraph *gEventTime; }; #endif