Class Reference for E1039 Core & Analysis Software
AnaTrigSignal.h
Go to the documentation of this file.
1 #ifndef _ANA_TRIG_SIGNAL__H_
2 #define _ANA_TRIG_SIGNAL__H_
3 #include <fun4all/SubsysReco.h>
4 class TFile;
5 class TTree;
6 class TH1;
7 class TH2;
8 class SQEvent;
9 class SQHitVector;
10 
12 class AnaTrigSignal: public SubsysReco {
13  static const int N_ELE = 5;
14  static const std::vector<std::string> m_list_det_name;
15  std::vector<int> m_list_det_id;
16 
17  SQEvent* m_evt;
18  SQHitVector* m_hit_vec;
19 
20  TFile* m_file;
21  TTree* m_tree;
22  char b_det_name[32];
23  int b_det;
24  int b_ele;
25  double b_time;
26  TH2* m_h2_time_ele[99];
27  TH1* m_h1_nhit[99];
28 
29  public:
30  AnaTrigSignal(const std::string& name="AnaTrigSignal");
31  virtual ~AnaTrigSignal() {;}
32  int Init(PHCompositeNode *topNode);
33  int InitRun(PHCompositeNode *topNode);
34  int process_event(PHCompositeNode *topNode);
35  int End(PHCompositeNode *topNode);
36 };
37 
38 #endif // _ANA_TRIG_SIGNAL__H_
An example class to analyze hodoscope hits in E1039 DST file.
Definition: AnaTrigSignal.h:12
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
AnaTrigSignal(const std::string &name="AnaTrigSignal")
virtual ~AnaTrigSignal()
Definition: AnaTrigSignal.h:31
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32