CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
GenEventInfoProduct Class Reference

#include <GenEventInfoProduct.h>

Public Types

typedef gen::PdfInfo PDF
 

Public Member Functions

double alphaQCD () const
 
double alphaQED () const
 
const std::vector< double > & binningValues () const
 
const std::vector< float > & DJRValues () const
 
 GenEventInfoProduct ()
 
 GenEventInfoProduct (const HepMC::GenEvent *evt)
 
 GenEventInfoProduct (const GenEventInfoProduct &other)
 
bool hasBinningValues () const
 
bool hasDJRValues () const
 
bool hasPDF () const
 
int nMEPartons () const
 
int nMEPartonsFiltered () const
 
GenEventInfoProductoperator= (const GenEventInfoProduct &other)
 
const PDFpdf () const
 
double qScale () const
 
void setBinningValues (const std::vector< double > &values)
 
void setDJR (const std::vector< float > &values)
 
void setNMEPartons (int n)
 
void setNMEPartonsFiltered (int n)
 
void setPDF (const PDF *pdf)
 
void setScales (double q=-1., double qcd=-1., double qed=-1.)
 
void setSignalProcessID (unsigned int procID)
 
void setWeights (const std::vector< double > &weights)
 
unsigned int signalProcessID () const
 
double weight () const
 
double weightProduct () const
 
std::vector< double > & weights ()
 
const std::vector< double > & weights () const
 
virtual ~GenEventInfoProduct ()
 

Private Attributes

double alphaQCD_
 
double alphaQED_
 
std::vector< double > binningValues_
 
std::vector< float > DJRValues_
 
int nMEPartons_
 
int nMEPartonsFiltered_
 
std::auto_ptr< PDFpdf_
 
double qScale_
 
unsigned int signalProcessID_
 
std::vector< double > weights_
 

Detailed Description

Definition at line 15 of file GenEventInfoProduct.h.

Member Typedef Documentation

Definition at line 24 of file GenEventInfoProduct.h.

Constructor & Destructor Documentation

GenEventInfoProduct::GenEventInfoProduct ( )
GenEventInfoProduct::GenEventInfoProduct ( const HepMC::GenEvent *  evt)

Definition at line 22 of file GenEventInfoProduct.cc.

References gen::PdfInfo::id, pdf(), gen::PdfInfo::scalePDF, setPDF(), gen::PdfInfo::x, and gen::PdfInfo::xPDF.

22  :
23  weights_(evt->weights().begin(), evt->weights().end()),
24  signalProcessID_(evt->signal_process_id()),
25  qScale_(evt->event_scale()),
26  alphaQCD_(evt->alphaQCD()),
27  alphaQED_(evt->alphaQED()),
29 {
30  const HepMC::PdfInfo *hepPDF = evt->pdf_info();
31  if (hepPDF) {
32  PDF pdf;
33 
34  pdf.id = std::make_pair(hepPDF->id1(), hepPDF->id2());
35  pdf.x = std::make_pair(hepPDF->x1(), hepPDF->x2());
36  pdf.xPDF = std::make_pair(hepPDF->pdf1(), hepPDF->pdf2());
37  pdf.scalePDF = hepPDF->scalePDF();
38 
39  setPDF(&pdf);
40  }
41 }
void setPDF(const PDF *pdf)
const PDF * pdf() const
std::vector< double > weights_
std::pair< int, int > id
Definition: PdfInfo.h:10
unsigned int signalProcessID_
GenEventInfoProduct::GenEventInfoProduct ( const GenEventInfoProduct other)

Definition at line 43 of file GenEventInfoProduct.cc.

References pdf(), and setPDF().

43  :
44  weights_(other.weights_),
46  qScale_(other.qScale_),
47  alphaQCD_(other.alphaQCD_),
48  alphaQED_(other.alphaQED_),
50  DJRValues_(other.DJRValues_),
52 {
53  setPDF(other.pdf());
54 }
void setPDF(const PDF *pdf)
const PDF * pdf() const
std::vector< float > DJRValues_
std::vector< double > weights_
std::vector< double > binningValues_
unsigned int signalProcessID_
GenEventInfoProduct::~GenEventInfoProduct ( )
virtual

Definition at line 56 of file GenEventInfoProduct.cc.

57 {
58 }

Member Function Documentation

double GenEventInfoProduct::alphaQCD ( ) const
inline

Definition at line 38 of file GenEventInfoProduct.h.

References alphaQCD_.

38 { return alphaQCD_; }
double GenEventInfoProduct::alphaQED ( ) const
inline

Definition at line 39 of file GenEventInfoProduct.h.

References alphaQED_.

39 { return alphaQED_; }
const std::vector<double>& GenEventInfoProduct::binningValues ( ) const
inline

Definition at line 44 of file GenEventInfoProduct.h.

References binningValues_.

44 { return binningValues_; }
std::vector< double > binningValues_
const std::vector<float>& GenEventInfoProduct::DJRValues ( ) const
inline

Definition at line 47 of file GenEventInfoProduct.h.

References DJRValues_.

47 { return DJRValues_; }
std::vector< float > DJRValues_
bool GenEventInfoProduct::hasBinningValues ( ) const
inline

Definition at line 45 of file GenEventInfoProduct.h.

References binningValues_.

45 { return !binningValues_.empty(); }
std::vector< double > binningValues_
bool GenEventInfoProduct::hasDJRValues ( ) const
inline

Definition at line 48 of file GenEventInfoProduct.h.

References DJRValues_.

48 { return !DJRValues_.empty(); }
std::vector< float > DJRValues_
bool GenEventInfoProduct::hasPDF ( ) const
inline

Definition at line 42 of file GenEventInfoProduct.h.

References pdf().

42 { return pdf() != 0; }
const PDF * pdf() const
int GenEventInfoProduct::nMEPartons ( ) const
inline

Definition at line 50 of file GenEventInfoProduct.h.

References nMEPartons_.

50 { return nMEPartons_; }
int GenEventInfoProduct::nMEPartonsFiltered ( ) const
inline

Definition at line 52 of file GenEventInfoProduct.h.

References nMEPartonsFiltered_.

GenEventInfoProduct & GenEventInfoProduct::operator= ( const GenEventInfoProduct other)

Definition at line 60 of file GenEventInfoProduct.cc.

References alphaQCD_, alphaQED_, binningValues_, DJRValues_, nMEPartons_, nMEPartonsFiltered_, pdf(), qScale_, setPDF(), signalProcessID_, and weights_.

61 {
62  weights_ = other.weights_;
64  qScale_ = other.qScale_;
65  alphaQCD_ = other.alphaQCD_;
66  alphaQED_ = other.alphaQED_;
68  DJRValues_ = other.DJRValues_;
71 
72  setPDF(other.pdf());
73 
74  return *this;
75 }
void setPDF(const PDF *pdf)
const PDF * pdf() const
std::vector< float > DJRValues_
std::vector< double > weights_
std::vector< double > binningValues_
unsigned int signalProcessID_
const PDF* GenEventInfoProduct::pdf ( ) const
inline

Definition at line 41 of file GenEventInfoProduct.h.

References pdf_.

Referenced by GenEventInfoProduct(), hasPDF(), operator=(), and heppy::PdfWeightProducerTool::processEvent().

41 { return pdf_.get(); }
std::auto_ptr< PDF > pdf_
double GenEventInfoProduct::qScale ( ) const
inline

Definition at line 37 of file GenEventInfoProduct.h.

References qScale_.

37 { return qScale_; }
void GenEventInfoProduct::setBinningValues ( const std::vector< double > &  values)
inline

Definition at line 67 of file GenEventInfoProduct.h.

References binningValues_, and makeHLTPrescaleTable::values.

void GenEventInfoProduct::setDJR ( const std::vector< float > &  values)
inline

Definition at line 70 of file GenEventInfoProduct.h.

References DJRValues_, and makeHLTPrescaleTable::values.

void GenEventInfoProduct::setNMEPartons ( int  n)
inline

Definition at line 73 of file GenEventInfoProduct.h.

References gen::n, and nMEPartons_.

void GenEventInfoProduct::setNMEPartonsFiltered ( int  n)
inline

Definition at line 75 of file GenEventInfoProduct.h.

References gen::n, and nMEPartonsFiltered_.

void GenEventInfoProduct::setPDF ( const PDF pdf)
inline

Definition at line 65 of file GenEventInfoProduct.h.

References pdf_.

Referenced by GenEventInfoProduct(), and operator=().

65 { pdf_.reset(pdf ? new PDF(*pdf) : 0); }
const PDF * pdf() const
std::auto_ptr< PDF > pdf_
void GenEventInfoProduct::setScales ( double  q = -1.,
double  qcd = -1.,
double  qed = -1. 
)
inline

Definition at line 62 of file GenEventInfoProduct.h.

References alphaQCD_, alphaQED_, lumiQueryAPI::q, and qScale_.

void GenEventInfoProduct::setSignalProcessID ( unsigned int  procID)
inline

Definition at line 59 of file GenEventInfoProduct.h.

References signalProcessID_.

60  { signalProcessID_ = procID; }
unsigned int signalProcessID_
void GenEventInfoProduct::setWeights ( const std::vector< double > &  weights)
inline

Definition at line 56 of file GenEventInfoProduct.h.

References weights(), and weights_.

57  { weights_ = weights; }
std::vector< double > weights_
std::vector< double > & weights()
unsigned int GenEventInfoProduct::signalProcessID ( ) const
inline

Definition at line 35 of file GenEventInfoProduct.h.

References signalProcessID_.

35 { return signalProcessID_; }
unsigned int signalProcessID_
double GenEventInfoProduct::weight ( void  ) const
inline

Definition at line 31 of file GenEventInfoProduct.h.

References weights_.

Referenced by cuy.ValElement::__init__(), cuy.additionElement::__init__(), cuy.superimposeElement::__init__(), and cuy.graphElement::__init__().

31 { return weights_.empty() ? 1.0 : weights_[0]; }
std::vector< double > weights_
double GenEventInfoProduct::weightProduct ( ) const

Definition at line 77 of file GenEventInfoProduct.cc.

References weights_.

78 {
79  return std::accumulate(weights_.begin(), weights_.end(),
80  1., std::multiplies<double>());
81 }
std::vector< double > weights_
std::vector<double>& GenEventInfoProduct::weights ( )
inline

Definition at line 28 of file GenEventInfoProduct.h.

References weights_.

Referenced by setWeights().

28 { return weights_; }
std::vector< double > weights_
const std::vector<double>& GenEventInfoProduct::weights ( ) const
inline

Definition at line 29 of file GenEventInfoProduct.h.

References weights_.

29 { return weights_; }
std::vector< double > weights_

Member Data Documentation

double GenEventInfoProduct::alphaQCD_
private

Definition at line 86 of file GenEventInfoProduct.h.

Referenced by alphaQCD(), operator=(), and setScales().

double GenEventInfoProduct::alphaQED_
private

Definition at line 86 of file GenEventInfoProduct.h.

Referenced by alphaQED(), operator=(), and setScales().

std::vector<double> GenEventInfoProduct::binningValues_
private

Definition at line 98 of file GenEventInfoProduct.h.

Referenced by binningValues(), hasBinningValues(), operator=(), and setBinningValues().

std::vector<float> GenEventInfoProduct::DJRValues_
private

Definition at line 99 of file GenEventInfoProduct.h.

Referenced by DJRValues(), hasDJRValues(), operator=(), and setDJR().

int GenEventInfoProduct::nMEPartons_
private

Definition at line 100 of file GenEventInfoProduct.h.

Referenced by nMEPartons(), operator=(), and setNMEPartons().

int GenEventInfoProduct::nMEPartonsFiltered_
private

Definition at line 101 of file GenEventInfoProduct.h.

Referenced by nMEPartonsFiltered(), operator=(), and setNMEPartonsFiltered().

std::auto_ptr<PDF> GenEventInfoProduct::pdf_
private

Definition at line 89 of file GenEventInfoProduct.h.

Referenced by pdf(), and setPDF().

double GenEventInfoProduct::qScale_
private

Definition at line 85 of file GenEventInfoProduct.h.

Referenced by operator=(), qScale(), and setScales().

unsigned int GenEventInfoProduct::signalProcessID_
private

Definition at line 82 of file GenEventInfoProduct.h.

Referenced by operator=(), setSignalProcessID(), and signalProcessID().

std::vector<double> GenEventInfoProduct::weights_
private

Definition at line 79 of file GenEventInfoProduct.h.

Referenced by operator=(), setWeights(), weight(), weightProduct(), and weights().