CMS 3D CMS Logo

CandMCMatchTableProducer.cc
Go to the documentation of this file.
12 
13 #include <vector>
14 #include <iostream>
15 
17 public:
19  : objName_(params.getParameter<std::string>("objName")),
20  branchName_(params.getParameter<std::string>("branchName")),
21  doc_(params.getParameter<std::string>("docString")),
22  src_(consumes<reco::CandidateView>(params.getParameter<edm::InputTag>("src"))),
23  candMap_(consumes<edm::Association<reco::GenParticleCollection>>(params.getParameter<edm::InputTag>("mcMap"))) {
24  produces<nanoaod::FlatTable>();
25  const std::string& type = params.getParameter<std::string>("objType");
26  if (type == "Muon")
27  type_ = MMuon;
28  else if (type == "Electron")
29  type_ = MElectron;
30  else if (type == "Tau")
31  type_ = MTau;
32  else if (type == "Photon")
33  type_ = MPhoton;
34  else if (type == "Other")
35  type_ = MOther;
36  else
37  throw cms::Exception("Configuration", "Unsupported objType '" + type + "'\n");
38 
39  switch (type_) {
40  case MMuon:
41  flavDoc_ =
42  "1 = prompt muon (including gamma*->mu mu), 15 = muon from prompt tau, " // continues below
43  "5 = muon from b, 4 = muon from c, 3 = muon from light or unknown, 0 = unmatched";
44  break;
45  case MElectron:
46  flavDoc_ =
47  "1 = prompt electron (including gamma*->mu mu), 15 = electron from prompt tau, 22 = prompt photon (likely "
48  "conversion), " // continues below
49  "5 = electron from b, 4 = electron from c, 3 = electron from light or unknown, 0 = unmatched";
50  break;
51  case MPhoton:
52  flavDoc_ = "1 = prompt photon, 11 = prompt electron, 0 = unknown or unmatched";
53  break;
54  case MTau:
55  flavDoc_ =
56  "1 = prompt electron, 2 = prompt muon, 3 = tau->e decay, 4 = tau->mu decay, 5 = hadronic tau decay, 0 = "
57  "unknown or unmatched";
58  break;
59  case MOther:
60  flavDoc_ = "1 = from hard scatter, 0 = unknown or unmatched";
61  break;
62  }
63 
64  if (type_ == MTau) {
66  consumes<edm::Association<reco::GenParticleCollection>>(params.getParameter<edm::InputTag>("mcMapVisTau"));
67  }
68 
69  if (type_ == MElectron) {
71  consumes<edm::Association<reco::GenJetCollection>>(params.getParameter<edm::InputTag>("mcMapDressedLep"));
72  mapTauAnc_ = consumes<edm::ValueMap<bool>>(params.getParameter<edm::InputTag>("mapTauAnc"));
73  genPartsToken_ = consumes<reco::GenParticleCollection>(params.getParameter<edm::InputTag>("genparticles"));
74  }
75  }
76 
78 
79  void produce(edm::StreamID id, edm::Event& iEvent, const edm::EventSetup& iSetup) const override {
80  const auto& candProd = iEvent.get(src_);
81  auto ncand = candProd.size();
82 
83  auto tab = std::make_unique<nanoaod::FlatTable>(ncand, objName_, false, true);
84 
85  const auto& mapProd = iEvent.get(candMap_);
86 
88  if (type_ == MTau) {
89  iEvent.getByToken(candMapVisTau_, mapVisTau);
90  }
91 
95  if (type_ == MElectron) {
96  iEvent.getByToken(candMapDressedLep_, mapDressedLep);
97  iEvent.getByToken(mapTauAnc_, mapTauAnc);
98  iEvent.getByToken(genPartsToken_, genParts);
99  }
100 
101  std::vector<int> key(ncand, -1), flav(ncand, 0);
102  for (unsigned int i = 0; i < ncand; ++i) {
103  //std::cout << "cand #" << i << ": pT = " << cands->ptrAt(i)->pt() << ", eta = " << cands->ptrAt(i)->eta() << ", phi = " << cands->ptrAt(i)->phi() << std::endl;
104  const auto& cand = candProd.ptrAt(i);
105  reco::GenParticleRef match = mapProd[cand];
106  reco::GenParticleRef matchVisTau;
107  reco::GenJetRef matchDressedLep;
108  bool hasTauAnc = false;
109  if (type_ == MTau) {
110  matchVisTau = (*mapVisTau)[cand];
111  }
112  if (type_ == MElectron) {
113  matchDressedLep = (*mapDressedLep)[cand];
114  if (matchDressedLep.isNonnull()) {
115  hasTauAnc = (*mapTauAnc)[matchDressedLep];
116  }
117  }
118  if (match.isNonnull())
119  key[i] = match.key();
120  else if (matchVisTau.isNonnull())
121  key[i] = matchVisTau.key();
122  else if (type_ != MElectron)
123  continue; // go ahead with electrons, as those may be matched to a dressed lepton
124 
125  switch (type_) {
126  case MMuon:
127  if (match->isPromptFinalState())
128  flav[i] = 1; // prompt
129  else if (match->isDirectPromptTauDecayProductFinalState())
130  flav[i] = 15; // tau
131  else
132  flav[i] = getParentHadronFlag(match); // 3 = light, 4 = charm, 5 = b
133  break;
134  case MElectron:
135  if (matchDressedLep.isNonnull()) {
136  if (matchDressedLep->pdgId() == 22)
137  flav[i] = 22;
138  else
139  flav[i] = (hasTauAnc) ? 15 : 1;
140 
141  float minpt = 0;
142  const reco::GenParticle* highestPtConstituent = nullptr;
143  for (auto& consti : matchDressedLep->getGenConstituents()) {
144  if (abs(consti->pdgId()) != 11)
145  continue;
146  if (consti->pt() < minpt)
147  continue;
148  minpt = consti->pt();
149  highestPtConstituent = consti;
150  }
151  if (highestPtConstituent) {
152  auto iter =
153  std::find_if(genParts->begin(), genParts->end(), [highestPtConstituent](reco::GenParticle genp) {
154  return (abs(genp.pdgId()) == 11) && (deltaR(genp, *highestPtConstituent) < 0.01) &&
155  (abs(genp.pt() - highestPtConstituent->pt()) / highestPtConstituent->pt() < 0.01);
156  });
157  if (iter != genParts->end()) {
158  key[i] = iter - genParts->begin();
159  }
160  }
161  } else if (!match.isNonnull())
162  flav[i] = 0;
163  else if (match->isPromptFinalState())
164  flav[i] = (match->pdgId() == 22 ? 22 : 1); // prompt electron or photon
165  else if (match->isDirectPromptTauDecayProductFinalState())
166  flav[i] = 15; // tau
167  else
168  flav[i] = getParentHadronFlag(match); // 3 = light, 4 = charm, 5 = b
169  break;
170  case MPhoton:
171  if (match->isPromptFinalState() && match->pdgId() == 22)
172  flav[i] = 1; // prompt photon
173  else if ((match->isPromptFinalState() || match->isDirectPromptTauDecayProductFinalState()) &&
174  abs(match->pdgId()) == 11)
175  flav[i] = 11; // prompt electron
176  break;
177  case MTau:
178  // CV: assignment of status codes according to https://twiki.cern.ch/twiki/bin/viewauth/CMS/HiggsToTauTauWorking2016#MC_Matching
179  if (match.isNonnull() && match->statusFlags().isPrompt() && abs(match->pdgId()) == 11)
180  flav[i] = 1;
181  else if (match.isNonnull() && match->statusFlags().isPrompt() && abs(match->pdgId()) == 13)
182  flav[i] = 2;
183  else if (match.isNonnull() && match->isDirectPromptTauDecayProductFinalState() && abs(match->pdgId()) == 11)
184  flav[i] = 3;
185  else if (match.isNonnull() && match->isDirectPromptTauDecayProductFinalState() && abs(match->pdgId()) == 13)
186  flav[i] = 4;
187  else if (matchVisTau.isNonnull())
188  flav[i] = 5;
189  break;
190  default:
191  flav[i] = match->statusFlags().fromHardProcess();
192  };
193  }
194 
195  tab->addColumn<int>(branchName_ + "Idx", key, "Index into genParticle list for " + doc_);
196  tab->addColumn<uint8_t>(branchName_ + "Flav",
197  flav,
198  "Flavour of genParticle (DressedLeptons for electrons) for " + doc_ + ": " + flavDoc_);
199 
200  iEvent.put(std::move(tab));
201  }
202 
204  bool has4 = false;
205  for (unsigned int im = 0, nm = match->numberOfMothers(); im < nm; ++im) {
206  reco::GenParticleRef mom = match->motherRef(im);
207  assert(mom.isNonnull() && mom.isAvailable()); // sanity
208  if (mom.key() >= match.key())
209  continue; // prevent circular refs
210  int id = std::abs(mom->pdgId());
211  if (id / 1000 == 5 || id / 100 == 5 || id == 5)
212  return 5;
213  if (id / 1000 == 4 || id / 100 == 4 || id == 4)
214  has4 = true;
215  if (mom->status() == 2) {
216  id = getParentHadronFlag(mom);
217  if (id == 5)
218  return 5;
219  else if (id == 4)
220  has4 = true;
221  }
222  }
223  return has4 ? 4 : 3;
224  }
225 
228  desc.add<std::string>("objName")->setComment("name of the nanoaod::FlatTable to extend with this table");
229  desc.add<std::string>("branchName")
230  ->setComment(
231  "name of the column to write (the final branch in the nanoaod will be <objName>_<branchName>Idx and "
232  "<objName>_<branchName>Flav");
233  desc.add<std::string>("docString")->setComment("documentation to forward to the output");
234  desc.add<edm::InputTag>("src")->setComment(
235  "physics object collection for the reconstructed objects (e.g. leptons)");
236  desc.add<edm::InputTag>("mcMap")->setComment(
237  "tag to an edm::Association<GenParticleCollection> mapping src to gen, such as the one produced by MCMatcher");
238  desc.add<std::string>("objType")->setComment(
239  "type of object to match (Muon, Electron, Tau, Photon, Other), taylors what's in t Flav branch");
240  desc.addOptional<edm::InputTag>("mcMapVisTau")
241  ->setComment("as mcMap, but pointing to the visible gen taus (only if objType == Tau)");
242  desc.addOptional<edm::InputTag>("mcMapDressedLep")
243  ->setComment("as mcMap, but pointing to gen dressed leptons (only if objType == Electrons)");
244  desc.addOptional<edm::InputTag>("mapTauAnc")
245  ->setComment("Value map of matched gen electrons containing info on the tau ancestry");
246  desc.addOptional<edm::InputTag>("genparticles")->setComment("Collection of genParticles to be stored.");
247  descriptions.add("candMcMatchTable", desc);
248  }
249 
250 protected:
260 };
261 
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
genp
produce generated paricles in acceptance #
double pt() const final
transverse momentum
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
enum CandMCMatchTableProducer::MatchType type_
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:238
edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > candMapVisTau_
assert(be >=bs)
key_type key() const
Accessor for product key.
Definition: Ref.h:250
edm::EDGetTokenT< reco::GenParticleCollection > genPartsToken_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
int iEvent
Definition: GenABIO.cc:224
bool isAvailable() const
Definition: Ref.h:537
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const edm::EDGetTokenT< reco::CandidateView > src_
static int getParentHadronFlag(const reco::GenParticleRef match)
const edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > candMap_
edm::EDGetTokenT< edm::ValueMap< bool > > mapTauAnc_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
CandMCMatchTableProducer(edm::ParameterSet const &params)
void produce(edm::StreamID id, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
fixed size matrix
HLT enums.
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
edm::EDGetTokenT< edm::Association< reco::GenJetCollection > > candMapDressedLep_
def move(src, dest)
Definition: eostools.py:511
edm::View< Candidate > CandidateView
view of a collection containing candidates
Definition: CandidateFwd.h:23