CMS 3D CMS Logo

LHETablesProducer.cc
Go to the documentation of this file.
9 #include "TLorentzVector.h"
10 
11 #include <vector>
12 #include <iostream>
13 
14 
16  public:
18  lheTag_(edm::vector_transform(params.getParameter<std::vector<edm::InputTag>>("lheInfo"), [this](const edm::InputTag & tag) { return mayConsume<LHEEventProduct>(tag); })),
19  precision_( params.getParameter<int>("precision") ),
20  storeLHEParticles_( params.getParameter<bool>("storeLHEParticles") )
21  {
22  produces<nanoaod::FlatTable>("LHE");
24  produces<nanoaod::FlatTable>("LHEPart");
25 
26  }
27 
28  ~LHETablesProducer() override {}
29 
30  void produce(edm::StreamID id, edm::Event& iEvent, const edm::EventSetup& iSetup) const override {
31  auto lheTab = std::make_unique<nanoaod::FlatTable>(1, "LHE", true);
32 
34  for (const auto & lheTag: lheTag_) {
35  iEvent.getByToken(lheTag, lheInfo);
36  if (lheInfo.isValid()) {
37  break;
38  }
39  }
40  if (lheInfo.isValid()) {
41  auto lhePartTab = fillLHEObjectTable(*lheInfo, *lheTab);
42  if (storeLHEParticles_) iEvent.put(std::move(lhePartTab), "LHEPart");
43  } else {
44  if (storeLHEParticles_) { // need to store a dummy table anyway to make the framework happy
45  auto lhePartTab = std::make_unique<nanoaod::FlatTable>(1, "LHEPart", true);
46  iEvent.put(std::move(lhePartTab), "LHEPart");
47  }
48  }
49  iEvent.put(std::move(lheTab), "LHE");
50 
51  }
52 
53  std::unique_ptr<nanoaod::FlatTable> fillLHEObjectTable(const LHEEventProduct & lheProd, nanoaod::FlatTable & out) const {
54  double lheHT = 0, lheHTIncoming = 0;
55  unsigned int lheNj = 0, lheNb = 0, lheNc = 0, lheNuds = 0, lheNglu = 0;
56  double lheVpt = 0;
57 
58  const auto & hepeup = lheProd.hepeup();
59  const auto & pup = hepeup.PUP;
60  int lep = -1, lepBar = -1, nu = -1, nuBar = -1;
61  std::vector<float> vals_pt;
62  std::vector<float> vals_eta;
63  std::vector<float> vals_phi;
64  std::vector<float> vals_mass;
65  std::vector<int> vals_pid;
66  for (unsigned int i = 0, n = pup.size(); i < n; ++i) {
67  int status = hepeup.ISTUP[i];
68  int idabs = std::abs(hepeup.IDUP[i]);
69  if (status == 1){
70  TLorentzVector p4(pup[i][0], pup[i][1], pup[i][2], pup[i][3]); // x,y,z,t
71  vals_pt.push_back(p4.Pt());
72  vals_eta.push_back(p4.Eta());
73  vals_phi.push_back(p4.Phi());
74  vals_mass.push_back(p4.M());
75  vals_pid.push_back(hepeup.IDUP[i]);
76  }
77  if ( (status == 1) && ( ( idabs == 21 ) || (idabs > 0 && idabs < 7) ) ) { //# gluons and quarks
78  // object counters
79  lheNj++;
80  if (idabs==5) lheNb++;
81  else if (idabs==4) lheNc++;
82  else if (idabs <= 3 ) lheNuds++;
83  else if (idabs == 21) lheNglu++;
84  // HT
85  double pt = std::hypot( pup[i][0], pup[i][1] ); // first entry is px, second py
86  lheHT += pt;
87  int mothIdx = std::max(hepeup.MOTHUP[i].first-1,0); //first and last mother as pair; first entry has index 1 in LHE; incoming particles return motherindex 0
88  int mothIdxTwo = std::max(hepeup.MOTHUP[i].second-1,0);
89  int mothStatus = hepeup.ISTUP[mothIdx];
90  int mothStatusTwo = hepeup.ISTUP[mothIdxTwo];
91  bool hasIncomingAsMother = mothStatus<0 || mothStatusTwo<0;
92  if (hasIncomingAsMother) lheHTIncoming += pt;
93  } else if (idabs == 12 || idabs == 14 || idabs == 16) {
94  (hepeup.IDUP[i] > 0 ? nu : nuBar) = i;
95  } else if (idabs == 11 || idabs == 13 || idabs == 15) {
96  (hepeup.IDUP[i] > 0 ? lep : lepBar) = i;
97  }
98  }
99  std::pair<int,int> v(0,0);
100  if (lep != -1 && lepBar != -1) v = std::make_pair(lep,lepBar);
101  else if (lep != -1 && nuBar != -1) v = std::make_pair(lep, nuBar);
102  else if (nu != -1 && lepBar != -1) v = std::make_pair(nu ,lepBar);
103  else if (nu != -1 && nuBar != -1) v = std::make_pair(nu , nuBar);
104  if (v.first != -1 && v.second != -1) {
105  lheVpt = std::hypot( pup[v.first][0] + pup[v.second][0], pup[v.first][1] + pup[v.second][1] );
106  }
107 
108  out.addColumnValue<uint8_t>("Njets", lheNj, "Number of jets (partons) at LHE step", nanoaod::FlatTable::UInt8Column);
109  out.addColumnValue<uint8_t>("Nb", lheNb, "Number of b partons at LHE step", nanoaod::FlatTable::UInt8Column);
110  out.addColumnValue<uint8_t>("Nc", lheNc, "Number of c partons at LHE step", nanoaod::FlatTable::UInt8Column);
111  out.addColumnValue<uint8_t>("Nuds", lheNuds, "Number of u,d,s partons at LHE step", nanoaod::FlatTable::UInt8Column);
112  out.addColumnValue<uint8_t>("Nglu", lheNglu, "Number of gluon partons at LHE step", nanoaod::FlatTable::UInt8Column);
113  out.addColumnValue<float>("HT", lheHT, "HT, scalar sum of parton pTs at LHE step", nanoaod::FlatTable::FloatColumn);
114  out.addColumnValue<float>("HTIncoming", lheHTIncoming, "HT, scalar sum of parton pTs at LHE step, restricted to partons", nanoaod::FlatTable::FloatColumn);
115  out.addColumnValue<float>("Vpt", lheVpt, "pT of the W or Z boson at LHE step", nanoaod::FlatTable::FloatColumn);
116  out.addColumnValue<uint8_t>("NpNLO", lheProd.npNLO(), "number of partons at NLO", nanoaod::FlatTable::UInt8Column);
117  out.addColumnValue<uint8_t>("NpLO", lheProd.npLO(), "number of partons at LO", nanoaod::FlatTable::UInt8Column);
118 
119 
120  auto outPart = std::make_unique<nanoaod::FlatTable>(vals_pt.size(), "LHEPart", false);
121  outPart->addColumn<float>("pt", vals_pt, "Pt of LHE particles", nanoaod::FlatTable::FloatColumn, this->precision_);
122  outPart->addColumn<float>("eta", vals_eta, "Pseodorapidity of LHE particles", nanoaod::FlatTable::FloatColumn, this->precision_);
123  outPart->addColumn<float>("phi", vals_phi, "Phi of LHE particles", nanoaod::FlatTable::FloatColumn, this->precision_);
124  outPart->addColumn<float>("mass", vals_mass, "Mass of LHE particles", nanoaod::FlatTable::FloatColumn, this->precision_);
125  outPart->addColumn<int> ("pdgId", vals_pid, "PDG ID of LHE particles", nanoaod::FlatTable::IntColumn);
126 
127  return outPart;
128  }
129 
130  static void fillDescriptions(edm::ConfigurationDescriptions & descriptions) {
132  desc.add<std::vector<edm::InputTag>>("lheInfo", std::vector<edm::InputTag>{{"externalLHEProducer"},{"source"}})->setComment("tag(s) for the LHE information (LHEEventProduct)");
133  desc.add<int>("precision", -1)->setComment("precision on the 4-momenta of the LHE particles");
134  desc.add<bool>("storeLHEParticles", false)->setComment("Whether we want to store the 4-momenta of the status 1 particles at LHE level");
135  descriptions.add("lheInfoTable", desc);
136  }
137 
138  protected:
139  const std::vector<edm::EDGetTokenT<LHEEventProduct>> lheTag_;
140  const unsigned int precision_;
141  const bool storeLHEParticles_;
142 };
143 
146 
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
const lhef::HEPEUP & hepeup() const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
LHETablesProducer(edm::ParameterSet const &params)
void produce(edm::StreamID id, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
const unsigned int precision_
std::unique_ptr< nanoaod::FlatTable > fillLHEObjectTable(const LHEEventProduct &lheProd, nanoaod::FlatTable &out) const
const bool storeLHEParticles_
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
~LHETablesProducer() override
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
double p4[4]
Definition: TauolaWrapper.h:92
std::vector< FiveVector > PUP
Definition: LesHouches.h:261
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const std::vector< edm::EDGetTokenT< LHEEventProduct > > lheTag_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void addColumnValue(const std::string &name, const C &value, const std::string &docString, ColumnType type=defaultColumnType< T >(), int mantissaBits=-1)
Definition: FlatTable.h:101
int npLO() const
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
void add(std::string const &label, ParameterSetDescription const &psetDescription)
HLT enums.
int npNLO() const
def move(src, dest)
Definition: eostools.py:511