Class Reference for E1039 Core & Analysis Software
AnaHodoHit.h
Go to the documentation of this file.
1 #ifndef _ANA_HODO_HIT__H_
2 #define _ANA_HODO_HIT__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 AnaHodoHit: public SubsysReco {
13  static const std::vector<std::string> m_list_det_name;
14  std::vector<int> m_list_det_id;
15 
16  SQEvent* m_evt;
17  SQHitVector* m_hit_vec;
18 
19  TFile* m_file;
20  TTree* m_tree;
21  char b_det_name[16];
22  int b_det;
23  int b_ele;
24  double b_time;
25  TH1* m_h1_ele[99];
26  TH1* m_h1_nhit[99];
27 
28  public:
29  AnaHodoHit(const std::string& name="AnaHodoHit");
30  virtual ~AnaHodoHit() {;}
31  int Init(PHCompositeNode *topNode);
32  int InitRun(PHCompositeNode *topNode);
33  int process_event(PHCompositeNode *topNode);
34  int End(PHCompositeNode *topNode);
35 };
36 
37 #endif // _ANA_HODO_HIT__H_
An example class to analyze hodoscope hits in E1039 DST file.
Definition: AnaHodoHit.h:12
int process_event(PHCompositeNode *topNode)
Definition: AnaHodoHit.cc:87
virtual ~AnaHodoHit()
Definition: AnaHodoHit.h:30
int Init(PHCompositeNode *topNode)
Definition: AnaHodoHit.cc:30
AnaHodoHit(const std::string &name="AnaHodoHit")
Definition: AnaHodoHit.cc:22
int InitRun(PHCompositeNode *topNode)
Definition: AnaHodoHit.cc:35
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaHodoHit.cc:132
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