Class Reference for E1039 Core & Analysis Software
PHGenIntegral.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHGenIntegral.h"
12 
13 #include <limits>
14 
16 {
17  // TODO Auto-generated constructor stub
18 }
19 
21 {
22  // TODO Auto-generated destructor stub
23 }
24 
27 {
28  return get_Integrated_Lumi() > 0 ? get_N_Processed_Event() / get_Integrated_Lumi() : std::numeric_limits<Double_t>::signaling_NaN();
29 }
30 
33 {
34  return get_Integrated_Lumi() > 0 ? get_N_Generator_Accepted_Event() / get_Integrated_Lumi() : std::numeric_limits<Double_t>::signaling_NaN();
35 }
36 
38 const std::string& PHGenIntegral::get_Description() const
39 {
40  static const std::string s_invalid("Invalid");
41  return s_invalid;
42 }
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 ~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 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