Class Reference for E1039 Core & Analysis Software
PHGenIntegralv1.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRALV1_H_
12 #define SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRALV1_H_
13 
14 #include "PHGenIntegral.h"
15 
20 {
21  public:
23  explicit PHGenIntegralv1(const std::string & description);
24  virtual ~PHGenIntegralv1();
25 
26  virtual PHObject* clone() const;
27  virtual int isValid() const { return 1; }
28  virtual void identify(std::ostream& os = std::cout) const;
29  virtual void Reset();
30 
31  virtual int Integrate() const { return 1; }
33  virtual int Integrate(PHObject*);
34  virtual void CopyContent(PHObject* obj);
35 
37  Double_t get_Integrated_Lumi() const
38  {
39  return fIntegratedLumi;
40  }
41 
43  void set_Integrated_Lumi(Double_t integratedLumi)
44  {
45  fIntegratedLumi = integratedLumi;
46  }
47 
50  {
51  return fNGeneratorAcceptedEvent;
52  }
53 
55  void set_N_Generator_Accepted_Event(ULong64_t nGeneratorAcceptedEvent)
56  {
57  fNGeneratorAcceptedEvent = nGeneratorAcceptedEvent;
58  }
59 
61  ULong64_t get_N_Processed_Event() const
62  {
63  return fNProcessedEvent;
64  }
65 
67  void set_N_Processed_Event(ULong64_t nProcessedEvent)
68  {
69  fNProcessedEvent = nProcessedEvent;
70  }
71 
75  Double_t get_Sum_Of_Weight() const
76  {
77  return fSumOfWeight;
78  }
79 
83  void set_Sum_Of_Weight(Double_t sumOfWeight)
84  {
85  fSumOfWeight = sumOfWeight;
86  }
87 
89  const std::string& get_Description() const
90  {
91  return fDescription;
92  }
93 
95  void set_Description(const std::string& description)
96  {
97  fDescription = description;
98  }
99 
100  private:
102  ULong64_t fNProcessedEvent;
103 
105  ULong64_t fNGeneratorAcceptedEvent;
106 
108  Double_t fIntegratedLumi;
109 
113  Double_t fSumOfWeight;
114 
116  std::string fDescription;
117 
118  ClassDef(PHGenIntegralv1, 1)
119 };
120 
121 #endif /* SIMULATION_CORESOFTWARE_GENERATORS_PHHEPMC_PHGENINTEGRALV1_H_ */
PHGenIntegral.
Definition: PHGenIntegral.h:21
PHGenIntegralv1.
ULong64_t get_N_Generator_Accepted_Event() const
Number of accepted events in the event generator. This can be higher than fNProcessedEvent depending ...
virtual void CopyContent(PHObject *obj)
const std::string & get_Description() const
description on the source
void set_N_Generator_Accepted_Event(ULong64_t nGeneratorAcceptedEvent)
Number of accepted events in the event generator. This can be higher than fNProcessedEvent depending ...
virtual PHObject * clone() const
Virtual copy constructor.
ULong64_t get_N_Processed_Event() const
Number of processed events in the Fun4All cycles.
virtual int isValid() const
isValid returns non zero if object contains vailid data
virtual void identify(std::ostream &os=std::cout) const
void set_Sum_Of_Weight(Double_t sumOfWeight)
void set_Description(const std::string &description)
description on the source
virtual int Integrate() const
Double_t get_Sum_Of_Weight() const
virtual void Reset()
Clear Event.
void set_Integrated_Lumi(Double_t integratedLumi)
Integrated luminosity in pb^-1.
Double_t get_Integrated_Lumi() const
Integrated luminosity in pb^-1.
virtual ~PHGenIntegralv1()
void set_N_Processed_Event(ULong64_t nProcessedEvent)
Number of processed events in the Fun4All cycles.