Class Reference for E1039 Core & Analysis Software
AnaSimRunInfo.h
Go to the documentation of this file.
1 #ifndef _ANA_SIM_RUN_INFO__H_
2 #define _ANA_SIM_RUN_INFO__H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
5 class SQEvent;
6 class PHGenIntegral;
7 
9 
12 class AnaSimRunInfo: public SubsysReco {
13  std::string m_fn_lumi_tot;
14  std::string m_fn_lumi_info;
15  std::string m_fn_lumi_list;
16  double lumi_inte_tot;
17  long n_evt_gen_tot;
18  long n_evt_pro_tot;
19  long n_run;
20 
21  SQEvent * mi_evt;
22  PHGenIntegral* mi_gen_inte;
23 
24  std::ofstream ofs_lumi_list;
25 
26  public:
27  AnaSimRunInfo(const char* fn_lumi_tot="lumi_tot.txt", const char* fn_lumi_info="lumi_info.txt", const char* fn_lumi_list="lumi_list.txt");
28  virtual ~AnaSimRunInfo() {;}
29  int Init(PHCompositeNode *topNode);
30  int InitRun(PHCompositeNode *topNode);
31  int process_event(PHCompositeNode *topNode);
32  int End(PHCompositeNode *topNode);
33 };
34 
35 #endif // _ANA_SIM_RUN_INFO__H_
A SubsysReco module to analyze the simulated run (=DST) info.
Definition: AnaSimRunInfo.h:12
AnaSimRunInfo(const char *fn_lumi_tot="lumi_tot.txt", const char *fn_lumi_info="lumi_info.txt", const char *fn_lumi_list="lumi_list.txt")
Definition: AnaSimRunInfo.cc:9
int InitRun(PHCompositeNode *topNode)
virtual ~AnaSimRunInfo()
Definition: AnaSimRunInfo.h:28
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
PHGenIntegral.
Definition: PHGenIntegral.h:21
An SQ interface class to hold one event header.
Definition: SQEvent.h:17