CMS 3D CMS Logo

PATElectronProducer.cc
Go to the documentation of this file.
1 //
3 
7 
13 
16 
19 
22 
23 
26 
31 
40 
42 
44 
46 
47 #include <vector>
48 #include <memory>
49 
50 
51 using namespace pat;
52 using namespace std;
53 
54 
56  // general configurables
57  electronToken_(consumes<edm::View<reco::GsfElectron> >(iConfig.getParameter<edm::InputTag>( "electronSource" ))),
58  hConversionsToken_(consumes<reco::ConversionCollection>(edm::InputTag("allConversions"))),
59  embedGsfElectronCore_(iConfig.getParameter<bool>( "embedGsfElectronCore" )),
60  embedGsfTrack_(iConfig.getParameter<bool>( "embedGsfTrack" )),
61  embedSuperCluster_(iConfig.getParameter<bool> ( "embedSuperCluster" )),
62  embedPflowSuperCluster_(iConfig.getParameter<bool> ( "embedPflowSuperCluster" )),
63  embedSeedCluster_(iConfig.getParameter<bool>( "embedSeedCluster" )),
64  embedBasicClusters_(iConfig.getParameter<bool>( "embedBasicClusters" )),
65  embedPreshowerClusters_(iConfig.getParameter<bool>( "embedPreshowerClusters" )),
66  embedPflowBasicClusters_(iConfig.getParameter<bool>( "embedPflowBasicClusters" )),
67  embedPflowPreshowerClusters_(iConfig.getParameter<bool>( "embedPflowPreshowerClusters" )),
68  embedTrack_(iConfig.getParameter<bool>( "embedTrack" )),
69  addGenMatch_(iConfig.getParameter<bool>( "addGenMatch" )),
70  embedGenMatch_(addGenMatch_ ? iConfig.getParameter<bool>( "embedGenMatch" ) : false),
71  embedRecHits_(iConfig.getParameter<bool>( "embedRecHits" )),
72  // pflow configurables
73  useParticleFlow_(iConfig.getParameter<bool>( "useParticleFlow" )),
74  usePfCandidateMultiMap_(iConfig.getParameter<bool>( "usePfCandidateMultiMap" )),
75  pfElecToken_(!usePfCandidateMultiMap_ ? consumes<reco::PFCandidateCollection>(iConfig.getParameter<edm::InputTag>( "pfElectronSource" )) : edm::EDGetTokenT<reco::PFCandidateCollection>()),
76  pfCandidateMapToken_(!usePfCandidateMultiMap_ ? mayConsume<edm::ValueMap<reco::PFCandidatePtr> >(iConfig.getParameter<edm::InputTag>( "pfCandidateMap" )) : edm::EDGetTokenT<edm::ValueMap<reco::PFCandidatePtr>>()),
77  pfCandidateMultiMapToken_(usePfCandidateMultiMap_ ? consumes<edm::ValueMap<std::vector<reco::PFCandidateRef>>>(iConfig.getParameter<edm::InputTag>( "pfCandidateMultiMap" )) : edm::EDGetTokenT<edm::ValueMap<std::vector<reco::PFCandidateRef>>>()),
78  embedPFCandidate_(iConfig.getParameter<bool>( "embedPFCandidate" )),
79  // mva input variables
80  reducedBarrelRecHitCollection_(iConfig.getParameter<edm::InputTag>("reducedBarrelRecHitCollection")),
81  reducedBarrelRecHitCollectionToken_(mayConsume<EcalRecHitCollection>(reducedBarrelRecHitCollection_)),
82  reducedEndcapRecHitCollection_(iConfig.getParameter<edm::InputTag>("reducedEndcapRecHitCollection")),
83  reducedEndcapRecHitCollectionToken_(mayConsume<EcalRecHitCollection>(reducedEndcapRecHitCollection_)),
84  // PFCluster Isolation maps
85  addPFClusterIso_(iConfig.getParameter<bool>("addPFClusterIso")),
86  addPuppiIsolation_(iConfig.getParameter<bool>("addPuppiIsolation")),
87  ecalPFClusterIsoT_(consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("ecalPFClusterIsoMap"))),
88  hcalPFClusterIsoT_(consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("hcalPFClusterIsoMap"))),
89  // embed high level selection variables?
90  embedHighLevelSelection_(iConfig.getParameter<bool>("embedHighLevelSelection")),
91  beamLineToken_(consumes<reco::BeamSpot>(iConfig.getParameter<edm::InputTag>("beamLineSrc"))),
92  pvToken_(mayConsume<std::vector<reco::Vertex> >(iConfig.getParameter<edm::InputTag>("pvSrc"))),
93  addElecID_(iConfig.getParameter<bool>( "addElectronID" )),
94  pTComparator_(),
95  isolator_(iConfig.exists("userIsolation") ? iConfig.getParameter<edm::ParameterSet>("userIsolation") : edm::ParameterSet(), consumesCollector(), false) ,
96  addEfficiencies_(iConfig.getParameter<bool>("addEfficiencies")),
97  addResolutions_(iConfig.getParameter<bool>( "addResolutions" )),
98  useUserData_(iConfig.exists("userData"))
99 
100 {
101  // MC matching configurables (scheduled mode)
102 
103  if (addGenMatch_) {
104  if (iConfig.existsAs<edm::InputTag>("genParticleMatch")) {
106  }
107  else {
108  genMatchTokens_ = edm::vector_transform(iConfig.getParameter<std::vector<edm::InputTag> >( "genParticleMatch" ), [this](edm::InputTag const & tag){return consumes<edm::Association<reco::GenParticleCollection> >(tag);});
109  }
110  }
111  // resolution configurables
112  if (addResolutions_) {
114  }
115  if(addPuppiIsolation_){
116  //puppi
117  PUPPIIsolation_charged_hadrons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiIsolationChargedHadrons"));
118  PUPPIIsolation_neutral_hadrons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiIsolationNeutralHadrons"));
119  PUPPIIsolation_photons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiIsolationPhotons"));
120  //puppiNoLeptons
121  PUPPINoLeptonsIsolation_charged_hadrons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiNoLeptonsIsolationChargedHadrons"));
122  PUPPINoLeptonsIsolation_neutral_hadrons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiNoLeptonsIsolationNeutralHadrons"));
123  PUPPINoLeptonsIsolation_photons_ = consumes<edm::ValueMap<float> >(iConfig.getParameter<edm::InputTag>("puppiNoLeptonsIsolationPhotons"));
124  }
125  // electron ID configurables
126  if (addElecID_) {
127  // it might be a single electron ID
128  if (iConfig.existsAs<edm::InputTag>("electronIDSource")) {
129  elecIDSrcs_.push_back(NameTag("", iConfig.getParameter<edm::InputTag>("electronIDSource")));
130  }
131  // or there might be many of them
132  if (iConfig.existsAs<edm::ParameterSet>("electronIDSources")) {
133  // please don't configure me twice
134  if (!elecIDSrcs_.empty()){
135  throw cms::Exception("Configuration") << "PATElectronProducer: you can't specify both 'electronIDSource' and 'electronIDSources'\n";
136  }
137  // read the different electron ID names
138  edm::ParameterSet idps = iConfig.getParameter<edm::ParameterSet>("electronIDSources");
139  std::vector<std::string> names = idps.getParameterNamesForType<edm::InputTag>();
140  for (std::vector<std::string>::const_iterator it = names.begin(), ed = names.end(); it != ed; ++it) {
141  elecIDSrcs_.push_back(NameTag(*it, idps.getParameter<edm::InputTag>(*it)));
142  }
143  }
144  // but in any case at least once
145  if (elecIDSrcs_.empty()){
146  throw cms::Exception("Configuration") <<
147  "PATElectronProducer: id addElectronID is true, you must specify either:\n" <<
148  "\tInputTag electronIDSource = <someTag>\n" << "or\n" <<
149  "\tPSet electronIDSources = { \n" <<
150  "\t\tInputTag <someName> = <someTag> // as many as you want \n " <<
151  "\t}\n";
152  }
153  }
154  elecIDTokens_ = edm::vector_transform(elecIDSrcs_, [this](NameTag const & tag){return mayConsume<edm::ValueMap<float> >(tag.second);});
155  // construct resolution calculator
156 
157  // // IsoDeposit configurables
158  // if (iConfig.exists("isoDeposits")) {
159  // edm::ParameterSet depconf = iConfig.getParameter<edm::ParameterSet>("isoDeposits");
160  // if (depconf.exists("tracker")) isoDepositLabels_.push_back(std::make_pair(TrackerIso, depconf.getParameter<edm::InputTag>("tracker")));
161  // if (depconf.exists("ecal")) isoDepositLabels_.push_back(std::make_pair(ECalIso, depconf.getParameter<edm::InputTag>("ecal")));
162  // if (depconf.exists("hcal")) isoDepositLabels_.push_back(std::make_pair(HCalIso, depconf.getParameter<edm::InputTag>("hcal")));
163 
164 
165  // if (depconf.exists("user")) {
166  // std::vector<edm::InputTag> userdeps = depconf.getParameter<std::vector<edm::InputTag> >("user");
167  // std::vector<edm::InputTag>::const_iterator it = userdeps.begin(), ed = userdeps.end();
168  // int key = UserBaseIso;
169  // for ( ; it != ed; ++it, ++key) {
170  // isoDepositLabels_.push_back(std::make_pair(IsolationKeys(key), *it));
171  // }
172  // }
173  // }
174  // isoDepositTokens_ = edm::vector_transform(isoDepositLabels_, [this](std::pair<IsolationKeys,edm::InputTag> const & label){return consumes<edm::ValueMap<IsoDeposit> >(label.second);});
175 
176  // for mini-iso
177  computeMiniIso_ = iConfig.getParameter<bool>("computeMiniIso");
178  miniIsoParamsE_ = iConfig.getParameter<std::vector<double> >("miniIsoParamsE");
179  miniIsoParamsB_ = iConfig.getParameter<std::vector<double> >("miniIsoParamsB");
180  if(computeMiniIso_ && (miniIsoParamsE_.size() != 9 || miniIsoParamsB_.size() != 9)){
181  throw cms::Exception("ParameterError") << "miniIsoParams must have exactly 9 elements.\n";
182  }
183  if(computeMiniIso_)
184  pcToken_ = consumes<pat::PackedCandidateCollection>(iConfig.getParameter<edm::InputTag>("pfCandsForMiniIso"));
185 
186  // read isoDeposit labels, for direct embedding
187  readIsolationLabels(iConfig, "isoDeposits", isoDepositLabels_, isoDepositTokens_);
188  // read isolation value labels, for direct embedding
190  // read isolation value labels for non PF identified electron, for direct embedding
192  // Efficiency configurables
193  if (addEfficiencies_) {
195  }
196  // Check to see if the user wants to add user data
197  if ( useUserData_ ) {
199  }
200 
201  // consistency check
202  if (useParticleFlow_ && usePfCandidateMultiMap_) throw cms::Exception("Configuration", "usePfCandidateMultiMap not supported when useParticleFlow is set to true");
203 
204  // produces vector of muons
205  produces<std::vector<Electron> >();
206  }
207 
208 
210 {
211 }
212 
213 
215 {
216  // switch off embedding (in unschedules mode)
217  if (iEvent.isRealData()){
218  addGenMatch_ = false;
219  embedGenMatch_ = false;
220  }
221 
222  edm::ESHandle<CaloTopology> theCaloTopology;
223  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
224  ecalTopology_ = & (*theCaloTopology);
225 
226  // Get the collection of electrons from the event
228  iEvent.getByToken(electronToken_, electrons);
229 
231  if(computeMiniIso_)
232  iEvent.getByToken(pcToken_, pc);
233 
234  // for additional mva variables
235  edm::InputTag reducedEBRecHitCollection(string("reducedEcalRecHitsEB"));
236  edm::InputTag reducedEERecHitCollection(string("reducedEcalRecHitsEE"));
237  //EcalClusterLazyTools lazyTools(iEvent, iSetup, reducedEBRecHitCollection, reducedEERecHitCollection);
239 
240  // for conversion veto selection
242  iEvent.getByToken(hConversionsToken_, hConversions);
243 
244  // Get the ESHandle for the transient track builder, if needed for
245  // high level selection embedding
247 
248  if (isolator_.enabled()) isolator_.beginEvent(iEvent,iSetup);
249 
251  if (resolutionLoader_.enabled()) resolutionLoader_.newEvent(iEvent, iSetup);
252 
254  for (size_t j = 0, nd = isoDepositTokens_.size(); j < nd; ++j) {
255  iEvent.getByToken(isoDepositTokens_[j], deposits[j]);
256  }
257 
259  for (size_t j = 0; j<isolationValueTokens_.size(); ++j) {
261  }
262 
264  for (size_t j = 0; j<isolationValueNoPFIdTokens_.size(); ++j) {
266  }
267 
268  // prepare the MC matching
269  GenAssociations genMatches(genMatchTokens_.size());
270  if (addGenMatch_) {
271  for (size_t j = 0, nd = genMatchTokens_.size(); j < nd; ++j) {
272  iEvent.getByToken(genMatchTokens_[j], genMatches[j]);
273  }
274  }
275 
276  // prepare ID extraction
277  std::vector<edm::Handle<edm::ValueMap<float> > > idhandles;
278  std::vector<pat::Electron::IdPair> ids;
279  if (addElecID_) {
280  idhandles.resize(elecIDSrcs_.size());
281  ids.resize(elecIDSrcs_.size());
282  for (size_t i = 0; i < elecIDSrcs_.size(); ++i) {
283  iEvent.getByToken(elecIDTokens_[i], idhandles[i]);
284  ids[i].first = elecIDSrcs_[i].first;
285  }
286  }
287 
288 
289  // prepare the high level selection:
290  // needs beamline
291  reco::TrackBase::Point beamPoint(0,0,0);
294  bool beamSpotIsValid = false;
295  bool primaryVertexIsValid = false;
296 
297  // Get the beamspot
298  edm::Handle<reco::BeamSpot> beamSpotHandle;
299  iEvent.getByToken(beamLineToken_, beamSpotHandle);
300 
301  if ( embedHighLevelSelection_ ) {
302  // Get the primary vertex
304  iEvent.getByToken( pvToken_, pvHandle );
305 
306  // This is needed by the IPTools methods from the tracking group
307  iSetup.get<TransientTrackRecord>().get("TransientTrackBuilder", trackBuilder);
308 
309  if ( pvHandle.isValid() && !pvHandle->empty() ) {
310  primaryVertex = pvHandle->at(0);
311  primaryVertexIsValid = true;
312  } else {
313  edm::LogError("DataNotAvailable")
314  << "No primary vertex available from EventSetup, not adding high level selection \n";
315  }
316  }
317  //value maps for puppi isolation
318  edm::Handle<edm::ValueMap<float>> PUPPIIsolation_charged_hadrons;
319  edm::Handle<edm::ValueMap<float>> PUPPIIsolation_neutral_hadrons;
320  edm::Handle<edm::ValueMap<float>> PUPPIIsolation_photons;
321  //value maps for puppiNoLeptons isolation
322  edm::Handle<edm::ValueMap<float>> PUPPINoLeptonsIsolation_charged_hadrons;
323  edm::Handle<edm::ValueMap<float>> PUPPINoLeptonsIsolation_neutral_hadrons;
324  edm::Handle<edm::ValueMap<float>> PUPPINoLeptonsIsolation_photons;
325  if(addPuppiIsolation_){
326  //puppi
327  iEvent.getByToken(PUPPIIsolation_charged_hadrons_, PUPPIIsolation_charged_hadrons);
328  iEvent.getByToken(PUPPIIsolation_neutral_hadrons_, PUPPIIsolation_neutral_hadrons);
329  iEvent.getByToken(PUPPIIsolation_photons_, PUPPIIsolation_photons);
330  //puppiNoLeptons
331  iEvent.getByToken(PUPPINoLeptonsIsolation_charged_hadrons_, PUPPINoLeptonsIsolation_charged_hadrons);
332  iEvent.getByToken(PUPPINoLeptonsIsolation_neutral_hadrons_, PUPPINoLeptonsIsolation_neutral_hadrons);
333  iEvent.getByToken(PUPPINoLeptonsIsolation_photons_, PUPPINoLeptonsIsolation_photons);
334  }
335 
336 
337  std::vector<Electron> * patElectrons = new std::vector<Electron>();
338 
339  if( useParticleFlow_ ) {
341  iEvent.getByToken(pfElecToken_, pfElectrons);
342  unsigned index=0;
343 
344  for( reco::PFCandidateConstIterator i = pfElectrons->begin();
345  i != pfElectrons->end(); ++i, ++index) {
346 
347  reco::PFCandidateRef pfRef(pfElectrons, index);
348  reco::PFCandidatePtr ptrToPFElectron(pfElectrons,index);
349 // reco::CandidateBaseRef pfBaseRef( pfRef );
350 
351  reco::GsfTrackRef PfTk= i->gsfTrackRef();
352 
353  bool Matched=false;
354  bool MatchedToAmbiguousGsfTrack=false;
355  for (edm::View<reco::GsfElectron>::const_iterator itElectron = electrons->begin(); itElectron != electrons->end(); ++itElectron) {
356  unsigned int idx = itElectron - electrons->begin();
357  auto elePtr = electrons -> ptrAt(idx);
358  if (Matched || MatchedToAmbiguousGsfTrack) continue;
359 
360  reco::GsfTrackRef EgTk= itElectron->gsfTrack();
361 
362  if (itElectron->gsfTrack()==i->gsfTrackRef()){
363  Matched=true;
364  }
365  else {
366  for( reco::GsfTrackRefVector::const_iterator it = itElectron->ambiguousGsfTracksBegin() ;
367  it!=itElectron->ambiguousGsfTracksEnd(); it++ ){
368  MatchedToAmbiguousGsfTrack |= (bool)(i->gsfTrackRef()==(*it));
369  }
370  }
371 
372  if (Matched || MatchedToAmbiguousGsfTrack){
373 
374  // ptr needed for finding the matched gen particle
375  reco::CandidatePtr ptrToGsfElectron(electrons,idx);
376 
377  // ref to base needed for the construction of the pat object
378  const edm::RefToBase<reco::GsfElectron>& elecsRef = electrons->refAt(idx);
379  Electron anElectron(elecsRef);
380  anElectron.setPFCandidateRef( pfRef );
381  if (addPuppiIsolation_) {
382  anElectron.setIsolationPUPPI((*PUPPIIsolation_charged_hadrons)[elePtr], (*PUPPIIsolation_neutral_hadrons)[elePtr], (*PUPPIIsolation_photons)[elePtr]);
383  anElectron.setIsolationPUPPINoLeptons((*PUPPINoLeptonsIsolation_charged_hadrons)[elePtr], (*PUPPINoLeptonsIsolation_neutral_hadrons)[elePtr], (*PUPPINoLeptonsIsolation_photons)[elePtr]);
384  }
385  else {
386  anElectron.setIsolationPUPPI(-999., -999.,-999.);
387  anElectron.setIsolationPUPPINoLeptons(-999., -999.,-999.);
388  }
389 
390  //it should be always true when particleFlow electrons are used.
391  anElectron.setIsPF( true );
392 
393  if( embedPFCandidate_ ) anElectron.embedPFCandidate();
394 
395  if ( useUserData_ ) {
396  userDataHelper_.add( anElectron, iEvent, iSetup );
397  }
398 
399  double ip3d = -999; // for mva variable
400 
401  // embed high level selection
402  if ( embedHighLevelSelection_ ) {
403  // get the global track
404  const reco::GsfTrackRef& track = PfTk;
405 
406  // Make sure the collection it points to is there
407  if ( track.isNonnull() && track.isAvailable() ) {
408 
409  reco::TransientTrack tt = trackBuilder->build(track);
410  embedHighLevel( anElectron,
411  track,
412  tt,
413  primaryVertex,
414  primaryVertexIsValid,
415  beamSpot,
416  beamSpotIsValid );
417 
418  std::pair<bool,Measurement1D> ip3dpv = IPTools::absoluteImpactParameter3D(tt, primaryVertex);
419  ip3d = ip3dpv.second.value(); // for mva variable
420  }
421  }
422 
423  //Electron Id
424 
425  if (addElecID_) {
426  //STANDARD EL ID
427  for (size_t i = 0; i < elecIDSrcs_.size(); ++i) {
428  ids[i].second = (*idhandles[i])[elecsRef];
429  }
430  //SPECIFIC PF ID
431  ids.push_back(std::make_pair("pf_evspi",pfRef->mva_e_pi()));
432  ids.push_back(std::make_pair("pf_evsmu",pfRef->mva_e_mu()));
433  anElectron.setElectronIDs(ids);
434  }
435 
436  // add missing mva variables
437  std::vector<float> vCov = lazyTools.localCovariances(*( itElectron->superCluster()->seed()));
438  anElectron.setMvaVariables(vCov[1], ip3d);
439  // PFClusterIso
440  if (addPFClusterIso_) {
441  // Get PFCluster Isolation
442  edm::Handle<edm::ValueMap<float> > ecalPFClusterIsoMapH;
443  iEvent.getByToken(ecalPFClusterIsoT_, ecalPFClusterIsoMapH);
444  edm::Handle<edm::ValueMap<float> > hcalPFClusterIsoMapH;
445  iEvent.getByToken(hcalPFClusterIsoT_, hcalPFClusterIsoMapH);
446 
447  anElectron.setEcalPFClusterIso((*ecalPFClusterIsoMapH)[elecsRef]);
448  anElectron.setHcalPFClusterIso((*hcalPFClusterIsoMapH)[elecsRef]);
449  } else {
450  anElectron.setEcalPFClusterIso(-999.);
451  anElectron.setHcalPFClusterIso(-999.);
452  }
453 
454  std::vector<DetId> selectedCells;
455  bool barrel = itElectron->isEB();
456  //loop over sub clusters
457  if (embedBasicClusters_) {
458  for (reco::CaloCluster_iterator clusIt = itElectron->superCluster()->clustersBegin(); clusIt!=itElectron->superCluster()->clustersEnd(); ++clusIt) {
459  //get seed (max energy xtal)
460  DetId seed = lazyTools.getMaximum(**clusIt).first;
461  //get all xtals in 5x5 window around the seed
462  std::vector<DetId> dets5x5 = (barrel) ? ecalTopology_->getSubdetectorTopology(DetId::Ecal,EcalBarrel)->getWindow(seed,5,5):
464  selectedCells.insert(selectedCells.end(), dets5x5.begin(), dets5x5.end());
465 
466  //get all xtals belonging to cluster
467  for (const std::pair<DetId, float> &hit : (*clusIt)->hitsAndFractions()) {
468  selectedCells.push_back(hit.first);
469  }
470  }
471  }
472 
473  if (embedPflowBasicClusters_ && itElectron->parentSuperCluster().isNonnull()) {
474  for (reco::CaloCluster_iterator clusIt = itElectron->parentSuperCluster()->clustersBegin(); clusIt!=itElectron->parentSuperCluster()->clustersEnd(); ++clusIt) {
475  //get seed (max energy xtal)
476  DetId seed = lazyTools.getMaximum(**clusIt).first;
477  //get all xtals in 5x5 window around the seed
478  std::vector<DetId> dets5x5 = (barrel) ? ecalTopology_->getSubdetectorTopology(DetId::Ecal,EcalBarrel)->getWindow(seed,5,5):
480  selectedCells.insert(selectedCells.end(), dets5x5.begin(), dets5x5.end());
481 
482  //get all xtals belonging to cluster
483  for (const std::pair<DetId, float> &hit : (*clusIt)->hitsAndFractions()) {
484  selectedCells.push_back(hit.first);
485  }
486  }
487  }
488 
489  //remove duplicates
490  std::sort(selectedCells.begin(),selectedCells.end());
491  std::unique(selectedCells.begin(),selectedCells.end());
492 
493 
494  // Retrieve the corresponding RecHits
495 
497  if(barrel)
499  else
501 
502  EcalRecHitCollection selectedRecHits;
503  const EcalRecHitCollection *recHits = rechitsH.product();
504 
505  unsigned nSelectedCells = selectedCells.size();
506  for (unsigned icell = 0 ; icell < nSelectedCells ; ++icell) {
507  EcalRecHitCollection::const_iterator it = recHits->find( selectedCells[icell] );
508  if ( it != recHits->end() ) {
509  selectedRecHits.push_back(*it);
510  }
511  }
512  selectedRecHits.sort();
513  if (embedRecHits_) anElectron.embedRecHits(& selectedRecHits);
514 
515  // set conversion veto selection
516  bool passconversionveto = false;
517  if( hConversions.isValid()){
518  // this is recommended method
519  passconversionveto = !ConversionTools::hasMatchedConversion( *itElectron, hConversions, beamSpotHandle->position());
520  }else{
521  // use missing hits without vertex fit method
522  passconversionveto = itElectron->gsfTrack()->hitPattern().numberOfLostHits(reco::HitPattern::MISSING_INNER_HITS) < 1;
523  }
524 
525  anElectron.setPassConversionVeto( passconversionveto );
526 
527 
528 // fillElectron(anElectron,elecsRef,pfBaseRef,
529 // genMatches, deposits, isolationValues);
530 
531  //COLIN small warning !
532  // we are currently choosing to take the 4-momentum of the PFCandidate;
533  // the momentum of the GsfElectron is saved though
534  // we must therefore match the GsfElectron.
535  // because of this, we should not change the source of the electron matcher
536  // to the collection of PFElectrons in the python configuration
537  // I don't know what to do with the efficiencyLoader, since I don't know
538  // what this class is for.
539  fillElectron2( anElectron,
540  ptrToPFElectron,
541  ptrToGsfElectron,
542  ptrToGsfElectron,
543  genMatches, deposits, isolationValues );
544 
545  //COLIN need to use fillElectron2 in the non-pflow case as well, and to test it.
546 
547  if(computeMiniIso_)
548  setElectronMiniIso(anElectron, pc.product());
549 
550  patElectrons->push_back(anElectron);
551  }
552  }
553  //if( !Matched && !MatchedToAmbiguousGsfTrack) std::cout << "!!!!A pf electron could not be matched to a gsf!!!!" << std::endl;
554  }
555  }
556 
557  else{
561  bool pfCandsPresent = false, valMapPresent = false;
563  iEvent.getByToken(pfCandidateMultiMapToken_, ValMultiMapH);
564  } else {
565  pfCandsPresent = iEvent.getByToken(pfElecToken_, pfElectrons);
566  valMapPresent = iEvent.getByToken(pfCandidateMapToken_,ValMapH);
567  }
568 
569  for (edm::View<reco::GsfElectron>::const_iterator itElectron = electrons->begin(); itElectron != electrons->end(); ++itElectron) {
570  // construct the Electron from the ref -> save ref to original object
571  //FIXME: looks like a lot of instances could be turned into const refs
572  unsigned int idx = itElectron - electrons->begin();
573  edm::RefToBase<reco::GsfElectron> elecsRef = electrons->refAt(idx);
574  reco::CandidateBaseRef elecBaseRef(elecsRef);
575  Electron anElectron(elecsRef);
576  auto elePtr = electrons -> ptrAt(idx);
577 
578  // Is this GsfElectron also identified as an e- in the particle flow?
579  bool pfId = false;
580 
582  for (const reco::PFCandidateRef& pf : (*ValMultiMapH)[elePtr]) {
583  if (pf->particleId() == reco::PFCandidate::e) {
584  pfId = true;
585  anElectron.setPFCandidateRef( pf );
586  break;
587  }
588  }
589  } else if ( pfCandsPresent ) {
590  // PF electron collection not available.
591  const reco::GsfTrackRef& trkRef = itElectron->gsfTrack();
592  int index = 0;
593  for( reco::PFCandidateConstIterator ie = pfElectrons->begin();
594  ie != pfElectrons->end(); ++ie, ++index) {
595  if(ie->particleId()!=reco::PFCandidate::e) continue;
596  const reco::GsfTrackRef& pfTrkRef= ie->gsfTrackRef();
597  if( trkRef == pfTrkRef ) {
598  pfId = true;
599  reco::PFCandidateRef pfRef(pfElectrons, index);
600  anElectron.setPFCandidateRef( pfRef );
601  break;
602  }
603  }
604  }
605  else if( valMapPresent ) {
606  // use value map if PF collection not available
607  const edm::ValueMap<reco::PFCandidatePtr> & myValMap(*ValMapH);
608  // Get the PFCandidate
609  const reco::PFCandidatePtr& pfElePtr(myValMap[elecsRef]);
610  pfId= pfElePtr.isNonnull();
611  }
612  // set PFId function
613  anElectron.setIsPF( pfId );
614 
615  // add resolution info
616 
617  // Isolation
618  if (isolator_.enabled()) {
619  isolator_.fill(*electrons, idx, isolatorTmpStorage_);
620  typedef pat::helper::MultiIsolator::IsolationValuePairs IsolationValuePairs;
621  // better to loop backwards, so the vector is resized less times
622  for (IsolationValuePairs::const_reverse_iterator it = isolatorTmpStorage_.rbegin(), ed = isolatorTmpStorage_.rend(); it != ed; ++it) {
623  anElectron.setIsolation(it->first, it->second);
624  }
625  }
626 
627  for (size_t j = 0, nd = deposits.size(); j < nd; ++j) {
628  anElectron.setIsoDeposit(isoDepositLabels_[j].first, (*deposits[j])[elecsRef]);
629  }
630 
631  // add electron ID info
632  if (addElecID_) {
633  for (size_t i = 0; i < elecIDSrcs_.size(); ++i) {
634  ids[i].second = (*idhandles[i])[elecsRef];
635  }
636  anElectron.setElectronIDs(ids);
637  }
638 
639 
640  if ( useUserData_ ) {
641  userDataHelper_.add( anElectron, iEvent, iSetup );
642  }
643 
644 
645  double ip3d = -999; //for mva variable
646 
647  // embed high level selection
648  if ( embedHighLevelSelection_ ) {
649  // get the global track
650  reco::GsfTrackRef track = itElectron->gsfTrack();
651 
652  // Make sure the collection it points to is there
653  if ( track.isNonnull() && track.isAvailable() ) {
654 
655  reco::TransientTrack tt = trackBuilder->build(track);
656  embedHighLevel( anElectron,
657  track,
658  tt,
659  primaryVertex,
660  primaryVertexIsValid,
661  beamSpot,
662  beamSpotIsValid );
663 
664  std::pair<bool,Measurement1D> ip3dpv = IPTools::absoluteImpactParameter3D(tt, primaryVertex);
665  ip3d = ip3dpv.second.value(); // for mva variable
666 
667  }
668  }
669 
670  // add mva variables
671  std::vector<float> vCov = lazyTools.localCovariances(*( itElectron->superCluster()->seed()));
672  anElectron.setMvaVariables(vCov[1], ip3d);
673  // PFCluster Isolation
674  if (addPFClusterIso_) {
675  // Get PFCluster Isolation
676  edm::Handle<edm::ValueMap<float> > ecalPFClusterIsoMapH;
677  iEvent.getByToken(ecalPFClusterIsoT_, ecalPFClusterIsoMapH);
678  edm::Handle<edm::ValueMap<float> > hcalPFClusterIsoMapH;
679  iEvent.getByToken(hcalPFClusterIsoT_, hcalPFClusterIsoMapH);
680 
681  anElectron.setEcalPFClusterIso((*ecalPFClusterIsoMapH)[elecsRef]);
682  anElectron.setHcalPFClusterIso((*hcalPFClusterIsoMapH)[elecsRef]);
683  } else {
684  anElectron.setEcalPFClusterIso(-999.);
685  anElectron.setHcalPFClusterIso(-999.);
686  }
687  if (addPuppiIsolation_) {
688  anElectron.setIsolationPUPPI((*PUPPIIsolation_charged_hadrons)[elePtr], (*PUPPIIsolation_neutral_hadrons)[elePtr], (*PUPPIIsolation_photons)[elePtr]);
689  anElectron.setIsolationPUPPINoLeptons((*PUPPINoLeptonsIsolation_charged_hadrons)[elePtr], (*PUPPINoLeptonsIsolation_neutral_hadrons)[elePtr], (*PUPPINoLeptonsIsolation_photons)[elePtr]);
690  }
691  else {
692  anElectron.setIsolationPUPPI(-999., -999.,-999.);
693  anElectron.setIsolationPUPPINoLeptons(-999., -999.,-999.);
694  }
695 
696  std::vector<DetId> selectedCells;
697  bool barrel = itElectron->isEB();
698  //loop over sub clusters
699  if (embedBasicClusters_) {
700  for (reco::CaloCluster_iterator clusIt = itElectron->superCluster()->clustersBegin(); clusIt!=itElectron->superCluster()->clustersEnd(); ++clusIt) {
701  //get seed (max energy xtal)
702  DetId seed = lazyTools.getMaximum(**clusIt).first;
703  //get all xtals in 5x5 window around the seed
704  std::vector<DetId> dets5x5 = (barrel) ? ecalTopology_->getSubdetectorTopology(DetId::Ecal,EcalBarrel)->getWindow(seed,5,5):
706  selectedCells.insert(selectedCells.end(), dets5x5.begin(), dets5x5.end());
707 
708  //get all xtals belonging to cluster
709  for (const std::pair<DetId, float> &hit : (*clusIt)->hitsAndFractions()) {
710  selectedCells.push_back(hit.first);
711  }
712  }
713  }
714 
715  if (embedPflowBasicClusters_ && itElectron->parentSuperCluster().isNonnull()) {
716  for (reco::CaloCluster_iterator clusIt = itElectron->parentSuperCluster()->clustersBegin(); clusIt!=itElectron->parentSuperCluster()->clustersEnd(); ++clusIt) {
717  //get seed (max energy xtal)
718  DetId seed = lazyTools.getMaximum(**clusIt).first;
719  //get all xtals in 5x5 window around the seed
720  std::vector<DetId> dets5x5 = (barrel) ? ecalTopology_->getSubdetectorTopology(DetId::Ecal,EcalBarrel)->getWindow(seed,5,5):
722  selectedCells.insert(selectedCells.end(), dets5x5.begin(), dets5x5.end());
723 
724  //get all xtals belonging to cluster
725  for (const std::pair<DetId, float> &hit : (*clusIt)->hitsAndFractions()) {
726  selectedCells.push_back(hit.first);
727  }
728  }
729  }
730 
731  //remove duplicates
732  std::sort(selectedCells.begin(),selectedCells.end());
733  std::unique(selectedCells.begin(),selectedCells.end());
734 
735  // Retrieve the corresponding RecHits
736 
738  if(barrel)
740  else
742 
743  EcalRecHitCollection selectedRecHits;
744  const EcalRecHitCollection *recHits = rechitsH.product();
745 
746  unsigned nSelectedCells = selectedCells.size();
747  for (unsigned icell = 0 ; icell < nSelectedCells ; ++icell) {
748  EcalRecHitCollection::const_iterator it = recHits->find( selectedCells[icell] );
749  if ( it != recHits->end() ) {
750  selectedRecHits.push_back(*it);
751  }
752  }
753  selectedRecHits.sort();
754  if (embedRecHits_) anElectron.embedRecHits(& selectedRecHits);
755 
756  // set conversion veto selection
757  bool passconversionveto = false;
758  if( hConversions.isValid()){
759  // this is recommended method
760  passconversionveto = !ConversionTools::hasMatchedConversion( *itElectron, hConversions, beamSpotHandle->position());
761  }else{
762  // use missing hits without vertex fit method
763  passconversionveto = itElectron->gsfTrack()->hitPattern().numberOfLostHits(reco::HitPattern::MISSING_INNER_HITS) < 1;
764  }
765  anElectron.setPassConversionVeto( passconversionveto );
766 
767  // add sel to selected
768  fillElectron( anElectron, elecsRef,elecBaseRef,
769  genMatches, deposits, pfId, isolationValues, isolationValuesNoPFId);
770 
771  if(computeMiniIso_)
772  setElectronMiniIso(anElectron, pc.product());
773 
774  patElectrons->push_back(anElectron);
775  }
776  }
777 
778  // sort electrons in pt
779  std::sort(patElectrons->begin(), patElectrons->end(), pTComparator_);
780 
781  // add the electrons to the event output
782  std::unique_ptr<std::vector<Electron> > ptr(patElectrons);
783  iEvent.put(std::move(ptr));
784 
785  // clean up
787 
788 }
789 
791  const edm::RefToBase<reco::GsfElectron>& elecRef,
792  const reco::CandidateBaseRef& baseRef,
793  const GenAssociations& genMatches,
794  const IsoDepositMaps& deposits,
795  const bool pfId,
798  ) const {
799 
800  //COLIN: might want to use the PFCandidate 4-mom. Which one is in use now?
801  // if (useParticleFlow_)
802  // aMuon.setP4( aMuon.pfCandidateRef()->p4() );
803 
804  //COLIN:
805  //In the embedding case, the reference cannot be used to look into a value map.
806  //therefore, one has to had the PFCandidateRef to this function, which becomes a bit
807  //too much specific.
808 
809  // in fact, this function needs a baseref or ptr for genmatch
810  // and a baseref or ptr for isodeposits and isolationvalues.
811  // baseref is not needed
812  // the ptrForIsolation and ptrForMatching should be defined upstream.
813 
814  // is the concrete elecRef needed for the efficiency loader? what is this loader?
815  // how can we make it compatible with the particle flow electrons?
816 
818  if (embedGsfTrack_) anElectron.embedGsfTrack();
819  if (embedSuperCluster_) anElectron.embedSuperCluster();
821  if (embedSeedCluster_) anElectron.embedSeedCluster();
822  if (embedBasicClusters_) anElectron.embedBasicClusters();
826  if (embedTrack_) anElectron.embedTrack();
827 
828  // store the match to the generated final state muons
829  if (addGenMatch_) {
830  for(size_t i = 0, n = genMatches.size(); i < n; ++i) {
831  if(useParticleFlow_) {
832  reco::GenParticleRef genElectron = (*genMatches[i])[anElectron.pfCandidateRef()];
833  anElectron.addGenParticleRef(genElectron);
834  }
835  else {
836  reco::GenParticleRef genElectron = (*genMatches[i])[elecRef];
837  anElectron.addGenParticleRef(genElectron);
838  }
839  }
840  if (embedGenMatch_) anElectron.embedGenParticle();
841  }
842 
843  if (efficiencyLoader_.enabled()) {
844  efficiencyLoader_.setEfficiencies( anElectron, elecRef );
845  }
846 
847  if (resolutionLoader_.enabled()) {
848  resolutionLoader_.setResolutions(anElectron);
849  }
850 
851  for (size_t j = 0, nd = deposits.size(); j < nd; ++j) {
852  if(useParticleFlow_) {
853 
854  reco::PFCandidateRef pfcandref = anElectron.pfCandidateRef();
855  assert(!pfcandref.isNull());
856  reco::CandidatePtr source = pfcandref->sourceCandidatePtr(0);
857  anElectron.setIsoDeposit(isoDepositLabels_[j].first,
858  (*deposits[j])[source]);
859  }
860  else
861  anElectron.setIsoDeposit(isoDepositLabels_[j].first,
862  (*deposits[j])[elecRef]);
863  }
864 
865  for (size_t j = 0; j<isolationValues.size(); ++j) {
866  if(useParticleFlow_) {
867  reco::CandidatePtr source = anElectron.pfCandidateRef()->sourceCandidatePtr(0);
869  (*isolationValues[j])[source]);
870  }
871  else
872  if(pfId){
873  anElectron.setIsolation(isolationValueLabels_[j].first,(*isolationValues[j])[elecRef]);
874  }
875  }
876 
877  //for electrons not identified as PF electrons
878  for (size_t j = 0; j<isolationValuesNoPFId.size(); ++j) {
879  if( !pfId) {
880  anElectron.setIsolation(isolationValueLabelsNoPFId_[j].first,(*isolationValuesNoPFId[j])[elecRef]);
881  }
882  }
883 
884 }
885 
887  const reco::CandidatePtr& candPtrForIsolation,
888  const reco::CandidatePtr& candPtrForGenMatch,
889  const reco::CandidatePtr& candPtrForLoader,
890  const GenAssociations& genMatches,
891  const IsoDepositMaps& deposits,
892  const IsolationValueMaps& isolationValues) const {
893 
894  //COLIN/Florian: use the PFCandidate 4-mom.
895  anElectron.setEcalDrivenMomentum(anElectron.p4()) ;
896  anElectron.setP4( anElectron.pfCandidateRef()->p4() );
897 
898 
899  // is the concrete elecRef needed for the efficiency loader? what is this loader?
900  // how can we make it compatible with the particle flow electrons?
901 
903  if (embedGsfTrack_) anElectron.embedGsfTrack();
904  if (embedSuperCluster_) anElectron.embedSuperCluster();
906  if (embedSeedCluster_) anElectron.embedSeedCluster();
907  if (embedBasicClusters_) anElectron.embedBasicClusters();
911  if (embedTrack_) anElectron.embedTrack();
912 
913  // store the match to the generated final state muons
914 
915  if (addGenMatch_) {
916  for(size_t i = 0, n = genMatches.size(); i < n; ++i) {
917  reco::GenParticleRef genElectron = (*genMatches[i])[candPtrForGenMatch];
918  anElectron.addGenParticleRef(genElectron);
919  }
920  if (embedGenMatch_) anElectron.embedGenParticle();
921  }
922 
923  //COLIN what's this? does it have to be GsfElectron specific?
924  if (efficiencyLoader_.enabled()) {
925  efficiencyLoader_.setEfficiencies( anElectron, candPtrForLoader );
926  }
927 
928  if (resolutionLoader_.enabled()) {
929  resolutionLoader_.setResolutions(anElectron);
930  }
931 
932  for (size_t j = 0, nd = deposits.size(); j < nd; ++j) {
936  deposits[j]->contains(candPtrForGenMatch.id())) {
937  anElectron.setIsoDeposit(isoDepositLabels_[j].first,
938  (*deposits[j])[candPtrForGenMatch]);
939  }
940  else if (deposits[j]->contains(candPtrForIsolation.id())) {
941  anElectron.setIsoDeposit(isoDepositLabels_[j].first,
942  (*deposits[j])[candPtrForIsolation]);
943  }
944  else {
945  anElectron.setIsoDeposit(isoDepositLabels_[j].first,
946  (*deposits[j])[candPtrForIsolation->sourceCandidatePtr(0)]);
947  }
948  }
949 
950  for (size_t j = 0; j<isolationValues.size(); ++j) {
954  isolationValues[j]->contains(candPtrForGenMatch.id())) {
956  (*isolationValues[j])[candPtrForGenMatch]);
957  }
958  else if (isolationValues[j]->contains(candPtrForIsolation.id())) {
960  (*isolationValues[j])[candPtrForIsolation]);
961  }
962  else {
964  (*isolationValues[j])[candPtrForIsolation->sourceCandidatePtr(0)]);
965  }
966  }
967 }
968 
970 {
971  pat::PFIsolation miniiso;
972  if(anElectron.isEE())
973  miniiso = pat::getMiniPFIsolation(pc, anElectron.p4(),
974  miniIsoParamsE_[0], miniIsoParamsE_[1], miniIsoParamsE_[2],
975  miniIsoParamsE_[3], miniIsoParamsE_[4], miniIsoParamsE_[5],
976  miniIsoParamsE_[6], miniIsoParamsE_[7], miniIsoParamsE_[8]);
977  else
978  miniiso = pat::getMiniPFIsolation(pc, anElectron.p4(),
979  miniIsoParamsB_[0], miniIsoParamsB_[1], miniIsoParamsB_[2],
980  miniIsoParamsB_[3], miniIsoParamsB_[4], miniIsoParamsB_[5],
981  miniIsoParamsB_[6], miniIsoParamsB_[7], miniIsoParamsB_[8]);
982  anElectron.setMiniPFIsolation(miniiso);
983 
984 }
985 
986 // ParameterSet description for module
988 {
990  iDesc.setComment("PAT electron producer module");
991 
992  // input source
993  iDesc.add<edm::InputTag>("pfCandidateMap", edm::InputTag("no default"))->setComment("input collection");
994  iDesc.add<edm::InputTag>("electronSource", edm::InputTag("no default"))->setComment("input collection");
995 
996  iDesc.ifValue(edm::ParameterDescription<bool>("addPFClusterIso", false, true),
997  true >> (edm::ParameterDescription<edm::InputTag>("ecalPFClusterIsoMap", edm::InputTag("electronEcalPFClusterIsolationProducer"), true) and
998  edm::ParameterDescription<edm::InputTag>("hcalPFClusterIsoMap", edm::InputTag("electronHcalPFClusterIsolationProducer"),true)) or
999  false >> (edm::ParameterDescription<edm::InputTag>("ecalPFClusterIsoMap", edm::InputTag(""), true) and
1000  edm::ParameterDescription<edm::InputTag>("hcalPFClusterIsoMap", edm::InputTag(""),true)));
1001 
1002  iDesc.ifValue(edm::ParameterDescription<bool>("addPuppiIsolation", false, true),
1003  true >> (edm::ParameterDescription<edm::InputTag>("puppiIsolationChargedHadrons", edm::InputTag("egmElectronPUPPIIsolation","h+-DR030-BarVeto000-EndVeto001"), true) and
1004  edm::ParameterDescription<edm::InputTag>("puppiIsolationNeutralHadrons", edm::InputTag("egmElectronPUPPIIsolation","h0-DR030-BarVeto000-EndVeto000"), true) and
1005  edm::ParameterDescription<edm::InputTag>("puppiIsolationPhotons", edm::InputTag("egmElectronPUPPIIsolation","gamma-DR030-BarVeto000-EndVeto008"), true) and
1006  edm::ParameterDescription<edm::InputTag>("puppiNoLeptonsIsolationChargedHadrons", edm::InputTag("egmElectronPUPPINoLeptonsIsolation","gamma-DR030-BarVeto000-EndVeto008"), true) and
1007  edm::ParameterDescription<edm::InputTag>("puppiNoLeptonsIsolationNeutralHadrons", edm::InputTag("egmElectronPUPPINoLeptonsIsolation","gamma-DR030-BarVeto000-EndVeto008"), true) and
1008  edm::ParameterDescription<edm::InputTag>("puppiNoLeptonsIsolationPhotons", edm::InputTag("egmElectronPUPPINoLeptonsIsolation","gamma-DR030-BarVeto000-EndVeto008"), true)) or
1009  false >> edm::EmptyGroupDescription());
1010 
1011 
1012  // embedding
1013  iDesc.add<bool>("embedGsfElectronCore", true)->setComment("embed external gsf electron core");
1014  iDesc.add<bool>("embedGsfTrack", true)->setComment("embed external gsf track");
1015  iDesc.add<bool>("embedSuperCluster", true)->setComment("embed external super cluster");
1016  iDesc.add<bool>("embedPflowSuperCluster", true)->setComment("embed external super cluster");
1017  iDesc.add<bool>("embedSeedCluster", true)->setComment("embed external seed cluster");
1018  iDesc.add<bool>("embedBasicClusters", true)->setComment("embed external basic clusters");
1019  iDesc.add<bool>("embedPreshowerClusters", true)->setComment("embed external preshower clusters");
1020  iDesc.add<bool>("embedPflowBasicClusters", true)->setComment("embed external pflow basic clusters");
1021  iDesc.add<bool>("embedPflowPreshowerClusters", true)->setComment("embed external pflow preshower clusters");
1022  iDesc.add<bool>("embedTrack", false)->setComment("embed external track");
1023  iDesc.add<bool>("embedRecHits", true)->setComment("embed external RecHits");
1024 
1025  // pf specific parameters
1026  iDesc.add<edm::InputTag>("pfElectronSource", edm::InputTag("pfElectrons"))->setComment("particle flow input collection");
1027  auto && usePfCandidateMultiMap = edm::ParameterDescription<bool>("usePfCandidateMultiMap", false, true);
1028  usePfCandidateMultiMap.setComment("take ParticleFlow candidates from pfCandidateMultiMap instead of matching to pfElectrons by Gsf track reference");
1030  true >> edm::ParameterDescription<edm::InputTag>("pfCandidateMultiMap", true) or
1031  false >> edm::EmptyGroupDescription());
1032  iDesc.add<bool>("useParticleFlow", false)->setComment("whether to use particle flow or not");
1033  iDesc.add<bool>("embedPFCandidate", false)->setComment("embed external particle flow object");
1034 
1035  // MC matching configurables
1036  iDesc.add<bool>("addGenMatch", true)->setComment("add MC matching");
1037  iDesc.add<bool>("embedGenMatch", false)->setComment("embed MC matched MC information");
1038  std::vector<edm::InputTag> emptySourceVector;
1039  iDesc.addNode( edm::ParameterDescription<edm::InputTag>("genParticleMatch", edm::InputTag(), true) xor
1040  edm::ParameterDescription<std::vector<edm::InputTag> >("genParticleMatch", emptySourceVector, true)
1041  )->setComment("input with MC match information");
1042 
1043  // electron ID configurables
1044  iDesc.add<bool>("addElectronID",true)->setComment("add electron ID variables");
1045  edm::ParameterSetDescription electronIDSourcesPSet;
1046  electronIDSourcesPSet.setAllowAnything();
1047  iDesc.addNode( edm::ParameterDescription<edm::InputTag>("electronIDSource", edm::InputTag(), true) xor
1048  edm::ParameterDescription<edm::ParameterSetDescription>("electronIDSources", electronIDSourcesPSet, true)
1049  )->setComment("input with electron ID variables");
1050 
1051 
1052  // mini-iso
1053  iDesc.add<bool>("computeMiniIso", false)->setComment("whether or not to compute and store electron mini-isolation");
1054  iDesc.add<edm::InputTag>("pfCandsForMiniIso", edm::InputTag("packedPFCandidates"))->setComment("collection to use to compute mini-iso");
1055  iDesc.add<std::vector<double> >("miniIsoParamsE", std::vector<double>())->setComment("mini-iso parameters to use for endcap electrons");
1056  iDesc.add<std::vector<double> >("miniIsoParamsB", std::vector<double>())->setComment("mini-iso parameters to use for barrel electrons");
1057 
1058  // IsoDeposit configurables
1059  edm::ParameterSetDescription isoDepositsPSet;
1060  isoDepositsPSet.addOptional<edm::InputTag>("tracker");
1061  isoDepositsPSet.addOptional<edm::InputTag>("ecal");
1062  isoDepositsPSet.addOptional<edm::InputTag>("hcal");
1063  isoDepositsPSet.addOptional<edm::InputTag>("pfAllParticles");
1064  isoDepositsPSet.addOptional<edm::InputTag>("pfChargedHadrons");
1065  isoDepositsPSet.addOptional<edm::InputTag>("pfChargedAll");
1066  isoDepositsPSet.addOptional<edm::InputTag>("pfPUChargedHadrons");
1067  isoDepositsPSet.addOptional<edm::InputTag>("pfNeutralHadrons");
1068  isoDepositsPSet.addOptional<edm::InputTag>("pfPhotons");
1069  isoDepositsPSet.addOptional<std::vector<edm::InputTag> >("user");
1070  iDesc.addOptional("isoDeposits", isoDepositsPSet);
1071 
1072  // isolation values configurables
1073  edm::ParameterSetDescription isolationValuesPSet;
1074  isolationValuesPSet.addOptional<edm::InputTag>("tracker");
1075  isolationValuesPSet.addOptional<edm::InputTag>("ecal");
1076  isolationValuesPSet.addOptional<edm::InputTag>("hcal");
1077  isolationValuesPSet.addOptional<edm::InputTag>("pfAllParticles");
1078  isolationValuesPSet.addOptional<edm::InputTag>("pfChargedHadrons");
1079  isolationValuesPSet.addOptional<edm::InputTag>("pfChargedAll");
1080  isolationValuesPSet.addOptional<edm::InputTag>("pfPUChargedHadrons");
1081  isolationValuesPSet.addOptional<edm::InputTag>("pfNeutralHadrons");
1082  isolationValuesPSet.addOptional<edm::InputTag>("pfPhotons");
1083  isolationValuesPSet.addOptional<std::vector<edm::InputTag> >("user");
1084  iDesc.addOptional("isolationValues", isolationValuesPSet);
1085 
1086  // isolation values configurables
1087  edm::ParameterSetDescription isolationValuesNoPFIdPSet;
1088  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("tracker");
1089  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("ecal");
1090  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("hcal");
1091  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfAllParticles");
1092  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfChargedHadrons");
1093  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfChargedAll");
1094  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfPUChargedHadrons");
1095  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfNeutralHadrons");
1096  isolationValuesNoPFIdPSet.addOptional<edm::InputTag>("pfPhotons");
1097  isolationValuesNoPFIdPSet.addOptional<std::vector<edm::InputTag> >("user");
1098  iDesc.addOptional("isolationValuesNoPFId", isolationValuesNoPFIdPSet);
1099 
1100  // Efficiency configurables
1101  edm::ParameterSetDescription efficienciesPSet;
1102  efficienciesPSet.setAllowAnything(); // TODO: the pat helper needs to implement a description.
1103  iDesc.add("efficiencies", efficienciesPSet);
1104  iDesc.add<bool>("addEfficiencies", false);
1105 
1106  // Check to see if the user wants to add user data
1107  edm::ParameterSetDescription userDataPSet;
1109  iDesc.addOptional("userData", userDataPSet);
1110 
1111 
1112  // electron shapes
1113  iDesc.add<bool>("addElectronShapes", true);
1114  iDesc.add<edm::InputTag>("reducedBarrelRecHitCollection", edm::InputTag("reducedEcalRecHitsEB"));
1115  iDesc.add<edm::InputTag>("reducedEndcapRecHitCollection", edm::InputTag("reducedEcalRecHitsEE"));
1116 
1117  edm::ParameterSetDescription isolationPSet;
1118  isolationPSet.setAllowAnything(); // TODO: the pat helper needs to implement a description.
1119  iDesc.add("userIsolation", isolationPSet);
1120 
1121  // Resolution configurables
1123 
1124  iDesc.add<bool>("embedHighLevelSelection", true)->setComment("embed high level selection");
1125  edm::ParameterSetDescription highLevelPSet;
1126  highLevelPSet.setAllowAnything();
1127  iDesc.addNode( edm::ParameterDescription<edm::InputTag>("beamLineSrc", edm::InputTag(), true)
1128  )->setComment("input with high level selection");
1130  )->setComment("input with high level selection");
1131 
1132  descriptions.add("PATElectronProducer", iDesc);
1133 
1134 }
1135 
1136 
1137 // embed various impact parameters with errors
1138 // embed high level selection
1143  bool primaryVertexIsValid,
1145  bool beamspotIsValid
1146  )
1147 {
1148  // Correct to PV
1149 
1150  // PV2D
1151  std::pair<bool,Measurement1D> result =
1153  GlobalVector(track->px(),
1154  track->py(),
1155  track->pz()),
1156  primaryVertex);
1157  double d0_corr = result.second.value();
1158  double d0_err = primaryVertexIsValid ? result.second.error() : -1.0;
1159  anElectron.setDB( d0_corr, d0_err, pat::Electron::PV2D);
1160 
1161 
1162  // PV3D
1163  result =
1165  GlobalVector(track->px(),
1166  track->py(),
1167  track->pz()),
1168  primaryVertex);
1169  d0_corr = result.second.value();
1170  d0_err = primaryVertexIsValid ? result.second.error() : -1.0;
1171  anElectron.setDB( d0_corr, d0_err, pat::Electron::PV3D);
1172 
1173 
1174  // Correct to beam spot
1175  // make a fake vertex out of beam spot
1176  reco::Vertex vBeamspot(beamspot.position(), beamspot.covariance3D());
1177 
1178  // BS2D
1179  result =
1181  GlobalVector(track->px(),
1182  track->py(),
1183  track->pz()),
1184  vBeamspot);
1185  d0_corr = result.second.value();
1186  d0_err = beamspotIsValid ? result.second.error() : -1.0;
1187  anElectron.setDB( d0_corr, d0_err, pat::Electron::BS2D);
1188 
1189  // BS3D
1190  result =
1192  GlobalVector(track->px(),
1193  track->py(),
1194  track->pz()),
1195  vBeamspot);
1196  d0_corr = result.second.value();
1197  d0_err = beamspotIsValid ? result.second.error() : -1.0;
1198  anElectron.setDB( d0_corr, d0_err, pat::Electron::BS3D);
1199 
1200  // PVDZ
1201  anElectron.setDB( track->dz(primaryVertex.position()), std::hypot(track->dzError(), primaryVertex.zError()), pat::Electron::PVDZ );
1202 }
1203 
1205 
void readIsolationLabels(const edm::ParameterSet &iConfig, const char *psetName, IsolationLabels &labels, std::vector< edm::EDGetTokenT< edm::ValueMap< T > > > &tokens)
void setMvaVariables(double sigmaIetaIphi, double ip3d)
set missing mva input variables
bool enabled() const
&#39;true&#39; if this there is at least one efficiency configured
bool isAvailable() const
Definition: Ref.h:577
T getParameter(std::string const &) const
void setComment(std::string const &value)
Assists in assimilating all pat::UserData into pat objects.
void embedRecHits(const EcalRecHitCollection *rechits)
method to store the RecHits internally - can be called from the PATElectronProducer ...
void newEvent(const edm::Event &event)
To be called for each new event, reads in the ValueMaps for efficiencies.
void setP4(P4Kind kind, const LorentzVector &p4, float p4Error, bool setCandidate)
Definition: GsfElectron.cc:199
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:127
ParameterDescriptionBase * addOptional(U const &iLabel, T const &value)
const edm::EDGetTokenT< reco::ConversionCollection > hConversionsToken_
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:253
edm::EDGetTokenT< edm::ValueMap< float > > PUPPINoLeptonsIsolation_charged_hadrons_
void setIsolation(IsolationKeys key, float value)
Definition: Lepton.h:99
const GreaterByPt< Electron > pTComparator_
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
bool contains(EventRange const &lh, EventID const &rh)
Definition: EventRange.cc:38
edm::EDGetTokenT< edm::ValueMap< float > > PUPPIIsolation_charged_hadrons_
const bool useParticleFlow_
pflow specific
void setElectronIDs(const std::vector< IdPair > &ids)
Store multiple electron ID values, discarding existing ones. The first one in the list becomes the &#39;d...
Definition: Electron.h:146
static const HistoName names[]
Covariance3DMatrix covariance3D() const
return only 3D position covariance matrix
Definition: BeamSpot.h:118
const LorentzVector & p4(P4Kind kind) const
Definition: GsfElectron.cc:225
const edm::EDGetTokenT< reco::PFCandidateCollection > pfElecToken_
std::vector< double > miniIsoParamsE_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:508
void setAllowAnything()
allow any parameter label/value pairs
double zError() const
error on z
Definition: Vertex.h:123
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
edm::EDGetTokenT< edm::ValueMap< float > > PUPPIIsolation_neutral_hadrons_
const edm::EDGetTokenT< edm::ValueMap< float > > ecalPFClusterIsoT_
std::pair< bool, Measurement1D > signedTransverseImpactParameter(const reco::TransientTrack &track, const GlobalVector &direction, const reco::Vertex &vertex)
Definition: IPTools.cc:50
void embedSuperCluster()
method to store the electron&#39;s SuperCluster internally
std::vector< pat::PackedCandidate > PackedCandidateCollection
void embedHighLevel(pat::Electron &anElectron, reco::GsfTrackRef track, reco::TransientTrack &tt, reco::Vertex &primaryVertex, bool primaryVertexIsValid, reco::BeamSpot &beamspot, bool beamspotIsValid)
std::vector< EcalRecHit >::const_iterator const_iterator
reco::TransientTrack build(const reco::Track *p) const
std::pair< bool, Measurement1D > absoluteImpactParameter3D(const reco::TransientTrack &transientTrack, const reco::Vertex &vertex)
Definition: IPTools.cc:37
void setPFCandidateRef(const reco::PFCandidateRef &ref)
add a reference to the source IsolatedPFCandidate
Definition: Electron.h:193
void fillElectron(Electron &aElectron, const ElectronBaseRef &electronRef, const reco::CandidateBaseRef &baseRef, const GenAssociations &genMatches, const IsoDepositMaps &deposits, const bool pfId, const IsolationValueMaps &isolationValues, const IsolationValueMaps &isolationValuesNoPFId) const
common electron filling, for both the standard and PF2PAT case
void push_back(T const &t)
ParameterDescriptionNode * addNode(ParameterDescriptionNode const &node)
std::pair< bool, Measurement1D > signedImpactParameter3D(const reco::TransientTrack &track, const GlobalVector &direction, const reco::Vertex &vertex)
Definition: IPTools.cc:71
void embedGsfElectronCore()
method to store the electron&#39;s core internally
void setPassConversionVeto(bool flag)
Definition: Electron.h:267
const edm::EDGetTokenT< edm::ValueMap< float > > hcalPFClusterIsoT_
void setHcalPFClusterIso(float hcalPFClus)
Definition: Electron.h:161
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
PFCandidateCollection::const_iterator PFCandidateConstIterator
iterator
void setEcalDrivenMomentum(const Candidate::LorentzVector &mom)
Definition: Electron.h:220
void setResolutions(pat::PATObject< T > &obj) const
Sets the efficiencies for this object, using the reference to the original objects.
std::vector< edm::EDGetTokenT< edm::ValueMap< float > > > elecIDTokens_
bool isRealData() const
Definition: EventBase.h:64
const Point & position() const
position
Definition: Vertex.h:109
bool isEE() const
Definition: GsfElectron.h:353
const edm::EDGetTokenT< edm::View< reco::GsfElectron > > electronToken_
std::vector< double > miniIsoParamsB_
void embedPflowSuperCluster()
method to store the electron&#39;s PflowSuperCluster internally
bool enabled() const
&#39;true&#39; if this there is at least one efficiency configured
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
void setIsoDeposit(IsolationKeys key, const IsoDeposit &dep)
Sets the IsoDeposit associated with some key; if it is already existent, it is overwritten.
Definition: Lepton.h:176
Definition: HeavyIon.h:7
static void fillDescription(edm::ParameterSetDescription &iDesc)
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:194
const edm::EDGetTokenT< std::vector< reco::Vertex > > pvToken_
bool enabled() const
True if it has a non null configuration.
Definition: MultiIsolator.h:50
const edm::EDGetTokenT< edm::ValueMap< reco::PFCandidatePtr > > pfCandidateMapToken_
void setComment(std::string const &value)
pat::helper::MultiIsolator isolator_
std::vector< edm::Handle< edm::Association< reco::GenParticleCollection > > > GenAssociations
void setDB(double dB, double edB, IPTYPE type)
Set impact parameter of a certain type and its uncertainty.
edm::EDGetTokenT< edm::ValueMap< float > > PUPPIIsolation_photons_
int iEvent
Definition: GenABIO.cc:230
void beginEvent(const edm::Event &event, const edm::EventSetup &eventSetup)
Produces pat::Electron&#39;s.
void embedSeedCluster()
method to store the electron&#39;s seedcluster internally
PATElectronProducer(const edm::ParameterSet &iConfig)
const bool embedHighLevelSelection_
embed high level selection variables?
reco::PFCandidateRef pfCandidateRef() const
reference to the source PFCandidates; null if this has been built from a standard electron ...
void embedGenParticle()
Definition: PATObject.h:694
void newEvent(const edm::Event &event, const edm::EventSetup &setup)
To be called for each new event, reads in the EventSetup object.
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
std::vector< edm::EDGetTokenT< edm::Association< reco::GenParticleCollection > > > genMatchTokens_
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
def unique(seq, keepstr=True)
Definition: tier0.py:24
void setIsolationPUPPINoLeptons(float chargedhadrons_, float neutralhadrons_, float photons_)
sets PUPPINoLeptons isolations
Definition: Electron.h:179
ParameterDescriptionNode * ifValue(ParameterDescription< T > const &switchParameter, std::unique_ptr< ParameterDescriptionCases< T > > cases)
std::vector< edm::EDGetTokenT< edm::ValueMap< IsoDeposit > > > isoDepositTokens_
edm::EDGetTokenT< edm::ValueMap< float > > PUPPINoLeptonsIsolation_neutral_hadrons_
const edm::EDGetTokenT< EcalRecHitCollection > reducedEndcapRecHitCollectionToken_
math::XYZPoint Point
point in the space
Definition: TrackBase.h:83
std::vector< edm::Handle< edm::ValueMap< double > > > IsolationValueMaps
void embedPflowBasicClusters()
method to store the electron&#39;s pflow basic clusters
edm::Ref< PFCandidateCollection > PFCandidateRef
persistent reference to a PFCandidate
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void embedBasicClusters()
method to store the electron&#39;s basic clusters
bool isValid() const
Definition: HandleBase.h:74
std::pair< std::string, edm::InputTag > NameTag
edm::EDGetTokenT< edm::ValueMap< float > > PUPPINoLeptonsIsolation_photons_
static bool hasMatchedConversion(const reco::GsfElectron &ele, const edm::Handle< reco::ConversionCollection > &convCol, const math::XYZPoint &beamspot, bool allowCkfMatch=true, float lxyMin=2.0, float probMin=1e-6, unsigned int nHitsBeforeVtxMax=0)
bool isNull() const
Checks for null.
Definition: Ref.h:250
void embedGsfTrack()
method to store the electron&#39;s GsfTrack internally
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:168
std::vector< Conversion > ConversionCollection
Definition: Conversion.h:13
const_iterator end() const
Definition: DetId.h:18
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
const edm::EDGetTokenT< reco::BeamSpot > beamLineToken_
void fillElectron2(Electron &anElectron, const reco::CandidatePtr &candPtrForIsolation, const reco::CandidatePtr &candPtrForGenMatch, const reco::CandidatePtr &candPtrForLoader, const GenAssociations &genMatches, const IsoDepositMaps &deposits, const IsolationValueMaps &isolationValues) const
void addGenParticleRef(const reco::GenParticleRef &ref)
Definition: PATObject.h:678
std::vector< edm::EDGetTokenT< edm::ValueMap< double > > > isolationValueNoPFIdTokens_
virtual std::vector< DetId > getWindow(const DetId &id, const int &northSouthSize, const int &eastWestSize) const
T const * product() const
Definition: Handle.h:81
static void fillDescription(edm::ParameterSetDescription &iDesc)
Method for documentation and validation of PSet.
void setEcalPFClusterIso(float ecalPFClus)
Definition: Electron.h:160
pat::helper::EfficiencyLoader efficiencyLoader_
const edm::EDGetTokenT< EcalRecHitCollection > reducedBarrelRecHitCollectionToken_
void setIsPF(bool hasPFCandidate)
Definition: Electron.h:188
const T & get() const
Definition: EventSetup.h:55
const edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > > pfCandidateMultiMapToken_
pat::PATUserDataHelper< pat::Electron > userDataHelper_
void setEfficiencies(pat::PATObject< T > &obj, const R &originalRef) const
Sets the efficiencies for this object, using the reference to the original objects.
Analysis-level electron class.
Definition: Electron.h:52
const CaloTopology * ecalTopology_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
const CaloSubdetectorTopology * getSubdetectorTopology(const DetId &id) const
access the subdetector Topology for the given subdetector directly
Definition: CaloTopology.cc:25
void setMiniPFIsolation(PFIsolation const &iso)
Definition: Lepton.h:197
ProductID id() const
Accessor for product ID.
Definition: Ptr.h:180
IsolationLabels isolationValueLabelsNoPFId_
void setElectronMiniIso(pat::Electron &anElectron, const pat::PackedCandidateCollection *pc)
void embedPreshowerClusters()
method to store the electron&#39;s preshower clusters
std::vector< std::pair< pat::IsolationKeys, float > > IsolationValuePairs
Definition: MultiIsolator.h:16
iterator find(key_type k)
fixed size matrix
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
IsolationLabels isolationValueLabels_
size_type size() const
PFIsolation getMiniPFIsolation(const pat::PackedCandidateCollection *pfcands, const math::XYZTLorentzVector &p4, float mindr=0.05, float maxdr=0.2, float kt_scale=10.0, float ptthresh=0.5, float deadcone_ch=0.0001, float deadcone_pu=0.01, float deadcone_ph=0.01, float deadcone_nh=0.01, float dZ_cut=0.0)
pat::helper::KinResolutionsLoader resolutionLoader_
const Point & position() const
position
Definition: BeamSpot.h:62
void embedPflowPreshowerClusters()
method to store the electron&#39;s pflow preshower clusters
std::vector< edm::EDGetTokenT< edm::ValueMap< double > > > isolationValueTokens_
void embedTrack()
method to store the electron&#39;s Track internally
pat::helper::MultiIsolator::IsolationValuePairs isolatorTmpStorage_
edm::Ptr< PFCandidate > PFCandidatePtr
persistent Ptr to a PFCandidate
void setIsolationPUPPI(float chargedhadrons_, float neutralhadrons_, float photons_)
sets PUPPI isolations
Definition: Electron.h:171
static std::string const source
Definition: EdmProvDump.cc:43
edm::EDGetTokenT< pat::PackedCandidateCollection > pcToken_
def move(src, dest)
Definition: eostools.py:510
void embedPFCandidate()
embed the PFCandidate pointed to by pfCandidateRef_
Global3DVector GlobalVector
Definition: GlobalVector.h:10
std::vector< NameTag > elecIDSrcs_
void fill(const edm::View< T > &coll, int idx, IsolationValuePairs &isolations) const
Definition: MultiIsolator.h:82
std::vector< edm::Handle< edm::ValueMap< IsoDeposit > > > IsoDepositMaps