Class Reference for E1039 Core & Analysis Software
PHGenIntegralv1.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHGenIntegralv1.h"
12 
13 #include <cstdlib>
14 #include <iostream>
15 #include <cassert>
16 using namespace std;
17 
19 {
20  Reset();
21 }
22 
23 PHGenIntegralv1::PHGenIntegralv1(const std::string& description)
24 {
25  Reset();
26  fDescription = description;
27 }
28 
30 {
31 }
32 
34 {
35  //this class is simple, use the default copy constructor for cloning
36  return new PHGenIntegralv1(*this);
37 }
38 
39 void PHGenIntegralv1::identify(ostream& os) const
40 {
41  os << "PHGenIntegralv1::identify: " << get_Description() << endl
42  << " N_Generator_Accepted_Event = " << get_N_Generator_Accepted_Event() << " @ " << get_CrossSection_Generator_Accepted_Event() << " pb" << endl
43  << " N_Processed_Event = " << get_N_Processed_Event() << " @ " << get_CrossSection_Processed_Event() << " pb" << endl
44  << " Sum_Of_Weight = " << get_Sum_Of_Weight() << endl
45  << " Integrated_Lumi = " << get_Integrated_Lumi() << " pb^-1" << endl;
46 }
47 
49 {
50  fNProcessedEvent = 0;
51  fNGeneratorAcceptedEvent = 0;
52  fIntegratedLumi = 0;
53  fSumOfWeight = 0;
54  fDescription = "Source Not Provided";
55 }
56 
57 int PHGenIntegralv1::Integrate( PHObject* incoming_object)
58 {
59  const PHGenIntegral* in_gen = dynamic_cast<const PHGenIntegral*>(incoming_object);
60 
61  if (!in_gen)
62  {
63  cout << "PHGenIntegralv1::Integrate - Fatal Error - "
64  << "input object is not a PHGenIntegral: ";
65  incoming_object->identify();
66 
67  exit(EXIT_FAILURE);
68  }
69 
70  if (fIntegratedLumi == 0 and fNProcessedEvent == 0)
71  {
72  fDescription = in_gen->get_Description();
73  }
74  else if (fDescription != in_gen->get_Description())
75  {
76  fDescription = fDescription + ", and " + in_gen->get_Description();
77  }
78 
79  fNProcessedEvent += in_gen->get_N_Processed_Event();
80  fNGeneratorAcceptedEvent += in_gen->get_N_Generator_Accepted_Event();
81  fIntegratedLumi += in_gen->get_Integrated_Lumi();
82  fSumOfWeight += in_gen->get_Sum_Of_Weight();
83 
84  return fNProcessedEvent;
85 }
86 
87 void PHGenIntegralv1::CopyContent( PHObject* incoming_object)
88 {
89  const PHGenIntegral * in_gen = dynamic_cast<const PHGenIntegral *>(incoming_object);
90 
91  if (!in_gen)
92  {
93  cout << "PHGenIntegralv1::CopyContent - Fatal Error - "
94  << "input object is not a PHGenIntegral: ";
95  incoming_object->identify();
96 
97  exit(EXIT_FAILURE);
98  }
99 
100  fNProcessedEvent = in_gen->get_N_Processed_Event();
101  fNGeneratorAcceptedEvent = in_gen->get_N_Generator_Accepted_Event();
102  fIntegratedLumi = in_gen->get_Integrated_Lumi();
103  fSumOfWeight = in_gen->get_Sum_Of_Weight();
104  fDescription = in_gen->get_Description();
105 
106 }
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_Sum_Of_Weight() const
Definition: PHGenIntegral.h:62
virtual const std::string & get_Description() const
description on the source
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
PHGenIntegralv1.
virtual void CopyContent(PHObject *obj)
virtual PHObject * clone() const
Virtual copy constructor.
virtual void identify(std::ostream &os=std::cout) const
virtual int Integrate() const
virtual void Reset()
Clear Event.
virtual ~PHGenIntegralv1()
virtual void identify(std::ostream &os=std::cout) const
Definition: PHObject.cc:21