CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LHEEventProduct.h
Go to the documentation of this file.
1 #ifndef SimDataFormats_GeneratorProducts_LHEEventProduct_h
2 #define SimDataFormats_GeneratorProducts_LHEEventProduct_h
3 
4 #include <memory>
5 #include <vector>
6 #include <string>
7 
11 
13  public:
14  typedef gen::PdfInfo PDF;
16 
17  typedef std::vector<std::string>::const_iterator
20 
23  hepeup_(hepeup), originalXWGTUP_(0) {}
25  const double originalXWGTUP) :
26  hepeup_(hepeup), originalXWGTUP_(originalXWGTUP) {}
28 
29  void setPDF(const PDF &pdf) { pdf_.reset(new PDF(pdf)); }
30  void addWeight(const WGT& wgt) {
31  weights_.push_back(wgt);
32  }
33  void addComment(const std::string &line) { comments_.push_back(line); }
34 
35  double originalXWGTUP() const { return originalXWGTUP_; }
36  const std::vector<WGT>& weights() const { return weights_; }
37 
38  const std::vector<float> &scales() const { return scales_; }
39  void setScales(const std::vector<float> &scales) { scales_ = scales; }
40 
41  int npLO() const { return npLO_; }
42  int npNLO() const { return npNLO_; }
43 
44  void setNpLO(int n) { npLO_ = n; }
45  void setNpNLO(int n) { npNLO_ = n; }
46 
47  const lhef::HEPEUP &hepeup() const { return hepeup_; }
48  const PDF *pdf() const { return pdf_.get(); }
49 
50  size_type comments_size() const { return comments_.size(); }
51  comments_const_iterator comments_begin() const { return comments_.begin(); }
53 
55  public:
56  typedef std::forward_iterator_tag iterator_category;
57  typedef std::string value_type;
58  typedef std::ptrdiff_t difference_type;
59  typedef std::string *pointer;
60  typedef std::string &reference;
61 
64 
65  inline bool operator == (const const_iterator &other) const
66  { return line == other.line; }
67  inline bool operator != (const const_iterator &other) const
68  { return !operator == (other); }
69 
71  { next(); return *this; }
72  inline const_iterator operator ++ (int dummy)
73  { const_iterator orig = *this; next(); return orig; }
74 
75  const std::string &operator * () const { return tmp; }
76  const std::string *operator -> () const { return &tmp; }
77 
78  private:
79  friend class LHEEventProduct;
80 
81  void next();
82 
84  unsigned int line;
85  std::string tmp;
86 
87  static const unsigned int npos = 99999;
88  };
89 
90  const_iterator begin() const;
91  inline const_iterator end() const { return const_iterator(); }
92 
93  private:
95  std::vector<std::string> comments_;
96  std::auto_ptr<PDF> pdf_;
97  std::vector<WGT> weights_;
99  std::vector<float> scales_; //scale value used to exclude EWK-produced partons from matching
100  int npLO_; //number of partons for LO process (used to steer matching/merging)
101  int npNLO_; //number of partons for NLO process (used to steer matching/merging)
102 };
103 
104 #endif // GeneratorEvent_LHEInterface_LHEEventProduct_h
double originalXWGTUP() const
const_iterator begin() const
const_iterator end() const
const lhef::HEPEUP & hepeup() const
bool operator!=(const const_iterator &other) const
void addComment(const std::string &line)
std::vector< std::string >::size_type size_type
void setScales(const std::vector< float > &scales)
const PDF * pdf() const
void setNpLO(int n)
LHEEventProduct(const lhef::HEPEUP &hepeup, const double originalXWGTUP)
std::auto_ptr< PDF > pdf_
void addWeight(const WGT &wgt)
const std::string * operator->() const
gen::WeightsInfo WGT
std::vector< std::string > comments_
LHEEventProduct(const lhef::HEPEUP &hepeup)
size_type comments_size() const
uint16_t size_type
const std::vector< WGT > & weights() const
const LHEEventProduct * event
comments_const_iterator comments_begin() const
std::vector< WGT > weights_
gen::PdfInfo PDF
const std::string & operator*() const
std::forward_iterator_tag iterator_category
int npLO() const
void setPDF(const PDF &pdf)
void setNpNLO(int n)
const std::vector< float > & scales() const
bool operator==(const const_iterator &other) const
comments_const_iterator comments_end() const
std::vector< float > scales_
static const unsigned int npos
int npNLO() const
std::vector< std::string >::const_iterator comments_const_iterator
lhef::HEPEUP hepeup_