CMS 3D CMS Logo

GsfElectronAlgo.cc
Go to the documentation of this file.
29 
30 #include <Math/Point3D.h>
31 #include <memory>
32 
33 #include <algorithm>
34 #include <sstream>
35 
36 using namespace edm;
37 using namespace reco;
38 
40  // soft electron MVA
42  sconfig.vweightsfiles = conf.getParameter<std::vector<std::string>>("SoftElecMVAFilesString");
43  sElectronMVAEstimator = std::make_unique<SoftElectronMVAEstimator>(sconfig);
44  // isolated electron MVA
46  iconfig.vweightsfiles = conf.getParameter<std::vector<std::string>>("ElecMVAFilesString");
47  iElectronMVAEstimator = std::make_unique<ElectronMVAEstimator>(iconfig);
48 }
49 
50 //===================================================================
51 // GsfElectronAlgo::EventData
52 //===================================================================
53 
55  // utilities
56  void retreiveOriginalTrackCollections(const reco::TrackRef&, const reco::GsfTrackRef&);
57 
58  // general
59  edm::Event const* event;
61 
62  // input collections
70 
71  // 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& hcalHelperCone,
292  ElectronHcalHelper const& hcalHelperBc,
293  EventData const& eventData,
294  CaloTopology const& topology,
295  CaloGeometry const& geometry,
296  EcalPFRecHitThresholds const& thresholds) const {
297  using ClusterTools = EcalClusterToolsT<full5x5>;
298  reco::GsfElectron::ShowerShape showerShape;
299 
300  const reco::CaloCluster& seedCluster = *(theClus->seed());
301  // temporary, till CaloCluster->seed() is made available
302  DetId seedXtalId = seedCluster.hitsAndFractions()[0].first;
303  int detector = seedXtalId.subdetId();
304 
305  const EcalRecHitCollection* recHits = nullptr;
306  std::vector<int> recHitFlagsToBeExcluded;
307  std::vector<int> recHitSeverityToBeExcluded;
308  if (detector == EcalBarrel) {
309  recHits = eventData.barrelRecHits.product();
310  recHitFlagsToBeExcluded = cfg_.recHits.recHitFlagsToBeExcludedBarrel;
311  recHitSeverityToBeExcluded = cfg_.recHits.recHitSeverityToBeExcludedBarrel;
312  } else {
313  recHits = eventData.endcapRecHits.product();
314  recHitFlagsToBeExcluded = cfg_.recHits.recHitFlagsToBeExcludedEndcaps;
315  recHitSeverityToBeExcluded = cfg_.recHits.recHitSeverityToBeExcludedEndcaps;
316  }
317 
318  const auto& covariances = ClusterTools::covariances(seedCluster, recHits, &topology, &geometry);
319 
320  // do noise-cleaning for full5x5, by passing per crystal PF recHit thresholds and mult values
321  // mult values for EB and EE were obtained by dedicated studies
322  const auto& localCovariances = full5x5 ? ClusterTools::localCovariances(seedCluster,
323  recHits,
324  &topology,
326  &thresholds,
329  : ClusterTools::localCovariances(seedCluster, recHits, &topology);
330 
331  showerShape.sigmaEtaEta = sqrt(covariances[0]);
332  showerShape.sigmaIetaIeta = sqrt(localCovariances[0]);
333  if (!edm::isNotFinite(localCovariances[2]))
334  showerShape.sigmaIphiIphi = sqrt(localCovariances[2]);
335  showerShape.e1x5 = ClusterTools::e1x5(seedCluster, recHits, &topology);
336  showerShape.e2x5Max = ClusterTools::e2x5Max(seedCluster, recHits, &topology);
337  showerShape.e5x5 = ClusterTools::e5x5(seedCluster, recHits, &topology);
338  showerShape.r9 = ClusterTools::e3x3(seedCluster, recHits, &topology) / theClus->rawEnergy();
339 
340  const float scale = full5x5 ? showerShape.e5x5 : theClus->energy();
341 
342  for (uint id = 0; id < showerShape.hcalOverEcal.size(); ++id) {
343  showerShape.hcalOverEcal[id] = hcalHelperCone.hcalESum(*theClus, id + 1) / scale;
344  showerShape.hcalOverEcalBc[id] = hcalHelperBc.hcalESum(*theClus, id + 1) / scale;
345  }
346  showerShape.invalidHcal = !hcalHelperBc.hasActiveHcal(*theClus);
347  showerShape.hcalTowersBehindClusters = hcalHelperBc.hcalTowersBehindClusters(*theClus);
348  showerShape.pre7DepthHcal = false;
349 
350  // extra shower shapes
351  const float see_by_spp = showerShape.sigmaIetaIeta * showerShape.sigmaIphiIphi;
352  if (see_by_spp > 0) {
353  showerShape.sigmaIetaIphi = localCovariances[1] / see_by_spp;
354  } else if (localCovariances[1] > 0) {
355  showerShape.sigmaIetaIphi = 1.f;
356  } else {
357  showerShape.sigmaIetaIphi = -1.f;
358  }
359  showerShape.eMax = ClusterTools::eMax(seedCluster, recHits);
360  showerShape.e2nd = ClusterTools::e2nd(seedCluster, recHits);
361  showerShape.eTop = ClusterTools::eTop(seedCluster, recHits, &topology);
362  showerShape.eLeft = ClusterTools::eLeft(seedCluster, recHits, &topology);
363  showerShape.eRight = ClusterTools::eRight(seedCluster, recHits, &topology);
364  showerShape.eBottom = ClusterTools::eBottom(seedCluster, recHits, &topology);
365 
366  showerShape.e2x5Left = ClusterTools::e2x5Left(seedCluster, recHits, &topology);
367  showerShape.e2x5Right = ClusterTools::e2x5Right(seedCluster, recHits, &topology);
368  showerShape.e2x5Top = ClusterTools::e2x5Top(seedCluster, recHits, &topology);
369  showerShape.e2x5Bottom = ClusterTools::e2x5Bottom(seedCluster, recHits, &topology);
370 
371  return showerShape;
372 }
373 
374 //===================================================================
375 // GsfElectronAlgo
376 //===================================================================
377 
379  const StrategyConfiguration& strategy,
380  const CutsConfiguration& cuts,
381  const ElectronHcalHelper::Configuration& hcalCone,
382  const ElectronHcalHelper::Configuration& hcalBc,
383  const IsolationConfiguration& iso,
385  std::unique_ptr<EcalClusterFunctionBaseClass>&& crackCorrectionFunction,
387  const edm::ParameterSet& tkIsol03,
388  const edm::ParameterSet& tkIsol04,
389  const edm::ParameterSet& tkIsolHEEP03,
390  const edm::ParameterSet& tkIsolHEEP04,
392  : cfg_{input, strategy, cuts, iso, recHits},
393  tkIsol03CalcCfg_(tkIsol03),
394  tkIsol04CalcCfg_(tkIsol04),
395  tkIsolHEEP03CalcCfg_(tkIsolHEEP03),
396  tkIsolHEEP04CalcCfg_(tkIsolHEEP04),
397  magneticFieldToken_{cc.esConsumes()},
398  caloGeometryToken_{cc.esConsumes()},
399  caloTopologyToken_{cc.esConsumes()},
400  trackerGeometryToken_{cc.esConsumes()},
401  ecalSeveretyLevelAlgoToken_{cc.esConsumes()},
402  ecalPFRechitThresholdsToken_{cc.esConsumes()},
403  hcalHelperCone_{hcalCone, std::move(cc)},
404  hcalHelperBc_{hcalBc, std::move(cc)},
405  crackCorrectionFunction_{std::forward<std::unique_ptr<EcalClusterFunctionBaseClass>>(crackCorrectionFunction)},
406  regHelper_{reg, cfg_.strategy.useEcalRegression, cfg_.strategy.useCombinationRegression, cc}
407 
408 {}
409 
413 
415  crackCorrectionFunction_->init(es);
416  }
417 }
418 
420  CaloGeometry const& caloGeometry,
421  EcalSeverityLevelAlgo const& ecalSeveretyLevelAlgo) {
422  auto const& hbheRecHits = event.get(cfg_.tokens.hbheRecHitsTag);
423 
424  // Isolation algos
425  float egHcalIsoConeSizeOutSmall = 0.3, egHcalIsoConeSizeOutLarge = 0.4;
426  float egHcalIsoConeSizeIn = cfg_.iso.intRadiusHcal, egHcalIsoPtMin = cfg_.iso.etMinHcal;
427 
428  float egIsoConeSizeOutSmall = 0.3, egIsoConeSizeOutLarge = 0.4, egIsoJurassicWidth = cfg_.iso.jurassicWidth;
429  float egIsoPtMinBarrel = cfg_.iso.etMinBarrel, egIsoEMinBarrel = cfg_.iso.eMinBarrel,
430  egIsoConeSizeInBarrel = cfg_.iso.intRadiusEcalBarrel;
431  float egIsoPtMinEndcap = cfg_.iso.etMinEndcaps, egIsoEMinEndcap = cfg_.iso.eMinEndcaps,
432  egIsoConeSizeInEndcap = cfg_.iso.intRadiusEcalEndcaps;
433 
434  auto barrelRecHits = event.getHandle(cfg_.tokens.barrelRecHitCollection);
435  auto endcapRecHits = event.getHandle(cfg_.tokens.endcapRecHitCollection);
436 
437  auto ctfTracks = event.getHandle(cfg_.tokens.ctfTracks);
438 
439  EventData eventData{
440  .event = &event,
441  .beamspot = &event.get(cfg_.tokens.beamSpotTag),
442  .coreElectrons = event.getHandle(cfg_.tokens.gsfElectronCores),
443  .barrelRecHits = barrelRecHits,
444  .endcapRecHits = endcapRecHits,
445  .currentCtfTracks = ctfTracks,
446  .seeds = event.getHandle(cfg_.tokens.seedsTag),
447  .vertices = event.getHandle(cfg_.tokens.vtxCollectionTag),
448  .conversions = cfg_.strategy.fillConvVtxFitProb ? event.getHandle(cfg_.tokens.conversions)
450 
451  .hadIsolation03 = EgammaHcalIsolation(
453  egHcalIsoConeSizeOutSmall,
455  egHcalIsoConeSizeIn,
456  EgammaHcalIsolation::arrayHB{{0., 0., 0., 0.}},
457  EgammaHcalIsolation::arrayHB{{egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin}},
459  EgammaHcalIsolation::arrayHE{{0., 0., 0., 0., 0., 0., 0.}},
460  EgammaHcalIsolation::arrayHE{{egHcalIsoPtMin,
461  egHcalIsoPtMin,
462  egHcalIsoPtMin,
463  egHcalIsoPtMin,
464  egHcalIsoPtMin,
465  egHcalIsoPtMin,
466  egHcalIsoPtMin}},
468  hbheRecHits,
469  caloGeometry,
474  .hadIsolation04 = EgammaHcalIsolation(
476  egHcalIsoConeSizeOutLarge,
478  egHcalIsoConeSizeIn,
479  EgammaHcalIsolation::arrayHB{{0., 0., 0., 0.}},
480  EgammaHcalIsolation::arrayHB{{egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin}},
482  EgammaHcalIsolation::arrayHE{{0., 0., 0., 0., 0., 0., 0.}},
483  EgammaHcalIsolation::arrayHE{{egHcalIsoPtMin,
484  egHcalIsoPtMin,
485  egHcalIsoPtMin,
486  egHcalIsoPtMin,
487  egHcalIsoPtMin,
488  egHcalIsoPtMin,
489  egHcalIsoPtMin}},
491  hbheRecHits,
492  caloGeometry,
497  .hadIsolation03Bc = EgammaHcalIsolation(
499  egHcalIsoConeSizeOutSmall,
501  0.,
502  EgammaHcalIsolation::arrayHB{{0., 0., 0., 0.}},
503  EgammaHcalIsolation::arrayHB{{egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin}},
505  EgammaHcalIsolation::arrayHE{{0., 0., 0., 0., 0., 0., 0.}},
506  EgammaHcalIsolation::arrayHE{{egHcalIsoPtMin,
507  egHcalIsoPtMin,
508  egHcalIsoPtMin,
509  egHcalIsoPtMin,
510  egHcalIsoPtMin,
511  egHcalIsoPtMin,
512  egHcalIsoPtMin}},
514  hbheRecHits,
515  caloGeometry,
520  .hadIsolation04Bc = EgammaHcalIsolation(
522  egHcalIsoConeSizeOutLarge,
524  0.,
525  EgammaHcalIsolation::arrayHB{{0., 0., 0., 0.}},
526  EgammaHcalIsolation::arrayHB{{egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin, egHcalIsoPtMin}},
528  EgammaHcalIsolation::arrayHE{{0., 0., 0., 0., 0., 0., 0.}},
529  EgammaHcalIsolation::arrayHE{{egHcalIsoPtMin,
530  egHcalIsoPtMin,
531  egHcalIsoPtMin,
532  egHcalIsoPtMin,
533  egHcalIsoPtMin,
534  egHcalIsoPtMin,
535  egHcalIsoPtMin}},
537  hbheRecHits,
538  caloGeometry,
543 
544  .ecalBarrelIsol03 = EgammaRecHitIsolation(egIsoConeSizeOutSmall,
545  egIsoConeSizeInBarrel,
546  egIsoJurassicWidth,
547  egIsoPtMinBarrel,
548  egIsoEMinBarrel,
549  &caloGeometry,
550  *barrelRecHits,
551  &ecalSeveretyLevelAlgo,
552  DetId::Ecal),
553  .ecalBarrelIsol04 = EgammaRecHitIsolation(egIsoConeSizeOutLarge,
554  egIsoConeSizeInBarrel,
555  egIsoJurassicWidth,
556  egIsoPtMinBarrel,
557  egIsoEMinBarrel,
558  &caloGeometry,
559  *barrelRecHits,
560  &ecalSeveretyLevelAlgo,
561  DetId::Ecal),
562  .ecalEndcapIsol03 = EgammaRecHitIsolation(egIsoConeSizeOutSmall,
563  egIsoConeSizeInEndcap,
564  egIsoJurassicWidth,
565  egIsoPtMinEndcap,
566  egIsoEMinEndcap,
567  &caloGeometry,
568  *endcapRecHits,
569  &ecalSeveretyLevelAlgo,
570  DetId::Ecal),
571  .ecalEndcapIsol04 = EgammaRecHitIsolation(egIsoConeSizeOutLarge,
572  egIsoConeSizeInEndcap,
573  egIsoJurassicWidth,
574  egIsoPtMinEndcap,
575  egIsoEMinEndcap,
576  &caloGeometry,
577  *endcapRecHits,
578  &ecalSeveretyLevelAlgo,
579  DetId::Ecal),
580  .tkIsol03Calc = EleTkIsolFromCands(tkIsol03CalcCfg_, *ctfTracks),
581  .tkIsol04Calc = EleTkIsolFromCands(tkIsol04CalcCfg_, *ctfTracks),
582  .tkIsolHEEP03Calc = EleTkIsolFromCands(tkIsolHEEP03CalcCfg_, *ctfTracks),
583  .tkIsolHEEP04Calc = EleTkIsolFromCands(tkIsolHEEP04CalcCfg_, *ctfTracks),
584  .originalCtfTracks = {},
585  .originalGsfTracks = {}};
586 
587  eventData.ecalBarrelIsol03.setUseNumCrystals(cfg_.iso.useNumCrystals);
588  eventData.ecalBarrelIsol03.setVetoClustered(cfg_.iso.vetoClustered);
589  eventData.ecalBarrelIsol03.doSeverityChecks(eventData.barrelRecHits.product(),
591  eventData.ecalBarrelIsol03.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedBarrel);
592  eventData.ecalBarrelIsol04.setUseNumCrystals(cfg_.iso.useNumCrystals);
593  eventData.ecalBarrelIsol04.setVetoClustered(cfg_.iso.vetoClustered);
594  eventData.ecalBarrelIsol04.doSeverityChecks(eventData.barrelRecHits.product(),
596  eventData.ecalBarrelIsol04.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedBarrel);
597  eventData.ecalEndcapIsol03.setUseNumCrystals(cfg_.iso.useNumCrystals);
598  eventData.ecalEndcapIsol03.setVetoClustered(cfg_.iso.vetoClustered);
599  eventData.ecalEndcapIsol03.doSeverityChecks(eventData.endcapRecHits.product(),
601  eventData.ecalEndcapIsol03.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedEndcaps);
602  eventData.ecalEndcapIsol04.setUseNumCrystals(cfg_.iso.useNumCrystals);
603  eventData.ecalEndcapIsol04.setVetoClustered(cfg_.iso.vetoClustered);
604  eventData.ecalEndcapIsol04.doSeverityChecks(eventData.endcapRecHits.product(),
606  eventData.ecalEndcapIsol04.doFlagChecks(cfg_.recHits.recHitFlagsToBeExcludedEndcaps);
607 
608  return eventData;
609 }
610 
612  edm::EventSetup const& eventSetup,
615 
616  auto const& magneticField = eventSetup.getData(magneticFieldToken_);
617  auto const& caloGeometry = eventSetup.getData(caloGeometryToken_);
618  auto const& caloTopology = eventSetup.getData(caloTopologyToken_);
619  auto const& trackerGeometry = eventSetup.getData(trackerGeometryToken_);
620  auto const& ecalSeveretyLevelAlgo = eventSetup.getData(ecalSeveretyLevelAlgoToken_);
621  auto const& thresholds = eventSetup.getData(ecalPFRechitThresholdsToken_);
622 
623  // prepare access to hcal data
624  hcalHelperCone_.beginEvent(event, eventSetup);
625  hcalHelperBc_.beginEvent(event, eventSetup);
626 
627  checkSetup(eventSetup);
628  auto eventData = beginEvent(event, caloGeometry, ecalSeveretyLevelAlgo);
629  double magneticFieldInTesla = magneticField.inTesla(GlobalPoint(0., 0., 0.)).z();
630 
631  MultiTrajectoryStateTransform mtsTransform(&trackerGeometry, &magneticField);
632  GsfConstraintAtVertex constraintAtVtx(eventSetup);
633 
634  std::optional<egamma::conv::TrackTable> ctfTrackTable = std::nullopt;
635  std::optional<egamma::conv::TrackTable> gsfTrackTable = std::nullopt;
636 
637  const GsfElectronCoreCollection* coreCollection = eventData.coreElectrons.product();
638  for (unsigned int i = 0; i < coreCollection->size(); ++i) {
639  // check there is no existing electron with this core
640  const GsfElectronCoreRef coreRef = edm::Ref<GsfElectronCoreCollection>(eventData.coreElectrons, i);
641 
642  // check there is a super-cluster
643  if (coreRef->superCluster().isNull())
644  continue;
645 
646  // prepare internal structure for electron specific data
647  ElectronData electronData(coreRef, *eventData.beamspot);
648 
649  // calculate and check Trajectory StatesOnSurface....
650  if (!electronData.calculateTSOS(mtsTransform, constraintAtVtx))
651  continue;
652 
653  eventData.retreiveOriginalTrackCollections(electronData.ctfTrackRef, electronData.coreRef->gsfTrack());
654 
655  if (!eventData.originalCtfTracks.isValid()) {
656  eventData.originalCtfTracks = eventData.currentCtfTracks;
657  }
658 
659  if (ctfTrackTable == std::nullopt) {
660  ctfTrackTable = egamma::conv::TrackTable(*eventData.originalCtfTracks);
661  }
662  if (gsfTrackTable == std::nullopt) {
663  gsfTrackTable = egamma::conv::TrackTable(*eventData.originalGsfTracks);
664  }
665 
667  electronData,
668  eventData,
669  caloTopology,
670  caloGeometry,
671  mtsTransform,
672  magneticFieldInTesla,
673  hoc,
674  ctfTrackTable.value(),
675  gsfTrackTable.value(),
676  thresholds);
677 
678  } // loop over tracks
679  return electrons;
680 }
681 
683  // default value
684  ele.setPassCutBasedPreselection(false);
685 
686  // kind of seeding
687  bool eg = ele.core()->ecalDrivenSeed();
688  bool pf = ele.core()->trackerDrivenSeed() && !ele.core()->ecalDrivenSeed();
689  if (eg && pf) {
690  throw cms::Exception("GsfElectronAlgo|BothEcalAndPureTrackerDriven")
691  << "An electron cannot be both egamma and purely pflow";
692  }
693  if ((!eg) && (!pf)) {
694  throw cms::Exception("GsfElectronAlgo|NeitherEcalNorPureTrackerDriven")
695  << "An electron cannot be neither egamma nor purely pflow";
696  }
697 
698  CutsConfiguration const& cfg = cfg_.cuts;
699 
700  // Et cut
701  double etaValue = EleRelPoint(ele.superCluster()->position(), bs.position()).eta();
702  double etValue = ele.superCluster()->energy() / cosh(etaValue);
703  LogTrace("GsfElectronAlgo") << "Et : " << etValue;
704  if (ele.isEB() && (etValue < cfg.minSCEtBarrel))
705  return;
706  if (ele.isEE() && (etValue < cfg.minSCEtEndcaps))
707  return;
708  LogTrace("GsfElectronAlgo") << "Et criteria are satisfied";
709 
710  // E/p cut
711  double eopValue = ele.eSuperClusterOverP();
712  LogTrace("GsfElectronAlgo") << "E/p : " << eopValue;
713  if (ele.isEB() && (eopValue > cfg.maxEOverPBarrel))
714  return;
715  if (ele.isEE() && (eopValue > cfg.maxEOverPEndcaps))
716  return;
717  if (ele.isEB() && (eopValue < cfg.minEOverPBarrel))
718  return;
719  if (ele.isEE() && (eopValue < cfg.minEOverPEndcaps))
720  return;
721  LogTrace("GsfElectronAlgo") << "E/p criteria are satisfied";
722 
723  // HoE cuts
724  LogTrace("GsfElectronAlgo") << "HoE : " << ele.hcalOverEcal();
725  double hoeCone = ele.hcalOverEcal();
726  double hoeBc = ele.hcalOverEcalBc();
727  const reco::CaloCluster& seedCluster = *(ele.superCluster()->seed());
728  int detector = seedCluster.hitsAndFractions()[0].first.subdetId();
729  bool HoEveto = false;
730  double scle = ele.superCluster()->energy();
731 
732  if (detector == EcalBarrel)
733  HoEveto = hoeCone * scle < cfg.maxHBarrelCone || hoeBc * scle < cfg.maxHBarrelBc ||
734  hoeCone < cfg.maxHOverEBarrelCone || hoeBc < cfg.maxHOverEBarrelBc;
735  else if (detector == EcalEndcap)
736  HoEveto = hoeCone * scle < cfg.maxHEndcapsCone || hoeBc * scle < cfg.maxHEndcapsBc ||
737  hoeCone < cfg.maxHOverEEndcapsCone || hoeBc < cfg.maxHOverEEndcapsBc;
738 
739  if (!HoEveto)
740  return;
741  LogTrace("GsfElectronAlgo") << "H/E criteria are satisfied";
742 
743  // delta eta criteria
744  double deta = ele.deltaEtaSuperClusterTrackAtVtx();
745  LogTrace("GsfElectronAlgo") << "delta eta : " << deta;
746  if (ele.isEB() && (std::abs(deta) > cfg.maxDeltaEtaBarrel))
747  return;
748  if (ele.isEE() && (std::abs(deta) > cfg.maxDeltaEtaEndcaps))
749  return;
750  LogTrace("GsfElectronAlgo") << "Delta eta criteria are satisfied";
751 
752  // delta phi criteria
753  double dphi = ele.deltaPhiSuperClusterTrackAtVtx();
754  LogTrace("GsfElectronAlgo") << "delta phi : " << dphi;
755  if (ele.isEB() && (std::abs(dphi) > cfg.maxDeltaPhiBarrel))
756  return;
757  if (ele.isEE() && (std::abs(dphi) > cfg.maxDeltaPhiEndcaps))
758  return;
759  LogTrace("GsfElectronAlgo") << "Delta phi criteria are satisfied";
760 
761  // sigma ieta ieta
762  LogTrace("GsfElectronAlgo") << "sigma ieta ieta : " << ele.sigmaIetaIeta();
763  if (ele.isEB() && (ele.sigmaIetaIeta() > cfg.maxSigmaIetaIetaBarrel))
764  return;
765  if (ele.isEE() && (ele.sigmaIetaIeta() > cfg.maxSigmaIetaIetaEndcaps))
766  return;
767  LogTrace("GsfElectronAlgo") << "Sigma ieta ieta criteria are satisfied";
768 
769  // fiducial
770  if (!ele.isEB() && cfg.isBarrel)
771  return;
772  if (!ele.isEE() && cfg.isEndcaps)
773  return;
774  if (cfg.isFiducial &&
775  (ele.isEBEEGap() || ele.isEBEtaGap() || ele.isEBPhiGap() || ele.isEERingGap() || ele.isEEDeeGap()))
776  return;
777  LogTrace("GsfElectronAlgo") << "Fiducial flags criteria are satisfied";
778 
779  // seed in TEC
780  edm::RefToBase<TrajectorySeed> seed = ele.gsfTrack()->extra()->seedRef();
781  ElectronSeedRef elseed = seed.castTo<ElectronSeedRef>();
782  if (eg && !cfg_.cuts.seedFromTEC) {
783  if (elseed.isNull()) {
784  throw cms::Exception("GsfElectronAlgo|NotElectronSeed") << "The GsfTrack seed is not an ElectronSeed ?!";
785  } else {
786  if (elseed->subDet(1) == 6)
787  return;
788  }
789  }
790 
791  // transverse impact parameter
792  if (std::abs(ele.gsfTrack()->dxy(bs.position())) > cfg.maxTIP)
793  return;
794  LogTrace("GsfElectronAlgo") << "TIP criterion is satisfied";
795 
796  LogTrace("GsfElectronAlgo") << "All cut based criteria are satisfied";
797  ele.setPassCutBasedPreselection(true);
798 }
799 
801  ElectronData& electronData,
802  EventData& eventData,
803  CaloTopology const& topology,
804  CaloGeometry const& geometry,
805  MultiTrajectoryStateTransform const& mtsTransform,
806  double magneticFieldInTesla,
811  // charge ID
812  int eleCharge;
813  GsfElectron::ChargeInfo eleChargeInfo;
814  electronData.computeCharge(eleCharge, eleChargeInfo);
815 
816  // electron basic cluster
817  CaloClusterPtr elbcRef = electronData.getEleBasicCluster(mtsTransform);
818 
819  // Seed cluster
820  const reco::CaloCluster& seedCluster = *(electronData.superClusterRef->seed());
821 
822  // seed Xtal
823  // temporary, till CaloCluster->seed() is made available
824  DetId seedXtalId = seedCluster.hitsAndFractions()[0].first;
825 
826  electronData.calculateMode();
827 
828  //====================================================
829  // Candidate attributes
830  //====================================================
831 
832  Candidate::LorentzVector momentum = electronData.calculateMomentum();
833 
834  //====================================================
835  // Track-Cluster Matching
836  //====================================================
837 
839  tcMatching.electronCluster = elbcRef;
840  tcMatching.eSuperClusterOverP =
841  (electronData.vtxMom.mag() > 0) ? (electronData.superClusterRef->energy() / electronData.vtxMom.mag()) : (-1.);
842  tcMatching.eSeedClusterOverP =
843  (electronData.vtxMom.mag() > 0.) ? (seedCluster.energy() / electronData.vtxMom.mag()) : (-1);
844  tcMatching.eSeedClusterOverPout =
845  (electronData.seedMom.mag() > 0.) ? (seedCluster.energy() / electronData.seedMom.mag()) : (-1.);
846  tcMatching.eEleClusterOverPout =
847  (electronData.eleMom.mag() > 0.) ? (elbcRef->energy() / electronData.eleMom.mag()) : (-1.);
848 
849  EleRelPointPair scAtVtx(
850  electronData.superClusterRef->position(), electronData.sclPos, eventData.beamspot->position());
851  tcMatching.deltaEtaSuperClusterAtVtx = scAtVtx.dEta();
852  tcMatching.deltaPhiSuperClusterAtVtx = scAtVtx.dPhi();
853 
854  EleRelPointPair seedAtCalo(seedCluster.position(), electronData.seedPos, eventData.beamspot->position());
855  tcMatching.deltaEtaSeedClusterAtCalo = seedAtCalo.dEta();
856  tcMatching.deltaPhiSeedClusterAtCalo = seedAtCalo.dPhi();
857 
858  EleRelPointPair ecAtCalo(elbcRef->position(), electronData.elePos, eventData.beamspot->position());
859  tcMatching.deltaEtaEleClusterAtCalo = ecAtCalo.dEta();
860  tcMatching.deltaPhiEleClusterAtCalo = ecAtCalo.dPhi();
861 
862  //=======================================================
863  // Track extrapolations
864  //=======================================================
865 
867  ele_convert(electronData.vtxPos, tkExtra.positionAtVtx);
868  ele_convert(electronData.sclPos, tkExtra.positionAtCalo);
869  ele_convert(electronData.vtxMom, tkExtra.momentumAtVtx);
870  ele_convert(electronData.sclMom, tkExtra.momentumAtCalo);
871  ele_convert(electronData.seedMom, tkExtra.momentumOut);
872  ele_convert(electronData.eleMom, tkExtra.momentumAtEleClus);
874 
875  //=======================================================
876  // Closest Ctf Track
877  //=======================================================
878 
880  ctfInfo.ctfTrack = electronData.ctfTrackRef;
881  ctfInfo.shFracInnerHits = electronData.shFracInnerHits;
882 
883  //====================================================
884  // FiducialFlags, using nextToBoundary definition of gaps
885  //====================================================
886 
887  reco::GsfElectron::FiducialFlags fiducialFlags;
888  int region = seedXtalId.det();
889  int detector = seedXtalId.subdetId();
890  double feta = std::abs(electronData.superClusterRef->position().eta());
891  if (detector == EcalBarrel) {
892  fiducialFlags.isEB = true;
893  EBDetId ebdetid(seedXtalId);
894  if (EBDetId::isNextToEtaBoundary(ebdetid)) {
895  if (ebdetid.ietaAbs() == 85) {
896  fiducialFlags.isEBEEGap = true;
897  } else {
898  fiducialFlags.isEBEtaGap = true;
899  }
900  }
901  if (EBDetId::isNextToPhiBoundary(ebdetid)) {
902  fiducialFlags.isEBPhiGap = true;
903  }
904  } else if (detector == EcalEndcap) {
905  fiducialFlags.isEE = true;
906  EEDetId eedetid(seedXtalId);
907  if (EEDetId::isNextToRingBoundary(eedetid)) {
908  if (std::abs(feta) < 2.) {
909  fiducialFlags.isEBEEGap = true;
910  } else {
911  fiducialFlags.isEERingGap = true;
912  }
913  }
914  if (EEDetId::isNextToDBoundary(eedetid)) {
915  fiducialFlags.isEEDeeGap = true;
916  }
918  fiducialFlags.isEE = true;
919  //HGCalDetId eeDetid(seedXtalId);
920  // fill in fiducial information when we know how to use it...
921  } else {
922  throw cms::Exception("GsfElectronAlgo|UnknownXtalRegion")
923  << "createElectron(): do not know if it is a barrel or endcap seed cluster !!!!";
924  }
925 
926  //====================================================
927  // SaturationInfo
928  //====================================================
929 
930  auto saturationInfo = calculateSaturationInfo(electronData.superClusterRef, eventData);
931 
932  //====================================================
933  // ShowerShape
934  //====================================================
935 
936  reco::GsfElectron::ShowerShape showerShape;
937  reco::GsfElectron::ShowerShape full5x5_showerShape;
939  showerShape = calculateShowerShape<false>(
940  electronData.superClusterRef, hcalHelperCone_, hcalHelperBc_, eventData, topology, geometry, thresholds);
941  full5x5_showerShape = calculateShowerShape<true>(
942  electronData.superClusterRef, hcalHelperCone_, hcalHelperBc_, eventData, topology, geometry, thresholds);
943  }
944 
945  //====================================================
946  // ConversionRejection
947  //====================================================
948 
950  if (!ctfTracks.isValid()) {
951  ctfTracks = eventData.currentCtfTracks;
952  }
953 
954  {
955  //get the references to the gsf and ctf tracks that are made
956  //by the electron
957  const reco::TrackRef el_ctftrack = electronData.coreRef->ctfTrack();
958  const reco::GsfTrackRef& el_gsftrack = electronData.coreRef->gsfTrack();
959 
960  //protect against the wrong collection being passed to the function
961  if (el_ctftrack.isNonnull() && el_ctftrack.id() != ctfTracks.id())
962  throw cms::Exception("ConversionFinderError")
963  << "ProductID of ctf track collection does not match ProductID of electron's CTF track! \n";
964  if (el_gsftrack.isNonnull() && el_gsftrack.id() != eventData.originalGsfTracks.id())
965  throw cms::Exception("ConversionFinderError")
966  << "ProductID of gsf track collection does not match ProductID of electron's GSF track! \n";
967  }
968 
969  // values of conversionInfo.flag
970  // -9999 : Partner track was not found
971  // 0 : Partner track found in the CTF collection using
972  // 1 : Partner track found in the CTF collection using
973  // 2 : Partner track found in the GSF collection using
974  // 3 : Partner track found in the GSF collection using the electron's GSF track
975  auto conversionInfo = egamma::conv::findConversion(*electronData.coreRef, ctfTable, gsfTable, magneticFieldInTesla);
976 
978  conversionVars.flags = conversionInfo.flag;
979  conversionVars.dist = conversionInfo.dist;
980  conversionVars.dcot = conversionInfo.dcot;
981  conversionVars.radius = conversionInfo.radiusOfConversion;
983  //this is an intentionally bugged version which ignores the GsfTrack
984  //this is a bug which was introduced in reduced e/gamma where the GsfTrack gets
985  //relinked to a new collection which means it can no longer match the conversion
986  //as it matches based on product/id
987  //we keep this defination for the MVAs
988  const auto matchedConv = ConversionTools::matchedConversion(
989  electronData.coreRef->ctfTrack(), *eventData.conversions, eventData.beamspot->position(), 2.0, 1e-6, 0);
990  conversionVars.vtxFitProb = ConversionTools::getVtxFitProb(matchedConv);
991  }
992  if (conversionInfo.conversionPartnerCtfTkIdx) {
993  conversionVars.partner = TrackBaseRef(reco::TrackRef(ctfTracks, conversionInfo.conversionPartnerCtfTkIdx.value()));
994  } else if (conversionInfo.conversionPartnerGsfTkIdx) {
995  conversionVars.partner =
996  TrackBaseRef(reco::GsfTrackRef(eventData.originalGsfTracks, conversionInfo.conversionPartnerGsfTkIdx.value()));
997  }
998 
999  //====================================================
1000  // Go !
1001  //====================================================
1002 
1003  electrons.emplace_back(eleCharge,
1004  eleChargeInfo,
1005  electronData.coreRef,
1006  tcMatching,
1007  tkExtra,
1008  ctfInfo,
1009  fiducialFlags,
1010  showerShape,
1011  full5x5_showerShape,
1012  conversionVars,
1013  saturationInfo);
1014  auto& ele = electrons.back();
1015  // Will be overwritten later in the case of the regression
1016  ele.setCorrectedEcalEnergyError(egamma::ecalClusterEnergyUncertaintyElectronSpecific(*(ele.superCluster())));
1017  ele.setP4(GsfElectron::P4_FROM_SUPER_CLUSTER, momentum, 0, true);
1018 
1019  //====================================================
1020  // brems fractions
1021  //====================================================
1022 
1023  if (electronData.innMom.mag() > 0.) {
1024  ele.setTrackFbrem((electronData.innMom.mag() - electronData.outMom.mag()) / electronData.innMom.mag());
1025  }
1026 
1027  // the supercluster is the refined one The seed is not necessarily the first cluster
1028  // hence the use of the electronCluster
1029  SuperClusterRef sc = ele.superCluster();
1030  if (!(sc.isNull())) {
1031  CaloClusterPtr cl = ele.electronCluster();
1032  if (sc->clustersSize() > 1) {
1033  float pf_fbrem = (sc->energy() - cl->energy()) / sc->energy();
1034  ele.setSuperClusterFbrem(pf_fbrem);
1035  } else {
1036  ele.setSuperClusterFbrem(0);
1037  }
1038  }
1039 
1040  //====================================================
1041  // classification and corrections
1042  //====================================================
1043  // classification
1044  const auto elClass = egamma::classifyElectron(ele);
1045  ele.setClassification(elClass);
1046 
1047  bool unexpectedClassification = elClass == GsfElectron::UNKNOWN || elClass > GsfElectron::GAP;
1048  if (unexpectedClassification) {
1049  edm::LogWarning("GsfElectronAlgo") << "unexpected classification";
1050  }
1051 
1052  // ecal energy
1053  if (cfg_.strategy.useEcalRegression) // new
1054  {
1055  regHelper_.applyEcalRegression(ele, *eventData.vertices, *eventData.barrelRecHits, *eventData.endcapRecHits);
1056  } else // original implementation
1057  {
1059  if (ele.core()->ecalDrivenSeed()) {
1060  if (cfg_.strategy.ecalDrivenEcalEnergyFromClassBasedParameterization && !unexpectedClassification) {
1061  if (ele.isEcalEnergyCorrected()) {
1062  edm::LogWarning("ElectronEnergyCorrector::classBasedElectronEnergy") << "already done";
1063  } else {
1064  ele.setCorrectedEcalEnergy(
1066  }
1067  }
1069  ele.setCorrectedEcalEnergyError(egamma::classBasedElectronEnergyUncertainty(ele));
1070  }
1071  } else {
1073  ele.setCorrectedEcalEnergyError(egamma::simpleElectronEnergyUncertainty(ele));
1074  }
1075  }
1076  }
1077  }
1078 
1079  // momentum
1080  // Keep the default correction running first. The track momentum error is computed in there
1081  if (cfg_.strategy.useDefaultEnergyCorrection && ele.core()->ecalDrivenSeed() && !unexpectedClassification) {
1082  if (ele.p4Error(reco::GsfElectron::P4_COMBINATION) != 999.) {
1083  edm::LogWarning("ElectronMomentumCorrector::correct") << "already done";
1084  } else {
1085  auto p = egamma::correctElectronMomentum(ele, electronData.vtxTSOS);
1086  ele.correctMomentum(p.momentum, p.trackError, p.finalError);
1087  }
1088  }
1090  {
1092  }
1093 
1094  //====================================================
1095  // now isolation variables
1096  //====================================================
1098  dr03.tkSumPt = eventData.tkIsol03Calc(*ele.gsfTrack()).ptSum;
1099  dr04.tkSumPt = eventData.tkIsol04Calc(*ele.gsfTrack()).ptSum;
1100  dr03.tkSumPtHEEP = eventData.tkIsolHEEP03Calc(*ele.gsfTrack()).ptSum;
1101  dr04.tkSumPtHEEP = eventData.tkIsolHEEP04Calc(*ele.gsfTrack()).ptSum;
1102 
1104  for (uint id = 0; id < dr03.hcalRecHitSumEt.size(); ++id) {
1105  dr03.hcalRecHitSumEt[id] = eventData.hadIsolation03.getHcalEtSum(&ele, id + 1);
1106  dr03.hcalRecHitSumEtBc[id] = eventData.hadIsolation03Bc.getHcalEtSumBc(&ele, id + 1);
1107 
1108  dr04.hcalRecHitSumEt[id] = eventData.hadIsolation04.getHcalEtSum(&ele, id + 1);
1109  dr04.hcalRecHitSumEtBc[id] = eventData.hadIsolation04Bc.getHcalEtSumBc(&ele, id + 1);
1110  }
1111 
1112  dr03.ecalRecHitSumEt = eventData.ecalBarrelIsol03.getEtSum(&ele);
1113  dr03.ecalRecHitSumEt += eventData.ecalEndcapIsol03.getEtSum(&ele);
1114 
1115  dr04.ecalRecHitSumEt = eventData.ecalBarrelIsol04.getEtSum(&ele);
1116  dr04.ecalRecHitSumEt += eventData.ecalEndcapIsol04.getEtSum(&ele);
1117  }
1118 
1119  dr03.pre7DepthHcal = false;
1120  dr04.pre7DepthHcal = false;
1121 
1122  ele.setIsolation03(dr03);
1123  ele.setIsolation04(dr04);
1124 
1125  //====================================================
1126  // preselection flag
1127  //====================================================
1128 
1129  setCutBasedPreselectionFlag(ele, *eventData.beamspot);
1130  //setting mva flag, currently GedGsfElectron and GsfElectron pre-selection flags have desynced
1131  //this is for GedGsfElectrons, GsfElectrons (ie old pre 7X std reco) resets this later on
1132  //in the function "addPfInfo"
1133  //yes this is awful, we'll fix it once we work out how to...
1134  float mvaValue = hoc->sElectronMVAEstimator->mva(ele, *(eventData.vertices));
1135  ele.setPassMvaPreselection(mvaValue > cfg_.strategy.PreSelectMVA);
1136 
1137  //====================================================
1138  // Pixel match variables
1139  //====================================================
1141 
1142  LogTrace("GsfElectronAlgo") << "Constructed new electron with energy " << ele.p4().e();
1143 }
1144 
1145 // Pixel match variables
1147  int sd1 = 0;
1148  int sd2 = 0;
1149  float dPhi1 = 0;
1150  float dPhi2 = 0;
1151  float dRz1 = 0;
1152  float dRz2 = 0;
1153  edm::RefToBase<TrajectorySeed> seed = ele.gsfTrack()->extra()->seedRef();
1154  ElectronSeedRef elseed = seed.castTo<ElectronSeedRef>();
1155  if (seed.isNull()) {
1156  } else {
1157  if (elseed.isNull()) {
1158  } else {
1159  sd1 = elseed->subDet(0);
1160  sd2 = elseed->subDet(1);
1161  dPhi1 = (ele.charge() > 0) ? elseed->dPhiPos(0) : elseed->dPhiNeg(0);
1162  dPhi2 = (ele.charge() > 0) ? elseed->dPhiPos(1) : elseed->dPhiNeg(1);
1163  dRz1 = (ele.charge() > 0) ? elseed->dRZPos(0) : elseed->dRZNeg(0);
1164  dRz2 = (ele.charge() > 0) ? elseed->dRZPos(1) : elseed->dRZNeg(1);
1165  }
1166  }
1167  ele.setPixelMatchSubdetectors(sd1, sd2);
1168  ele.setPixelMatchDPhi1(dPhi1);
1169  ele.setPixelMatchDPhi2(dPhi2);
1170  ele.setPixelMatchDRz1(dRz1);
1171  ele.setPixelMatchDRz2(dRz2);
1172 }
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:157
ElectronHcalHelper::hcalTowersBehindClusters
auto hcalTowersBehindClusters(const reco::SuperCluster &sc) const
Definition: ElectronHcalHelper.h:45
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
reco::GsfElectron::ShowerShape::e2x5Right
float e2x5Right
Definition: GsfElectron.h:394
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
reco::GsfElectron::ShowerShape::pre7DepthHcal
bool pre7DepthHcal
Definition: GsfElectron.h:384
GsfElectronAlgo::magneticFieldToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magneticFieldToken_
Definition: GsfElectronAlgo.h:254
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
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:67
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
cuts
const TkSoA *__restrict__ CAHitNtupletGeneratorKernelsGPU::QualityCuts cuts
Definition: CAHitNtupletGeneratorKernelsImpl.h:416
GsfElectronAlgo::IsolationConfiguration::eMinEndcaps
double eMinEndcaps
Definition: GsfElectronAlgo.h:173
L1EGammaCrystalsEmulatorProducer_cfi.scale
scale
Definition: L1EGammaCrystalsEmulatorProducer_cfi.py:10
GsfElectronAlgo::ElectronData
Definition: GsfElectronAlgo.cc:93
particleFlowZeroSuppressionECAL_cff.thresholds
thresholds
Definition: particleFlowZeroSuppressionECAL_cff.py:31
GsfElectronAlgo::EventData::coreElectrons
edm::Handle< reco::GsfElectronCoreCollection > coreElectrons
Definition: GsfElectronAlgo.cc:63
GsfElectronAlgo::Configuration::iso
const IsolationConfiguration iso
Definition: GsfElectronAlgo.h:206
GsfElectronAlgo::CutsConfiguration::multThresEB
double multThresEB
Definition: GsfElectronAlgo.h:150
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
ElectronHcalHelper::beginEvent
void beginEvent(const edm::Event &evt, const edm::EventSetup &eventSetup)
Definition: ElectronHcalHelper.cc:20
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::ChargeInfo
Definition: GsfElectron.h:123
GsfElectronAlgo::StrategyConfiguration
Definition: GsfElectronAlgo.h:74
edm::isNotFinite
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
EgammaHcalIsolation::InclusionRule::withinConeAroundCluster
GsfElectronAlgo::IsolationConfiguration::intRadiusEcalBarrel
double intRadiusEcalBarrel
Definition: GsfElectronAlgo.h:167
GsfElectronAlgo::IsolationConfiguration::etMinHcal
double etMinHcal
Definition: GsfElectronAlgo.h:166
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:918
reco::GsfElectron::isEERingGap
bool isEERingGap() const
Definition: GsfElectron.h:345
BasicCluster.h
EgammaHcalIsolation::arrayHB
std::array< double, 4 > arrayHB
Definition: EgammaHcalIsolation.h:41
HLT_FULL_cff.endcapRecHits
endcapRecHits
Definition: HLT_FULL_cff.py:14947
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:257
reco::GsfElectron::FiducialFlags::isEEDeeGap
bool isEEDeeGap
Definition: GsfElectron.h:323
GsfElectronAlgo::Tokens::gsfElectronCores
edm::EDGetTokenT< reco::GsfElectronCoreCollection > gsfElectronCores
Definition: GsfElectronAlgo.h:61
reco::GsfElectron::ClosestCtfTrack::ctfTrack
TrackRef ctfTrack
Definition: GsfElectron.h:182
GsfElectronAlgo::StrategyConfiguration::useCombinationRegression
bool useCombinationRegression
Definition: GsfElectronAlgo.h:94
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:174
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:438
reco::GsfElectron::P4_COMBINATION
Definition: GsfElectron.h:831
reco::GsfElectron::TrackClusterMatching::eSeedClusterOverP
float eSeedClusterOverP
Definition: GsfElectron.h:205
HLT_FULL_cff.barrelRecHits
barrelRecHits
Definition: HLT_FULL_cff.py:14946
GsfElectronAlgo::ElectronData::sclMom
GlobalVector sclMom
Definition: GsfElectronAlgo.cc:122
reco::GsfElectron::IsolationVariables::hcalRecHitSumEtBc
std::array< float, 7 > hcalRecHitSumEtBc
Definition: GsfElectron.h:549
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:386
GsfElectronAlgo::tkIsol03CalcCfg_
const EleTkIsolFromCands::Configuration tkIsol03CalcCfg_
Definition: GsfElectronAlgo.h:249
reco::GsfElectron::setPixelMatchSubdetectors
void setPixelMatchSubdetectors(int sd1, int sd2)
Definition: GsfElectron.h:916
GsfElectronAlgo::EventData
Definition: GsfElectronAlgo.cc:54
reco::GsfElectron::ConversionRejection::dcot
float dcot
Definition: GsfElectron.h:639
edm::SortedCollection< EcalRecHit >
GsfElectronAlgo::hcalHelperBc_
ElectronHcalHelper hcalHelperBc_
Definition: GsfElectronAlgo.h:263
reco::GsfElectron::ShowerShape::sigmaIetaIphi
float sigmaIetaIphi
Definition: GsfElectron.h:385
info
static const TGPicture * info(bool iBackgroundIsBlack)
Definition: FWCollectionSummaryWidget.cc:153
TrackingRecHitFwd.h
GsfElectronAlgo::hcalHelperCone_
ElectronHcalHelper hcalHelperCone_
Definition: GsfElectronAlgo.h:262
GsfElectronAlgo::setCutBasedPreselectionFlag
void setCutBasedPreselectionFlag(reco::GsfElectron &ele, const reco::BeamSpot &) const
Definition: GsfElectronAlgo.cc:682
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:175
reco::GsfElectron::ShowerShape::hcalOverEcal
std::array< float, 7 > hcalOverEcal
Definition: GsfElectron.h:379
GsfElectronAlgo::ElectronData::calculateMomentum
reco::Candidate::LorentzVector calculateMomentum()
Definition: GsfElectronAlgo.cc:252
GsfElectronAlgo::IsolationConfiguration::eMinBarrel
double eMinBarrel
Definition: GsfElectronAlgo.h:171
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:46
ElectronUtilities.h
reco::GsfElectron::SaturationInfo::nSaturatedXtals
int nSaturatedXtals
Definition: GsfElectron.h:521
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::EcalRecHitsConfiguration::recHitFlagsToBeExcludedBarrel
std::vector< int > recHitFlagsToBeExcludedBarrel
Definition: GsfElectronAlgo.h:156
HLT_FULL_cff.dPhi
dPhi
Definition: HLT_FULL_cff.py:13695
reco::GsfElectron::TrackExtrapolations::momentumOut
math::XYZVectorF momentumOut
Definition: GsfElectron.h:267
GsfElectronAlgo::Tokens::seedsTag
edm::EDGetTokenT< reco::ElectronSeedCollection > seedsTag
Definition: GsfElectronAlgo.h:67
reco::GsfElectron::ShowerShape::e2x5Max
float e2x5Max
Definition: GsfElectron.h:371
EcalCondObjectContainer
Definition: EcalCondObjectContainer.h:13
reco::GsfElectron::TrackClusterMatching::deltaEtaEleClusterAtCalo
float deltaEtaEleClusterAtCalo
Definition: GsfElectron.h:210
edm::Handle< reco::GsfElectronCoreCollection >
GsfElectronAlgo::Tokens::beamSpotTag
edm::EDGetTokenT< reco::BeamSpot > beamSpotTag
Definition: GsfElectronAlgo.h:69
parallelization.uint
uint
Definition: parallelization.py:124
GsfElectronAlgo::Tokens::barrelRecHitCollection
edm::EDGetTokenT< EcalRecHitCollection > barrelRecHitCollection
Definition: GsfElectronAlgo.h:65
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
CaloTopology
Definition: CaloTopology.h:19
GsfElectronAlgo::StrategyConfiguration::ecalDrivenEcalErrorFromClassBasedParameterization
bool ecalDrivenEcalErrorFromClassBasedParameterization
Definition: GsfElectronAlgo.h:80
ElectronClassification.h
EcalBarrel
Definition: EcalSubdetector.h:10
reco::GsfElectron::ShowerShape::eBottom
float eBottom
Definition: GsfElectron.h:391
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::ShowerShape::sigmaEtaEta
float sigmaEtaEta
Definition: GsfElectron.h:367
egamma::ecalClusterEnergyUncertaintyElectronSpecific
float ecalClusterEnergyUncertaintyElectronSpecific(reco::SuperCluster const &superCluster)
Definition: ecalClusterEnergyUncertaintyElectronSpecific.cc:4
reco::GsfElectron::core
virtual GsfElectronCoreRef core() const
Definition: GsfElectron.cc:8
reco::GsfElectron::TrackClusterMatching::deltaPhiSuperClusterAtVtx
float deltaPhiSuperClusterAtVtx
Definition: GsfElectron.h:212
reco::GsfElectron::hcalOverEcalBc
float hcalOverEcalBc(const ShowerShape &ss, int depth) const
Definition: GsfElectron.h:450
EgammaHcalIsolation::getHcalEtSum
double getHcalEtSum(const reco::Candidate *c, int depth) const
Definition: EgammaHcalIsolation.h:82
fileCollector.seed
seed
Definition: fileCollector.py:127
reco::GsfElectron::IsolationVariables::tkSumPtHEEP
float tkSumPtHEEP
Definition: GsfElectron.h:542
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
EgammaHcalIsolation
Definition: EgammaHcalIsolation.h:38
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
GsfElectronAlgo::EcalRecHitsConfiguration::recHitSeverityToBeExcludedBarrel
std::vector< int > recHitSeverityToBeExcludedBarrel
Definition: GsfElectronAlgo.h:158
EleRelPoint
Definition: ElectronUtilities.h:25
CaloGeometry
Definition: CaloGeometry.h:21
cms::cuda::bs
bs
Definition: HistoContainer.h:76
GsfElectronAlgo::EventData::hadIsolation03
EgammaHcalIsolation hadIsolation03
Definition: GsfElectronAlgo.cc:72
GsfElectronAlgo::HeavyObjectCache
Definition: GsfElectronAlgo.h:53
reco::GsfElectron::IsolationVariables::tkSumPt
float tkSumPt
Definition: GsfElectron.h:541
reco::GsfElectron::FiducialFlags::isEERingGap
bool isEERingGap
Definition: GsfElectron.h:324
GsfElectronAlgo::caloTopologyToken_
const edm::ESGetToken< CaloTopology, CaloTopologyRecord > caloTopologyToken_
Definition: GsfElectronAlgo.h:256
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
GsfElectronAlgo::StrategyConfiguration::pureTrackerDrivenEcalErrorFromSimpleParameterization
bool pureTrackerDrivenEcalErrorFromSimpleParameterization
Definition: GsfElectronAlgo.h:81
GsfElectronAlgo::regHelper_
RegressionHelper regHelper_
Definition: GsfElectronAlgo.h:265
GsfElectronAlgo::EventData::endcapRecHits
edm::Handle< EcalRecHitCollection > endcapRecHits
Definition: GsfElectronAlgo.cc:65
GsfElectronAlgo::EventData::event
edm::Event const * event
Definition: GsfElectronAlgo.cc:59
reco::GsfElectron::setPixelMatchDRz2
void setPixelMatchDRz2(float dRz2)
Definition: GsfElectron.h:920
GsfElectronAlgo::EventData::hadIsolation03Bc
EgammaHcalIsolation hadIsolation03Bc
Definition: GsfElectronAlgo.cc:73
reco::GsfElectron::ConversionRejection
Definition: GsfElectron.h:635
GsfConstraintAtVertex
Definition: GsfConstraintAtVertex.h:21
reco::GsfElectron::ShowerShape
Definition: GsfElectron.h:366
PVValHelper::eta
Definition: PVValidationHelpers.h:70
ecalClusterEnergyUncertaintyElectronSpecific.h
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:1146
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::ShowerShape::eTop
float eTop
Definition: GsfElectron.h:388
reco::GsfElectron::FiducialFlags
Definition: GsfElectron.h:317
reco::GsfElectron::setPixelMatchDRz1
void setPixelMatchDRz1(float dRz1)
Definition: GsfElectron.h:919
ElectronHcalHelper::hasActiveHcal
bool hasActiveHcal(const reco::SuperCluster &sc) const
Definition: ElectronHcalHelper.cc:67
reco::GsfElectron::IsolationVariables::pre7DepthHcal
bool pre7DepthHcal
Definition: GsfElectron.h:550
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:39
Point3DBase< float, GlobalTag >
GsfElectron.h
reco::GsfElectron::IsolationVariables
Definition: GsfElectron.h:540
ElectronHcalHelper::hcalESum
double hcalESum(const reco::SuperCluster &, int depth) const
Definition: ElectronHcalHelper.cc:73
reco::GsfElectron::ShowerShape::hcalTowersBehindClusters
std::vector< CaloTowerDetId > hcalTowersBehindClusters
Definition: GsfElectron.h:382
GsfElectronAlgo::tkIsolHEEP03CalcCfg_
const EleTkIsolFromCands::Configuration tkIsolHEEP03CalcCfg_
Definition: GsfElectronAlgo.h:251
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::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, EcalPFRecHitThresholds const &thresholds)
Definition: GsfElectronAlgo.cc:800
GsfElectronAlgo::beginEvent
EventData beginEvent(edm::Event const &event, CaloGeometry const &caloGeometry, EcalSeverityLevelAlgo const &ecalSeveretyLevelAlgo)
Definition: GsfElectronAlgo.cc:419
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:66
EcalSubdetector.h
egamma::classBasedElectronEnergy
float classBasedElectronEnergy(reco::GsfElectron const &, reco::BeamSpot const &, EcalClusterFunctionBaseClass const &crackCorrectionFunction)
Definition: ElectronEnergyCorrector.cc:295
EcalEndcap
Definition: EcalSubdetector.h:10
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
EgammaLocalCovParamDefaults::kRelEnCut
static constexpr float kRelEnCut
Definition: EgammaLocalCovParamDefaults.h:5
GsfElectronAlgo::EventData::vertices
edm::Handle< reco::VertexCollection > vertices
Definition: GsfElectronAlgo.cc:68
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition: ALCARECOTkAlJpsiMuMu_cff.py:47
GsfElectronAlgo::EventData::barrelRecHits
edm::Handle< EcalRecHitCollection > barrelRecHits
Definition: GsfElectronAlgo.cc:64
reco::GsfElectron::TrackClusterMatching::eSeedClusterOverPout
float eSeedClusterOverPout
Definition: GsfElectron.h:206
GsfElectronAlgo::Tokens
Definition: GsfElectronAlgo.h:60
GsfElectronAlgo::EventData::tkIsolHEEP04Calc
EleTkIsolFromCands tkIsolHEEP04Calc
Definition: GsfElectronAlgo.cc:80
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
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
EgammaHcalIsolation::InclusionRule::isBehindClusterSeed
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:258
GsfElectronAlgo::tkIsol04CalcCfg_
const EleTkIsolFromCands::Configuration tkIsol04CalcCfg_
Definition: GsfElectronAlgo.h:250
GsfElectronAlgo::checkSetup
void checkSetup(edm::EventSetup const &eventSetup)
Definition: GsfElectronAlgo.cc:410
EEDetId::isNextToRingBoundary
static bool isNextToRingBoundary(EEDetId id)
Definition: EEDetId.cc:284
reco::GsfElectron::IsolationVariables::hcalRecHitSumEt
std::array< float, 7 > hcalRecHitSumEt
Definition: GsfElectron.h:548
cosmicPhotonAnalyzer_cfi.eMax
eMax
Definition: cosmicPhotonAnalyzer_cfi.py:10
GsfElectronAlgo::Tokens::conversions
edm::EDGetTokenT< reco::ConversionCollection > conversions
Definition: GsfElectronAlgo.h:71
reco::GsfElectron::TrackExtrapolations::momentumAtVtxWithConstraint
math::XYZVectorF momentumAtVtxWithConstraint
Definition: GsfElectron.h:270
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
EcalClusterTools.h
ElectronHcalHelper::hcalSevLvlComputer
const auto hcalSevLvlComputer() const
Definition: ElectronHcalHelper.h:57
edm::Ref::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:238
reco::GsfElectron::TrackExtrapolations
Definition: GsfElectron.h:260
GsfElectronAlgo::CutsConfiguration::multThresEE
double multThresEE
Definition: GsfElectronAlgo.h:151
edmPickEvents.event
event
Definition: edmPickEvents.py:273
GsfElectronAlgo::ElectronData::vtxMom
GlobalVector vtxMom
Definition: GsfElectronAlgo.cc:122
GsfElectronAlgo::EventData::conversions
edm::Handle< reco::ConversionCollection > conversions
Definition: GsfElectronAlgo.cc:69
egamma::correctElectronMomentum
ElectronMomentum correctElectronMomentum(reco::GsfElectron const &, TrajectoryStateOnSurface const &)
Definition: ElectronMomentumCorrector.cc:22
reco::GsfElectron::ShowerShape::e2x5Left
float e2x5Left
Definition: GsfElectron.h:393
LorentzVector.h
HLT_FULL_cff.region
region
Definition: HLT_FULL_cff.py:88286
GsfElectronAlgo::ElectronData::eleTSOS
TrajectoryStateOnSurface eleTSOS
Definition: GsfElectronAlgo.cc:118
GsfElectronAlgo::Configuration::strategy
const StrategyConfiguration strategy
Definition: GsfElectronAlgo.h:204
GsfElectronAlgo::EventData::ecalBarrelIsol04
EgammaRecHitIsolation ecalBarrelIsol04
Definition: GsfElectronAlgo.cc:74
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
ElectronHcalHelper::maxSeverityHE
int maxSeverityHE() const
Definition: ElectronHcalHelper.h:49
reco::GsfElectron::ShowerShape::e2x5Top
float e2x5Top
Definition: GsfElectron.h:392
GsfElectronAlgo::EventData::hadIsolation04
EgammaHcalIsolation hadIsolation04
Definition: GsfElectronAlgo.cc:72
GsfElectronAlgo::IsolationConfiguration::etMinEndcaps
double etMinEndcaps
Definition: GsfElectronAlgo.h:172
GsfElectronAlgo::CutsConfiguration
Definition: GsfElectronAlgo.h:100
GsfElectronAlgo::ElectronData::seedTSOS
TrajectoryStateOnSurface seedTSOS
Definition: GsfElectronAlgo.cc:117
reco::GsfElectron::setPixelMatchDPhi1
void setPixelMatchDPhi1(float dPhi1)
Definition: GsfElectron.h:917
reco::LeafCandidate::charge
int charge() const final
electric charge
Definition: LeafCandidate.h:106
GsfElectronAlgo::CutsConfiguration::seedFromTEC
bool seedFromTEC
Definition: GsfElectronAlgo.h:147
GsfElectronAlgo::EventData::currentCtfTracks
edm::Handle< reco::TrackCollection > currentCtfTracks
Definition: GsfElectronAlgo.cc:66
reco::GsfElectron::isEBEtaGap
bool isEBEtaGap() const
Definition: GsfElectron.h:341
DetId::Detector
Detector
Definition: DetId.h:24
edm::EventSetup
Definition: EventSetup.h:58
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:522
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
reco::CaloCluster::seed
DetId seed() const
return DetId of seed
Definition: CaloCluster.h:219
GsfElectronAlgo::StrategyConfiguration::fillConvVtxFitProb
bool fillConvVtxFitProb
Definition: GsfElectronAlgo.h:97
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:76
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:127
looper.cfg
cfg
Definition: looper.py:296
MultiTrajectoryStateTransform
Definition: MultiTrajectoryStateTransform.h:18
ElectronHcalHelper::maxSeverityHB
int maxSeverityHB() const
Definition: ElectronHcalHelper.h:48
ElectronMVAEstimator::Configuration
Definition: ElectronMVAEstimator.h:12
reco::GsfElectron::sigmaIetaIeta
float sigmaIetaIeta() const
Definition: GsfElectron.h:427
GsfElectronAlgo::HeavyObjectCache::sElectronMVAEstimator
std::unique_ptr< const SoftElectronMVAEstimator > sElectronMVAEstimator
Definition: GsfElectronAlgo.h:56
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:60
ElectronHcalHelper::hcalChannelQuality
const auto hcalChannelQuality() const
Definition: ElectronHcalHelper.h:56
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:637
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:390
reco::GsfElectron::ShowerShape::e2nd
float e2nd
Definition: GsfElectron.h:387
GsfElectronAlgo::completeElectrons
reco::GsfElectronCollection completeElectrons(edm::Event const &event, edm::EventSetup const &eventSetup, const HeavyObjectCache *hoc)
Definition: GsfElectronAlgo.cc:611
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:203
reco::GsfElectron::ShowerShape::invalidHcal
bool invalidHcal
Definition: GsfElectron.h:383
GsfElectronAlgo::cfg_
const Configuration cfg_
Definition: GsfElectronAlgo.h:247
reco::GsfElectron::ShowerShape::e1x5
float e1x5
Definition: GsfElectron.h:370
GsfElectronAlgo::StrategyConfiguration::PreSelectMVA
float PreSelectMVA
Definition: GsfElectronAlgo.h:89
reco::GsfElectron::setPassCutBasedPreselection
void setPassCutBasedPreselection(bool flag)
Definition: GsfElectron.h:757
isFinite.h
pwdgSkimBPark_cfi.electrons
electrons
Definition: pwdgSkimBPark_cfi.py:6
reco::GsfElectron::ConversionRejection::dist
float dist
Definition: GsfElectron.h:638
reco::GsfElectron::TrackClusterMatching::deltaEtaSuperClusterAtVtx
float deltaEtaSuperClusterAtVtx
Definition: GsfElectron.h:208
reco::GsfElectron::isEBEEGap
bool isEBEEGap() const
Definition: GsfElectron.h:339
packedPFCandidateRefMixer_cfi.pf
pf
Definition: packedPFCandidateRefMixer_cfi.py:4
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
GsfElectronAlgo::IsolationConfiguration::jurassicWidth
double jurassicWidth
Definition: GsfElectronAlgo.h:169
GsfElectronAlgo::calculateShowerShape
reco::GsfElectron::ShowerShape calculateShowerShape(const reco::SuperClusterRef &, ElectronHcalHelper const &hcalHelperCone, ElectronHcalHelper const &hcalHelperBc, EventData const &eventData, CaloTopology const &topology, CaloGeometry const &geometry, EcalPFRecHitThresholds const &thresholds) const
Definition: GsfElectronAlgo.cc:290
EEDetId::isNextToDBoundary
static bool isNextToDBoundary(EEDetId id)
Definition: EEDetId.cc:279
GsfElectronAlgo::IsolationConfiguration::etMinBarrel
double etMinBarrel
Definition: GsfElectronAlgo.h:170
GsfElectronAlgo::IsolationConfiguration::intRadiusEcalEndcaps
double intRadiusEcalEndcaps
Definition: GsfElectronAlgo.h:168
GsfElectronAlgo::ElectronData::seedPos
GlobalPoint seedPos
Definition: GsfElectronAlgo.cc:123
Exception
Definition: hltDiff.cc:245
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:255
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::eSuperClusterOverP
float eSuperClusterOverP() const
Definition: GsfElectron.h:229
GsfElectronAlgo::Tokens::vtxCollectionTag
edm::EDGetTokenT< reco::VertexCollection > vtxCollectionTag
Definition: GsfElectronAlgo.h:70
GsfElectronAlgo::EventData::tkIsolHEEP03Calc
EleTkIsolFromCands tkIsolHEEP03Calc
Definition: GsfElectronAlgo.cc:79
reco::GsfElectron::ConversionRejection::radius
float radius
Definition: GsfElectron.h:640
reco::GsfElectron::ConversionRejection::flags
int flags
Definition: GsfElectron.h:636
GlobalVector.h
GsfElectronAlgo::StrategyConfiguration::useDefaultEnergyCorrection
bool useDefaultEnergyCorrection
Definition: GsfElectronAlgo.h:91
ElectronHcalHelper
Definition: ElectronHcalHelper.h:23
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::RefToBase< TrajectorySeed >
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:389
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
EgammaLocalCovParamDefaults.h
GsfElectronAlgo::Tokens::ctfTracks
edm::EDGetTokenT< reco::TrackCollection > ctfTracks
Definition: GsfElectronAlgo.h:68
GsfElectronAlgo::Tokens::hbheRecHitsTag
edm::EDGetTokenT< HBHERecHitCollection > hbheRecHitsTag
Definition: GsfElectronAlgo.h:62
GsfElectronAlgo::StrategyConfiguration::useEcalRegression
bool useEcalRegression
Definition: GsfElectronAlgo.h:93
reco::GsfElectron::IsolationVariables::ecalRecHitSumEt
float ecalRecHitSumEt
Definition: GsfElectron.h:543
GsfElectronAlgo::IsolationConfiguration::intRadiusHcal
double intRadiusHcal
Definition: GsfElectronAlgo.h:165
GsfElectronAlgo::StrategyConfiguration::ecalDrivenEcalEnergyFromClassBasedParameterization
bool ecalDrivenEcalEnergyFromClassBasedParameterization
Definition: GsfElectronAlgo.h:79
EgammaHcalIsolation::getHcalEtSumBc
double getHcalEtSumBc(const reco::Candidate *c, int depth) const
Definition: EgammaHcalIsolation.h:99
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
reco::GsfElectron::hcalOverEcal
float hcalOverEcal(const ShowerShape &ss, int depth) const
Definition: GsfElectron.h:433
ElectronHcalHelper::towerMap
const auto towerMap() const
Definition: ElectronHcalHelper.h:58
EleTkIsolFromCands
Definition: EleTkIsolFromCands.h:46
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
GsfElectronAlgo::EventData::hadIsolation04Bc
EgammaHcalIsolation hadIsolation04Bc
Definition: GsfElectronAlgo.cc:73
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
reco::GsfElectron::TrackExtrapolations::momentumAtVtx
math::XYZVectorF momentumAtVtx
Definition: GsfElectron.h:263
reco::GsfElectron::ShowerShape::hcalOverEcalBc
std::array< float, 7 > hcalOverEcalBc
Definition: GsfElectron.h:381
RegressionHelper::applyEcalRegression
void applyEcalRegression(reco::GsfElectron &electron, const reco::VertexCollection &vertices, const EcalRecHitCollection &rechitsEB, const EcalRecHitCollection &rechitsEE) const
Definition: RegressionHelper.cc:33
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:164
GsfElectronAlgo::ElectronData::vtxTSOS
TrajectoryStateOnSurface vtxTSOS
Definition: GsfElectronAlgo.cc:115
reco::GsfElectron::SaturationInfo
Definition: GsfElectron.h:520
GsfElectronAlgo::crackCorrectionFunction_
std::unique_ptr< EcalClusterFunctionBaseClass > crackCorrectionFunction_
Definition: GsfElectronAlgo.h:264
GsfElectronAlgo::Configuration::cuts
const CutsConfiguration cuts
Definition: GsfElectronAlgo.h:205
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:207
GsfElectronAlgo::EventData::tkIsol03Calc
EleTkIsolFromCands tkIsol03Calc
Definition: GsfElectronAlgo.cc:77
GsfElectronAlgo::ecalPFRechitThresholdsToken_
const edm::ESGetToken< EcalPFRecHitThresholds, EcalPFRecHitThresholdsRcd > ecalPFRechitThresholdsToken_
Definition: GsfElectronAlgo.h:259
GsfElectronAlgo::tkIsolHEEP04CalcCfg_
const EleTkIsolFromCands::Configuration tkIsolHEEP04CalcCfg_
Definition: GsfElectronAlgo.h:252
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
reco::GsfElectron::ShowerShape::e2x5Bottom
float e2x5Bottom
Definition: GsfElectron.h:395
EgammaHcalIsolation::arrayHE
std::array< double, 7 > arrayHE
Definition: EgammaHcalIsolation.h:42
GsfElectronAlgo::caloGeometryToken_
const edm::ESGetToken< CaloGeometry, CaloGeometryRecord > caloGeometryToken_
Definition: GsfElectronAlgo.h:255
RegressionHelper::Configuration
Definition: RegressionHelper.h:27
reco::GsfElectron::ConversionRejection::vtxFitProb
float vtxFitProb
Definition: GsfElectron.h:641
reco::GsfElectron::TrackClusterMatching::deltaEtaSeedClusterAtCalo
float deltaEtaSeedClusterAtCalo
Definition: GsfElectron.h:209
GsfElectronAlgo::ElectronData::calculateTSOS
bool calculateTSOS(MultiTrajectoryStateTransform const &, GsfConstraintAtVertex const &)
Definition: GsfElectronAlgo.cc:196
ecalDrivenElectronSeeds_cfi.hbheRecHits
hbheRecHits
Definition: ecalDrivenElectronSeeds_cfi.py:7
ElectronSeed.h
reco::GsfElectron::TrackExtrapolations::positionAtVtx
math::XYZPointF positionAtVtx
Definition: GsfElectron.h:261
ConversionTools.h
GsfElectronAlgo::EcalRecHitsConfiguration
Definition: GsfElectronAlgo.h:155
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
GsfElectronAlgo::GsfElectronAlgo
GsfElectronAlgo(const Tokens &, const StrategyConfiguration &, const CutsConfiguration &cutsCfg, const ElectronHcalHelper::Configuration &hcalCone, const ElectronHcalHelper::Configuration &hcalBc, const IsolationConfiguration &, const EcalRecHitsConfiguration &, 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:378
GsfElectronAlgo.h
ElectronHcalHelper::hcalTopology
const auto hcalTopology() const
Definition: ElectronHcalHelper.h:55
GsfElectronAlgo::EcalRecHitsConfiguration::recHitSeverityToBeExcludedEndcaps
std::vector< int > recHitSeverityToBeExcludedEndcaps
Definition: GsfElectronAlgo.h:159