// $Id$ // // File: JEventProcessor_swimToTOF.h // Created: Mon Jun 27 10:45:16 EDT 2016 // Creator: davidl (on Darwin harriet.jlab.org 15.5.0 i386) // #ifndef _JEventProcessor_swimToTOF_ #define _JEventProcessor_swimToTOF_ #include class JEventProcessor_swimToTOF:public jana::JEventProcessor{ public: JEventProcessor_swimToTOF(); ~JEventProcessor_swimToTOF(); const char* className(void){return "JEventProcessor_swimToTOF";} private: jerror_t init(void); ///< Called once at program start. jerror_t brun(jana::JEventLoop *eventLoop, int32_t runnumber); ///< Called everytime a new run number is detected. jerror_t evnt(jana::JEventLoop *eventLoop, uint64_t eventnumber); ///< Called every event. jerror_t erun(void); ///< Called everytime run number changes, provided brun has been called. jerror_t fini(void); ///< Called after last event of last event source has been processed. }; #endif // _JEventProcessor_swimToTOF_