CMS 3D CMS Logo

GsfElectronAlgo.cc
Go to the documentation of this file.
27 
28 #include <Math/Point3D.h>
29 #include <memory>
30 
31 #include <algorithm>
32 #include <sstream>
33 
34 using namespace edm;
35 using namespace reco;
36 
38  // soft electron MVA
40  sconfig.vweightsfiles = conf.getParameter<std::vector<std::string>>("SoftElecMVAFilesString");
41  sElectronMVAEstimator = std::make_unique<SoftElectronMVAEstimator>(sconfig);
42  // isolated electron MVA
44  iconfig.vweightsfiles = conf.getParameter<std::vector<std::string>>("ElecMVAFilesString");
45  iElectronMVAEstimator = std::make_unique<ElectronMVAEstimator>(iconfig);
46 }
47 
48 //===================================================================
49 // GsfElectronAlgo::EventData
50 //===================================================================
51 
53  // utilities
54  void retreiveOriginalTrackCollections(const reco::TrackRef&, const reco::GsfTrackRef&);
55 
56  // general
57  edm::Event const* event;
59 
60  // input collections
68 
69  // isolation helpers
76 
81 
84 
85  bool originalCtfTrackCollectionRetreived = false;
86  bool originalGsfTrackCollectionRetreived = false;
87 };
88 
89 //===================================================================
90 // GsfElectronAlgo::ElectronData
91 //===================================================================
92 
94  // Refs to subproducts
101 
102  // constructors
104 
105  // utilities
106  void computeCharge(int& charge, reco::GsfElectron::ChargeInfo& info);
107  reco::CaloClusterPtr getEleBasicCluster(MultiTrajectoryStateTransform const&);
108  bool calculateTSOS(MultiTrajectoryStateTransform const&, GsfConstraintAtVertex const&);
109  void calculateMode();
110  reco::Candidate::LorentzVector calculateMomentum();
111 
112  // TSOS
120 
121  // mode
122  GlobalVector innMom, seedMom, eleMom, sclMom, vtxMom, outMom;
123  GlobalPoint innPos, seedPos, elePos, sclPos, vtxPos, outPos;
125 };
126 
128  const reco::GsfTrackRef& gsfTrack) {
129  if ((!originalCtfTrackCollectionRetreived) && (ctfTrack.isNonnull())) {
130  event->get(ctfTrack.id(), originalCtfTracks);
131  originalCtfTrackCollectionRetreived = true;
132  }
133  if ((!originalGsfTrackCollectionRetreived) && (gsfTrack.isNonnull())) {
134  event->get(gsfTrack.id(), originalGsfTracks);
135  originalGsfTrackCollectionRetreived = true;
136  }
137 }
138 
140  : coreRef(core),
141  gsfTrackRef(coreRef->gsfTrack()),
142  superClusterRef(coreRef->superCluster()),
143  ctfTrackRef(coreRef->ctfTrack()),
144  shFracInnerHits(coreRef->ctfGsfOverlap()),
145  beamSpot(bs) {}
146 
148  // determine charge from SC
149  GlobalPoint orig, scpos;
150  ele_convert(beamSpot.position(), orig);
151  ele_convert(superClusterRef->position(), scpos);
152  GlobalVector scvect(scpos - orig);
153  GlobalPoint inntkpos = innTSOS.globalPosition();
154  GlobalVector inntkvect = GlobalVector(inntkpos - orig);
155  float dPhiInnEle = normalizedPhi(scvect.barePhi() - inntkvect.barePhi());
156  if (dPhiInnEle > 0)
157  info.scPixCharge = -1;
158  else
159  info.scPixCharge = 1;
160 
161  // flags
162  int chargeGsf = gsfTrackRef->charge();
163  info.isGsfScPixConsistent = ((chargeGsf * info.scPixCharge) > 0);
164  info.isGsfCtfConsistent = (ctfTrackRef.isNonnull() && ((chargeGsf * ctfTrackRef->charge()) > 0));
165  info.isGsfCtfScPixConsistent = (info.isGsfScPixConsistent && info.isGsfCtfConsistent);
166 
167  // default charge
168  if (info.isGsfScPixConsistent || ctfTrackRef.isNull()) {
169  charge = info.scPixCharge;
170  } else {
171  charge = ctfTrackRef->charge();
172  }
173 }
174 
176  CaloClusterPtr eleRef;
177  TrajectoryStateOnSurface tempTSOS;
178  TrajectoryStateOnSurface outTSOS = mtsTransform.outerStateOnSurface(*gsfTrackRef);
179  float dphimin = 1.e30;
180  for (auto const& bc : superClusterRef->clusters()) {
181  GlobalPoint posclu(bc->position().x(), bc->position().y(), bc->position().z());
182  tempTSOS = mtsTransform.extrapolatedState(outTSOS, posclu);
183  if (!tempTSOS.isValid())
184  tempTSOS = outTSOS;
185  GlobalPoint extrap = tempTSOS.globalPosition();
186  float dphi = EleRelPointPair(posclu, extrap, beamSpot.position()).dPhi();
187  if (std::abs(dphi) < dphimin) {
188  dphimin = std::abs(dphi);
189  eleRef = bc;
190  eleTSOS = tempTSOS;
191  }
192  }
193  return eleRef;
194 }
195 
197  GsfConstraintAtVertex const& constraintAtVtx) {
198  //at innermost point
199  innTSOS = mtsTransform.innerStateOnSurface(*gsfTrackRef);
200  if (!innTSOS.isValid())
201  return false;
202 
203  //at vertex
204  // innermost state propagation to the beam spot position
206  ele_convert(beamSpot.position(), bsPos);
207  vtxTSOS = mtsTransform.extrapolatedState(innTSOS, bsPos);
208  if (!vtxTSOS.isValid())
209  vtxTSOS = innTSOS;
210 
211  //at seed
212  outTSOS = mtsTransform.outerStateOnSurface(*gsfTrackRef);
213  if (!outTSOS.isValid())
214  return false;
215 
216  // TrajectoryStateOnSurface seedTSOS
217  seedTSOS = mtsTransform.extrapolatedState(outTSOS,
218  GlobalPoint(superClusterRef->seed()->position().x(),
219  superClusterRef->seed()->position().y(),
220  superClusterRef->seed()->position().z()));
221  if (!seedTSOS.isValid())
222  seedTSOS = outTSOS;
223 
224  // at scl
225  sclTSOS = mtsTransform.extrapolatedState(
226  innTSOS, GlobalPoint(superClusterRef->x(), superClusterRef->y(), superClusterRef->z()));
227  if (!sclTSOS.isValid())
228  sclTSOS = outTSOS;
229 
230  // constrained momentum
231  constrainedVtxTSOS = constraintAtVtx.constrainAtBeamSpot(*gsfTrackRef, beamSpot);
232 
233  return true;
234 }
235 
249  multiTrajectoryStateMode::momentumFromModeCartesian(constrainedVtxTSOS, vtxMomWithConstraint);
250 }
251 
253  double scale = superClusterRef->energy() / vtxMom.mag();
255  vtxMom.x() * scale, vtxMom.y() * scale, vtxMom.z() * scale, superClusterRef->energy());
256 }
257 
259  EventData const& eventData) const {
261 
262  const reco::CaloCluster& seedCluster = *(theClus->seed());
263  DetId seedXtalId = seedCluster.seed();
264  int detector = seedXtalId.subdetId();
265  const EcalRecHitCollection* ecalRecHits = nullptr;
266  if (detector == EcalBarrel)
267  ecalRecHits = eventData.barrelRecHits.product();
268  else
269  ecalRecHits = eventData.endcapRecHits.product();
270 
271  int nSaturatedXtals = 0;
272  bool isSeedSaturated = false;
273  for (auto&& hitFractionPair : theClus->hitsAndFractions()) {
274  auto&& ecalRecHit = ecalRecHits->find(hitFractionPair.first);
275  if (ecalRecHit == ecalRecHits->end())
276  continue;
277  if (ecalRecHit->checkFlag(EcalRecHit::Flags::kSaturated)) {
278  nSaturatedXtals++;
279  if (seedXtalId == ecalRecHit->detid())
280  isSeedSaturated = true;
281  }
282  }
283  si.nSaturatedXtals = nSaturatedXtals;
284  si.isSeedSaturated = isSeedSaturated;
285 
286  return si;
287 }
288 
289 template <bool full5x5>
291  ElectronHcalHelper const& hcalHelper,
292  EventData const& eventData,
293  CaloTopology const& topology,
294  CaloGeometry const& geometry) const {
295  using ClusterTools = EcalClusterToolsT<full5x5>;
296  reco::GsfElectron::ShowerShape showerShape;
297 
298  const reco::CaloCluster& seedCluster = *(theClus->seed());
299  // temporary, till CaloCluster->seed() is made available
300  DetId seedXtalId = seedCluster.hitsAndFractions()[0].first;
301  int detector = seedXtalId.subdetId();
302 
303  const EcalRecHitCollection* recHits = nullptr;
304  std::vector<int> recHitFlagsToBeExcluded;
305  std::vector<int> recHitSeverityToBeExcluded;
306  if (detector == EcalBarrel) {
307  recHits = eventData.barrelRecHits.product();
308  recHitFlagsToBeExcluded = cfg_.recHits.recHitFlagsToBeExcludedBarrel;
309  recHitSeverityToBeExcluded = cfg_.recHits.recHitSeverityToBeExcludedBarrel;
310  } else {
311  recHits = eventData.endcapRecHits.product();
312  recHitFlagsToBeExcluded = cfg_.recHits.recHitFlagsToBeExcludedEndcaps;
313  recHitSeverityToBeExcluded = cfg_.recHits.recHitSeverityToBeExcludedEndcaps;
314  }
315 
316  std::vector<float> covariances = ClusterTools::covariances(seedCluster, recHits, &topology, &geometry);
317  std::vector<float> localCovariances = ClusterTools::localCovariances(seedCluster, recHits, &topology);
318  showerShape.sigmaEtaEta = sqrt(covariances[0]);
319  showerShape.sigmaIetaIeta = sqrt(localCovariances[0]);
320  if (!edm::isNotFinite(localCovariances[2]))
321  showerShape.sigmaIphiIphi = sqrt(localCovariances[2]);
322  showerShape.e1x5 = ClusterTools::e1x5(seedCluster, recHits, &topology);
323  showerShape.e2x5Max = ClusterTools::e2x5Max(seedCluster, recHits, &topology);
324  showerShape.e5x5 = ClusterTools::e5x5(seedCluster, recHits, &topology);
325  showerShape.r9 = ClusterTools::e3x3(seedCluster, recHits, &topology) / theClus->rawEnergy();
326 
327  const float scale = full5x5 ? showerShape.e5x5 : theClus->energy();
328 
329  showerShape.hcalDepth1OverEcal = hcalHelper.hcalESumDepth1(*theClus) / theClus->energy();
330  showerShape.hcalDepth2OverEcal = hcalHelper.hcalESumDepth2(*theClus) / theClus->energy();
331  showerShape.hcalTowersBehindClusters = hcalHelper.hcalTowersBehindClusters(*theClus);
332  showerShape.hcalDepth1OverEcalBc =
334  showerShape.hcalDepth2OverEcalBc =
336  showerShape.invalidHcal = (showerShape.hcalDepth1OverEcalBc == 0 && showerShape.hcalDepth2OverEcalBc == 0 &&
337  !hcalHelper.hasActiveHcal(*theClus));
338 
339  // extra shower shapes
340  const float see_by_spp = showerShape.sigmaIetaIeta * showerShape.sigmaIphiIphi;
341  if (see_by_spp > 0) {
342  showerShape.sigmaIetaIphi = localCovariances[1] / see_by_spp;
343  } else if (localCovariances[1] > 0) {
344  showerShape.sigmaIetaIphi = 1.f;
345  } else {
346  showerShape.sigmaIetaIphi = -1.f;
347  }
348  showerShape.eMax = ClusterTools::eMax(seedCluster, recHits);
349  showerShape.e2nd = ClusterTools::e2nd(seedCluster, recHits);
350  showerShape.eTop = ClusterTools::eTop(seedCluster, recHits, &topology);
351  showerShape.eLeft = ClusterTools::eLeft(seedCluster, recHits, &topology);
352  showerShape.eRight = ClusterTools::eRight(seedCluster, recHits, &topology);
353  showerShape.eBottom = ClusterTools::eBottom(seedCluster, recHits, &topology);
354 
355  showerShape.e2x5Left = ClusterTools::e2x5Left(seedCluster, recHits, &topology);
356  showerShape.e2x5Right = ClusterTools::e2x5Right(seedCluster, recHits, &topology);
357  showerShape.e2x5Top = ClusterTools::e2x5Top(seedCluster, recHits, &topology);
358  showerShape.e2x5Bottom = ClusterTools::e2x5Bottom(seedCluster, recHits, &topology);
359 
360  return showerShape;
361 }
362 
363 //===================================================================
364 // GsfElectronAlgo
365 //===================================================================
366 
368  const StrategyConfiguration& strategy,
369  const CutsConfiguration& cuts,
371  const IsolationConfiguration& iso,
373  std::unique_ptr<EcalClusterFunctionBaseClass>&& superClusterErrorFunction,
374  std::unique_ptr<EcalClusterFunctionBaseClass>&& crackCorrectionFunction,
376  const edm::ParameterSet& tkIsol03,
377  const edm::ParameterSet& tkIsol04,
378  const edm::ParameterSet& tkIsolHEEP03,
379  const edm::ParameterSet& tkIsolHEEP04,
381  : cfg_{input, strategy, cuts, iso, recHits},
382  tkIsol03CalcCfg_(tkIsol03),
383  tkIsol04CalcCfg_(tkIsol04),
384  tkIsolHEEP03CalcCfg_(tkIsolHEEP03),
385  tkIsolHEEP04CalcCfg_(tkIsolHEEP04),
386  magneticFieldToken_{cc.esConsumes()},
387  caloGeometryToken_{cc.esConsumes()},
388  caloTopologyToken_{cc.esConsumes()},
389  trackerGeometryToken_{cc.esConsumes()},
390  ecalSeveretyLevelAlgoToken_{cc.esConsumes()},
391  hcalHelper_{hcal, std::move(cc)},
392  superClusterErrorFunction_{
393  std::forward<std::unique_ptr<EcalClusterFunctionBaseClass>>(superClusterErrorFunction)},
394  crackCorrectionFunction_{std::forward<std::unique_ptr<EcalClusterFunctionBaseClass>>(crackCorrectionFunction)},
395  regHelper_{reg, cfg_.strategy.useEcalRegression, cfg_.strategy.useCombinationRegression, cc}
396 
397 {}
398 
402 
404  superClusterErrorFunction_->init(es);
405  }
407  crackCorrectionFunction_->init(es);
408  }
409 }
410 
412  CaloGeometry const& caloGeometry,
413  EcalSeverityLevelAlgo const& ecalSeveretyLevelAlgo) {
414  auto const& towers = event.get(cfg_.tokens.hcalTowersTag);
415 
416  // Isolation algos
417  float egHcalIsoConeSizeOutSmall = 0.3, egHcalIsoConeSizeOutLarge = 0.4;
418  float egHcalIsoConeSizeIn = cfg_.iso.intRadiusHcal, egHcalIsoPtMin = cfg_.iso.etMinHcal;
419  int egHcalDepth1 = 1, egHcalDepth2 = 2;
420 
421  float egIsoConeSizeOutSmall = 0.3, egIsoConeSizeOutLarge = 0.4, egIsoJurassicWidth = cfg_.iso.jurassicWidth;
422  float egIsoPtMinBarrel = cfg_.iso.etMinBarrel, egIsoEMinBarrel = cfg_.iso.eMinBarrel,
423  egIsoConeSizeInBarrel = cfg_.iso.intRadiusEcalBarrel;
424  float egIsoPtMinEndcap = cfg_.iso.etMinEndcaps, egIsoEMinEndcap = cfg_.iso.eMinEndcaps,
425  egIsoConeSizeInEndcap = cfg_.iso.intRadiusEcalEndcaps;
426 
427  auto barrelRecHits = event.getHandle(cfg_.tokens.barrelRecHitCollection);
428  auto endcapRecHits = event.getHandle(cfg_.tokens.endcapRecHitCollection);
429 
430  auto ctfTracks = event.getHandle(cfg_.tokens.ctfTracks);
431 
432  EventData eventData{
433  .event = &event,
434  .beamspot = &event.get(cfg_.tokens.beamSpotTag),
435  .coreElectrons = event.getHandle(cfg_.tokens.gsfElectronCores),
436  .barrelRecHits = barrelRecHits,
437  .endcapRecHits = endcapRecHits,
438  .currentCtfTracks = ctfTracks,
439  .seeds = event.getHandle(cfg_.tokens.seedsTag),
440  .vertices = event.getHandle(cfg_.tokens.vtxCollectionTag),
441  .conversions = cfg_.strategy.fillConvVtxFitProb ? event.getHandle(cfg_.tokens.conversions)
443  .hadDepth1Isolation03 =
444  EgammaTowerIsolation(egHcalIsoConeSizeOutSmall, egHcalIsoConeSizeIn, egHcalIsoPtMin, egHcalDepth1, &towers),
445  .hadDepth1Isolation04 =
446  EgammaTowerIsolation(egHcalIsoConeSizeOutLarge, egHcalIsoConeSizeIn, egHcalIsoPtMin, egHcalDepth1, &towers),
447  .hadDepth2Isolation03 =
448  EgammaTowerIsolation(egHcalIsoConeSizeOutSmall, egHcalIsoConeSizeIn, egHcalIsoPtMin, egHcalDepth2, &towers),
449  .hadDepth2Isolation04 =
450  EgammaTowerIsolation(egHcalIsoConeSizeOutLarge, egHcalIsoConeSizeIn, egHcalIsoPtMin, egHcalDepth2, &towers),
451  .hadDepth1Isolation03Bc =
452  EgammaTowerIsolation(egHcalIsoConeSizeOutSmall, 0., egHcalIsoPtMin, egHcalDepth1, &towers),
453  .hadDepth1Isolation04Bc =
454  EgammaTowerIsolation(egHcalIsoConeSizeOutLarge, 0., egHcalIsoPtMin, egHcalDepth1, &towers),
455  .hadDepth2Isolation03Bc =
456  EgammaTowerIsolation(egHcalIsoConeSizeOutSmall, 0., egHcalIsoPtMin, egHcalDepth2, &towers),
457  .hadDepth2Isolation04Bc =
458  EgammaTowerIsolation(egHcalIsoConeSizeOutLarge, 0., egHcalIsoPtMin, egHcalDepth2, &towers),
459  .ecalBarrelIsol03 = EgammaRecHitIsolation(egIsoConeSizeOutSmall,
460  egIsoConeSizeInBarrel,
461  egIsoJurassicWidth,
462  egIsoPtMinBarrel,
463  egIsoEMinBarrel,
464  &caloGeometry,
465  *barrelRecHits,
466  &ecalSeveretyLevelAlgo,
467  DetId::Ecal),
468  .ecalBarrelIsol04 = EgammaRecHitIsolation(egIsoConeSizeOutLarge,
469  egIsoConeSizeInBarrel,
470  egIsoJurassicWidth,
471  egIsoPtMinBarrel,
472  egIsoEMinBarrel,
473  &caloGeometry,
474  *barrelRecHits,
475  &ecalSeveretyLevelAlgo,
476  DetId::Ecal),
477  .ecalEndcapIsol03 = EgammaRecHitIsolation(egIsoConeSizeOutSmall,
478  egIsoConeSizeInEndcap,
479  egIsoJurassicWidth,
480  egIsoPtMinEndcap,
481  egIsoEMinEndcap,
482  &caloGeometry,
483  *endcapRecHits,
484  &ecalSeveretyLevelAlgo,
485  DetId::Ecal),
486  .ecalEndcapIsol04 = EgammaRecHitIsolation(egIsoConeSizeOutLarge,
487  egIsoConeSizeInEndcap,
488  egIsoJurassicWidth,
489  egIsoPtMinEndcap,
490  egIsoEMinEndcap,
491  &caloGeometry,
492  *endcapRecHits,
493  &ecalSeveretyLevelAlgo,
494  DetId::Ecal),
495  .tkIsol03Calc = EleTkIsolFromCands(tkIsol03CalcCfg_, *ctfTracks),
496  .tkIsol04Calc = EleTkIsolFromCands(tkIsol04CalcCfg_, *ctfTracks),
497  .tkIsolHEEP03Calc = EleTkIsolFromCands(tkIsolHEEP03CalcCfg_, *ctfTracks),
498  .tkIsolHEEP04Calc = EleTkIsolFromCands(tkIsolHEEP04CalcCfg_, *ctfTracks),
499  .originalCtfTracks = {},
500  .originalGsfTracks = {}};
501 
502  eventData.ecalBarrelIsol03.setUseNumCrystals(cfg_.iso.useNumCrystals);
503  eventData.ecalBarrelIsol03.setVetoClustered(cfg_.iso.vetoClustered);
504  eventData.ecalBarrelIsol03.doSeverityChecks(eventData.barrelRecHits.product(),
506  eventData.ecalBarrelIsol03.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedBarrel);
507  eventData.ecalBarrelIsol04.setUseNumCrystals(cfg_.iso.useNumCrystals);
508  eventData.ecalBarrelIsol04.setVetoClustered(cfg_.iso.vetoClustered);
509  eventData.ecalBarrelIsol04.doSeverityChecks(eventData.barrelRecHits.product(),
511  eventData.ecalBarrelIsol04.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedBarrel);
512  eventData.ecalEndcapIsol03.setUseNumCrystals(cfg_.iso.useNumCrystals);
513  eventData.ecalEndcapIsol03.setVetoClustered(cfg_.iso.vetoClustered);
514  eventData.ecalEndcapIsol03.doSeverityChecks(eventData.endcapRecHits.product(),
516  eventData.ecalEndcapIsol03.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedEndcaps);
517  eventData.ecalEndcapIsol04.setUseNumCrystals(cfg_.iso.useNumCrystals);
518  eventData.ecalEndcapIsol04.setVetoClustered(cfg_.iso.vetoClustered);
519  eventData.ecalEndcapIsol04.doSeverityChecks(eventData.endcapRecHits.product(),
521  eventData.ecalEndcapIsol04.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedEndcaps);
522 
523  return eventData;
524 }
525 
527  edm::EventSetup const& eventSetup,
530 
531  auto const& magneticField = eventSetup.getData(magneticFieldToken_);
532  auto const& caloGeometry = eventSetup.getData(caloGeometryToken_);
533  auto const& caloTopology = eventSetup.getData(caloTopologyToken_);
534  auto const& trackerGeometry = eventSetup.getData(trackerGeometryToken_);
535  auto const& ecalSeveretyLevelAlgo = eventSetup.getData(ecalSeveretyLevelAlgoToken_);
536 
537  // prepare access to hcal data
538  hcalHelper_.beginEvent(event, eventSetup);
539 
540  checkSetup(eventSetup);
541  auto eventData = beginEvent(event, caloGeometry, ecalSeveretyLevelAlgo);
542  double magneticFieldInTesla = magneticField.inTesla(GlobalPoint(0., 0., 0.)).z();
543 
544  MultiTrajectoryStateTransform mtsTransform(&trackerGeometry, &magneticField);
545  GsfConstraintAtVertex constraintAtVtx(eventSetup);
546 
547  std::optional<egamma::conv::TrackTable> ctfTrackTable = std::nullopt;
548  std::optional<egamma::conv::TrackTable> gsfTrackTable = std::nullopt;
549 
550  const GsfElectronCoreCollection* coreCollection = eventData.coreElectrons.product();
551  for (unsigned int i = 0; i < coreCollection->size(); ++i) {
552  // check there is no existing electron with this core
553  const GsfElectronCoreRef coreRef = edm::Ref<GsfElectronCoreCollection>(eventData.coreElectrons, i);
554 
555  // check there is a super-cluster
556  if (coreRef->superCluster().isNull())
557  continue;
558 
559  // prepare internal structure for electron specific data
560  ElectronData electronData(coreRef, *eventData.beamspot);
561 
562  // calculate and check Trajectory StatesOnSurface....
563  if (!electronData.calculateTSOS(mtsTransform, constraintAtVtx))
564  continue;
565 
566  eventData.retreiveOriginalTrackCollections(electronData.ctfTrackRef, electronData.coreRef->gsfTrack());
567 
568  if (!eventData.originalCtfTracks.isValid()) {
569  eventData.originalCtfTracks = eventData.currentCtfTracks;
570  }
571 
572  if (ctfTrackTable == std::nullopt) {
573  ctfTrackTable = egamma::conv::TrackTable(*eventData.originalCtfTracks);
574  }
575  if (gsfTrackTable == std::nullopt) {
576  gsfTrackTable = egamma::conv::TrackTable(*eventData.originalGsfTracks);
577  }
578 
580  electronData,
581  eventData,
582  caloTopology,
583  caloGeometry,
584  mtsTransform,
585  magneticFieldInTesla,
586  hoc,
587  ctfTrackTable.value(),
588  gsfTrackTable.value());
589 
590  } // loop over tracks
591  return electrons;
592 }
593 
595  // default value
596  ele.setPassCutBasedPreselection(false);
597 
598  // kind of seeding
599  bool eg = ele.core()->ecalDrivenSeed();
600  bool pf = ele.core()->trackerDrivenSeed() && !ele.core()->ecalDrivenSeed();
601  if (eg && pf) {
602  throw cms::Exception("GsfElectronAlgo|BothEcalAndPureTrackerDriven")
603  << "An electron cannot be both egamma and purely pflow";
604  }
605  if ((!eg) && (!pf)) {
606  throw cms::Exception("GsfElectronAlgo|NeitherEcalNorPureTrackerDriven")
607  << "An electron cannot be neither egamma nor purely pflow";
608  }
609 
610  CutsConfiguration const& cfg = cfg_.cuts;
611 
612  // Et cut
613  double etaValue = EleRelPoint(ele.superCluster()->position(), bs.position()).eta();
614  double etValue = ele.superCluster()->energy() / cosh(etaValue);
615  LogTrace("GsfElectronAlgo") << "Et : " << etValue;
616  if (ele.isEB() && (etValue < cfg.minSCEtBarrel))
617  return;
618  if (ele.isEE() && (etValue < cfg.minSCEtEndcaps))
619  return;
620  LogTrace("GsfElectronAlgo") << "Et criteria are satisfied";
621 
622  // E/p cut
623  double eopValue = ele.eSuperClusterOverP();
624  LogTrace("GsfElectronAlgo") << "E/p : " << eopValue;
625  if (ele.isEB() && (eopValue > cfg.maxEOverPBarrel))
626  return;
627  if (ele.isEE() && (eopValue > cfg.maxEOverPEndcaps))
628  return;
629  if (ele.isEB() && (eopValue < cfg.minEOverPBarrel))
630  return;
631  if (ele.isEE() && (eopValue < cfg.minEOverPEndcaps))
632  return;
633  LogTrace("GsfElectronAlgo") << "E/p criteria are satisfied";
634 
635  // HoE cuts
636  LogTrace("GsfElectronAlgo") << "HoE1 : " << ele.hcalDepth1OverEcal() << ", HoE2 : " << ele.hcalDepth2OverEcal();
637  double hoeCone = ele.hcalOverEcal();
638  double hoeTower = ele.hcalOverEcalBc();
639  const reco::CaloCluster& seedCluster = *(ele.superCluster()->seed());
640  int detector = seedCluster.hitsAndFractions()[0].first.subdetId();
641  bool HoEveto = false;
642  double scle = ele.superCluster()->energy();
643 
644  if (detector == EcalBarrel)
645  HoEveto = hoeCone * scle < cfg.maxHBarrelCone || hoeTower * scle < cfg.maxHBarrelTower ||
646  hoeCone < cfg.maxHOverEBarrelCone || hoeTower < cfg.maxHOverEBarrelTower;
647  else if (detector == EcalEndcap)
648  HoEveto = hoeCone * scle < cfg.maxHEndcapsCone || hoeTower * scle < cfg.maxHEndcapsTower ||
649  hoeCone < cfg.maxHOverEEndcapsCone || hoeTower < cfg.maxHOverEEndcapsTower;
650 
651  if (!HoEveto)
652  return;
653  LogTrace("GsfElectronAlgo") << "H/E criteria are satisfied";
654 
655  // delta eta criteria
656  double deta = ele.deltaEtaSuperClusterTrackAtVtx();
657  LogTrace("GsfElectronAlgo") << "delta eta : " << deta;
658  if (ele.isEB() && (std::abs(deta) > cfg.maxDeltaEtaBarrel))
659  return;
660  if (ele.isEE() && (std::abs(deta) > cfg.maxDeltaEtaEndcaps))
661  return;
662  LogTrace("GsfElectronAlgo") << "Delta eta criteria are satisfied";
663 
664  // delta phi criteria
665  double dphi = ele.deltaPhiSuperClusterTrackAtVtx();
666  LogTrace("GsfElectronAlgo") << "delta phi : " << dphi;
667  if (ele.isEB() && (std::abs(dphi) > cfg.maxDeltaPhiBarrel))
668  return;
669  if (ele.isEE() && (std::abs(dphi) > cfg.maxDeltaPhiEndcaps))
670  return;
671  LogTrace("GsfElectronAlgo") << "Delta phi criteria are satisfied";
672 
673  // sigma ieta ieta
674  LogTrace("GsfElectronAlgo") << "sigma ieta ieta : " << ele.sigmaIetaIeta();
675  if (ele.isEB() && (ele.sigmaIetaIeta() > cfg.maxSigmaIetaIetaBarrel))
676  return;
677  if (ele.isEE() && (ele.sigmaIetaIeta() > cfg.maxSigmaIetaIetaEndcaps))
678  return;
679  LogTrace("GsfElectronAlgo") << "Sigma ieta ieta criteria are satisfied";
680 
681  // fiducial
682  if (!ele.isEB() && cfg.isBarrel)
683  return;
684  if (!ele.isEE() && cfg.isEndcaps)
685  return;
686  if (cfg.isFiducial &&
687  (ele.isEBEEGap() || ele.isEBEtaGap() || ele.isEBPhiGap() || ele.isEERingGap() || ele.isEEDeeGap()))
688  return;
689  LogTrace("GsfElectronAlgo") << "Fiducial flags criteria are satisfied";
690 
691  // seed in TEC
692  edm::RefToBase<TrajectorySeed> seed = ele.gsfTrack()->extra()->seedRef();
693  ElectronSeedRef elseed = seed.castTo<ElectronSeedRef>();
694  if (eg && !cfg_.cuts.seedFromTEC) {
695  if (elseed.isNull()) {
696  throw cms::Exception("GsfElectronAlgo|NotElectronSeed") << "The GsfTrack seed is not an ElectronSeed ?!";
697  } else {
698  if (elseed->subDet(1) == 6)
699  return;
700  }
701  }
702 
703  // transverse impact parameter
704  if (std::abs(ele.gsfTrack()->dxy(bs.position())) > cfg.maxTIP)
705  return;
706  LogTrace("GsfElectronAlgo") << "TIP criterion is satisfied";
707 
708  LogTrace("GsfElectronAlgo") << "All cut based criteria are satisfied";
709  ele.setPassCutBasedPreselection(true);
710 }
711 
713  ElectronData& electronData,
714  EventData& eventData,
715  CaloTopology const& topology,
716  CaloGeometry const& geometry,
717  MultiTrajectoryStateTransform const& mtsTransform,
718  double magneticFieldInTesla,
721  egamma::conv::TrackTableView gsfTable) {
722  // charge ID
723  int eleCharge;
724  GsfElectron::ChargeInfo eleChargeInfo;
725  electronData.computeCharge(eleCharge, eleChargeInfo);
726 
727  // electron basic cluster
728  CaloClusterPtr elbcRef = electronData.getEleBasicCluster(mtsTransform);
729 
730  // Seed cluster
731  const reco::CaloCluster& seedCluster = *(electronData.superClusterRef->seed());
732 
733  // seed Xtal
734  // temporary, till CaloCluster->seed() is made available
735  DetId seedXtalId = seedCluster.hitsAndFractions()[0].first;
736 
737  electronData.calculateMode();
738 
739  //====================================================
740  // Candidate attributes
741  //====================================================
742 
743  Candidate::LorentzVector momentum = electronData.calculateMomentum();
744 
745  //====================================================
746  // Track-Cluster Matching
747  //====================================================
748 
750  tcMatching.electronCluster = elbcRef;
751  tcMatching.eSuperClusterOverP =
752  (electronData.vtxMom.mag() > 0) ? (electronData.superClusterRef->energy() / electronData.vtxMom.mag()) : (-1.);
753  tcMatching.eSeedClusterOverP =
754  (electronData.vtxMom.mag() > 0.) ? (seedCluster.energy() / electronData.vtxMom.mag()) : (-1);
755  tcMatching.eSeedClusterOverPout =
756  (electronData.seedMom.mag() > 0.) ? (seedCluster.energy() / electronData.seedMom.mag()) : (-1.);
757  tcMatching.eEleClusterOverPout =
758  (electronData.eleMom.mag() > 0.) ? (elbcRef->energy() / electronData.eleMom.mag()) : (-1.);
759 
760  EleRelPointPair scAtVtx(
761  electronData.superClusterRef->position(), electronData.sclPos, eventData.beamspot->position());
762  tcMatching.deltaEtaSuperClusterAtVtx = scAtVtx.dEta();
763  tcMatching.deltaPhiSuperClusterAtVtx = scAtVtx.dPhi();
764 
765  EleRelPointPair seedAtCalo(seedCluster.position(), electronData.seedPos, eventData.beamspot->position());
766  tcMatching.deltaEtaSeedClusterAtCalo = seedAtCalo.dEta();
767  tcMatching.deltaPhiSeedClusterAtCalo = seedAtCalo.dPhi();
768 
769  EleRelPointPair ecAtCalo(elbcRef->position(), electronData.elePos, eventData.beamspot->position());
770  tcMatching.deltaEtaEleClusterAtCalo = ecAtCalo.dEta();
771  tcMatching.deltaPhiEleClusterAtCalo = ecAtCalo.dPhi();
772 
773  //=======================================================
774  // Track extrapolations
775  //=======================================================
776 
778  ele_convert(electronData.vtxPos, tkExtra.positionAtVtx);
779  ele_convert(electronData.sclPos, tkExtra.positionAtCalo);
780  ele_convert(electronData.vtxMom, tkExtra.momentumAtVtx);
781  ele_convert(electronData.sclMom, tkExtra.momentumAtCalo);
782  ele_convert(electronData.seedMom, tkExtra.momentumOut);
783  ele_convert(electronData.eleMom, tkExtra.momentumAtEleClus);
785 
786  //=======================================================
787  // Closest Ctf Track
788  //=======================================================
789 
791  ctfInfo.ctfTrack = electronData.ctfTrackRef;
792  ctfInfo.shFracInnerHits = electronData.shFracInnerHits;
793 
794  //====================================================
795  // FiducialFlags, using nextToBoundary definition of gaps
796  //====================================================
797 
798  reco::GsfElectron::FiducialFlags fiducialFlags;
799  int region = seedXtalId.det();
800  int detector = seedXtalId.subdetId();
801  double feta = std::abs(electronData.superClusterRef->position().eta());
802  if (detector == EcalBarrel) {
803  fiducialFlags.isEB = true;
804  EBDetId ebdetid(seedXtalId);
805  if (EBDetId::isNextToEtaBoundary(ebdetid)) {
806  if (ebdetid.ietaAbs() == 85) {
807  fiducialFlags.isEBEEGap = true;
808  } else {
809  fiducialFlags.isEBEtaGap = true;
810  }
811  }
812  if (EBDetId::isNextToPhiBoundary(ebdetid)) {
813  fiducialFlags.isEBPhiGap = true;
814  }
815  } else if (detector == EcalEndcap) {
816  fiducialFlags.isEE = true;
817  EEDetId eedetid(seedXtalId);
818  if (EEDetId::isNextToRingBoundary(eedetid)) {
819  if (std::abs(feta) < 2.) {
820  fiducialFlags.isEBEEGap = true;
821  } else {
822  fiducialFlags.isEERingGap = true;
823  }
824  }
825  if (EEDetId::isNextToDBoundary(eedetid)) {
826  fiducialFlags.isEEDeeGap = true;
827  }
829  fiducialFlags.isEE = true;
830  //HGCalDetId eeDetid(seedXtalId);
831  // fill in fiducial information when we know how to use it...
832  } else {
833  throw cms::Exception("GsfElectronAlgo|UnknownXtalRegion")
834  << "createElectron(): do not know if it is a barrel or endcap seed cluster !!!!";
835  }
836 
837  //====================================================
838  // SaturationInfo
839  //====================================================
840 
841  auto saturationInfo = calculateSaturationInfo(electronData.superClusterRef, eventData);
842 
843  //====================================================
844  // ShowerShape
845  //====================================================
846 
847  reco::GsfElectron::ShowerShape showerShape;
848  reco::GsfElectron::ShowerShape full5x5_showerShape;
850  showerShape = calculateShowerShape<false>(electronData.superClusterRef, hcalHelper_, eventData, topology, geometry);
851  full5x5_showerShape =
852  calculateShowerShape<true>(electronData.superClusterRef, hcalHelper_, eventData, topology, geometry);
853  }
854 
855  //====================================================
856  // ConversionRejection
857  //====================================================
858 
860  if (!ctfTracks.isValid()) {
861  ctfTracks = eventData.currentCtfTracks;
862  }
863 
864  {
865  //get the references to the gsf and ctf tracks that are made
866  //by the electron
867  const reco::TrackRef el_ctftrack = electronData.coreRef->ctfTrack();
868  const reco::GsfTrackRef& el_gsftrack = electronData.coreRef->gsfTrack();
869 
870  //protect against the wrong collection being passed to the function
871  if (el_ctftrack.isNonnull() && el_ctftrack.id() != ctfTracks.id())
872  throw cms::Exception("ConversionFinderError")
873  << "ProductID of ctf track collection does not match ProductID of electron's CTF track! \n";
874  if (el_gsftrack.isNonnull() && el_gsftrack.id() != eventData.originalGsfTracks.id())
875  throw cms::Exception("ConversionFinderError")
876  << "ProductID of gsf track collection does not match ProductID of electron's GSF track! \n";
877  }
878 
879  // values of conversionInfo.flag
880  // -9999 : Partner track was not found
881  // 0 : Partner track found in the CTF collection using
882  // 1 : Partner track found in the CTF collection using
883  // 2 : Partner track found in the GSF collection using
884  // 3 : Partner track found in the GSF collection using the electron's GSF track
885  auto conversionInfo = egamma::conv::findConversion(*electronData.coreRef, ctfTable, gsfTable, magneticFieldInTesla);
886 
888  conversionVars.flags = conversionInfo.flag;
889  conversionVars.dist = conversionInfo.dist;
890  conversionVars.dcot = conversionInfo.dcot;
891  conversionVars.radius = conversionInfo.radiusOfConversion;
893  //this is an intentionally bugged version which ignores the GsfTrack
894  //this is a bug which was introduced in reduced e/gamma where the GsfTrack gets
895  //relinked to a new collection which means it can no longer match the conversion
896  //as it matches based on product/id
897  //we keep this defination for the MVAs
898  const auto matchedConv = ConversionTools::matchedConversion(
899  electronData.coreRef->ctfTrack(), *eventData.conversions, eventData.beamspot->position(), 2.0, 1e-6, 0);
900  conversionVars.vtxFitProb = ConversionTools::getVtxFitProb(matchedConv);
901  }
902  if (conversionInfo.conversionPartnerCtfTkIdx) {
903  conversionVars.partner = TrackBaseRef(reco::TrackRef(ctfTracks, conversionInfo.conversionPartnerCtfTkIdx.value()));
904  } else if (conversionInfo.conversionPartnerGsfTkIdx) {
905  conversionVars.partner =
906  TrackBaseRef(reco::GsfTrackRef(eventData.originalGsfTracks, conversionInfo.conversionPartnerGsfTkIdx.value()));
907  }
908 
909  //====================================================
910  // Go !
911  //====================================================
912 
913  electrons.emplace_back(eleCharge,
914  eleChargeInfo,
915  electronData.coreRef,
916  tcMatching,
917  tkExtra,
918  ctfInfo,
919  fiducialFlags,
920  showerShape,
921  full5x5_showerShape,
922  conversionVars,
923  saturationInfo);
924  auto& ele = electrons.back();
925  // Will be overwritten later in the case of the regression
926  ele.setCorrectedEcalEnergyError(superClusterErrorFunction_->getValue(*(ele.superCluster()), 0));
927  ele.setP4(GsfElectron::P4_FROM_SUPER_CLUSTER, momentum, 0, true);
928 
929  //====================================================
930  // brems fractions
931  //====================================================
932 
933  if (electronData.innMom.mag() > 0.) {
934  ele.setTrackFbrem((electronData.innMom.mag() - electronData.outMom.mag()) / electronData.innMom.mag());
935  }
936 
937  // the supercluster is the refined one The seed is not necessarily the first cluster
938  // hence the use of the electronCluster
939  SuperClusterRef sc = ele.superCluster();
940  if (!(sc.isNull())) {
941  CaloClusterPtr cl = ele.electronCluster();
942  if (sc->clustersSize() > 1) {
943  float pf_fbrem = (sc->energy() - cl->energy()) / sc->energy();
944  ele.setSuperClusterFbrem(pf_fbrem);
945  } else {
946  ele.setSuperClusterFbrem(0);
947  }
948  }
949 
950  //====================================================
951  // classification and corrections
952  //====================================================
953  // classification
954  const auto elClass = egamma::classifyElectron(ele);
955  ele.setClassification(elClass);
956 
957  bool unexpectedClassification = elClass == GsfElectron::UNKNOWN || elClass > GsfElectron::GAP;
958  if (unexpectedClassification) {
959  edm::LogWarning("GsfElectronAlgo") << "unexpected classification";
960  }
961 
962  // ecal energy
963  if (cfg_.strategy.useEcalRegression) // new
964  {
965  regHelper_.applyEcalRegression(ele, *eventData.vertices, *eventData.barrelRecHits, *eventData.endcapRecHits);
966  } else // original implementation
967  {
969  if (ele.core()->ecalDrivenSeed()) {
970  if (cfg_.strategy.ecalDrivenEcalEnergyFromClassBasedParameterization && !unexpectedClassification) {
971  if (ele.isEcalEnergyCorrected()) {
972  edm::LogWarning("ElectronEnergyCorrector::classBasedElectronEnergy") << "already done";
973  } else {
974  ele.setCorrectedEcalEnergy(
976  }
977  }
979  ele.setCorrectedEcalEnergyError(egamma::classBasedElectronEnergyUncertainty(ele));
980  }
981  } else {
983  ele.setCorrectedEcalEnergyError(egamma::simpleElectronEnergyUncertainty(ele));
984  }
985  }
986  }
987  }
988 
989  // momentum
990  // Keep the default correction running first. The track momentum error is computed in there
991  if (cfg_.strategy.useDefaultEnergyCorrection && ele.core()->ecalDrivenSeed() && !unexpectedClassification) {
992  if (ele.p4Error(reco::GsfElectron::P4_COMBINATION) != 999.) {
993  edm::LogWarning("ElectronMomentumCorrector::correct") << "already done";
994  } else {
995  auto p = egamma::correctElectronMomentum(ele, electronData.vtxTSOS);
996  ele.correctMomentum(p.momentum, p.trackError, p.finalError);
997  }
998  }
1000  {
1002  }
1003 
1004  //====================================================
1005  // now isolation variables
1006  //====================================================
1008  dr03.tkSumPt = eventData.tkIsol03Calc(*ele.gsfTrack()).ptSum;
1009  dr04.tkSumPt = eventData.tkIsol04Calc(*ele.gsfTrack()).ptSum;
1010  dr03.tkSumPtHEEP = eventData.tkIsolHEEP03Calc(*ele.gsfTrack()).ptSum;
1011  dr04.tkSumPtHEEP = eventData.tkIsolHEEP04Calc(*ele.gsfTrack()).ptSum;
1012 
1016  dr03.hcalDepth1TowerSumEtBc =
1017  eventData.hadDepth1Isolation03Bc.getTowerEtSum(&ele, &(showerShape.hcalTowersBehindClusters));
1018  dr03.hcalDepth2TowerSumEtBc =
1019  eventData.hadDepth2Isolation03Bc.getTowerEtSum(&ele, &(showerShape.hcalTowersBehindClusters));
1020  dr03.ecalRecHitSumEt = eventData.ecalBarrelIsol03.getEtSum(&ele);
1021  dr03.ecalRecHitSumEt += eventData.ecalEndcapIsol03.getEtSum(&ele);
1024  dr04.hcalDepth1TowerSumEtBc =
1025  eventData.hadDepth1Isolation04Bc.getTowerEtSum(&ele, &(showerShape.hcalTowersBehindClusters));
1026  dr04.hcalDepth2TowerSumEtBc =
1027  eventData.hadDepth2Isolation04Bc.getTowerEtSum(&ele, &(showerShape.hcalTowersBehindClusters));
1028  dr04.ecalRecHitSumEt = eventData.ecalBarrelIsol04.getEtSum(&ele);
1029  dr04.ecalRecHitSumEt += eventData.ecalEndcapIsol04.getEtSum(&ele);
1030  }
1031  ele.setIsolation03(dr03);
1032  ele.setIsolation04(dr04);
1033 
1034  //====================================================
1035  // preselection flag
1036  //====================================================
1037 
1038  setCutBasedPreselectionFlag(ele, *eventData.beamspot);
1039  //setting mva flag, currently GedGsfElectron and GsfElectron pre-selection flags have desynced
1040  //this is for GedGsfElectrons, GsfElectrons (ie old pre 7X std reco) resets this later on
1041  //in the function "addPfInfo"
1042  //yes this is awful, we'll fix it once we work out how to...
1043  float mvaValue = hoc->sElectronMVAEstimator->mva(ele, *(eventData.vertices));
1044  ele.setPassMvaPreselection(mvaValue > cfg_.strategy.PreSelectMVA);
1045 
1046  //====================================================
1047  // Pixel match variables
1048  //====================================================
1050 
1051  LogTrace("GsfElectronAlgo") << "Constructed new electron with energy " << ele.p4().e();
1052 }
1053 
1054 // Pixel match variables
1056  int sd1 = 0;
1057  int sd2 = 0;
1058  float dPhi1 = 0;
1059  float dPhi2 = 0;
1060  float dRz1 = 0;
1061  float dRz2 = 0;
1062  edm::RefToBase<TrajectorySeed> seed = ele.gsfTrack()->extra()->seedRef();
1063  ElectronSeedRef elseed = seed.castTo<ElectronSeedRef>();
1064  if (seed.isNull()) {
1065  } else {
1066  if (elseed.isNull()) {
1067  } else {
1068  sd1 = elseed->subDet(0);
1069  sd2 = elseed->subDet(1);
1070  dPhi1 = (ele.charge() > 0) ? elseed->dPhiPos(0) : elseed->dPhiNeg(0);
1071  dPhi2 = (ele.charge() > 0) ? elseed->dPhiPos(1) : elseed->dPhiNeg(1);
1072  dRz1 = (ele.charge() > 0) ? elseed->dRZPos(0) : elseed->dRZNeg(0);
1073  dRz2 = (ele.charge() > 0) ? elseed->dRZPos(1) : elseed->dRZNeg(1);
1074  }
1075  }
1076  ele.setPixelMatchSubdetectors(sd1, sd2);
1077  ele.setPixelMatchDPhi1(dPhi1);
1078  ele.setPixelMatchDPhi2(dPhi2);
1079  ele.setPixelMatchDRz1(dRz1);
1080  ele.setPixelMatchDRz2(dRz2);
1081 }
reco::GsfElectron::ClosestCtfTrack::shFracInnerHits
float shFracInnerHits
Definition: GsfElectron.h:183
Vector3DBase
Definition: Vector3DBase.h:8
EgHLTOffHistBins_cfi.e1x5
e1x5
Definition: EgHLTOffHistBins_cfi.py:22
GsfElectronAlgo::EcalRecHitsConfiguration::recHitFlagsToBeExcludedEndcaps
std::vector< int > recHitFlagsToBeExcludedEndcaps
Definition: GsfElectronAlgo.h:152
ElectronHcalHelper::hcalTowersBehindClusters
auto hcalTowersBehindClusters(const reco::SuperCluster &sc) const
Definition: ElectronHcalHelper.h:52
GsfConstraintAtVertex::constrainAtBeamSpot
TrajectoryStateOnSurface constrainAtBeamSpot(const reco::GsfTrack &, const reco::BeamSpot &) const
(multi)TSOS after including the beamspot
Definition: GsfConstraintAtVertex.cc:41
EcalSeverityLevelAlgo
Definition: EcalSeverityLevelAlgo.h:33
GsfElectronAlgo::EventData::ecalEndcapIsol03
EgammaRecHitIsolation ecalEndcapIsol03
Definition: GsfElectronAlgo.cc:75
HLT_FULL_cff.towers
towers
Definition: HLT_FULL_cff.py:36362
reco::GsfElectron::ShowerShape::e2x5Right
float e2x5Right
Definition: GsfElectron.h:389
reco::GsfElectron::isEE
bool isEE() const
Definition: GsfElectron.h:337
GsfElectronAlgo::ElectronData::seedMom
GlobalVector seedMom
Definition: GsfElectronAlgo.cc:122
EBDetId::isNextToEtaBoundary
static bool isNextToEtaBoundary(EBDetId id)
Definition: EBDetId.cc:108
ElectronEnergyCorrector.h
reco::GsfElectron::ShowerShape::r9
float r9
Definition: GsfElectron.h:373
GsfElectronAlgo::magneticFieldToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magneticFieldToken_
Definition: GsfElectronAlgo.h:246
GsfElectronAlgo::EventData::hadDepth1Isolation03
EgammaTowerIsolation hadDepth1Isolation03
Definition: GsfElectronAlgo.cc:70
reco::GsfElectron::ShowerShape::sigmaIetaIeta
float sigmaIetaIeta
Definition: GsfElectron.h:368
reco::GsfElectron::ClosestCtfTrack
Definition: GsfElectron.h:181
reco::GsfElectron::TrackClusterMatching::electronCluster
CaloClusterPtr electronCluster
Definition: GsfElectron.h:203
GsfElectronAlgo::EventData::hadDepth1Isolation04Bc
EgammaTowerIsolation hadDepth1Isolation04Bc
Definition: GsfElectronAlgo.cc:72
GsfElectronAlgo::EventData::hadDepth2Isolation03
EgammaTowerIsolation hadDepth2Isolation03
Definition: GsfElectronAlgo.cc:71
mps_fire.i
i
Definition: mps_fire.py:428
reco::GsfElectron::isEB
bool isEB() const
Definition: GsfElectron.h:336
pwdgSkimBPark_cfi.beamSpot
beamSpot
Definition: pwdgSkimBPark_cfi.py:5
input
static const std::string input
Definition: EdmProvDump.cc:48
GsfElectronAlgo::EventData::seeds
edm::Handle< reco::ElectronSeedCollection > seeds
Definition: GsfElectronAlgo.cc:65
reco::GsfElectron::gsfTrack
GsfTrackRef gsfTrack() const override
reference to a GsfTrack
Definition: GsfElectron.h:164
MessageLogger.h
ele_convert
void ele_convert(const Type1 &obj1, Type2 &obj2)
Definition: ElectronUtilities.h:16
TrackerGeometry.h
MultiTrajectoryStateTransform::extrapolatedState
TrajectoryStateOnSurface extrapolatedState(const TrajectoryStateOnSurface tsos, const GlobalPoint &point) const
Definition: MultiTrajectoryStateTransform.cc:104
GsfElectronAlgo::IsolationConfiguration::eMinEndcaps
double eMinEndcaps
Definition: GsfElectronAlgo.h:168
L1EGammaCrystalsEmulatorProducer_cfi.scale
scale
Definition: L1EGammaCrystalsEmulatorProducer_cfi.py:10
GsfElectronAlgo::ElectronData
Definition: GsfElectronAlgo.cc:93
GsfElectronAlgo::EventData::coreElectrons
edm::Handle< reco::GsfElectronCoreCollection > coreElectrons
Definition: GsfElectronAlgo.cc:61
GsfElectronAlgo::Configuration::iso
const IsolationConfiguration iso
Definition: GsfElectronAlgo.h:201
SoftElectronMVAEstimator::Configuration
Definition: SoftElectronMVAEstimator.h:16
reco::GsfElectron::FiducialFlags::isEBEEGap
bool isEBEEGap
Definition: GsfElectron.h:320
egamma::conv::findConversion
ConversionInfo findConversion(const reco::GsfElectronCore &gsfElectron, TrackTableView ctfTable, TrackTableView gsfTable, float bFieldAtOrigin, float minFracSharedHits=0.45f)
Definition: ConversionFinder.h:71
egamma::conv::TrackTable
edm::soa::AddColumns< edm::soa::PtEtaPhiTable, TrackTableSpecificColumns >::type TrackTable
Definition: ConversionFinder.h:56
reco::GsfElectron::deltaPhiSuperClusterTrackAtVtx
float deltaPhiSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:236
EcalTools::isHGCalDet
static bool isHGCalDet(DetId::Detector thedet)
identify HGCal cells
Definition: EcalTools.h:49
reco::GsfElectron::ShowerShape::hcalDepth1OverEcal
float hcalDepth1OverEcal
Definition: GsfElectron.h:374
reco::GsfElectron::ChargeInfo
Definition: GsfElectron.h:123
GsfElectronAlgo::StrategyConfiguration
Definition: GsfElectronAlgo.h:73
edm::isNotFinite
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
GsfElectronAlgo::IsolationConfiguration::intRadiusEcalBarrel
double intRadiusEcalBarrel
Definition: GsfElectronAlgo.h:162
GsfElectronAlgo::IsolationConfiguration::etMinHcal
double etMinHcal
Definition: GsfElectronAlgo.h:161
ElectronHcalHelper::hcalESumDepth1
double hcalESumDepth1(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=nullptr) const
Definition: ElectronHcalHelper.cc:62
reco::GsfElectron::FiducialFlags::isEE
bool isEE
Definition: GsfElectron.h:319
GsfElectronAlgo::ElectronData::shFracInnerHits
float shFracInnerHits
Definition: GsfElectronAlgo.cc:99
reco::GsfElectron::setPixelMatchDPhi2
void setPixelMatchDPhi2(float dPhi2)
Definition: GsfElectron.h:855
reco::GsfElectron::isEERingGap
bool isEERingGap() const
Definition: GsfElectron.h:345
BasicCluster.h
HLT_FULL_cff.endcapRecHits
endcapRecHits
Definition: HLT_FULL_cff.py:14918
hcal
Definition: ConfigurationDatabase.cc:13
edm::Ref::isNull
bool isNull() const
Checks for null.
Definition: Ref.h:235
EBDetId
Definition: EBDetId.h:17
edm
HLT enums.
Definition: AlignableModifier.h:19
GsfElectronAlgo::trackerGeometryToken_
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > trackerGeometryToken_
Definition: GsfElectronAlgo.h:249
reco::GsfElectron::FiducialFlags::isEEDeeGap
bool isEEDeeGap
Definition: GsfElectron.h:323
GsfElectronAlgo::Tokens::gsfElectronCores
edm::EDGetTokenT< reco::GsfElectronCoreCollection > gsfElectronCores
Definition: GsfElectronAlgo.h:60
reco::GsfElectron::ClosestCtfTrack::ctfTrack
TrackRef ctfTrack
Definition: GsfElectron.h:182
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
GsfElectronAlgo::StrategyConfiguration::useCombinationRegression
bool useCombinationRegression
Definition: GsfElectronAlgo.h:93
DetId::det
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
GsfElectronAlgo::IsolationConfiguration::vetoClustered
bool vetoClustered
Definition: GsfElectronAlgo.h:169
geometry
Definition: geometry.py:1
GsfElectronAlgo::EventData::ecalBarrelIsol03
EgammaRecHitIsolation ecalBarrelIsol03
Definition: GsfElectronAlgo.cc:74
GsfElectronAlgo::ElectronData::vtxMomWithConstraint
GlobalVector vtxMomWithConstraint
Definition: GsfElectronAlgo.cc:124
GsfElectronAlgo::EventData::retreiveOriginalTrackCollections
void retreiveOriginalTrackCollections(const reco::TrackRef &, const reco::GsfTrackRef &)
Definition: GsfElectronAlgo.cc:127
EBDetId.h
EEDetId.h
ConversionTools::getVtxFitProb
static float getVtxFitProb(const reco::Conversion *conv)
Definition: ConversionTools.cc:440
reco::GsfElectron::P4_COMBINATION
Definition: GsfElectron.h:769
reco::GsfElectron::TrackClusterMatching::eSeedClusterOverP
float eSeedClusterOverP
Definition: GsfElectron.h:205
HLT_FULL_cff.barrelRecHits
barrelRecHits
Definition: HLT_FULL_cff.py:14921
GsfElectronAlgo::ElectronData::sclMom
GlobalVector sclMom
Definition: GsfElectronAlgo.cc:122
GsfElectronAlgo::hcalHelper_
ElectronHcalHelper hcalHelper_
Definition: GsfElectronAlgo.h:253
GsfElectronAlgo::ElectronData::vtxPos
GlobalPoint vtxPos
Definition: GsfElectronAlgo.cc:123
lowPtGsfElectronCores_cff.ctfTracks
ctfTracks
Definition: lowPtGsfElectronCores_cff.py:6
reco::GsfElectron::ShowerShape::eMax
float eMax
Definition: GsfElectron.h:381
GsfElectronAlgo::tkIsol03CalcCfg_
const EleTkIsolFromCands::Configuration tkIsol03CalcCfg_
Definition: GsfElectronAlgo.h:241
reco::GsfElectron::setPixelMatchSubdetectors
void setPixelMatchSubdetectors(int sd1, int sd2)
Definition: GsfElectron.h:853
GsfElectronAlgo::EventData
Definition: GsfElectronAlgo.cc:52
reco::GsfElectron::ConversionRejection::dcot
float dcot
Definition: GsfElectron.h:576
edm::SortedCollection< EcalRecHit >
ElectronHcalHelper::hcalESumDepth1BehindClusters
auto hcalESumDepth1BehindClusters(const std::vector< CaloTowerDetId > &towers) const
Definition: ElectronHcalHelper.h:53
reco::GsfElectron::ShowerShape::sigmaIetaIphi
float sigmaIetaIphi
Definition: GsfElectron.h:380
info
static const TGPicture * info(bool iBackgroundIsBlack)
Definition: FWCollectionSummaryWidget.cc:153
TrackingRecHitFwd.h
GsfElectronAlgo::setCutBasedPreselectionFlag
void setCutBasedPreselectionFlag(reco::GsfElectron &ele, const reco::BeamSpot &) const
Definition: GsfElectronAlgo.cc:594
GsfElectronAlgo::ElectronData::ctfTrackRef
reco::TrackRef ctfTrackRef
Definition: GsfElectronAlgo.cc:98
reco::TrackBaseRef
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:35
GsfElectronAlgo::IsolationConfiguration::useNumCrystals
bool useNumCrystals
Definition: GsfElectronAlgo.h:170
GsfElectronAlgo::ElectronData::calculateMomentum
reco::Candidate::LorentzVector calculateMomentum()
Definition: GsfElectronAlgo.cc:252
GsfElectronAlgo::IsolationConfiguration::eMinBarrel
double eMinBarrel
Definition: GsfElectronAlgo.h:166
reco::GsfElectronCollection
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
Definition: GsfElectronFwd.h:14
GsfElectronAlgo::ElectronData::innTSOS
TrajectoryStateOnSurface innTSOS
Definition: GsfElectronAlgo.cc:113
multiTrajectoryStateMode::momentumFromModeCartesian
bool momentumFromModeCartesian(TrajectoryStateOnSurface const &tsos, GlobalVector &momentum)
Definition: MultiTrajectoryStateMode.cc:16
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
ElectronUtilities.h
reco::GsfElectron::SaturationInfo::nSaturatedXtals
int nSaturatedXtals
Definition: GsfElectron.h:491
EgammaRecHitIsolation
Definition: EgammaRecHitIsolation.h:26
GlobalVector
Global3DVector GlobalVector
Definition: GlobalVector.h:10
reco::GsfElectron::TrackClusterMatching::eEleClusterOverPout
float eEleClusterOverPout
Definition: GsfElectron.h:207
reco::GsfElectron::TrackExtrapolations::momentumAtCalo
math::XYZVectorF momentumAtCalo
Definition: GsfElectron.h:265
HLT_FULL_cff.magneticField
magneticField
Definition: HLT_FULL_cff.py:348
GsfElectronAlgo::EventData::hadDepth1Isolation04
EgammaTowerIsolation hadDepth1Isolation04
Definition: GsfElectronAlgo.cc:70
GsfElectronAlgo::EcalRecHitsConfiguration::recHitFlagsToBeExcludedBarrel
std::vector< int > recHitFlagsToBeExcludedBarrel
Definition: GsfElectronAlgo.h:151
HLT_FULL_cff.dPhi
dPhi
Definition: HLT_FULL_cff.py:13702
reco::GsfElectron::TrackExtrapolations::momentumOut
math::XYZVectorF momentumOut
Definition: GsfElectron.h:267
GsfElectronAlgo::Tokens::seedsTag
edm::EDGetTokenT< reco::ElectronSeedCollection > seedsTag
Definition: GsfElectronAlgo.h:66
reco::GsfElectron::ShowerShape::e2x5Max
float e2x5Max
Definition: GsfElectron.h:371
reco::GsfElectron::TrackClusterMatching::deltaEtaEleClusterAtCalo
float deltaEtaEleClusterAtCalo
Definition: GsfElectron.h:210
GsfElectronAlgo::EventData::hadDepth1Isolation03Bc
EgammaTowerIsolation hadDepth1Isolation03Bc
Definition: GsfElectronAlgo.cc:72
edm::Handle< reco::GsfElectronCoreCollection >
GsfElectronAlgo::Tokens::beamSpotTag
edm::EDGetTokenT< reco::BeamSpot > beamSpotTag
Definition: GsfElectronAlgo.h:68
GsfElectronAlgo::Tokens::barrelRecHitCollection
edm::EDGetTokenT< EcalRecHitCollection > barrelRecHitCollection
Definition: GsfElectronAlgo.h:64
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
CaloTopology
Definition: CaloTopology.h:19
GsfElectronAlgo::StrategyConfiguration::ecalDrivenEcalErrorFromClassBasedParameterization
bool ecalDrivenEcalErrorFromClassBasedParameterization
Definition: GsfElectronAlgo.h:79
ElectronClassification.h
reco::GsfElectron::hcalDepth2OverEcal
float hcalDepth2OverEcal() const
Definition: GsfElectron.h:426
EcalBarrel
Definition: EcalSubdetector.h:10
reco::GsfElectron::ShowerShape::eBottom
float eBottom
Definition: GsfElectron.h:386
edm::Ref< TrackCollection >
ForwardSubdetector.h
MultiTrajectoryStateTransform::outerStateOnSurface
TrajectoryStateOnSurface outerStateOnSurface(const reco::GsfTrack &tk) const
Definition: MultiTrajectoryStateTransform.cc:19
reco::GsfElectron::FiducialFlags::isEBPhiGap
bool isEBPhiGap
Definition: GsfElectron.h:322
RegressionHelper::applyCombinationRegression
void applyCombinationRegression(reco::GsfElectron &ele) const
Definition: RegressionHelper.cc:114
GsfElectronAlgo::ElectronData::getEleBasicCluster
reco::CaloClusterPtr getEleBasicCluster(MultiTrajectoryStateTransform const &)
Definition: GsfElectronAlgo.cc:175
cc
reco::GsfElectron::hcalDepth1OverEcal
float hcalDepth1OverEcal() const
Definition: GsfElectron.h:425
reco::GsfElectron::ShowerShape::sigmaEtaEta
float sigmaEtaEta
Definition: GsfElectron.h:367
reco::GsfElectron::core
virtual GsfElectronCoreRef core() const
Definition: GsfElectron.cc:8
reco::GsfElectron::TrackClusterMatching::deltaPhiSuperClusterAtVtx
float deltaPhiSuperClusterAtVtx
Definition: GsfElectron.h:212
patCandidatesForDimuonsSequences_cff.hcal
hcal
Definition: patCandidatesForDimuonsSequences_cff.py:37
fileCollector.seed
seed
Definition: fileCollector.py:127
reco::GsfElectron::IsolationVariables::tkSumPtHEEP
float tkSumPtHEEP
Definition: GsfElectron.h:512
GetRecoTauVFromDQM_MC_cff.cl
cl
Definition: GetRecoTauVFromDQM_MC_cff.py:38
DetId
Definition: DetId.h:17
GsfElectronAlgo::ElectronData::outTSOS
TrajectoryStateOnSurface outTSOS
Definition: GsfElectronAlgo.cc:114
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
GsfElectronAlgo::EcalRecHitsConfiguration::recHitSeverityToBeExcludedBarrel
std::vector< int > recHitSeverityToBeExcludedBarrel
Definition: GsfElectronAlgo.h:153
EleRelPoint
Definition: ElectronUtilities.h:25
CaloGeometry
Definition: CaloGeometry.h:21
cms::cuda::bs
bs
Definition: HistoContainer.h:127
GsfElectronAlgo::HeavyObjectCache
Definition: GsfElectronAlgo.h:52
reco::GsfElectron::IsolationVariables::tkSumPt
float tkSumPt
Definition: GsfElectron.h:511
reco::GsfElectron::FiducialFlags::isEERingGap
bool isEERingGap
Definition: GsfElectron.h:324
GsfElectronAlgo::caloTopologyToken_
const edm::ESGetToken< CaloTopology, CaloTopologyRecord > caloTopologyToken_
Definition: GsfElectronAlgo.h:248
SoftElectronMVAEstimator::Configuration::vweightsfiles
std::vector< std::string > vweightsfiles
Definition: SoftElectronMVAEstimator.h:17
EgAmbiguityTools.h
EgammaRecHitIsolation::getEtSum
double getEtSum(const reco::Candidate *emObject) const
Definition: EgammaRecHitIsolation.h:39
ElectronHcalHelper::hcalESumDepth2BehindClusters
auto hcalESumDepth2BehindClusters(const std::vector< CaloTowerDetId > &towers) const
Definition: ElectronHcalHelper.h:56
GsfElectronAlgo::StrategyConfiguration::pureTrackerDrivenEcalErrorFromSimpleParameterization
bool pureTrackerDrivenEcalErrorFromSimpleParameterization
Definition: GsfElectronAlgo.h:80
GsfElectronAlgo::regHelper_
RegressionHelper regHelper_
Definition: GsfElectronAlgo.h:256
GsfElectronAlgo::EventData::endcapRecHits
edm::Handle< EcalRecHitCollection > endcapRecHits
Definition: GsfElectronAlgo.cc:63
GsfElectronAlgo::GsfElectronAlgo
GsfElectronAlgo(const Tokens &, const StrategyConfiguration &, const CutsConfiguration &cutsCfg, const ElectronHcalHelper::Configuration &hcalCfg, const IsolationConfiguration &, const EcalRecHitsConfiguration &, std::unique_ptr< EcalClusterFunctionBaseClass > &&superClusterErrorFunction, std::unique_ptr< EcalClusterFunctionBaseClass > &&crackCorrectionFunction, const RegressionHelper::Configuration &regCfg, const edm::ParameterSet &tkIsol03Cfg, const edm::ParameterSet &tkIsol04Cfg, const edm::ParameterSet &tkIsolHEEP03Cfg, const edm::ParameterSet &tkIsolHEEP04Cfg, edm::ConsumesCollector &&cc)
Definition: GsfElectronAlgo.cc:367
GsfElectronAlgo::EventData::event
edm::Event const * event
Definition: GsfElectronAlgo.cc:57
reco::GsfElectron::setPixelMatchDRz2
void setPixelMatchDRz2(float dRz2)
Definition: GsfElectron.h:857
ecaldqm::topology
const CaloTopology * topology(nullptr)
reco::GsfElectron::ConversionRejection
Definition: GsfElectron.h:572
GsfConstraintAtVertex
Definition: GsfConstraintAtVertex.h:21
reco::GsfElectron::ShowerShape
Definition: GsfElectron.h:366
PVValHelper::eta
Definition: PVValidationHelpers.h:69
reco::GsfElectronCoreCollection
std::vector< GsfElectronCore > GsfElectronCoreCollection
Definition: GsfElectronCoreFwd.h:12
reco::CaloCluster
Definition: CaloCluster.h:31
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
GsfElectronAlgo::setPixelMatchInfomation
void setPixelMatchInfomation(reco::GsfElectron &) const
Definition: GsfElectronAlgo.cc:1055
reco::BeamSpot
Definition: BeamSpot.h:21
GsfElectronAlgo::ElectronData::innMom
GlobalVector innMom
Definition: GsfElectronAlgo.cc:122
GsfElectronAlgo::ElectronData::beamSpot
const reco::BeamSpot beamSpot
Definition: GsfElectronAlgo.cc:100
normalizedPhi
constexpr T normalizedPhi(T phi)
Definition: normalizedPhi.h:8
reco::GsfElectron::isEEDeeGap
bool isEEDeeGap() const
Definition: GsfElectron.h:344
reco::GsfElectron::IsolationVariables::hcalDepth1TowerSumEt
float hcalDepth1TowerSumEt
Definition: GsfElectron.h:514
reco::GsfElectron::ShowerShape::eTop
float eTop
Definition: GsfElectron.h:383
reco::GsfElectron::FiducialFlags
Definition: GsfElectron.h:317
reco::GsfElectron::setPixelMatchDRz1
void setPixelMatchDRz1(float dRz1)
Definition: GsfElectron.h:856
ElectronHcalHelper::hasActiveHcal
bool hasActiveHcal(const reco::SuperCluster &sc) const
Definition: ElectronHcalHelper.cc:86
reco::GsfElectron
Definition: GsfElectron.h:35
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
reco::BeamSpot::position
const Point & position() const
position
Definition: BeamSpot.h:59
GsfElectronAlgo::HeavyObjectCache::HeavyObjectCache
HeavyObjectCache(const edm::ParameterSet &)
Definition: GsfElectronAlgo.cc:37
Point3DBase< float, GlobalTag >
GsfElectron.h
reco::GsfElectron::IsolationVariables
Definition: GsfElectron.h:510
reco::GsfElectron::ShowerShape::hcalTowersBehindClusters
std::vector< CaloTowerDetId > hcalTowersBehindClusters
Definition: GsfElectron.h:376
GsfElectronAlgo::tkIsolHEEP03CalcCfg_
const EleTkIsolFromCands::Configuration tkIsolHEEP03CalcCfg_
Definition: GsfElectronAlgo.h:243
ElectronHcalHelper::Configuration
Definition: ElectronHcalHelper.h:25
reco::GsfElectron::ShowerShape::sigmaIphiIphi
float sigmaIphiIphi
Definition: GsfElectron.h:369
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
qcdUeDQM_cfi.bsPos
bsPos
Definition: qcdUeDQM_cfi.py:39
EEDetId
Definition: EEDetId.h:14
GsfElectronAlgo::ElectronData::elePos
GlobalPoint elePos
Definition: GsfElectronAlgo.cc:123
GsfElectronAlgo::EventData::hadDepth2Isolation04Bc
EgammaTowerIsolation hadDepth2Isolation04Bc
Definition: GsfElectronAlgo.cc:73
GsfElectronAlgo::beginEvent
EventData beginEvent(edm::Event const &event, CaloGeometry const &caloGeometry, EcalSeverityLevelAlgo const &ecalSeveretyLevelAlgo)
Definition: GsfElectronAlgo.cc:411
egamma::conv::TrackTableView
edm::soa::ViewFromTable_t< TrackTable > TrackTableView
Definition: ConversionFinder.h:57
GsfElectronAlgo::ElectronData::ElectronData
ElectronData(const reco::GsfElectronCoreRef &core, const reco::BeamSpot &bs)
Definition: GsfElectronAlgo.cc:139
GsfElectronAlgo::ElectronData::constrainedVtxTSOS
TrajectoryStateOnSurface constrainedVtxTSOS
Definition: GsfElectronAlgo.cc:119
GsfElectronAlgo::Tokens::endcapRecHitCollection
edm::EDGetTokenT< EcalRecHitCollection > endcapRecHitCollection
Definition: GsfElectronAlgo.h:65
EcalSubdetector.h
egamma::classBasedElectronEnergy
float classBasedElectronEnergy(reco::GsfElectron const &, reco::BeamSpot const &, EcalClusterFunctionBaseClass const &crackCorrectionFunction)
Definition: ElectronEnergyCorrector.cc:295
EcalEndcap
Definition: EcalSubdetector.h:10
reco::GsfElectron::IsolationVariables::hcalDepth1TowerSumEtBc
float hcalDepth1TowerSumEtBc
Definition: GsfElectron.h:516
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
GsfElectronAlgo::EventData::vertices
edm::Handle< reco::VertexCollection > vertices
Definition: GsfElectronAlgo.cc:66
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition: ALCARECOTkAlJpsiMuMu_cff.py:47
GsfElectronAlgo::EventData::barrelRecHits
edm::Handle< EcalRecHitCollection > barrelRecHits
Definition: GsfElectronAlgo.cc:62
reco::GsfElectron::TrackClusterMatching::eSeedClusterOverPout
float eSeedClusterOverPout
Definition: GsfElectron.h:206
GsfElectronAlgo::Tokens
Definition: GsfElectronAlgo.h:59
GsfElectronAlgo::EventData::tkIsolHEEP04Calc
EleTkIsolFromCands tkIsolHEEP04Calc
Definition: GsfElectronAlgo.cc:80
reco::GsfElectron::IsolationVariables::hcalDepth2TowerSumEtBc
float hcalDepth2TowerSumEtBc
Definition: GsfElectron.h:517
IOMC_cff.ecalRecHit
ecalRecHit
Definition: IOMC_cff.py:103
JetMETHLTOfflineSource_cfi.feta
feta
Definition: JetMETHLTOfflineSource_cfi.py:30
GsfElectronFwd.h
core
Definition: __init__.py:1
ElectronMomentumCorrector.h
reco::GsfElectron::TrackClusterMatching
Definition: GsfElectron.h:202
reco::GsfElectron::TrackClusterMatching::eSuperClusterOverP
float eSuperClusterOverP
Definition: GsfElectron.h:204
edm::ParameterSet
Definition: ParameterSet.h:47
reco::GsfElectron::deltaEtaSuperClusterTrackAtVtx
float deltaEtaSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:233
PV3DBase::barePhi
T barePhi() const
Definition: PV3DBase.h:65
reco::CaloCluster::hitsAndFractions
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
Definition: CaloCluster.h:210
GsfElectronAlgo::ecalSeveretyLevelAlgoToken_
const edm::ESGetToken< EcalSeverityLevelAlgo, EcalSeverityLevelAlgoRcd > ecalSeveretyLevelAlgoToken_
Definition: GsfElectronAlgo.h:250
GsfElectronAlgo::tkIsol04CalcCfg_
const EleTkIsolFromCands::Configuration tkIsol04CalcCfg_
Definition: GsfElectronAlgo.h:242
GsfElectronAlgo::checkSetup
void checkSetup(edm::EventSetup const &eventSetup)
Definition: GsfElectronAlgo.cc:399
EEDetId::isNextToRingBoundary
static bool isNextToRingBoundary(EEDetId id)
Definition: EEDetId.cc:284
cosmicPhotonAnalyzer_cfi.eMax
eMax
Definition: cosmicPhotonAnalyzer_cfi.py:10
GsfElectronAlgo::Tokens::conversions
edm::EDGetTokenT< reco::ConversionCollection > conversions
Definition: GsfElectronAlgo.h:70
reco::GsfElectron::TrackExtrapolations::momentumAtVtxWithConstraint
math::XYZVectorF momentumAtVtxWithConstraint
Definition: GsfElectron.h:270
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
EcalClusterTools.h
edm::Ref::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:238
reco::GsfElectron::TrackExtrapolations
Definition: GsfElectron.h:260
edmPickEvents.event
event
Definition: edmPickEvents.py:273
GsfElectronAlgo::createElectron
void createElectron(reco::GsfElectronCollection &electrons, ElectronData &electronData, EventData &eventData, CaloTopology const &topology, CaloGeometry const &geometry, MultiTrajectoryStateTransform const &mtsTransform, double magneticFieldInTesla, const HeavyObjectCache *, egamma::conv::TrackTableView ctfTable, egamma::conv::TrackTableView gsfTable)
Definition: GsfElectronAlgo.cc:712
GsfElectronAlgo::ElectronData::vtxMom
GlobalVector vtxMom
Definition: GsfElectronAlgo.cc:122
GsfElectronAlgo::EventData::conversions
edm::Handle< reco::ConversionCollection > conversions
Definition: GsfElectronAlgo.cc:67
egamma::correctElectronMomentum
ElectronMomentum correctElectronMomentum(reco::GsfElectron const &, TrajectoryStateOnSurface const &)
Definition: ElectronMomentumCorrector.cc:22
reco::GsfElectron::ShowerShape::e2x5Left
float e2x5Left
Definition: GsfElectron.h:388
EgammaTowerIsolation
Definition: EgammaTowerIsolation.h:197
LorentzVector.h
HLT_FULL_cff.region
region
Definition: HLT_FULL_cff.py:88272
GsfElectronAlgo::ElectronData::eleTSOS
TrajectoryStateOnSurface eleTSOS
Definition: GsfElectronAlgo.cc:118
GsfElectronAlgo::Configuration::strategy
const StrategyConfiguration strategy
Definition: GsfElectronAlgo.h:199
GsfElectronAlgo::EventData::ecalBarrelIsol04
EgammaRecHitIsolation ecalBarrelIsol04
Definition: GsfElectronAlgo.cc:74
reco::GsfElectron::hcalOverEcalBc
float hcalOverEcalBc() const
Definition: GsfElectron.h:433
reco::GsfElectron::TrackClusterMatching::deltaPhiEleClusterAtCalo
float deltaPhiEleClusterAtCalo
Definition: GsfElectron.h:211
multiTrajectoryStateMode::positionFromModeCartesian
bool positionFromModeCartesian(TrajectoryStateOnSurface const &tsos, GlobalPoint &position)
Definition: MultiTrajectoryStateMode.cc:63
GsfElectronAlgo::ElectronData::sclTSOS
TrajectoryStateOnSurface sclTSOS
Definition: GsfElectronAlgo.cc:116
GsfElectronAlgo::EventData::originalGsfTracks
edm::Handle< reco::GsfTrackCollection > originalGsfTracks
Definition: GsfElectronAlgo.cc:83
GsfElectronAlgo::ElectronData::outMom
GlobalVector outMom
Definition: GsfElectronAlgo.cc:122
reco::GsfElectron::ShowerShape::e2x5Top
float e2x5Top
Definition: GsfElectron.h:387
ElectronHcalHelper::beginEvent
void beginEvent(const edm::Event &, const edm::EventSetup &)
Definition: ElectronHcalHelper.cc:23
GsfElectronAlgo::IsolationConfiguration::etMinEndcaps
double etMinEndcaps
Definition: GsfElectronAlgo.h:167
GsfElectronAlgo::CutsConfiguration
Definition: GsfElectronAlgo.h:99
GsfElectronAlgo::ElectronData::seedTSOS
TrajectoryStateOnSurface seedTSOS
Definition: GsfElectronAlgo.cc:117
reco::GsfElectron::setPixelMatchDPhi1
void setPixelMatchDPhi1(float dPhi1)
Definition: GsfElectron.h:854
reco::LeafCandidate::charge
int charge() const final
electric charge
Definition: LeafCandidate.h:106
GsfElectronAlgo::CutsConfiguration::seedFromTEC
bool seedFromTEC
Definition: GsfElectronAlgo.h:146
GsfElectronAlgo::EventData::currentCtfTracks
edm::Handle< reco::TrackCollection > currentCtfTracks
Definition: GsfElectronAlgo.cc:64
reco::GsfElectron::isEBEtaGap
bool isEBEtaGap() const
Definition: GsfElectron.h:341
DetId::Detector
Detector
Definition: DetId.h:24
edm::EventSetup
Definition: EventSetup.h:57
EleRelPointPair
Definition: ElectronUtilities.h:43
DetId::Ecal
Definition: DetId.h:27
reco::GsfElectron::TrackExtrapolations::momentumAtEleClus
math::XYZVectorF momentumAtEleClus
Definition: GsfElectron.h:269
reco::GsfElectron::SaturationInfo::isSeedSaturated
bool isSeedSaturated
Definition: GsfElectron.h:492
GsfElectronAlgo::ElectronData::calculateMode
void calculateMode()
Definition: GsfElectronAlgo.cc:236
GsfElectronAlgo::ElectronData::gsfTrackRef
const reco::GsfTrackRef gsfTrackRef
Definition: GsfElectronAlgo.cc:96
egamma::classifyElectron
reco::GsfElectron::Classification classifyElectron(reco::GsfElectron const &)
EcalTools.h
GsfElectronAlgo::EventData::hadDepth2Isolation03Bc
EgammaTowerIsolation hadDepth2Isolation03Bc
Definition: GsfElectronAlgo.cc:73
reco::CaloCluster::seed
DetId seed() const
return DetId of seed
Definition: CaloCluster.h:219
GsfElectronAlgo::StrategyConfiguration::fillConvVtxFitProb
bool fillConvVtxFitProb
Definition: GsfElectronAlgo.h:96
reco::GsfElectron::hcalOverEcal
float hcalOverEcal() const
Definition: GsfElectron.h:427
RegressionHelper::checkSetup
void checkSetup(const edm::EventSetup &)
Definition: RegressionHelper.cc:43
reco::GsfElectron::TrackClusterMatching::deltaPhiSeedClusterAtCalo
float deltaPhiSeedClusterAtCalo
Definition: GsfElectron.h:213
GsfElectronAlgo::ElectronData::eleMom
GlobalVector eleMom
Definition: GsfElectronAlgo.cc:122
EcalClusterToolsT
Definition: EcalClusterTools.h:73
GsfElectronAlgo::ElectronData::computeCharge
void computeCharge(int &charge, reco::GsfElectron::ChargeInfo &info)
Definition: GsfElectronAlgo.cc:147
reco::CaloCluster::position
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:154
edm::Ptr< CaloCluster >
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:120
looper.cfg
cfg
Definition: looper.py:297
MultiTrajectoryStateTransform
Definition: MultiTrajectoryStateTransform.h:18
ElectronMVAEstimator::Configuration
Definition: ElectronMVAEstimator.h:12
reco::GsfElectron::sigmaIetaIeta
float sigmaIetaIeta() const
Definition: GsfElectron.h:419
GsfElectronAlgo::HeavyObjectCache::sElectronMVAEstimator
std::unique_ptr< const SoftElectronMVAEstimator > sElectronMVAEstimator
Definition: GsfElectronAlgo.h:55
GsfElectronAlgo::ElectronData::superClusterRef
const reco::SuperClusterRef superClusterRef
Definition: GsfElectronAlgo.cc:97
reco::JetExtendedAssociation::LorentzVector
math::PtEtaPhiELorentzVectorF LorentzVector
Definition: JetExtendedAssociation.h:25
EBDetId::isNextToPhiBoundary
static bool isNextToPhiBoundary(EBDetId id)
Definition: EBDetId.cc:113
PV3DBase::mag
T mag() const
Definition: PV3DBase.h:64
GsfElectronAlgo::EventData::beamspot
const reco::BeamSpot * beamspot
Definition: GsfElectronAlgo.cc:58
ElectronMVAEstimator::Configuration::vweightsfiles
std::vector< std::string > vweightsfiles
Definition: ElectronMVAEstimator.h:13
SiStripSubdetector::UNKNOWN
Definition: SiStripEnums.h:5
reco::GsfElectron::ConversionRejection::partner
TrackBaseRef partner
Definition: GsfElectron.h:574
edm::SortedCollection::find
iterator find(key_type k)
Definition: SortedCollection.h:240
edm::Ref::id
ProductID id() const
Accessor for product ID.
Definition: Ref.h:244
GsfElectronAlgo::calculateSaturationInfo
reco::GsfElectron::SaturationInfo calculateSaturationInfo(const reco::SuperClusterRef &, EventData const &eventData) const
Definition: GsfElectronAlgo.cc:258
reco::GsfElectron::ShowerShape::eRight
float eRight
Definition: GsfElectron.h:385
reco::GsfElectron::ShowerShape::e2nd
float e2nd
Definition: GsfElectron.h:382
GsfElectronAlgo::completeElectrons
reco::GsfElectronCollection completeElectrons(edm::Event const &event, edm::EventSetup const &eventSetup, const HeavyObjectCache *hoc)
Definition: GsfElectronAlgo.cc:526
HGCalDetId.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
GsfElectronAlgo::ElectronData::coreRef
const reco::GsfElectronCoreRef coreRef
Definition: GsfElectronAlgo.cc:95
GsfElectronAlgo::ElectronData::sclPos
GlobalPoint sclPos
Definition: GsfElectronAlgo.cc:123
GsfElectronAlgo::Configuration::tokens
const Tokens tokens
Definition: GsfElectronAlgo.h:198
reco::GsfElectron::ShowerShape::invalidHcal
bool invalidHcal
Definition: GsfElectron.h:379
GsfElectronAlgo::cfg_
const Configuration cfg_
Definition: GsfElectronAlgo.h:239
reco::GsfElectron::ShowerShape::e1x5
float e1x5
Definition: GsfElectron.h:370
GsfElectronAlgo::StrategyConfiguration::PreSelectMVA
float PreSelectMVA
Definition: GsfElectronAlgo.h:88
reco::GsfElectron::setPassCutBasedPreselection
void setPassCutBasedPreselection(bool flag)
Definition: GsfElectron.h:695
isFinite.h
pwdgSkimBPark_cfi.electrons
electrons
Definition: pwdgSkimBPark_cfi.py:6
reco::GsfElectron::ConversionRejection::dist
float dist
Definition: GsfElectron.h:575
reco::GsfElectron::TrackClusterMatching::deltaEtaSuperClusterAtVtx
float deltaEtaSuperClusterAtVtx
Definition: GsfElectron.h:208
GsfElectronAlgo::superClusterErrorFunction_
std::unique_ptr< EcalClusterFunctionBaseClass > superClusterErrorFunction_
Definition: GsfElectronAlgo.h:254
reco::GsfElectron::isEBEEGap
bool isEBEEGap() const
Definition: GsfElectron.h:339
packedPFCandidateRefMixer_cfi.pf
pf
Definition: packedPFCandidateRefMixer_cfi.py:4
reco::GsfElectron::ShowerShape::hcalDepth2OverEcalBc
float hcalDepth2OverEcalBc
Definition: GsfElectron.h:378
GsfElectronAlgo::IsolationConfiguration::jurassicWidth
double jurassicWidth
Definition: GsfElectronAlgo.h:164
EEDetId::isNextToDBoundary
static bool isNextToDBoundary(EEDetId id)
Definition: EEDetId.cc:279
GsfElectronAlgo::IsolationConfiguration::etMinBarrel
double etMinBarrel
Definition: GsfElectronAlgo.h:165
GsfElectronAlgo::IsolationConfiguration::intRadiusEcalEndcaps
double intRadiusEcalEndcaps
Definition: GsfElectronAlgo.h:163
GsfElectronAlgo::ElectronData::seedPos
GlobalPoint seedPos
Definition: GsfElectronAlgo.cc:123
Exception
Definition: hltDiff.cc:246
ConversionTools::matchedConversion
static const reco::Conversion * matchedConversion(const reco::GsfElectron &ele, const reco::ConversionCollection &convCol, const math::XYZPoint &beamspot, bool allowCkfMatch=true, float lxyMin=2.0, float probMin=1e-6, unsigned int nHitsBeforeVtxMax=0)
Definition: ConversionTools.cc:257
reco::GsfElectron::TrackExtrapolations::positionAtCalo
math::XYZPointF positionAtCalo
Definition: GsfElectron.h:262
EBDetId::ietaAbs
int ietaAbs() const
get the absolute value of the crystal ieta
Definition: EBDetId.h:47
reco::GsfElectron::ShowerShape::hcalDepth1OverEcalBc
float hcalDepth1OverEcalBc
Definition: GsfElectron.h:377
reco::GsfElectron::eSuperClusterOverP
float eSuperClusterOverP() const
Definition: GsfElectron.h:229
GsfElectronAlgo::Tokens::vtxCollectionTag
edm::EDGetTokenT< reco::VertexCollection > vtxCollectionTag
Definition: GsfElectronAlgo.h:69
GsfElectronAlgo::EventData::tkIsolHEEP03Calc
EleTkIsolFromCands tkIsolHEEP03Calc
Definition: GsfElectronAlgo.cc:79
reco::GsfElectron::ConversionRejection::radius
float radius
Definition: GsfElectron.h:577
reco::GsfElectron::ConversionRejection::flags
int flags
Definition: GsfElectron.h:573
GlobalVector.h
reco::GsfElectron::IsolationVariables::hcalDepth2TowerSumEt
float hcalDepth2TowerSumEt
Definition: GsfElectron.h:515
GsfElectronAlgo::StrategyConfiguration::useDefaultEnergyCorrection
bool useDefaultEnergyCorrection
Definition: GsfElectronAlgo.h:90
ElectronHcalHelper
Definition: ElectronHcalHelper.h:23
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::RefToBase< TrajectorySeed >
EgammaTowerIsolation::getTowerEtSum
double getTowerEtSum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=nullptr) const
Definition: EgammaTowerIsolation.h:205
reco::GsfElectron::isEBPhiGap
bool isEBPhiGap() const
Definition: GsfElectron.h:342
MultiTrajectoryStateTransform::innerStateOnSurface
TrajectoryStateOnSurface innerStateOnSurface(const reco::GsfTrack &tk) const
Definition: MultiTrajectoryStateTransform.cc:23
reco::GsfElectron::ShowerShape::eLeft
float eLeft
Definition: GsfElectron.h:384
reco::GsfElectron::superCluster
SuperClusterRef superCluster() const override
reference to a SuperCluster
Definition: GsfElectron.h:163
egamma::classBasedElectronEnergyUncertainty
double classBasedElectronEnergyUncertainty(reco::GsfElectron const &)
Definition: ElectronEnergyCorrector.cc:270
GsfElectronAlgo::EventData::originalCtfTracks
edm::Handle< reco::TrackCollection > originalCtfTracks
Definition: GsfElectronAlgo.cc:82
GsfElectronAlgo::EventData::ecalEndcapIsol04
EgammaRecHitIsolation ecalEndcapIsol04
Definition: GsfElectronAlgo.cc:75
hgcalTestNeighbor_cfi.detector
detector
Definition: hgcalTestNeighbor_cfi.py:6
GsfElectronAlgo::Tokens::ctfTracks
edm::EDGetTokenT< reco::TrackCollection > ctfTracks
Definition: GsfElectronAlgo.h:67
GsfElectronAlgo::StrategyConfiguration::useEcalRegression
bool useEcalRegression
Definition: GsfElectronAlgo.h:92
reco::GsfElectron::IsolationVariables::ecalRecHitSumEt
float ecalRecHitSumEt
Definition: GsfElectron.h:513
GsfElectronAlgo::Tokens::hcalTowersTag
edm::EDGetTokenT< CaloTowerCollection > hcalTowersTag
Definition: GsfElectronAlgo.h:61
GsfElectronAlgo::IsolationConfiguration::intRadiusHcal
double intRadiusHcal
Definition: GsfElectronAlgo.h:160
GsfElectronAlgo::StrategyConfiguration::ecalDrivenEcalEnergyFromClassBasedParameterization
bool ecalDrivenEcalEnergyFromClassBasedParameterization
Definition: GsfElectronAlgo.h:78
GsfElectronAlgo::EventData::tkIsol04Calc
EleTkIsolFromCands tkIsol04Calc
Definition: GsfElectronAlgo.cc:78
reco::GsfElectron::FiducialFlags::isEBEtaGap
bool isEBEtaGap
Definition: GsfElectron.h:321
cms::Exception
Definition: Exception.h:70
reco::GsfElectron::FiducialFlags::isEB
bool isEB
Definition: GsfElectron.h:318
EleTkIsolFromCands
Definition: EleTkIsolFromCands.h:46
L1TMuonDQMOffline_cfi.cuts
cuts
Definition: L1TMuonDQMOffline_cfi.py:41
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:224
GsfElectronAlgo::calculateShowerShape
reco::GsfElectron::ShowerShape calculateShowerShape(const reco::SuperClusterRef &, ElectronHcalHelper const &hcalHelper, EventData const &eventData, CaloTopology const &topology, CaloGeometry const &geometry) const
Definition: GsfElectronAlgo.cc:290
reco::GsfElectron::TrackExtrapolations::momentumAtVtx
math::XYZVectorF momentumAtVtx
Definition: GsfElectron.h:263
RegressionHelper::applyEcalRegression
void applyEcalRegression(reco::GsfElectron &electron, const reco::VertexCollection &vertices, const EcalRecHitCollection &rechitsEB, const EcalRecHitCollection &rechitsEE) const
Definition: RegressionHelper.cc:33
GsfElectronAlgo::EventData::hadDepth2Isolation04
EgammaTowerIsolation hadDepth2Isolation04
Definition: GsfElectronAlgo.cc:71
reco::Candidate::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
GsfPFRecTrack.h
event
Definition: event.py:1
edm::Event
Definition: Event.h:73
GsfElectronAlgo::IsolationConfiguration
Definition: GsfElectronAlgo.h:159
GsfElectronAlgo::ElectronData::vtxTSOS
TrajectoryStateOnSurface vtxTSOS
Definition: GsfElectronAlgo.cc:115
reco::GsfElectron::SaturationInfo
Definition: GsfElectron.h:490
GsfElectronAlgo::crackCorrectionFunction_
std::unique_ptr< EcalClusterFunctionBaseClass > crackCorrectionFunction_
Definition: GsfElectronAlgo.h:255
GsfElectronAlgo::Configuration::cuts
const CutsConfiguration cuts
Definition: GsfElectronAlgo.h:200
egamma::simpleElectronEnergyUncertainty
double simpleElectronEnergyUncertainty(reco::GsfElectron const &)
Definition: ElectronEnergyCorrector.cc:277
edm::HandleBase::id
ProductID id() const
Definition: HandleBase.cc:29
GlobalPoint.h
reco::CaloCluster::energy
double energy() const
cluster energy
Definition: CaloCluster.h:149
reco::GsfElectron::ShowerShape::e5x5
float e5x5
Definition: GsfElectron.h:372
GsfElectronAlgo::Configuration::recHits
const EcalRecHitsConfiguration recHits
Definition: GsfElectronAlgo.h:202
GsfElectronAlgo::EventData::tkIsol03Calc
EleTkIsolFromCands tkIsol03Calc
Definition: GsfElectronAlgo.cc:77
GsfElectronAlgo::tkIsolHEEP04CalcCfg_
const EleTkIsolFromCands::Configuration tkIsolHEEP04CalcCfg_
Definition: GsfElectronAlgo.h:244
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
reco::GsfElectron::ShowerShape::e2x5Bottom
float e2x5Bottom
Definition: GsfElectron.h:390
ElectronHcalHelper::hcalESumDepth2
double hcalESumDepth2(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=nullptr) const
Definition: ElectronHcalHelper.cc:74
GsfElectronAlgo::caloGeometryToken_
const edm::ESGetToken< CaloGeometry, CaloGeometryRecord > caloGeometryToken_
Definition: GsfElectronAlgo.h:247
RegressionHelper::Configuration
Definition: RegressionHelper.h:27
reco::GsfElectron::ConversionRejection::vtxFitProb
float vtxFitProb
Definition: GsfElectron.h:578
reco::GsfElectron::TrackClusterMatching::deltaEtaSeedClusterAtCalo
float deltaEtaSeedClusterAtCalo
Definition: GsfElectron.h:209
GsfElectronAlgo::ElectronData::calculateTSOS
bool calculateTSOS(MultiTrajectoryStateTransform const &, GsfConstraintAtVertex const &)
Definition: GsfElectronAlgo.cc:196
ElectronSeed.h
reco::GsfElectron::TrackExtrapolations::positionAtVtx
math::XYZPointF positionAtVtx
Definition: GsfElectron.h:261
ConversionTools.h
GsfElectronAlgo::EcalRecHitsConfiguration
Definition: GsfElectronAlgo.h:150
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
GsfElectronAlgo.h
GsfElectronAlgo::EcalRecHitsConfiguration::recHitSeverityToBeExcludedEndcaps
std::vector< int > recHitSeverityToBeExcludedEndcaps
Definition: GsfElectronAlgo.h:154
reco::GsfElectron::ShowerShape::hcalDepth2OverEcal
float hcalDepth2OverEcal
Definition: GsfElectron.h:375