#ifndef TFGDHitCountingTask_h #define TFGDHitCountingTask_h #include "ICOMETEvent.hxx" #include "ISOFFVTask.hxx" /// Class to count the number of FGD hits (calibrated) /// and the number of FGD pulses (uncalibrated). class IFGDHitCountingTask : public ISOFFVTask{ public: IFGDHitCountingTask(){} virtual ~IFGDHitCountingTask(){} /// 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: long int fNumberPulses; long int fNumberHits; long int fNumberEvents; }; #endif