Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
JEventProcessor_BCAL_point_time.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: JEventProcessor_BCAL_point_time.h
4 // Created: Fri Apr 8 12:59:18 EDT 2016
5 // Creator: dalton (on Linux gluon109.jlab.org 2.6.32-358.23.2.el6.x86_64 x86_64)
6 //
7 
8 #ifndef _JEventProcessor_BCAL_point_time_
9 #define _JEventProcessor_BCAL_point_time_
10 
11 #include <TDirectory.h>
12 
13 #include <JANA/JEventProcessor.h>
14 #include <BCAL/DBCALGeometry.h>
15 
16 class JEventProcessor_BCAL_point_time:public jana::JEventProcessor{
17  public:
20  const char* className(void){return "JEventProcessor_BCAL_point_time";}
21 
22  TDirectory *maindir;
23  TDirectory *peddir;
24 
25  private:
26  uint32_t VERBOSE;
27 
28  jerror_t init(void); ///< Called once at program start.
29  jerror_t brun(jana::JEventLoop *eventLoop, int32_t runnumber); ///< Called everytime a new run number is detected.
30  jerror_t evnt(jana::JEventLoop *eventLoop, uint64_t eventnumber); ///< Called every event.
31  jerror_t erun(void); ///< Called everytime run number changes, provided brun has been called.
32  jerror_t fini(void); ///< Called after last event of last event source has been processed.
33 
34 };
35 
36 #endif // _JEventProcessor_BCAL_point_time_
37 
jerror_t fini(void)
Called after last event of last event source has been processed.
jerror_t erun(void)
Called everytime run number changes, provided brun has been called.
jerror_t init(void)
Called once at program start.
jerror_t evnt(jana::JEventLoop *eventLoop, uint64_t eventnumber)
Called every event.
jerror_t brun(jana::JEventLoop *eventLoop, int32_t runnumber)
Called everytime a new run number is detected.