Class Reference for E1039 Core & Analysis Software
CalibEvtQual.h
Go to the documentation of this file.
1 #ifndef _CALIB_EVT_QUAL_H_
2 #define _CALIB_EVT_QUAL_H_
3 #include <fun4all/SubsysReco.h>
4 class SQEvent;
5 class SQHardEvent;
6 
7 class CalibEvtQual: public SubsysReco {
12  typedef enum {
13  ERR_N_TDC = 0x001, // No or extra TDC-board info
14  ERR_V1495 = 0x002, // v1495 Readout Problem, i.e. 0xD1AD, 0xD2AD 0xD3AD issues.
15  ERR_N_V1495_0 = 0x004, // No v1495 info
16  ERR_N_V1495_2 = 0x008, // Extra v1495 info
17  ERR_N_TRIGB_0 = 0x010, // No trigger-bit info
18  ERR_N_TRIGB_2 = 0x020, // Extra trigger-bit info
19  ERR_N_TRIGC_0 = 0x040, // No trigger-count info
20  ERR_N_TRIGC_2 = 0x080, // Extra trigger-count info
21  ERR_N_QIE_0 = 0x100, // No QIE info
22  ERR_N_QIE_2 = 0x200 // Extra QIE info
23  //EVT_ERR_ID = 0x20 // Event-ID mismatch between ROCs.
24  // 0x00000800...0x20000000 ... Taiwan-TDC readout error on bit_number=roc_ID where roc_ID=12...30.
25  } EventErrorFlag_t;
26 
27  public:
28  CalibEvtQual(const std::string &name = "CalibEvtQual");
29  virtual ~CalibEvtQual() {}
30  int Init(PHCompositeNode *topNode);
31  int InitRun(PHCompositeNode *topNode);
32  int process_event(PHCompositeNode *topNode);
33  int End(PHCompositeNode *topNode);
34  private:
35  void PrintEvent(SQEvent* evt, SQHardEvent* hevt);
36 };
37 
38 #endif /* _CALIB_EVT_QUAL_H_ */
int process_event(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:26
int InitRun(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:21
virtual ~CalibEvtQual()
Definition: CalibEvtQual.h:29
CalibEvtQual(const std::string &name="CalibEvtQual")
Definition: CalibEvtQual.cc:11
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: CalibEvtQual.cc:65
int Init(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:16
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold one hardware-related event info.
Definition: SQHardEvent.h:7