Class Reference for E1039 Core & Analysis Software
ExtractTdcDist.h
Go to the documentation of this file.
1 #ifndef _EXTRACT_TDC_DIST__H_
2 #define _EXTRACT_TDC_DIST__H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
6 class TFile;
7 class TH1;
8 
9 class ExtractTdcDist: public SubsysReco {
10  public:
11  static const int N_PL = 6;
12 
13  private:
14  typedef enum { UNDEF, D0, D1, D2, D3p, D3m } ChamType_t;
15 
16  std::string m_name;
17  ChamType_t m_type;
18  int m_pl0;
19  std::string m_dir_out;
20 
21  SQEvent::TriggerMask m_trig_mask;
22 
23  std::vector<int> m_list_pl_id;
24  std::vector<std::string> m_list_pl_name;
25  std::vector<int> m_list_pl_n_ele;
26 
27  unsigned int m_n_evt_all;
28  unsigned int m_n_evt_trig;
29  unsigned int m_n_evt_ana;
30 
31  std::ofstream m_ofs;
32  TFile* m_file;
33  TH1* m_h1_nhit[N_PL];
34  TH1* m_h1_ele [N_PL];
35  TH1* m_h1_time[N_PL];
36  TH1* m_h1_time_wide[N_PL];
37 
38  public:
39  ExtractTdcDist(const std::string& name="d0");
40  virtual ~ExtractTdcDist() {;}
41 
42  int Init(PHCompositeNode *topNode);
43  int InitRun(PHCompositeNode *topNode);
44  int process_event(PHCompositeNode *topNode);
45  int End(PHCompositeNode *topNode);
46 };
47 
48 #endif // _EXTRACT_TDC_DIST__H_
int process_event(PHCompositeNode *topNode)
static const int N_PL
ExtractTdcDist(const std::string &name="d0")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
virtual ~ExtractTdcDist()
int InitRun(PHCompositeNode *topNode)
TriggerMask
Definition: SQEvent.h:21