Class Reference for E1039 Core & Analysis Software
PHGenIntegral.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRAL_H_
12 #define SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRAL_H_
13 
14 #include <phool/PHObject.h>
15 #include <string>
16 
20 class PHGenIntegral : public PHObject
21 {
22  public:
23  PHGenIntegral();
24  virtual ~PHGenIntegral();
25 
27  virtual Double_t get_Integrated_Lumi() const
28  {
29  return 0;
30  }
31 
33  virtual void set_Integrated_Lumi(Double_t integratedLumi)
34  {
35  }
36 
38  virtual ULong64_t get_N_Generator_Accepted_Event() const
39  {
40  return 0;
41  }
42 
44  virtual void set_N_Generator_Accepted_Event(ULong64_t nGeneratorAcceptedEvent)
45  {
46  }
47 
49  virtual ULong64_t get_N_Processed_Event() const
50  {
51  return 0;
52  }
53 
55  virtual void set_N_Processed_Event(ULong64_t nProcessedEvent)
56  {
57  }
58 
62  virtual Double_t get_Sum_Of_Weight() const
63  {
64  return 0;
65  }
66 
70  virtual void set_Sum_Of_Weight(Double_t sumOfWeight)
71  {
72  }
73 
75  virtual Double_t get_CrossSection_Processed_Event() const;
76 
78  virtual Double_t get_CrossSection_Generator_Accepted_Event() const;
79 
81  virtual const std::string& get_Description() const;
82 
84  virtual void set_Description(const std::string& description)
85  {
86  }
87 
88  ClassDef(PHGenIntegral, 1)
89 };
90 
91 #endif /* SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRAL_H_ */
PHGenIntegral.
Definition: PHGenIntegral.h:21
virtual ULong64_t get_N_Processed_Event() const
Number of processed events in the Fun4All cycles.
Definition: PHGenIntegral.h:49
virtual Double_t get_CrossSection_Processed_Event() const
cross sections for the processed events in pb
virtual Double_t get_Sum_Of_Weight() const
Definition: PHGenIntegral.h:62
virtual void set_Integrated_Lumi(Double_t integratedLumi)
Integrated luminosity in pb^-1.
Definition: PHGenIntegral.h:33
virtual void set_N_Generator_Accepted_Event(ULong64_t nGeneratorAcceptedEvent)
Number of accepted events in the event generator. This can be higher than fNProcessedEvent depending ...
Definition: PHGenIntegral.h:44
virtual ~PHGenIntegral()
virtual const std::string & get_Description() const
description on the source
virtual Double_t get_CrossSection_Generator_Accepted_Event() const
cross sections for the events accepted by the event generator in pb
virtual void set_Description(const std::string &description)
description on the source
Definition: PHGenIntegral.h:84
virtual ULong64_t get_N_Generator_Accepted_Event() const
Number of accepted events in the event generator. This can be higher than fNProcessedEvent depending ...
Definition: PHGenIntegral.h:38
virtual Double_t get_Integrated_Lumi() const
Integrated luminosity in pb^-1.
Definition: PHGenIntegral.h:27
virtual void set_Sum_Of_Weight(Double_t sumOfWeight)
Definition: PHGenIntegral.h:70
virtual void set_N_Processed_Event(ULong64_t nProcessedEvent)
Number of processed events in the Fun4All cycles.
Definition: PHGenIntegral.h:55