Class Reference for E1039 Core & Analysis Software
AnaEffHodo.h
Go to the documentation of this file.
1 #ifndef _ANA_EFF_HODO__H_
2 #define _ANA_EFF_HODO__H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
5 class TFile;
6 class TH1;
7 
8 class AnaEffHodo: public SubsysReco {
9  unsigned int n_evt_all;
10  unsigned int n_evt_trig;
11  unsigned int n_evt_nhit;
12 
13  std::ofstream ofs;
14  TFile* f_out;
15  TH1* h1_eff_all;
16  TH1* h1_eff_ok;
17  TH1* h1_nhit;
18  TH1* h1_ele;
19  TH1* h1_time;
20 
21  public:
22  AnaEffHodo();
23  virtual ~AnaEffHodo() {;}
24  int Init(PHCompositeNode *topNode);
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27  int End(PHCompositeNode *topNode);
28 };
29 
30 #endif /* _ANA_EFF_HODO__H_ */
int InitRun(PHCompositeNode *topNode)
Definition: AnaEffHodo.cc:48
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaEffHodo.cc:111
int Init(PHCompositeNode *topNode)
Definition: AnaEffHodo.cc:25
int process_event(PHCompositeNode *topNode)
Definition: AnaEffHodo.cc:53
virtual ~AnaEffHodo()
Definition: AnaEffHodo.h:23