CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PFElectronTranslator.cc
Go to the documentation of this file.
20 
21 
24  = iConfig.getParameter<edm::InputTag>("PFCandidate");
26  = iConfig.getParameter<edm::InputTag>("PFCandidateElectron");
28  = iConfig.getParameter<edm::InputTag>("GSFTracks");
29 
30  bool useIsolationValues = iConfig.getParameter<bool>("useIsolationValues") ;
31  if ( useIsolationValues ) {
32  if( ! iConfig.exists("isolationValues") )
33  throw cms::Exception("PFElectronTranslator|InternalError")
34  <<"Missing ParameterSet isolationValues" ;
35  else {
36  edm::ParameterSet isoVals =
37  iConfig.getParameter<edm::ParameterSet> ("isolationValues");
38  inputTagIsoVals_.push_back
39  (isoVals.getParameter<edm::InputTag>("pfChargedHadrons"));
40  inputTagIsoVals_.push_back
41  (isoVals.getParameter<edm::InputTag>("pfPhotons"));
42  inputTagIsoVals_.push_back
43  (isoVals.getParameter<edm::InputTag>("pfNeutralHadrons"));
44  }
45  }
46 
47  PFBasicClusterCollection_ = iConfig.getParameter<std::string>("PFBasicClusters");
48  PFPreshowerClusterCollection_ = iConfig.getParameter<std::string>("PFPreshowerClusters");
49  PFSuperClusterCollection_ = iConfig.getParameter<std::string>("PFSuperClusters");
50  GsfElectronCoreCollection_ = iConfig.getParameter<std::string>("PFGsfElectronCore");
51  GsfElectronCollection_ = iConfig.getParameter<std::string>("PFGsfElectron");
52 
53  PFMVAValueMap_ = iConfig.getParameter<std::string>("ElectronMVA");
54  PFSCValueMap_ = iConfig.getParameter<std::string>("ElectronSC");
55  MVACut_ = (iConfig.getParameter<edm::ParameterSet>("MVACutBlock")).getParameter<double>("MVACut");
56  checkStatusFlag_ = iConfig.getParameter<bool>("CheckStatusFlag");
57 
58  if (iConfig.exists("emptyIsOk")) emptyIsOk_ = iConfig.getParameter<bool>("emptyIsOk");
59  else emptyIsOk_=false;
60 
61  produces<reco::BasicClusterCollection>(PFBasicClusterCollection_);
62  produces<reco::PreshowerClusterCollection>(PFPreshowerClusterCollection_);
63  produces<reco::SuperClusterCollection>(PFSuperClusterCollection_);
64  produces<reco::GsfElectronCoreCollection>(GsfElectronCoreCollection_);
65  produces<reco::GsfElectronCollection>(GsfElectronCollection_);
66  produces<edm::ValueMap<float> >(PFMVAValueMap_);
67  produces<edm::ValueMap<reco::SuperClusterRef> >(PFSCValueMap_);
68 }
69 
71 
73  const edm::EventSetup& iSetup) {
74 
75  std::auto_ptr<reco::GsfElectronCoreCollection>
76  gsfElectronCores_p(new reco::GsfElectronCoreCollection);
77 
78  std::auto_ptr<reco::GsfElectronCollection>
79  gsfElectrons_p(new reco::GsfElectronCollection);
80 
81  std::auto_ptr<reco::SuperClusterCollection>
82  superClusters_p(new reco::SuperClusterCollection);
83 
84  std::auto_ptr<reco::BasicClusterCollection>
85  basicClusters_p(new reco::BasicClusterCollection);
86 
87  std::auto_ptr<reco::PreshowerClusterCollection>
88  psClusters_p(new reco::PreshowerClusterCollection);
89 
90  std::auto_ptr<edm::ValueMap<float> > mvaMap_p(new edm::ValueMap<float>());
91  edm::ValueMap<float>::Filler mvaFiller(*mvaMap_p);
92 
93  std::auto_ptr<edm::ValueMap<reco::SuperClusterRef> >
96 
97 
99  bool status=fetchCandidateCollection(pfCandidates,
101  iEvent );
102 
103  IsolationValueMaps isolationValues(inputTagIsoVals_.size());
104  for (size_t j = 0; j<inputTagIsoVals_.size(); ++j) {
105  iEvent.getByLabel(inputTagIsoVals_[j], isolationValues[j]);
106  }
107 
108 
109  // clear the vectors
110  GsfTrackRef_.clear();
111  CandidatePtr_.clear();
112  ambiguousGsfTracks_.clear();
113  kfTrackRef_.clear();
114  basicClusters_.clear();
115  pfClusters_.clear();
116  preshowerClusters_.clear();
117  superClusters_.clear();
118  basicClusterPtr_.clear();
119  preshowerClusterPtr_.clear();
120  gsfPFCandidateIndex_.clear();
121  gsfElectronCoreRefs_.clear();
122  scMap_.clear();
123 
124 
125  // loop on the candidates
126  //CC@@
127  // we need first to create AND put the SuperCluster,
128  // basic clusters and presh clusters collection
129  // in order to get a working Handle
130  unsigned ncand=(status)?pfCandidates->size():0;
131  unsigned iGSF=0;
132  for( unsigned i=0; i<ncand; ++i ) {
133 
134  const reco::PFCandidate& cand = (*pfCandidates)[i];
135  if(cand.particleId()!=reco::PFCandidate::e) continue;
136  if(cand.gsfTrackRef().isNull()) continue;
137  // Note that -1 will still cut some total garbage candidates
138  // Fill the MVA map
139  if(cand.mva_e_pi()<MVACut_) continue;
140 
141  // Check the status flag
143  continue;
144  }
145 
146  GsfTrackRef_.push_back(cand.gsfTrackRef());
147  kfTrackRef_.push_back(cand.trackRef());
148  gsfPFCandidateIndex_.push_back(i);
149 
150  reco::PFCandidatePtr ptrToPFElectron(pfCandidates,i);
151  //CandidatePtr_.push_back(ptrToPFElectron->sourceCandidatePtr(0));
152  CandidatePtr_.push_back(ptrToPFElectron);
153 
155  pfClusters_.push_back(std::vector<const reco::PFCluster *>());
157  ambiguousGsfTracks_.push_back(std::vector<reco::GsfTrackRef>());
158 
159  for(unsigned iele=0; iele<cand.elementsInBlocks().size(); ++iele) {
160  // first get the block
161  reco::PFBlockRef blockRef = cand.elementsInBlocks()[iele].first;
162  //
163  unsigned elementIndex = cand.elementsInBlocks()[iele].second;
164  // check it actually exists
165  if(blockRef.isNull()) continue;
166 
167  // then get the elements of the block
168  const edm::OwnVector< reco::PFBlockElement >& elements = (*blockRef).elements();
169 
170  const reco::PFBlockElement & pfbe (elements[elementIndex]);
171  // The first ECAL element should be the cluster associated to the GSF; defined as the seed
172  if(pfbe.type()==reco::PFBlockElement::ECAL)
173  {
174  // const reco::PFCandidate * coCandidate = &cand;
175  // the Brem photons are saved as daughter PFCandidate; this
176  // is convenient to access the corrected energy
177  // std::cout << " Found candidate " << correspondingDaughterCandidate(coCandidate,pfbe) << " " << coCandidate << std::endl;
179  }
180  if(pfbe.type()==reco::PFBlockElement::PS1)
181  {
183  }
184  if(pfbe.type()==reco::PFBlockElement::PS2)
185  {
187  }
188  if(pfbe.type()==reco::PFBlockElement::GSF)
189  {
191  }
192 
193  } // loop on the elements
194 
195  // save the basic clusters
196  basicClusters_p->insert(basicClusters_p->end(),basicClusters_[iGSF].begin(), basicClusters_[iGSF].end());
197  // save the preshower clusters
198  psClusters_p->insert(psClusters_p->end(),preshowerClusters_[iGSF].begin(),preshowerClusters_[iGSF].end());
199 
200  ++iGSF;
201  } // loop on PFCandidates
202 
203 
204  //Save the basic clusters and get an handle as to be able to create valid Refs (thanks to Claude)
205  // std::cout << " Number of basic clusters " << basicClusters_p->size() << std::endl;
207  iEvent.put(basicClusters_p,PFBasicClusterCollection_);
208 
209  //preshower clusters
211  iEvent.put(psClusters_p,PFPreshowerClusterCollection_);
212 
213  // now that the Basic clusters are in the event, the Ref can be created
214  createBasicClusterPtrs(bcRefProd);
215  // now that the preshower clusters are in the event, the Ref can be created
216  createPreshowerClusterPtrs(psRefProd);
217 
218  // and now the Super cluster can be created with valid references
219  if(status) createSuperClusters(*pfCandidates,*superClusters_p);
220 
221  // Let's put the super clusters in the event
222  const edm::OrphanHandle<reco::SuperClusterCollection> scRefProd = iEvent.put(superClusters_p,PFSuperClusterCollection_);
223  // create the super cluster Ref
224  createSuperClusterGsfMapRefs(scRefProd);
225 
226  // Now create the GsfElectronCoers
227  createGsfElectronCores(*gsfElectronCores_p);
228  // Put them in the as to get to be able to build a Ref
229  const edm::OrphanHandle<reco::GsfElectronCoreCollection> gsfElectronCoreRefProd =
230  iEvent.put(gsfElectronCores_p,GsfElectronCoreCollection_);
231 
232  // now create the Refs
233  createGsfElectronCoreRefs(gsfElectronCoreRefProd);
234 
235  // now make the GsfElectron
236  createGsfElectrons(*pfCandidates,isolationValues,*gsfElectrons_p);
237  iEvent.put(gsfElectrons_p,GsfElectronCollection_);
238 
239  fillMVAValueMap(iEvent,mvaFiller);
240  mvaFiller.fill();
241 
242  fillSCRefValueMap(iEvent,scRefFiller);
243  scRefFiller.fill();
244 
245  // MVA map
246  iEvent.put(mvaMap_p,PFMVAValueMap_);
247  // Gsf-SC map
248  iEvent.put(scMap_p,PFSCValueMap_);
249 
250 
251 
252 }
253 
254 
255 
257  const edm::InputTag& tag,
258  const edm::Event& iEvent) const {
259  bool found = iEvent.getByLabel(tag, c);
260 
261  if(!found && !emptyIsOk_)
262  {
263  std::ostringstream err;
264  err<<" cannot get PFCandidates: "
265  <<tag<<std::endl;
266  edm::LogError("PFElectronTranslator")<<err.str();
267  }
268  return found;
269 
270 }
271 
273  const edm::InputTag& tag,
274  const edm::Event& iEvent) const {
275  bool found = iEvent.getByLabel(tag, c);
276 
277  if(!found ) {
278  std::ostringstream err;
279  err<<" cannot get GSFTracks: "
280  <<tag<<std::endl;
281  edm::LogError("PFElectronTranslator")<<err.str();
282  throw cms::Exception( "MissingProduct", err.str());
283  }
284 }
285 
286 // The basic cluster is a copy of the PFCluster -> the energy is not corrected
287 // It should be possible to get the corrected energy (including the associated PS energy)
288 // from the PFCandidate daugthers ; Needs some work
290  reco::BasicClusterCollection & basicClusters,
291  std::vector<const reco::PFCluster *> & pfClusters,
292  const reco::PFCandidate & coCandidate) const
293 {
294  reco::PFClusterRef myPFClusterRef= PFBE.clusterRef();
295  if(myPFClusterRef.isNull()) return;
296 
297  const reco::PFCluster & myPFCluster (*myPFClusterRef);
298  pfClusters.push_back(&myPFCluster);
299 // std::cout << " Creating BC " << myPFCluster.energy() << " " << coCandidate.ecalEnergy() <<" "<< coCandidate.rawEcalEnergy() <<std::endl;
300 // std::cout << " # hits " << myPFCluster.hitsAndFractions().size() << std::endl;
301 
302 // basicClusters.push_back(reco::CaloCluster(myPFCluster.energy(),
303  basicClusters.push_back(reco::CaloCluster(
304  // myPFCluster.energy(),
305  coCandidate.rawEcalEnergy(),
306  myPFCluster.position(),
307  myPFCluster.caloID(),
308  myPFCluster.hitsAndFractions(),
309  myPFCluster.algo(),
310  myPFCluster.seed()));
311 }
312 
313 
315 {
316  reco::PFClusterRef myPFClusterRef= PFBE.clusterRef();
317  preshowerClusters.push_back(reco::PreshowerCluster(myPFClusterRef->energy(),myPFClusterRef->position(),
318  myPFClusterRef->hitsAndFractions(),plane));
319 }
320 
322 {
323  unsigned size=GsfTrackRef_.size();
324  unsigned basicClusterCounter=0;
325  basicClusterPtr_.resize(size);
326 
327  for(unsigned iGSF=0;iGSF<size;++iGSF) // loop on tracks
328  {
329  unsigned nbc=basicClusters_[iGSF].size();
330  for(unsigned ibc=0;ibc<nbc;++ibc) // loop on basic clusters
331  {
332  // std::cout << "Track "<< iGSF << " ref " << basicClusterCounter << std::endl;
333  reco::CaloClusterPtr bcPtr(basicClustersHandle,basicClusterCounter);
334  basicClusterPtr_[iGSF].push_back(bcPtr);
335  ++basicClusterCounter;
336  }
337  }
338 }
339 
341 {
342  unsigned size=GsfTrackRef_.size();
343  unsigned psClusterCounter=0;
344  preshowerClusterPtr_.resize(size);
345 
346  for(unsigned iGSF=0;iGSF<size;++iGSF) // loop on tracks
347  {
348  unsigned nbc=preshowerClusters_[iGSF].size();
349  for(unsigned ibc=0;ibc<nbc;++ibc) // loop on basic clusters
350  {
351  // std::cout << "Track "<< iGSF << " ref " << basicClusterCounter << std::endl;
352  reco::CaloClusterPtr psPtr(preshowerClustersHandle,psClusterCounter);
353  preshowerClusterPtr_[iGSF].push_back(psPtr);
354  ++psClusterCounter;
355  }
356  }
357 }
358 
360 {
361  unsigned size=GsfTrackRef_.size();
362 
363  for(unsigned iGSF=0;iGSF<size;++iGSF) // loop on tracks
364  {
365  edm::Ref<reco::SuperClusterCollection> scRef(superClustersHandle,iGSF);
366  scMap_[GsfTrackRef_[iGSF]]=scRef;
367  }
368 }
369 
370 
372 {
373  gsfMvaMap_.clear();
375  bool status=fetchCandidateCollection(pfCandidates,
377  iEvent );
378 
379  unsigned ncand=(status)?pfCandidates->size():0;
380  for( unsigned i=0; i<ncand; ++i ) {
381 
382  const reco::PFCandidate& cand = (*pfCandidates)[i];
383  if(cand.particleId()!=reco::PFCandidate::e) continue;
384  if(cand.gsfTrackRef().isNull()) continue;
385  // Fill the MVA map
386  gsfMvaMap_[cand.gsfTrackRef()]=cand.mva_e_pi();
387  }
388 
390  fetchGsfCollection(gsfTracks,
392  iEvent);
393  unsigned ngsf=gsfTracks->size();
394  std::vector<float> values;
395  for(unsigned igsf=0;igsf<ngsf;++igsf)
396  {
397  reco::GsfTrackRef theTrackRef(gsfTracks, igsf);
398  std::map<reco::GsfTrackRef,float>::const_iterator itcheck=gsfMvaMap_.find(theTrackRef);
399  if(itcheck==gsfMvaMap_.end())
400  {
401  // edm::LogWarning("PFElectronTranslator") << "MVA Map, missing GSF track ref " << std::endl;
402  values.push_back(-99.);
403  // std::cout << " Push_back -99. " << std::endl;
404  }
405  else
406  {
407  // std::cout << " Value " << itcheck->second << std::endl;
408  values.push_back(itcheck->second);
409  }
410  }
411  filler.insert(gsfTracks,values.begin(),values.end());
412 }
413 
414 
417 {
419  fetchGsfCollection(gsfTracks,
421  iEvent);
422  unsigned ngsf=gsfTracks->size();
423  std::vector<reco::SuperClusterRef> values;
424  for(unsigned igsf=0;igsf<ngsf;++igsf)
425  {
426  reco::GsfTrackRef theTrackRef(gsfTracks, igsf);
427  std::map<reco::GsfTrackRef,reco::SuperClusterRef>::const_iterator itcheck=scMap_.find(theTrackRef);
428  if(itcheck==scMap_.end())
429  {
430  // edm::LogWarning("PFElectronTranslator") << "SCRef Map, missing GSF track ref" << std::endl;
431  values.push_back(reco::SuperClusterRef());
432  }
433  else
434  {
435  values.push_back(itcheck->second);
436  }
437  }
438  filler.insert(gsfTracks,values.begin(),values.end());
439 }
440 
441 
443  reco::SuperClusterCollection &superClusters) const
444 {
445  unsigned nGSF=GsfTrackRef_.size();
446  for(unsigned iGSF=0;iGSF<nGSF;++iGSF)
447  {
448 
449  // Computes energy position a la e/gamma
450  double sclusterE=0;
451  double posX=0.;
452  double posY=0.;
453  double posZ=0.;
454 
455  unsigned nbasics=basicClusters_[iGSF].size();
456  for(unsigned ibc=0;ibc<nbasics;++ibc)
457  {
458  double e = basicClusters_[iGSF][ibc].energy();
459  sclusterE += e;
460  posX += e * basicClusters_[iGSF][ibc].position().X();
461  posY += e * basicClusters_[iGSF][ibc].position().Y();
462  posZ += e * basicClusters_[iGSF][ibc].position().Z();
463  }
464  posX /=sclusterE;
465  posY /=sclusterE;
466  posZ /=sclusterE;
467 
468  if(pfCand[gsfPFCandidateIndex_[iGSF]].gsfTrackRef()!=GsfTrackRef_[iGSF])
469  {
470  edm::LogError("PFElectronTranslator") << " Major problem in PFElectron Translator" << std::endl;
471  }
472 
473  // compute the width
474  PFClusterWidthAlgo pfwidth(pfClusters_[iGSF]);
475 
476  double correctedEnergy=pfCand[gsfPFCandidateIndex_[iGSF]].ecalEnergy();
477  reco::SuperCluster mySuperCluster(correctedEnergy,math::XYZPoint(posX,posY,posZ));
478  // protection against empty basic cluster collection ; the value is -2 in this case
479  if(nbasics)
480  {
481 // std::cout << "SuperCluster creation; energy " << pfCand[gsfPFCandidateIndex_[iGSF]].ecalEnergy();
482 // std::cout << " " << pfCand[gsfPFCandidateIndex_[iGSF]].rawEcalEnergy() << std::endl;
483 // std::cout << "Seed energy from basic " << basicClusters_[iGSF][0].energy() << std::endl;
484  mySuperCluster.setSeed(basicClusterPtr_[iGSF][0]);
485  }
486  else
487  {
488  // std::cout << "SuperCluster creation ; seed energy " << 0 << std::endl;
489 // std::cout << "SuperCluster creation ; energy " << pfCand[gsfPFCandidateIndex_[iGSF]].ecalEnergy();
490 // std::cout << " " << pfCand[gsfPFCandidateIndex_[iGSF]].rawEcalEnergy() << std::endl;
491 // std::cout << " No seed found " << 0 << std::endl;
492 // std::cout << " MVA " << pfCand[gsfPFCandidateIndex_[iGSF]].mva_e_pi() << std::endl;
493  mySuperCluster.setSeed(reco::CaloClusterPtr());
494  }
495  // the seed should be the first basic cluster
496 
497  for(unsigned ibc=0;ibc<nbasics;++ibc)
498  {
499  mySuperCluster.addCluster(basicClusterPtr_[iGSF][ibc]);
500  // std::cout <<"Adding Ref to SC " << basicClusterPtr_[iGSF][ibc].index() << std::endl;
501  const std::vector< std::pair<DetId, float> > & v1 = basicClusters_[iGSF][ibc].hitsAndFractions();
502  // std::cout << " Number of cells " << v1.size() << std::endl;
503  for( std::vector< std::pair<DetId, float> >::const_iterator diIt = v1.begin();
504  diIt != v1.end();
505  ++diIt ) {
506  // std::cout << " Adding DetId " << (diIt->first).rawId() << " " << diIt->second << std::endl;
507  mySuperCluster.addHitAndFraction(diIt->first,diIt->second);
508  } // loop over rechits
509  }
510 
511  unsigned nps=preshowerClusterPtr_[iGSF].size();
512  for(unsigned ips=0;ips<nps;++ips)
513  {
514  mySuperCluster.addPreshowerCluster(preshowerClusterPtr_[iGSF][ips]);
515  }
516 
517 
518  // Set the preshower energy
519  mySuperCluster.setPreshowerEnergy(pfCand[gsfPFCandidateIndex_[iGSF]].pS1Energy()+
520  pfCand[gsfPFCandidateIndex_[iGSF]].pS2Energy());
521 
522  // Set the cluster width
523  mySuperCluster.setEtaWidth(pfwidth.pflowEtaWidth());
524  mySuperCluster.setPhiWidth(pfwidth.pflowPhiWidth());
525  // Force the computation of rawEnergy_ of the reco::SuperCluster
526  mySuperCluster.rawEnergy();
527  superClusters.push_back(mySuperCluster);
528  }
529 }
530 
531 
533 {
534  unsigned refindex=pfbe.index();
535  // std::cout << " N daughters " << cand.numberOfDaughters() << std::endl;
536  reco::PFCandidate::const_iterator myDaughterCandidate=cand.begin();
538 
539  for(;myDaughterCandidate!=itend;++myDaughterCandidate)
540  {
541  const reco::PFCandidate * myPFCandidate = (const reco::PFCandidate*)&*myDaughterCandidate;
542  if(myPFCandidate->elementsInBlocks().size()!=1)
543  {
544  // std::cout << " Daughter with " << myPFCandidate.elementsInBlocks().size()<< " element in block " << std::endl;
545  return cand;
546  }
547  if(myPFCandidate->elementsInBlocks()[0].second==refindex)
548  {
549  // std::cout << " Found it " << cand << std::endl;
550  return *myPFCandidate;
551  }
552  }
553  return cand;
554 }
555 
557  unsigned nGSF=GsfTrackRef_.size();
558  for(unsigned iGSF=0;iGSF<nGSF;++iGSF)
559  {
560  reco::GsfElectronCore myElectronCore(GsfTrackRef_[iGSF]);
561  myElectronCore.setCtfTrack(kfTrackRef_[iGSF],-1.);
562  std::map<reco::GsfTrackRef,reco::SuperClusterRef>::const_iterator
563  itcheck=scMap_.find(GsfTrackRef_[iGSF]);
564  if(itcheck!=scMap_.end())
565  myElectronCore.setPflowSuperCluster(itcheck->second);
566  gsfElectronCores.push_back(myElectronCore);
567  }
568 }
569 
571  unsigned size=GsfTrackRef_.size();
572 
573  for(unsigned iGSF=0;iGSF<size;++iGSF) // loop on tracks
574  {
575  edm::Ref<reco::GsfElectronCoreCollection> elecCoreRef(gsfElectronCoreHandle,iGSF);
576  gsfElectronCoreRefs_.push_back(elecCoreRef);
577  }
578 }
579 
580 void PFElectronTranslator::getAmbiguousGsfTracks(const reco::PFBlockElement & PFBE, std::vector<reco::GsfTrackRef>& tracks) const {
581  const reco::PFBlockElementGsfTrack * GsfEl = dynamic_cast<const reco::PFBlockElementGsfTrack*>(&PFBE);
582  if(GsfEl==0) return;
583  const std::vector<reco::GsfPFRecTrackRef>& ambPFRecTracks(GsfEl->GsftrackRefPF()->convBremGsfPFRecTrackRef());
584  unsigned ntracks=ambPFRecTracks.size();
585  for(unsigned it=0;it<ntracks;++it) {
586  tracks.push_back(ambPFRecTracks[it]->gsfTrackRef());
587  }
588 }
589 
590 
592  const IsolationValueMaps& isolationValues,
593  reco::GsfElectronCollection &gsfelectrons) {
594  unsigned size=GsfTrackRef_.size();
595 
596  for(unsigned iGSF=0;iGSF<size;++iGSF) // loop on tracks
597  {
598  const reco::PFCandidate& pfCandidate(pfcand[gsfPFCandidateIndex_[iGSF]]);
599  // Electron
600  reco::GsfElectron myElectron(gsfElectronCoreRefs_[iGSF]);
601  // Warning set p4 error !
602  myElectron.setP4(reco::GsfElectron::P4_PFLOW_COMBINATION, pfCandidate.p4(),pfCandidate.deltaP(), true);
603 
604  // MVA inputs
605  reco::GsfElectron::MvaInput myMvaInput;
606  myMvaInput.earlyBrem = pfCandidate.electronExtraRef()->mvaVariable(reco::PFCandidateElectronExtra::MVA_FirstBrem);
607  myMvaInput.lateBrem = pfCandidate.electronExtraRef()->mvaVariable(reco::PFCandidateElectronExtra::MVA_LateBrem);
609  myMvaInput.sigmaEtaEta = pfCandidate.electronExtraRef()->sigmaEtaEta();
610  myMvaInput.hadEnergy = pfCandidate.electronExtraRef()->hadEnergy();
611 
612  // Mustache
613  reco::Mustache myMustache;
614  myMustache.MustacheID(*(myElectron. pflowSuperCluster()), myMvaInput.nClusterOutsideMustache, myMvaInput.etOutsideMustache );
615 
616  myElectron.setMvaInput(myMvaInput);
617 
618  // MVA output
619  reco::GsfElectron::MvaOutput myMvaOutput;
620  myMvaOutput.status = pfCandidate.electronExtraRef()->electronStatus();
621  myMvaOutput.mva = pfCandidate.mva_e_pi();
622  myElectron.setMvaOutput(myMvaOutput);
623 
624  // ambiguous tracks
625  unsigned ntracks=ambiguousGsfTracks_[iGSF].size();
626  for(unsigned it=0;it<ntracks;++it) {
627  myElectron.addAmbiguousGsfTrack(ambiguousGsfTracks_[iGSF][it]);
628  }
629 
630  // isolation
631  if( isolationValues.size() != 0 ) {
633  myPFIso.chargedHadronIso=(*isolationValues[0])[CandidatePtr_[iGSF]];
634  myPFIso.photonIso=(*isolationValues[1])[CandidatePtr_[iGSF]];
635  myPFIso.neutralHadronIso=(*isolationValues[2])[CandidatePtr_[iGSF]];
636  myElectron.setPfIsolationVariables(myPFIso);
637  }
638 
639  gsfelectrons.push_back(myElectron);
640  }
641 
642 }
643 
644 
std::vector< std::vector< const reco::PFCluster * > > pfClusters_
T getParameter(std::string const &) const
std::string PFPreshowerClusterCollection_
Abstract base class for a PFBlock element (track, cluster...)
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:123
void setCtfTrack(const TrackRef &closestCtfTrack, float ctfGsfOverlap)
int i
Definition: DBlmapReader.cc:9
void setP4(P4Kind kind, const LorentzVector &p4, float p4Error, bool setCandidate)
Definition: GsfElectron.cc:178
void MustacheID(const CaloClusterPtrVector &clusters, int &nclusters, float &EoutsideMustache)
Definition: Mustache.cc:114
bool fetchCandidateCollection(edm::Handle< reco::PFCandidateCollection > &c, const edm::InputTag &tag, const edm::Event &iEvent) const
double rawEcalEnergy() const
return corrected Ecal energy
Definition: PFCandidate.h:199
void addHitAndFraction(DetId id, float fraction)
Definition: CaloCluster.h:182
virtual const LorentzVector & p4() const GCC11_FINAL
four-momentum Lorentz vector
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
virtual void produce(edm::Event &, const edm::EventSetup &) override
void createGsfElectronCoreRefs(const edm::OrphanHandle< reco::GsfElectronCoreCollection > &gsfElectronCoreHandle)
std::map< reco::GsfTrackRef, float > gsfMvaMap_
virtual const_iterator end() const
last daughter const_iterator
std::vector< edm::Handle< edm::ValueMap< double > > > IsolationValueMaps
Type type() const
std::vector< reco::CaloClusterPtrVector > basicClusterPtr_
std::vector< reco::GsfElectronCoreRef > gsfElectronCoreRefs_
double pflowPhiWidth() const
void setMvaInput(const MvaInput &mi)
Definition: GsfElectron.h:563
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:53
void createBasicClusterPtrs(const edm::OrphanHandle< reco::BasicClusterCollection > &basicClustersHandle)
bool exists(std::string const &parameterName) const
checks if a parameter exists
list elements
Definition: asciidump.py:414
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
Definition: CaloCluster.h:189
void setSeed(const CaloClusterPtr &r)
list of used xtals by DetId // now inherited by CaloCluster
Definition: SuperCluster.h:89
std::string GsfElectronCollection_
void setPfIsolationVariables(const PflowIsolationVariables &iso)
Definition: GsfElectron.h:562
void setPhiWidth(double pw)
Definition: SuperCluster.h:64
void setMvaOutput(const MvaOutput &mo)
Definition: GsfElectron.h:564
double pflowEtaWidth() const
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
void fillSCRefValueMap(edm::Event &iEvent, edm::ValueMap< reco::SuperClusterRef >::Filler &filler) const
const ElementsInBlocks & elementsInBlocks() const
Definition: PFCandidate.h:365
std::vector< PFCandidatePtr > pfCandidates(const PFJet &jet, int particleId, bool sort=true)
reco::TrackRef trackRef() const
Definition: PFCandidate.cc:349
AlgoId algo() const
algorithm identifier
Definition: CaloCluster.h:169
void setPflowSuperCluster(const SuperClusterRef &scl)
void setEtaWidth(double ew)
Definition: SuperCluster.h:65
std::vector< reco::GsfTrackRef > GsfTrackRef_
int iEvent
Definition: GenABIO.cc:243
bool isNull() const
Checks for null.
Definition: Ref.h:247
void fillMVAValueMap(edm::Event &iEvent, edm::ValueMap< float >::Filler &filler)
const CaloID & caloID() const
Definition: CaloCluster.h:180
const reco::PFCandidate & correspondingDaughterCandidate(const reco::PFCandidate &cand, const reco::PFBlockElement &pfbe) const
unsigned index() const
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
std::vector< GsfElectronCore > GsfElectronCoreCollection
std::vector< reco::PreshowerClusterCollection > preshowerClusters_
virtual const_iterator begin() const
first daughter const_iterator
virtual PFClusterRef clusterRef() const
void createSuperClusterGsfMapRefs(const edm::OrphanHandle< reco::SuperClusterCollection > &superClustersHandle)
int j
Definition: DBlmapReader.cc:9
std::vector< PreshowerCluster > PreshowerClusterCollection
collection of PreshowerCluster objects
std::vector< int > gsfPFCandidateIndex_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
edm::InputTag inputTagPFCandidateElectrons_
std::vector< reco::CandidatePtr > CandidatePtr_
edm::InputTag inputTagPFCandidates_
std::vector< std::vector< reco::GsfTrackRef > > ambiguousGsfTracks_
std::map< reco::GsfTrackRef, reco::SuperClusterRef > scMap_
edm::InputTag inputTagGSFTracks_
float mva_e_pi() const
mva for electron-pion discrimination
Definition: PFCandidate.h:286
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
double rawEnergy() const
raw uncorrected energy (sum of energies of component BasicClusters)
Definition: SuperCluster.h:49
reco::PFCandidateElectronExtraRef electronExtraRef() const
return a reference to the electron extra
Definition: PFCandidate.cc:500
DetId seed() const
return DetId of seed
Definition: CaloCluster.h:199
void fetchGsfCollection(edm::Handle< reco::GsfTrackCollection > &c, const edm::InputTag &tag, const edm::Event &iEvent) const
std::string PFBasicClusterCollection_
void createBasicCluster(const reco::PFBlockElement &, reco::BasicClusterCollection &basicClusters, std::vector< const reco::PFCluster * > &, const reco::PFCandidate &coCandidate) const
std::vector< reco::SuperClusterCollection > superClusters_
tuple tracks
Definition: testEve_cfg.py:39
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:13
std::vector< reco::CaloClusterPtrVector > preshowerClusterPtr_
void createSuperClusters(const reco::PFCandidateCollection &, reco::SuperClusterCollection &superClusters) const
void addPreshowerCluster(const CaloClusterPtr &r)
add reference to constituent BasicCluster
Definition: SuperCluster.h:98
void getAmbiguousGsfTracks(const reco::PFBlockElement &PFBE, std::vector< reco::GsfTrackRef > &) const
std::string GsfElectronCoreCollection_
std::vector< BasicCluster > BasicClusterCollection
collection of BasicCluster objects
std::vector< edm::InputTag > inputTagIsoVals_
void addCluster(const CaloClusterPtr &r)
add reference to constituent BasicCluster
Definition: SuperCluster.h:92
std::vector< reco::BasicClusterCollection > basicClusters_
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:35
std::vector< reco::TrackRef > kfTrackRef_
void createPreshowerCluster(const reco::PFBlockElement &PFBE, reco::PreshowerClusterCollection &preshowerClusters, unsigned plane) const
PFElectronTranslator(const edm::ParameterSet &)
reco::GsfTrackRef gsfTrackRef() const
Definition: PFCandidate.cc:387
GsfPFRecTrackRef GsftrackRefPF() const
std::string PFSuperClusterCollection_
void createGsfElectronCores(reco::GsfElectronCoreCollection &) const
tuple status
Definition: ntuplemaker.py:245
virtual ParticleType particleId() const
Definition: PFCandidate.h:347
void createGsfElectrons(const reco::PFCandidateCollection &, const IsolationValueMaps &isolationValues, reco::GsfElectronCollection &)
void addAmbiguousGsfTrack(const reco::GsfTrackRef &t)
Definition: GsfElectron.h:597
void createPreshowerClusterPtrs(const edm::OrphanHandle< reco::PreshowerClusterCollection > &preshowerClustersHandle)
tuple size
Write out results.
double deltaP() const
uncertainty on 3-momentum
Definition: PFCandidate.h:272
void setPreshowerEnergy(double preshowerEnergy)
Definition: SuperCluster.h:61