Class Reference for E1039 Core & Analysis Software
AnaEffCham.h
Go to the documentation of this file.
1 #ifndef _ANA_EFF_CHAM__H_
2 #define _ANA_EFF_CHAM__H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
5 class TFile;
6 class TH1;
7 
8 class AnaEffCham: public SubsysReco {
9  public:
10  typedef enum { D0, D1, D2, D3p, D3m } ChamType_t;
11  static const int N_PL = 6;
12 
13  private:
14  ChamType_t m_type;
15  int m_pl0;
16  std::vector<int> list_pl_id;
17  std::vector<std::string> list_pl_name;
18  std::vector<int> list_pl_n_ele;
19 
20  unsigned int n_evt_all;
21  unsigned int n_evt_trig;
22  unsigned int n_evt_nhit;
23 
24  std::ofstream ofs;
25  TFile* f_out;
26  TH1* h1_eff_all;
27  TH1* h1_eff_ok;
28  TH1* h1_nhit[99];
29  TH1* h1_ele [99];
30  TH1* h1_time[99];
31 
32  public:
33  AnaEffCham(const ChamType_t type);
34  virtual ~AnaEffCham() {;}
35  int Init(PHCompositeNode *topNode);
36  int InitRun(PHCompositeNode *topNode);
37  int process_event(PHCompositeNode *topNode);
38  int End(PHCompositeNode *topNode);
39 };
40 
41 #endif /* _ANA_EFF_CHAM__H_ */
int Init(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:31
int process_event(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:89
AnaEffCham(const ChamType_t type)
Definition: AnaEffCham.cc:20
int InitRun(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:84
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaEffCham.cc:139
static const int N_PL
Definition: AnaEffCham.h:11
virtual ~AnaEffCham()
Definition: AnaEffCham.h:34