CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonMCClassifier.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: MuonMCClassifier
4 // Class: MuonMCClassifier
5 //
28 //
29 // Original Author: Nov 16 16:12 (lxplus231.cern.ch)
30 // Created: Sun Nov 16 16:14:09 CET 2008
31 // $Id: MuonMCClassifier.cc,v 1.7 2011/01/24 11:24:32 gpetrucc Exp $
32 //
33 //
34 
35 
36 // system include files
37 #include <memory>
38 #include <set>
39 
40 // user include files
43 
48 
50 
54 
58 
62 
64 
65 #include <boost/foreach.hpp>
66 #define foreach BOOST_FOREACH
67 
68 //
69 // class decleration
71  public:
72  explicit MuonMCClassifier(const edm::ParameterSet&);
74 
75  private:
76  virtual void produce(edm::Event&, const edm::EventSetup&);
79 
84 
87 
90 
92  std::string associatorLabel_;
93 
96 
100 
102  int flavour(int pdgId) const ;
103 
105  template<typename T>
108  const std::vector<T> & values,
109  const std::string & label) const ;
110 
112  if (tp.isNonnull() && tp->parentVertex().isNonnull() && !tp->parentVertex()->sourceTracks().empty()) {
113  return tp->parentVertex()->sourceTracks()[0];
114  } else {
115  return TrackingParticleRef();
116  }
117  }
118 
120  if (gp != 0) {
121  const HepMC::GenVertex *vtx = gp->production_vertex();
122  if (vtx != 0 && vtx->particles_in_size() > 0) {
123  return *vtx->particles_in_const_begin();
124  }
125  }
126  return 0;
127  }
128 
130  int fetch(const edm::Handle<std::vector<int> > & genBarcodes, int barcode) const;
131 
135  int convertAndPush(const TrackingParticle &tp,
137  const TrackingParticleRef &momRef,
139  const edm::Handle<std::vector<int> > & genBarcodes) const ;
140 };
141 
143  muons_(iConfig.getParameter<edm::InputTag>("muons")),
144  hasMuonCut_(iConfig.existsAs<std::string>("muonPreselection")),
145  muonCut_(hasMuonCut_ ? iConfig.getParameter<std::string>("muonPreselection") : ""),
146  trackingParticles_(iConfig.getParameter<edm::InputTag>("trackingParticles")),
147  associatorLabel_(iConfig.getParameter< std::string >("associatorLabel")),
148  decayRho_(iConfig.getParameter<double>("decayRho")),
149  decayAbsZ_(iConfig.getParameter<double>("decayAbsZ")),
150  linkToGenParticles_(iConfig.getParameter<bool>("linkToGenParticles")),
151  genParticles_(linkToGenParticles_ ? iConfig.getParameter<edm::InputTag>("genParticles") : edm::InputTag("NONE"))
152 {
153  std::string trackType = iConfig.getParameter< std::string >("trackType");
154  if (trackType == "inner") trackType_ = MuonAssociatorByHits::InnerTk;
155  else if (trackType == "outer") trackType_ = MuonAssociatorByHits::OuterTk;
156  else if (trackType == "global") trackType_ = MuonAssociatorByHits::GlobalTk;
157  else if (trackType == "segments") trackType_ = MuonAssociatorByHits::Segments;
158  else throw cms::Exception("Configuration") << "Track type '" << trackType << "' not supported.\n";
159 
160  produces<edm::ValueMap<int> >();
161  produces<edm::ValueMap<int> >("ext");
162  produces<edm::ValueMap<int> >("flav");
163  produces<edm::ValueMap<int> >("hitsPdgId");
164  produces<edm::ValueMap<int> >("momPdgId");
165  produces<edm::ValueMap<int> >("momFlav");
166  produces<edm::ValueMap<int> >("momStatus");
167  produces<edm::ValueMap<int> >("gmomPdgId");
168  produces<edm::ValueMap<int> >("gmomFlav");
169  produces<edm::ValueMap<int> >("hmomFlav"); // heaviest mother flavour
170  produces<edm::ValueMap<int> >("tpId");
171  produces<edm::ValueMap<float> >("prodRho");
172  produces<edm::ValueMap<float> >("prodZ");
173  produces<edm::ValueMap<float> >("momRho");
174  produces<edm::ValueMap<float> >("momZ");
175  produces<edm::ValueMap<float> >("tpAssoQuality");
176  if (linkToGenParticles_) {
177  produces<reco::GenParticleCollection>("secondaries");
178  produces<edm::Association<reco::GenParticleCollection> >("toPrimaries");
179  produces<edm::Association<reco::GenParticleCollection> >("toSecondaries");
180  }
181 }
182 
184 {
185 }
186 
187 void
189 {
190  edm::LogVerbatim("MuonMCClassifier") <<"\n sono in MuonMCClassifier !";
191 
193  iEvent.getByLabel(muons_, muons);
194 
196  iEvent.getByLabel(trackingParticles_, trackingParticles);
197 
199  edm::Handle<std::vector<int> > genBarcodes;
200  if (linkToGenParticles_) {
201  iEvent.getByLabel(genParticles_, genParticles);
202  iEvent.getByLabel(genParticles_, genBarcodes);
203  }
204 
205  edm::ESHandle<TrackAssociatorBase> associatorBase;
206  iSetup.get<TrackAssociatorRecord>().get(associatorLabel_, associatorBase);
207  const MuonAssociatorByHits * assoByHits = dynamic_cast<const MuonAssociatorByHits *>(associatorBase.product());
208  if (assoByHits == 0) throw cms::Exception("Configuration") << "The Track Associator with label '" << associatorLabel_ << "' is not a MuonAssociatorByHits.\n";
209 
212  edm::LogVerbatim("MuonMCClassifier") <<"\n ***************************************************************** ";
213  edm::LogVerbatim("MuonMCClassifier") << " RECO MUON association, type: "<< trackType_;
214  edm::LogVerbatim("MuonMCClassifier") << " ***************************************************************** \n";
215 
217  if (!hasMuonCut_) {
218  // all muons
219  selMuons = muons->refVector();
220  } else {
221  // filter, fill refvectors, associate
222  // I pass through pat::Muon so that I can access muon id selectors
223  for (size_t i = 0, n = muons->size(); i < n; ++i) {
224  edm::RefToBase<reco::Muon> rmu = muons->refAt(i);
225  if (muonCut_(pat::Muon(rmu))) selMuons.push_back(rmu);
226  }
227  }
228 
230  for (size_t i = 0, n = trackingParticles->size(); i < n; ++i) {
231  allTPs.push_back(TrackingParticleRef(trackingParticles,i));
232  }
233 
234  assoByHits->associateMuons(recSimColl, simRecColl, selMuons, trackType_, allTPs, &iEvent, &iSetup);
235 
236  // for global muons without hits on muon detectors, look at the linked standalone muon
240  edm::LogVerbatim("MuonMCClassifier") <<"\n ***************************************************************** ";
241  edm::LogVerbatim("MuonMCClassifier") << " STANDALONE (UpdAtVtx) MUON association ";
242  edm::LogVerbatim("MuonMCClassifier") << " ***************************************************************** \n";
243  assoByHits->associateMuons(UpdSTA_recSimColl, UpdSTA_simRecColl, selMuons, MuonAssociatorByHits::OuterTk,
244  allTPs, &iEvent, &iSetup);
245  }
246 
247  typedef MuonAssociatorByHits::MuonToSimCollection::const_iterator r2s_it;
248  typedef MuonAssociatorByHits::SimToMuonCollection::const_iterator s2r_it;
249 
250  size_t nmu = muons->size();
251  edm::LogVerbatim("MuonMCClassifier") <<"\n There are "<<nmu<<" reco::Muons.";
252 
253  std::vector<int> classif(nmu, 0), ext(nmu, 0);
254  std::vector<int> hitsPdgId(nmu, 0), momPdgId(nmu, 0), gmomPdgId(nmu, 0), momStatus(nmu, 0);
255  std::vector<int> flav(nmu, 0), momFlav(nmu, 0), gmomFlav(nmu, 0), hmomFlav(nmu, 0);
256  std::vector<int> tpId(nmu, -1);
257  std::vector<float> prodRho(nmu, 0.0), prodZ(nmu, 0.0), momRho(nmu, 0.0), momZ(nmu, 0.0);
258  std::vector<float> tpAssoQuality(nmu, -1);
259 
260  std::auto_ptr<reco::GenParticleCollection> secondaries; // output collection of secondary muons
261  std::map<TrackingParticleRef, int> tpToSecondaries; // map from tp to (index+1) in output collection
262  std::vector<int> muToPrimary(nmu, -1), muToSecondary(nmu, -1); // map from input into (index) in output, -1 for null
263  if (linkToGenParticles_) secondaries.reset(new reco::GenParticleCollection());
264 
265  for(size_t i = 0; i < nmu; ++i) {
266  edm::LogVerbatim("MuonMCClassifier") <<"\n reco::Muons # "<<i;
267  edm::RefToBase<reco::Muon> mu = muons->refAt(i);
268  if (hasMuonCut_ && (std::find(selMuons.begin(), selMuons.end(), mu) == selMuons.end()) ) {
269  edm::LogVerbatim("MuonMCClassifier") <<"\t muon didn't pass the selection. classified as -99 and skipped";
270  classif[i] = -99; continue;
271  }
272 
274  edm::RefToBase<reco::Muon> muMatchBack;
275  r2s_it match = recSimColl.find(mu);
276  s2r_it matchback;
277  if (match != recSimColl.end()) {
278  edm::LogVerbatim("MuonMCClassifier") <<"\t RtS matched Ok...";
279  // match->second is vector, front is first element, first is the ref (second would be the quality)
280  tp = match->second.front().first;
281  tpId[i] = tp.isNonnull() ? tp.key() : -1; // we check, even if null refs should not appear here at all
282  tpAssoQuality[i] = match->second.front().second;
283  s2r_it matchback = simRecColl.find(tp);
284  if (matchback != simRecColl.end()) {
285  muMatchBack = matchback->second.front().first;
286  } else {
287  edm::LogWarning("MuonMCClassifier") << "\n***WARNING: This I do NOT understand: why no match back? *** \n";
288  }
289  } else if ((trackType_ == MuonAssociatorByHits::GlobalTk) &&
290  mu->isGlobalMuon()) {
291  // perform a second attempt, matching with the standalone muon
292  r2s_it matchSta = UpdSTA_recSimColl.find(mu);
293  if (matchSta != UpdSTA_recSimColl.end()) {
294  edm::LogVerbatim("MuonMCClassifier") <<"\t RtS matched Ok... from the UpdSTA_recSimColl ";
295  tp = matchSta->second.front().first;
296  tpId[i] = tp.isNonnull() ? tp.key() : -1; // we check, even if null refs should not appear here at all
297  tpAssoQuality[i] = matchSta->second.front().second;
298  s2r_it matchback = UpdSTA_simRecColl.find(tp);
299  if (matchback != UpdSTA_simRecColl.end()) {
300  muMatchBack = matchback->second.front().first;
301  } else {
302  edm::LogWarning("MuonMCClassifier") << "\n***WARNING: This I do NOT understand: why no match back in UpdSTA? *** \n";
303  }
304  }
305  }
306  if (tp.isNonnull()) {
307  bool isGhost = muMatchBack != mu;
308  if (isGhost) edm::LogVerbatim("MuonMCClassifier") <<"\t This seems a GHOST ! classif[i] will be < 0";
309 
310  hitsPdgId[i] = tp->pdgId();
311  prodRho[i] = tp->vertex().Rho();
312  prodZ[i] = tp->vertex().Z();
313  edm::LogVerbatim("MuonMCClassifier") <<"\t TP pdgId = "<<hitsPdgId[i] << ", vertex rho = " << prodRho[i] << ", z = " << prodZ[i];
314 
315  // Try to extract mother and grand mother of this muon.
316  // Unfortunately, SIM and GEN histories require diffent code :-(
317  if (!tp->genParticle().empty()) { // Muon is in GEN
318  const HepMC::GenParticle * genMom = getGpMother(tp->genParticle()[0].get());
319  if (genMom) {
320  momPdgId[i] = genMom->pdg_id();
321  momStatus[i] = genMom->status();
322  if (genMom->production_vertex()) {
323  const HepMC::ThreeVector & momVtx = genMom->production_vertex()->point3d();
324  momRho[i] = momVtx.perp() * 0.1; momZ[i] = momVtx.z() * 0.1; // HepMC is in mm!
325  }
326  edm::LogVerbatim("MuonMCClassifier") << "\t Particle pdgId = "<<hitsPdgId[i] << " produced at rho = " << prodRho[i] << ", z = " << prodZ[i] << ", has GEN mother pdgId = " << momPdgId[i];
327  const HepMC::GenParticle * genGMom = getGpMother(genMom);
328  if (genGMom) {
329  gmomPdgId[i] = genGMom->pdg_id();
330  edm::LogVerbatim("MuonMCClassifier") << "\t\t mother prod. vertex rho = " << momRho[i] << ", z = " << momZ[i] << ", grand-mom pdgId = " << gmomPdgId[i];
331  }
332  // in this case, we might want to know the heaviest mom flavour
333  for (const HepMC::GenParticle *nMom = genMom;
334  nMom != 0 && abs(nMom->pdg_id()) >= 100; // stop when we're no longer looking at hadrons or mesons
335  nMom = getGpMother(nMom)) {
336  int flav = flavour(nMom->pdg_id());
337  if (hmomFlav[i] < flav) hmomFlav[i] = flav;
338  edm::LogVerbatim("MuonMCClassifier") << "\t\t backtracking flavour: mom pdgId = "<<nMom->pdg_id()<< ", flavour = " << flav << ", heaviest so far = " << hmomFlav[i];
339  }
340  }
341  } else { // Muon is in SIM Only
342  TrackingParticleRef simMom = getTpMother(tp);
343  if (simMom.isNonnull()) {
344  momPdgId[i] = simMom->pdgId();
345  momRho[i] = simMom->vertex().Rho();
346  momZ[i] = simMom->vertex().Z();
347  edm::LogVerbatim("MuonMCClassifier") << "\t Particle pdgId = "<<hitsPdgId[i] << " produced at rho = " << prodRho[i] << ", z = " << prodZ[i] <<
348  ", has SIM mother pdgId = " << momPdgId[i] << " produced at rho = " << simMom->vertex().Rho() << ", z = " << simMom->vertex().Z();
349  if (!simMom->genParticle().empty()) {
350  momStatus[i] = simMom->genParticle()[0]->status();
351  const HepMC::GenParticle * genGMom = getGpMother(simMom->genParticle()[0].get());
352  if (genGMom) gmomPdgId[i] = genGMom->pdg_id();
353  edm::LogVerbatim("MuonMCClassifier") << "\t\t SIM mother is in GEN (status " << momStatus[i] << "), grand-mom id = " << gmomPdgId[i];
354  } else {
355  momStatus[i] = -1;
356  TrackingParticleRef simGMom = getTpMother(simMom);
357  if (simGMom.isNonnull()) gmomPdgId[i] = simGMom->pdgId();
358  edm::LogVerbatim("MuonMCClassifier") << "\t\t SIM mother is in SIM only, grand-mom id = " << gmomPdgId[i];
359  }
360  } else {
361  edm::LogVerbatim("MuonMCClassifier") << "\t Particle pdgId = "<<hitsPdgId[i] << " produced at rho = " << prodRho[i] << ", z = " << prodZ[i] << ", has NO mother!";
362  }
363  }
364  momFlav[i] = flavour(momPdgId[i]);
365  gmomFlav[i] = flavour(gmomPdgId[i]);
366 
367  // Check first IF this is a muon at all
368  if (abs(tp->pdgId()) != 13) {
369  classif[i] = isGhost ? -1 : 1;
370  ext[i] = isGhost ? -1 : 1;
371  edm::LogVerbatim("MuonMCClassifier") <<"\t This is not a muon. Sorry. classif[i] = " << classif[i];
372  continue;
373  }
374 
375  // Is this SIM muon also a GEN muon, with a mother?
376  if (!tp->genParticle().empty() && (momPdgId[i] != 0)) {
377  if (abs(momPdgId[i]) < 100 && (abs(momPdgId[i]) != 15)) {
378  classif[i] = isGhost ? -4 : 4;
379  flav[i] = (abs(momPdgId[i]) == 15 ? 15 : 13);
380  edm::LogVerbatim("MuonMCClassifier") <<"\t This seems PRIMARY MUON ! classif[i] = " << classif[i];
381  ext[i] = 10;
382  } else if (momFlav[i] == 4 || momFlav[i] == 5 || momFlav[i] == 15) {
383  classif[i] = isGhost ? -3 : 3;
384  flav[i] = momFlav[i];
385  if (momFlav[i] == 15) ext[i] = 9; // tau->mu
386  else if (momFlav[i] == 5) ext[i] = 8; // b->mu
387  else if (hmomFlav[i] == 5) ext[i] = 7; // b->c->mu
388  else ext[i] = 6; // c->mu
389  edm::LogVerbatim("MuonMCClassifier") <<"\t This seems HEAVY FLAVOUR ! classif[i] = " << classif[i];
390  } else {
391  classif[i] = isGhost ? -2 : 2;
392  flav[i] = momFlav[i];
393  edm::LogVerbatim("MuonMCClassifier") <<"\t This seems LIGHT FLAVOUR ! classif[i] = " << classif[i];
394  }
395  } else {
396  classif[i] = isGhost ? -2 : 2;
397  flav[i] = momFlav[i];
398  edm::LogVerbatim("MuonMCClassifier") <<"\t This seems LIGHT FLAVOUR ! classif[i] = " << classif[i];
399  }
400  // extended classification
401  if (momPdgId[i] == 0) ext[i] = 2; // if it has no mom, it's not a primary particle so it won't be in ppMuX
402  else if (abs(momPdgId[i]) < 100) ext[i] = (momFlav[i] == 15 ? 9 : 10); // primary mu, or tau->mu
403  else if (momFlav[i] == 5) ext[i] = 8; // b->mu
404  else if (momFlav[i] == 4) ext[i] = (hmomFlav[i] == 5 ? 7 : 6); // b->c->mu and c->mu
405  else if (momStatus[i] != -1) { // primary light particle
406  int id = abs(momPdgId[i]);
407  if (id != /*pi+*/211 && id != /*K+*/321 && id != 130 /*K0L*/) ext[i] = 5; // other light particle, possibly short-lived
408  else if (prodRho[i] < decayRho_ && abs(prodZ[i]) < decayAbsZ_) ext[i] = 4; // decay a la ppMuX (primary pi/K within a cylinder)
409  else ext[i] = 3; // late decay that wouldn't be in ppMuX
410  } else ext[i] = 2; // decay of non-primary particle, would not be in ppMuX
411  if (isGhost) ext[i] = -ext[i];
412 
413  if (linkToGenParticles_ && abs(ext[i]) >= 2) {
414  // Link to the genParticle if possible, but not decays in flight (in ppMuX they're in GEN block, but they have wrong parameters)
415  if (!tp->genParticle().empty() && abs(ext[i]) >= 5) {
416  muToPrimary[i] = fetch(genBarcodes, tp->genParticle()[0]->barcode());
417  } else {
418  // Don't put the same trackingParticle twice!
419  int &indexPlus1 = tpToSecondaries[tp]; // will create a 0 if the tp is not in the list already
420  if (indexPlus1 == 0) indexPlus1 = convertAndPush(*tp, *secondaries, getTpMother(tp), genParticles, genBarcodes) + 1;
421  muToSecondary[i] = indexPlus1 - 1;
422  }
423  }
424  edm::LogVerbatim("MuonMCClassifier") <<"\t Extended classification code = " << ext[i];
425  }
426  }
427 
428  writeValueMap(iEvent, muons, classif, "");
429  writeValueMap(iEvent, muons, ext, "ext");
430  writeValueMap(iEvent, muons, flav, "flav");
431  writeValueMap(iEvent, muons, tpId, "tpId");
432  writeValueMap(iEvent, muons, hitsPdgId, "hitsPdgId");
433  writeValueMap(iEvent, muons, momPdgId, "momPdgId");
434  writeValueMap(iEvent, muons, momStatus, "momStatus");
435  writeValueMap(iEvent, muons, momFlav, "momFlav");
436  writeValueMap(iEvent, muons, gmomPdgId, "gmomPdgId");
437  writeValueMap(iEvent, muons, gmomFlav, "gmomFlav");
438  writeValueMap(iEvent, muons, hmomFlav, "hmomFlav");
439  writeValueMap(iEvent, muons, prodRho, "prodRho");
440  writeValueMap(iEvent, muons, prodZ, "prodZ");
441  writeValueMap(iEvent, muons, momRho, "momRho");
442  writeValueMap(iEvent, muons, momZ, "momZ");
443  writeValueMap(iEvent, muons, tpAssoQuality, "tpAssoQuality");
444 
445  if (linkToGenParticles_) {
446  edm::OrphanHandle<reco::GenParticleCollection> secHandle = iEvent.put(secondaries, "secondaries");
447  edm::RefProd<reco::GenParticleCollection> priRP(genParticles);
449  std::auto_ptr<edm::Association<reco::GenParticleCollection> > outPri(new edm::Association<reco::GenParticleCollection>(priRP));
450  std::auto_ptr<edm::Association<reco::GenParticleCollection> > outSec(new edm::Association<reco::GenParticleCollection>(secRP));
451  edm::Association<reco::GenParticleCollection>::Filler fillPri(*outPri), fillSec(*outSec);
452  fillPri.insert(muons, muToPrimary.begin(), muToPrimary.end());
453  fillSec.insert(muons, muToSecondary.begin(), muToSecondary.end());
454  fillPri.fill(); fillSec.fill();
455  iEvent.put(outPri, "toPrimaries");
456  iEvent.put(outSec, "toSecondaries");
457  }
458 }
459 
460 template<typename T>
461 void
464  const std::vector<T> & values,
465  const std::string & label) const
466 {
467  using namespace edm;
468  using namespace std;
469  auto_ptr<ValueMap<T> > valMap(new ValueMap<T>());
470  typename edm::ValueMap<T>::Filler filler(*valMap);
471  filler.insert(handle, values.begin(), values.end());
472  filler.fill();
473  iEvent.put(valMap, label);
474 }
475 
476 int
478  int flav = abs(pdgId);
479  // for quarks, leptons and bosons except gluons, take their pdgId
480  // muons and taus have themselves as flavour
481  if (flav <= 37 && flav != 21) return flav;
482  // look for barions
483  int bflav = ((flav / 1000) % 10);
484  if (bflav != 0) return bflav;
485  // look for mesons
486  int mflav = ((flav / 100) % 10);
487  if (mflav != 0) return mflav;
488  return 0;
489 }
490 
491 int MuonMCClassifier::fetch(const edm::Handle<std::vector<int> > & genBarcodes, int barcode) const
492 {
493  std::vector<int>::const_iterator it = std::find(genBarcodes->begin(), genBarcodes->end(), barcode);
494  return (it == genBarcodes->end()) ? -1 : (it - genBarcodes->begin());
495 }
496 
497 // push secondary in collection.
498 // if it has a primary mother link to it.
501  const TrackingParticleRef & simMom,
503  const edm::Handle<std::vector<int> > & genBarcodes) const {
504  out.push_back(reco::GenParticle(tp.charge(), tp.p4(), tp.vertex(), tp.pdgId(), tp.status(), true));
505  if (simMom.isNonnull() && !simMom->genParticle().empty()) {
506  int momIdx = fetch(genBarcodes, simMom->genParticle()[0]->barcode());
507  if (momIdx != -1) out.back().addMother(reco::GenParticleRef(genParticles, momIdx));
508  }
509  return out.size()-1;
510 }
511 
512 //define this as a plug-in
edm::InputTag genParticles_
bool linkToGenParticles_
Create a link to the generator level particles.
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
int charge() const
electric charge
Definition: ParticleBase.h:54
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void associateMuons(MuonToSimCollection &recoToSim, SimToMuonCollection &simToReco, const edm::RefToBaseVector< reco::Muon > &, MuonTrackType, const edm::RefVector< TrackingParticleCollection > &, const edm::Event *event=0, const edm::EventSetup *setup=0) const
int pdgId() const
PDG id, signal source, crossing number.
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:53
const_iterator end() const
#define abs(x)
Definition: mlp_lapack.h:159
bool isGlobalMuon() const
Definition: Muon.h:211
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
edm::InputTag trackingParticles_
The TrackingParticle objects.
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
std::map< TrackingParticleRef, std::vector< std::pair< edm::RefToBase< reco::Muon >, double > > > SimToMuonCollection
int iEvent
Definition: GenABIO.cc:243
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
int fetch(const edm::Handle< std::vector< int > > &genBarcodes, int barcode) const
Find the index of a genParticle given it&#39;s barcode. -1 if not found.
tuple handle
Definition: patZpeak.py:22
int convertAndPush(const TrackingParticle &tp, reco::GenParticleCollection &out, const TrackingParticleRef &momRef, const edm::Handle< reco::GenParticleCollection > &genParticles, const edm::Handle< std::vector< int > > &genBarcodes) const
TrackingParticleRef getTpMother(TrackingParticleRef tp)
const int mu
Definition: Constants.h:23
MuonMCClassifier(const edm::ParameterSet &)
std::string associatorLabel_
The Associations.
const LorentzVector & p4() const
four-momentum Lorentz vector
Definition: ParticleBase.h:74
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
tuple out
Definition: dbtoconf.py:99
int status() const
status word
Definition: ParticleBase.h:263
MuonAssociatorByHits::MuonTrackType trackType_
Track to use.
const T & get() const
Definition: EventSetup.h:55
key_type key() const
Accessor for product key.
Definition: Ref.h:266
T const * product() const
Definition: ESHandle.h:62
void writeValueMap(edm::Event &iEvent, const edm::Handle< edm::View< reco::Muon > > &handle, const std::vector< T > &values, const std::string &label) const
Write a ValueMap&lt;int&gt; in the event.
virtual void produce(edm::Event &, const edm::EventSetup &)
const_iterator begin() const
double decayRho_
Cylinder to use to decide if a decay is early or late.
tuple muons
Definition: patZpeak.py:38
void push_back(const RefToBase< T > &)
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:6
edm::InputTag muons_
The RECO objects.
T const * get() const
Returns C++ pointer to the item.
Definition: Ref.h:242
const Point & vertex() const
vertex position
Definition: ParticleBase.h:228
int flavour(int pdgId) const
Returns the flavour given a pdg id code.
Analysis-level muon class.
Definition: Muon.h:51
std::map< edm::RefToBase< reco::Muon >, std::vector< std::pair< TrackingParticleRef, double > >, RefToBaseSort > MuonToSimCollection
edm::Ref< TrackingParticleCollection > TrackingParticleRef
const HepMC::GenParticle * getGpMother(const HepMC::GenParticle *gp)
StringCutObjectSelector< pat::Muon > muonCut_