CMS 3D CMS Logo

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

#include <LHEEventProduct.h>

Classes

class  const_iterator
 

Public Types

typedef std::vector
< std::string >
::const_iterator 
comments_const_iterator
 
typedef gen::PdfInfo PDF
 
typedef std::vector
< std::string >::size_type 
size_type
 
typedef gen::WeightsInfo WGT
 

Public Member Functions

void addComment (const std::string &line)
 
void addWeight (const WGT &wgt)
 
const_iterator begin () const
 
comments_const_iterator comments_begin () const
 
comments_const_iterator comments_end () const
 
size_type comments_size () const
 
const_iterator end () const
 
const lhef::HEPEUPhepeup () const
 
 LHEEventProduct ()
 
 LHEEventProduct (const lhef::HEPEUP &hepeup)
 
 LHEEventProduct (const lhef::HEPEUP &hepeup, const double originalXWGTUP)
 
double originalXWGTUP () const
 
const PDFpdf () const
 
void setPDF (const PDF &pdf)
 
const std::vector< WGT > & weights () const
 
 ~LHEEventProduct ()
 

Private Attributes

std::vector< std::string > comments_
 
lhef::HEPEUP hepeup_
 
double originalXWGTUP_
 
std::auto_ptr< PDFpdf_
 
std::vector< WGTweights_
 

Detailed Description

Definition at line 12 of file LHEEventProduct.h.

Member Typedef Documentation

typedef std::vector<std::string>::const_iterator LHEEventProduct::comments_const_iterator

Definition at line 18 of file LHEEventProduct.h.

Definition at line 14 of file LHEEventProduct.h.

typedef std::vector<std::string>::size_type LHEEventProduct::size_type

Definition at line 19 of file LHEEventProduct.h.

Definition at line 15 of file LHEEventProduct.h.

Constructor & Destructor Documentation

LHEEventProduct::LHEEventProduct ( )
inline

Definition at line 21 of file LHEEventProduct.h.

21 {}
LHEEventProduct::LHEEventProduct ( const lhef::HEPEUP hepeup)
inline

Definition at line 22 of file LHEEventProduct.h.

22  :
23  hepeup_(hepeup), originalXWGTUP_(0) {}
lhef::HEPEUP hepeup_
LHEEventProduct::LHEEventProduct ( const lhef::HEPEUP hepeup,
const double  originalXWGTUP 
)
inline

Definition at line 24 of file LHEEventProduct.h.

25  :
double originalXWGTUP() const
lhef::HEPEUP hepeup_
LHEEventProduct::~LHEEventProduct ( )
inline

Definition at line 27 of file LHEEventProduct.h.

27 {}

Member Function Documentation

void LHEEventProduct::addComment ( const std::string &  line)
inline

Definition at line 33 of file LHEEventProduct.h.

References comments_.

Referenced by LHESource::produce(), and ExternalLHEProducer::produce().

33 { comments_.push_back(line); }
std::vector< std::string > comments_
void LHEEventProduct::addWeight ( const WGT wgt)
inline

Definition at line 30 of file LHEEventProduct.h.

References weights_.

Referenced by LHESource::produce().

30  {
31  weights_.push_back(wgt);
32  }
std::vector< WGT > weights_
LHEEventProduct::const_iterator LHEEventProduct::begin ( void  ) const

Definition at line 91 of file LHEEventProduct.cc.

References LHEEventProduct::const_iterator::event, LHEEventProduct::const_iterator::line, query::result, and LHEEventProduct::const_iterator::tmp.

92 {
93  const_iterator result;
94  result.event = this;
95  result.line = 0;
96  result.tmp = "<event>\n";
97  return result;
98 }
tuple result
Definition: query.py:137
comments_const_iterator LHEEventProduct::comments_begin ( ) const
inline

Definition at line 42 of file LHEEventProduct.h.

References comments_.

42 { return comments_.begin(); }
std::vector< std::string > comments_
comments_const_iterator LHEEventProduct::comments_end ( ) const
inline

Definition at line 43 of file LHEEventProduct.h.

References comments_.

43 { return comments_.end(); }
std::vector< std::string > comments_
size_type LHEEventProduct::comments_size ( ) const
inline

Definition at line 41 of file LHEEventProduct.h.

References comments_.

Referenced by LHEEventProduct::const_iterator::next().

41 { return comments_.size(); }
std::vector< std::string > comments_
const_iterator LHEEventProduct::end ( void  ) const
inline

Definition at line 82 of file LHEEventProduct.h.

82 { return const_iterator(); }
const lhef::HEPEUP& LHEEventProduct::hepeup ( ) const
inline

Definition at line 38 of file LHEEventProduct.h.

References hepeup_.

Referenced by LHEEventProduct::const_iterator::next().

38 { return hepeup_; }
lhef::HEPEUP hepeup_
double LHEEventProduct::originalXWGTUP ( ) const
inline

Definition at line 35 of file LHEEventProduct.h.

References originalXWGTUP_.

35 { return originalXWGTUP_; }
const PDF* LHEEventProduct::pdf ( ) const
inline

Definition at line 39 of file LHEEventProduct.h.

References pdf_.

Referenced by LHEEventProduct::const_iterator::next().

39 { return pdf_.get(); }
std::auto_ptr< PDF > pdf_
void LHEEventProduct::setPDF ( const PDF pdf)
inline

Definition at line 29 of file LHEEventProduct.h.

References pdf_.

29 { pdf_.reset(new PDF(pdf)); }
const PDF * pdf() const
std::auto_ptr< PDF > pdf_
gen::PdfInfo PDF
const std::vector<WGT>& LHEEventProduct::weights ( ) const
inline

Definition at line 36 of file LHEEventProduct.h.

References weights_.

36 { return weights_; }
std::vector< WGT > weights_

Member Data Documentation

std::vector<std::string> LHEEventProduct::comments_
private

Definition at line 86 of file LHEEventProduct.h.

Referenced by addComment(), comments_begin(), comments_end(), and comments_size().

lhef::HEPEUP LHEEventProduct::hepeup_
private

Definition at line 85 of file LHEEventProduct.h.

Referenced by hepeup().

double LHEEventProduct::originalXWGTUP_
private

Definition at line 89 of file LHEEventProduct.h.

Referenced by originalXWGTUP().

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

Definition at line 87 of file LHEEventProduct.h.

Referenced by pdf(), and setPDF().

std::vector<WGT> LHEEventProduct::weights_
private

Definition at line 88 of file LHEEventProduct.h.

Referenced by addWeight(), and weights().