SRHeader.h
Go to the documentation of this file.
1 #ifndef CAFSRHEADER_H
2 #define CAFSRHEADER_H
3 
4 namespace caf
5 {
6  class SRHeader
7  {
8  public:
9  SRHeader();
10 
11  // global event info
12  int event; ///< number of the event being processed
13  int run; ///< number of the run being processed
14  int subrun; ///< number of the sub-run being processed
15 
16  float TPC_X; ///< center of TPC stored as per-event & compressed by root
17  float TPC_Y;
18  float TPC_Z;
19  };
20 }
21 
22 #endif
int event
number of the event being processed
Definition: SRHeader.h:12
float TPC_X
center of TPC stored as per-event & compressed by root
Definition: SRHeader.h:16
int run
number of the run being processed
Definition: SRHeader.h:13
float TPC_Y
Definition: SRHeader.h:17
float TPC_Z
Definition: SRHeader.h:18
Common Analysis Files.
Definition: SRGAr.h:13
int subrun
number of the sub-run being processed
Definition: SRHeader.h:14