CMS 3D CMS Logo

GsfElectron.h
Go to the documentation of this file.
1 #ifndef GsfElectron_h
2 #define GsfElectron_h
3 
8 //#include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
14 //#include "DataFormats/Math/interface/LorentzVector.h"
18 #include <vector>
19 #include <limits>
20 
21 namespace reco
22  {
23 
24 
25 /****************************************************************************
26  * \class reco::GsfElectron
27  *
28  * An Electron with a GsfTrack seeded from an ElectronSeed.
29  * Renamed from PixelMatchGsfElectron.
30  * Originally adapted from the TRecElectron class in ORCA.
31  *
32  * \author Claude Charlot - Laboratoire Leprince-Ringuet - École polytechnique, CNRS/IN2P3
33  * \author David Chamont - Laboratoire Leprince-Ringuet - École polytechnique, CNRS/IN2P3
34  *
35  ****************************************************************************/
36 
37 class GsfElectron : public RecoCandidate
38  {
39 
40  //=======================================================
41  // Constructors
42  //
43  // The clone() method with arguments, and the copy
44  // constructor with edm references is designed for
45  // someone which want to duplicates all
46  // collections.
47  //=======================================================
48 
49  public :
50 
51  // some nested structures defined later on
52  struct ChargeInfo ;
53  struct TrackClusterMatching ;
54  struct TrackExtrapolations ;
55  struct ClosestCtfTrack ;
56  struct FiducialFlags ;
57  struct ShowerShape ;
58  struct IsolationVariables ;
59  struct ConversionRejection ;
61  struct SaturationInfo ;
62 
63  GsfElectron() ;
64  GsfElectron( const GsfElectronCoreRef & ) ;
66  (
67  const GsfElectron &,
68  const GsfElectronCoreRef &
69  ) ;
71  (
72  const GsfElectron & electron,
73  const GsfElectronCoreRef & core,
75  const TrackRef & closestCtfTrack,
76  const TrackBaseRef & conversionPartner,
77  const GsfTrackRefVector & ambiguousTracks
78  ) ;
80  (
81  int charge,
82  const ChargeInfo &,
83  const GsfElectronCoreRef &,
84  const TrackClusterMatching &,
85  const TrackExtrapolations &,
86  const ClosestCtfTrack &,
87  const FiducialFlags &,
88  const ShowerShape &,
89  const ConversionRejection &
90  ) ;
92  (
93  int charge,
94  const ChargeInfo &,
95  const GsfElectronCoreRef &,
96  const TrackClusterMatching &,
97  const TrackExtrapolations &,
98  const ClosestCtfTrack &,
99  const FiducialFlags &,
100  const ShowerShape &,
101  const ShowerShape &,
102  const ConversionRejection &,
103  const SaturationInfo &
104  ) ;
105  GsfElectron * clone() const override ;
107  (
108  const GsfElectronCoreRef & core,
109  const CaloClusterPtr & electronCluster,
110  const TrackRef & closestCtfTrack,
111  const TrackBaseRef & conversionPartner,
112  const GsfTrackRefVector & ambiguousTracks
113  ) const ;
114  ~GsfElectron() override {} ;
115 
116  private:
117 
118  void init() ;
119 
120 
121  //=======================================================
122  // Candidate methods and complementary information
123  //
124  // The gsf electron producer has tried to best evaluate
125  // the four momentum and charge and given those values to
126  // the GsfElectron constructor, which forwarded them to
127  // the Candidate constructor. Those values can be retreived
128  // with getters inherited from Candidate : p4() and charge().
129  //=======================================================
130 
131  public:
132 
133  // Inherited from Candidate
134  // const LorentzVector & charge() const ;
135  // const LorentzVector & p4() const ;
136 
137  // Complementary struct
138  struct ChargeInfo
139  {
145  : scPixCharge(0), isGsfCtfScPixConsistent(false),
146  isGsfScPixConsistent(false), isGsfCtfConsistent(false)
147  {}
148  } ;
149 
150  // Charge info accessors
151  // to get gsf track charge: gsfTrack()->charge()
152  // to get ctf track charge, if closestCtfTrackRef().isNonnull(): closestCtfTrackRef()->charge()
153  int scPixCharge() const { return chargeInfo_.scPixCharge ; }
157  const ChargeInfo & chargeInfo() const { return chargeInfo_ ; }
158 
159  // Candidate redefined methods
160  bool isElectron() const override { return true ; }
161  bool overlap( const Candidate & ) const override ;
162 
163  private:
164 
165  // Complementary attributes
167 
168 
169  //=======================================================
170  // Core Attributes
171  //
172  // They all have been computed before, when building the
173  // collection of GsfElectronCore instances. Each GsfElectron
174  // has a reference toward a GsfElectronCore.
175  //=======================================================
176 
177  public:
178 
179  // accessors
180  virtual GsfElectronCoreRef core() const ;
181  void setCore(const reco::GsfElectronCoreRef &core) { core_ = core; }
182 
183  // forward core methods
184  SuperClusterRef superCluster() const override { return core()->superCluster() ; }
185  GsfTrackRef gsfTrack() const override { return core()->gsfTrack() ; }
186  virtual TrackRef closestTrack() const { return core()->ctfTrack() ; }
187  float ctfGsfOverlap() const { return core()->ctfGsfOverlap() ; }
188  bool ecalDrivenSeed() const { return core()->ecalDrivenSeed() ; }
189  bool trackerDrivenSeed() const { return core()->trackerDrivenSeed() ; }
190  virtual SuperClusterRef parentSuperCluster() const { return core()->parentSuperCluster() ; }
191 
192  // backward compatibility
194  {
195  TrackRef ctfTrack ; // best matching ctf track
196  float shFracInnerHits ; // fraction of common hits between the ctf and gsf tracks
197  ClosestCtfTrack() : shFracInnerHits(0.) {}
198  ClosestCtfTrack( TrackRef track, float sh ) : ctfTrack(track), shFracInnerHits(sh) {}
199  } ;
200  float shFracInnerHits() const { return core()->ctfGsfOverlap() ; }
201  virtual TrackRef closestCtfTrackRef() const { return core()->ctfTrack() ; }
202  virtual ClosestCtfTrack closestCtfTrack() const { return ClosestCtfTrack(core()->ctfTrack(),core()->ctfGsfOverlap()) ; }
203 
204  private:
205 
206  // attributes
208 
209 
210  //=======================================================
211  // Track-Cluster Matching Attributes
212  //=======================================================
213 
214  public:
215 
217  {
218  CaloClusterPtr electronCluster ; // basic cluster best matching gsf track
219  float eSuperClusterOverP ; // the supercluster energy / track momentum at the PCA to the beam spot
220  float eSeedClusterOverP ; // the seed cluster energy / track momentum at the PCA to the beam spot
221  float eSeedClusterOverPout ; // the seed cluster energy / track momentum at calo extrapolated from the outermost track state
222  float eEleClusterOverPout ; // the electron cluster energy / track momentum at calo extrapolated from the outermost track state
223  float deltaEtaSuperClusterAtVtx ; // the supercluster eta - track eta position at calo extrapolated from innermost track state
224  float deltaEtaSeedClusterAtCalo ; // the seed cluster eta - track eta position at calo extrapolated from the outermost track state
225  float deltaEtaEleClusterAtCalo ; // the electron cluster eta - track eta position at calo extrapolated from the outermost state
226  float deltaPhiEleClusterAtCalo ; // the electron cluster phi - track phi position at calo extrapolated from the outermost track state
227  float deltaPhiSuperClusterAtVtx ; // the supercluster phi - track phi position at calo extrapolated from the innermost track state
228  float deltaPhiSeedClusterAtCalo ; // the seed cluster phi - track phi position at calo extrapolated from the outermost track state
230  : eSuperClusterOverP(0.),
231  eSeedClusterOverP(0.),
232  eSeedClusterOverPout(0.),
233  eEleClusterOverPout(0.),
234  deltaEtaSuperClusterAtVtx(std::numeric_limits<float>::max()),
235  deltaEtaSeedClusterAtCalo(std::numeric_limits<float>::max()),
236  deltaEtaEleClusterAtCalo(std::numeric_limits<float>::max()),
237  deltaPhiEleClusterAtCalo(std::numeric_limits<float>::max()),
238  deltaPhiSuperClusterAtVtx(std::numeric_limits<float>::max()),
239  deltaPhiSeedClusterAtCalo(std::numeric_limits<float>::max())
240  {}
241  } ;
242 
243  // accessors
255  float deltaEtaSeedClusterTrackAtVtx() const { return superCluster().isNonnull() && superCluster()->seed().isNonnull() ?
257  }
259 
260  // for backward compatibility, usefull ?
263 
264 
265  private:
266 
267  // attributes
269 
270 
271  //=======================================================
272  // Track extrapolations
273  //=======================================================
274 
275  public :
276 
278  {
279  math::XYZPointF positionAtVtx ; // the track PCA to the beam spot
280  math::XYZPointF positionAtCalo ; // the track PCA to the supercluster position
281  math::XYZVectorF momentumAtVtx ; // the track momentum at the PCA to the beam spot
282  math::XYZVectorF momentumAtCalo ; // the track momentum extrapolated at the supercluster position from the innermost track state
283  math::XYZVectorF momentumOut ; // the track momentum extrapolated at the seed cluster position from the outermost track state
284  math::XYZVectorF momentumAtEleClus ; // the track momentum extrapolated at the ele cluster position from the outermost track state
285  math::XYZVectorF momentumAtVtxWithConstraint ; // the track momentum at the PCA to the beam spot using bs constraint
286  } ;
287 
288  // accessors
297 
298  // setter (if you know what you're doing)
300 
301  // for backward compatibility
304 
305 
306  private:
307 
308  // attributes
310 
311 
312  //=======================================================
313  // SuperCluster direct access
314  //=======================================================
315 
316  public :
317 
318  // direct accessors
319  math::XYZPoint superClusterPosition() const { return superCluster()->position() ; } // the super cluster position
320  int basicClustersSize() const { return superCluster()->clustersSize() ; } // number of basic clusters inside the supercluster
321  CaloCluster_iterator basicClustersBegin() const { return superCluster()->clustersBegin() ; }
322  CaloCluster_iterator basicClustersEnd() const { return superCluster()->clustersEnd() ; }
323 
324  // for backward compatibility
325  math::XYZPoint caloPosition() const { return superCluster()->position() ; }
326 
327 
328 
329  //=======================================================
330  // Fiducial Flags
331  //=======================================================
332 
333  public :
334 
336  {
337  bool isEB ; // true if particle is in ECAL Barrel
338  bool isEE ; // true if particle is in ECAL Endcaps
339  bool isEBEEGap ; // true if particle is in the crack between EB and EE
340  bool isEBEtaGap ; // true if particle is in EB, and inside the eta gaps between modules
341  bool isEBPhiGap ; // true if particle is in EB, and inside the phi gaps between modules
342  bool isEEDeeGap ; // true if particle is in EE, and inside the gaps between dees
343  bool isEERingGap ; // true if particle is in EE, and inside the gaps between rings
345  : isEB(false), isEE(false), isEBEEGap(false),
346  isEBEtaGap(false), isEBPhiGap(false),
347  isEEDeeGap(false), isEERingGap(false)
348  {}
349  } ;
350 
351  // accessors
352  bool isEB() const { return fiducialFlags_.isEB ; }
353  bool isEE() const { return fiducialFlags_.isEE ; }
354  bool isGap() const { return ((isEBEEGap())||(isEBGap())||(isEEGap())) ; }
355  bool isEBEEGap() const { return fiducialFlags_.isEBEEGap ; }
356  bool isEBGap() const { return (isEBEtaGap()||isEBPhiGap()) ; }
357  bool isEBEtaGap() const { return fiducialFlags_.isEBEtaGap ; }
358  bool isEBPhiGap() const { return fiducialFlags_.isEBPhiGap ; }
359  bool isEEGap() const { return (isEEDeeGap()||isEERingGap()) ; }
360  bool isEEDeeGap() const { return fiducialFlags_.isEEDeeGap ; }
361  bool isEERingGap() const { return fiducialFlags_.isEERingGap ; }
362  const FiducialFlags & fiducialFlags() const { return fiducialFlags_ ; }
363  // setters... not necessary in regular situations
364  // but handy for late stage modifications of electron objects
365  void setFFlagIsEB(const bool b) { fiducialFlags_.isEB = b; }
366  void setFFlagIsEE(const bool b) { fiducialFlags_.isEE = b; }
367  void setFFlagIsEBEEGap(const bool b) { fiducialFlags_.isEBEEGap = b; }
372 
373  private:
374 
375  // attributes
377 
378 
379  //=======================================================
380  // Shower Shape Variables
381  //=======================================================
382 
383  public :
384 
385  struct ShowerShape
386  {
387  float sigmaEtaEta ; // weighted cluster rms along eta and inside 5x5 (absolute eta)
388  float sigmaIetaIeta ; // weighted cluster rms along eta and inside 5x5 (Xtal eta)
389  float sigmaIphiIphi ; // weighted cluster rms along phi and inside 5x5 (Xtal phi)
390  float e1x5 ; // energy inside 1x5 in etaxphi around the seed Xtal
391  float e2x5Max ; // energy inside 2x5 in etaxphi around the seed Xtal (max bwt the 2 possible sums)
392  float e5x5 ; // energy inside 5x5 in etaxphi around the seed Xtal
393  float r9 ; // ratio of the 3x3 energy and supercluster energy
394  float hcalDepth1OverEcal ; // hcal over ecal seed cluster energy using 1st hcal depth (using hcal towers within a cone)
395  float hcalDepth2OverEcal ; // hcal over ecal seed cluster energy using 2nd hcal depth (using hcal towers within a cone)
396  std::vector<CaloTowerDetId> hcalTowersBehindClusters ; //
397  float hcalDepth1OverEcalBc ; // hcal over ecal seed cluster energy using 1st hcal depth (using hcal towers behind clusters)
398  float hcalDepth2OverEcalBc ; // hcal over ecal seed cluster energy using 2nd hcal depth (using hcal towers behind clusters)
399  bool invalidHcal ; // set to true if the hcal energy estimate is not valid (e.g. the corresponding tower was off or masked)
401  float eMax;
402  float e2nd;
403  float eTop;
404  float eLeft;
405  float eRight;
406  float eBottom;
407  float e2x5Top;
408  float e2x5Left;
409  float e2x5Right;
410  float e2x5Bottom;
412  : sigmaEtaEta(std::numeric_limits<float>::max()),
413  sigmaIetaIeta(std::numeric_limits<float>::max()),
414  sigmaIphiIphi(std::numeric_limits<float>::max()),
415  e1x5(0.), e2x5Max(0.), e5x5(0.),
416  r9(-std::numeric_limits<float>::max()),
417  hcalDepth1OverEcal(0.), hcalDepth2OverEcal(0.),
418  hcalDepth1OverEcalBc(0.), hcalDepth2OverEcalBc(0.),
419  invalidHcal(false),
420  sigmaIetaIphi(0.f),
421  eMax(0.f),
422  e2nd(0.f),
423  eTop(0.f),
424  eLeft(0.f),
425  eRight(0.f),
426  eBottom(0.f),
427  e2x5Top(0.f),
428  e2x5Left(0.f),
429  e2x5Right(0.f),
430  e2x5Bottom(0.f)
431  {}
432  } ;
433 
434  // accessors
435  float sigmaEtaEta() const { return showerShape_.sigmaEtaEta ; }
436  float sigmaIetaIeta() const { return showerShape_.sigmaIetaIeta ; }
437  float sigmaIphiIphi() const { return showerShape_.sigmaIphiIphi ; }
438  float e1x5() const { return showerShape_.e1x5 ; }
439  float e2x5Max() const { return showerShape_.e2x5Max ; }
440  float e5x5() const { return showerShape_.e5x5 ; }
441  float r9() const { return showerShape_.r9 ; }
444  float hcalOverEcal() const { return hcalDepth1OverEcal() + hcalDepth2OverEcal() ; }
445  const std::vector<CaloTowerDetId> & hcalTowersBehindClusters() const { return showerShape_.hcalTowersBehindClusters ; }
448  float hcalOverEcalBc() const { return hcalDepth1OverEcalBc() + hcalDepth2OverEcalBc() ; }
449  float hcalOverEcalValid() const { return !showerShape_.invalidHcal; }
450  float eLeft() const { return showerShape_.eLeft; }
451  float eRight() const { return showerShape_.eRight; }
452  float eTop() const { return showerShape_.eTop; }
453  float eBottom() const { return showerShape_.eBottom; }
454  const ShowerShape & showerShape() const { return showerShape_ ; }
455  // non-zero-suppressed and no-fractions shower shapes
456  // ecal energy is always that from the full 5x5
460  float full5x5_e1x5() const { return full5x5_showerShape_.e1x5 ; }
461  float full5x5_e2x5Max() const { return full5x5_showerShape_.e2x5Max ; }
462  float full5x5_e5x5() const { return full5x5_showerShape_.e5x5 ; }
463  float full5x5_r9() const { return full5x5_showerShape_.r9 ; }
473  float full5x5_e2x5Top() const { return full5x5_showerShape_.e2x5Top; }
475  float full5x5_eLeft() const { return full5x5_showerShape_.eLeft; }
476  float full5x5_eRight() const { return full5x5_showerShape_.eRight; }
477  float full5x5_eTop() const { return full5x5_showerShape_.eTop; }
478  float full5x5_eBottom() const { return full5x5_showerShape_.eBottom; }
480 
481  // setters (if you know what you're doing)
484 
485  // for backward compatibility (this will only ever be the ZS shapes!)
486  float scSigmaEtaEta() const { return sigmaEtaEta() ; }
487  float scSigmaIEtaIEta() const { return sigmaIetaIeta() ; }
488  float scE1x5() const { return e1x5() ; }
489  float scE2x5Max() const { return e2x5Max() ; }
490  float scE5x5() const { return e5x5() ; }
491  float hadronicOverEm() const {return hcalOverEcal();}
492  float hadronicOverEm1() const {return hcalDepth1OverEcal();}
493  float hadronicOverEm2() const {return hcalDepth2OverEcal();}
494 
495 
496  private:
497 
498  // attributes
501 
502  //=======================================================
503  // SaturationInfo
504  //=======================================================
505 
506  public :
507 
508  struct SaturationInfo {
512  : nSaturatedXtals(0), isSeedSaturated(false) {};
513  } ;
514 
515  // accessors
518  const SaturationInfo& saturationInfo() const { return saturationInfo_; }
520 
521  private:
522 
524 
525  //=======================================================
526  // Isolation Variables
527  //=======================================================
528 
529  public :
530 
532  {
533  float tkSumPt ; // track iso deposit with electron footprint removed
534  float ecalRecHitSumEt ; // ecal iso deposit with electron footprint removed
535  float hcalDepth1TowerSumEt ; // hcal depht 1 iso deposit with electron footprint removed
536  float hcalDepth2TowerSumEt ; // hcal depht 2 iso deposit with electron footprint removed
537  float hcalDepth1TowerSumEtBc ; // hcal depht 1 iso deposit without towers behind clusters
538  float hcalDepth2TowerSumEtBc ; // hcal depht 2 iso deposit without towers behind clusters
540  : tkSumPt(0.), ecalRecHitSumEt(0.),
541  hcalDepth1TowerSumEt(0.), hcalDepth2TowerSumEt(0.),
542  hcalDepth1TowerSumEtBc(0.), hcalDepth2TowerSumEtBc(0.)
543  {}
544  } ;
545 
546  // 03 accessors
547  float dr03TkSumPt() const { return dr03_.tkSumPt ; }
548  float dr03EcalRecHitSumEt() const { return dr03_.ecalRecHitSumEt ; }
555  const IsolationVariables & dr03IsolationVariables() const { return dr03_ ; }
556 
557  // 04 accessors
558  float dr04TkSumPt() const { return dr04_.tkSumPt ; }
559  float dr04EcalRecHitSumEt() const { return dr04_.ecalRecHitSumEt ; }
566  const IsolationVariables & dr04IsolationVariables() const { return dr04_ ; }
567 
568  // setters ?!?
569  void setDr03Isolation( const IsolationVariables & dr03 ) { dr03_ = dr03 ; }
570  void setDr04Isolation( const IsolationVariables & dr04 ) { dr04_ = dr04 ; }
571 
572  // for backward compatibility
573  void setIsolation03( const IsolationVariables & dr03 ) { dr03_ = dr03 ; }
574  void setIsolation04( const IsolationVariables & dr04 ) { dr04_ = dr04 ; }
575  const IsolationVariables & isolationVariables03() const { return dr03_ ; }
576  const IsolationVariables & isolationVariables04() const { return dr04_ ; }
577 
578  private:
579 
580  // attributes
583 
584 
585  //=======================================================
586  // Conversion Rejection Information
587  //=======================================================
588 
589  public :
590 
592  {
593  int flags ; // -max:not-computed, other: as computed by Puneeth conversion code
594  TrackBaseRef partner ; // conversion partner
595  float dist ; // distance to the conversion partner
596  float dcot ; // difference of cot(angle) with the conversion partner track
597  float radius ; // signed conversion radius
599  : flags(-1),
600  dist(std::numeric_limits<float>::max()),
601  dcot(std::numeric_limits<float>::max()),
602  radius(std::numeric_limits<float>::max())
603  {}
604  } ;
605 
606  // accessors
607  int convFlags() const { return conversionRejection_.flags ; }
609  float convDist() const { return conversionRejection_.dist ; }
610  float convDcot() const { return conversionRejection_.dcot ; }
611  float convRadius() const { return conversionRejection_.radius ; }
613 
614  private:
615 
616  // attributes
618 
619 
620  //=======================================================
621  // Pflow Information
622  //=======================================================
623 
624  public:
625 
627  {
628  //first three data members that changed names, according to DataFormats/MuonReco/interface/MuonPFIsolation.h
631  float sumPhotonEt;
632  //then four new data members, corresponding to DataFormats/MuonReco/interface/MuonPFIsolation.h
636  float sumPUPt;
637  //new pf cluster based isolation values
638  float sumEcalClusterEt; //sum pt of ecal clusters, vetoing clusters part of electron
639  float sumHcalClusterEt; //sum pt of hcal clusters, vetoing clusters part of electron
641  sumChargedHadronPt(0),sumNeutralHadronEt(0),sumPhotonEt(0),sumChargedParticlePt(0),
642  sumNeutralHadronEtHighThreshold(0),sumPhotonEtHighThreshold(0),sumPUPt(0),
643  sumEcalClusterEt(0),sumHcalClusterEt(0){};
644  } ;
645 
646  struct MvaInput
647  {
648  int earlyBrem ; // Early Brem detected (-2=>unknown,-1=>could not be evaluated,0=>wrong,1=>true)
649  int lateBrem ; // Late Brem detected (-2=>unknown,-1=>could not be evaluated,0=>wrong,1=>true)
650  float sigmaEtaEta ; // Sigma-eta-eta with the PF cluster
651  float hadEnergy ; // Associated PF Had Cluster energy
652  float deltaEta ; // PF-cluster GSF track delta-eta
653  int nClusterOutsideMustache ; // -2 => unknown, -1 =>could not be evaluated, 0 and more => number of clusters
656  : earlyBrem(-2), lateBrem(-2),
657  sigmaEtaEta(std::numeric_limits<float>::max()),
658  hadEnergy(0.),
659  deltaEta(std::numeric_limits<float>::max()),
660  nClusterOutsideMustache(-2),
661  etOutsideMustache(-std::numeric_limits<float>::max())
662  {}
663  } ;
664 
665  struct MvaOutput
666  {
667  int status ; // see PFCandidateElectronExtra::StatusFlag
668  float mva_Isolated ;
669  float mva_e_pi ;
670  float mvaByPassForIsolated ; // complementary MVA used in preselection
672  : status(-1), mva_Isolated(-999999999.),mva_e_pi(-999999999.), mvaByPassForIsolated(-999999999.)
673  {}
674  } ;
675 
676  // accessors
678  //backwards compat functions for pat::Electron
679  float ecalPFClusterIso() const { return pfIso_.sumEcalClusterEt; };
680  float hcalPFClusterIso() const { return pfIso_.sumHcalClusterEt; };
681 
682  const MvaInput & mvaInput() const { return mvaInput_ ; }
683  const MvaOutput & mvaOutput() const { return mvaOutput_ ; }
684 
685  // setters
687  void setMvaInput( const MvaInput & mi ) { mvaInput_ = mi ; }
688  void setMvaOutput( const MvaOutput & mo ) { mvaOutput_ = mo ; }
689 
690  // for backward compatibility
691  float mva_Isolated() const { return mvaOutput_.mva_Isolated ; }
692  float mva_e_pi() const { return mvaOutput_.mva_e_pi ; }
693 
694  private:
695 
699 
700 
701  //=======================================================
702  // Preselection and Ambiguity
703  //=======================================================
704 
705  public :
706 
707  // accessors
708  bool ecalDriven() const ; // return true if ecalDrivenSeed() and passingCutBasedPreselection()
711  bool ambiguous() const { return ambiguous_ ; }
715 
716  // setters
719  void setAmbiguous( bool flag ) { ambiguous_ = flag ; }
722 
723  // backward compatibility
725  bool passingMvaPreselection() const { return passMvaPreslection_ ; }
726 
727  private:
728 
729  // attributes
732  bool passMvaPreslection_ ; // to be removed : passPflowPreslection_
733  bool ambiguous_ ;
734  GsfTrackRefVector ambiguousGsfTracks_ ; // ambiguous gsf tracks
735 
736 
737  //=======================================================
738  // Brem Fractions and Classification
739  //=======================================================
740 
741  public :
742 
744  {
745  float trackFbrem ; // the brem fraction from gsf fit: (track momentum in - track momentum out) / track momentum in
746  float superClusterFbrem ; // the brem fraction from supercluster: (supercluster energy - electron cluster energy) / supercluster energy
748  : trackFbrem(-1.e30), superClusterFbrem(-1.e30)
749  {}
750  } ;
752 
753  // accessors
754  float trackFbrem() const { return classVariables_.trackFbrem ; }
757  Classification classification() const { return class_ ; }
758 
759  // utilities
760  int numberOfBrems() const { return basicClustersSize()-1 ; }
761  float fbrem() const { return trackFbrem() ; }
762 
763  // setters
767  void setClassification( Classification myclass ) { class_ = myclass ; }
768 
769  private:
770 
771  // attributes
773  Classification class_ ; // fbrem and number of clusters based electron classification
774 
775 
776  //=======================================================
777  // Corrections
778  //
779  // The only methods, with classification, which modify
780  // the electrons after they have been constructed.
781  // They change a given characteristic, such as the super-cluster
782  // energy, and propagate the change consistently
783  // to all the depending attributes.
784  // We expect the methods to be called in a given order
785  // and so to store specific kind of corrections
786  // 1) classify()
787  // 2) correctEcalEnergy() : depending on classification and eta
788  // 3) correctMomemtum() : depending on classification and ecal energy and tracker momentum errors
789  //
790  // Beware that correctEcalEnergy() is modifying few attributes which
791  // were potentially used for preselection, whose value used in
792  // preselection will not be available any more :
793  // hcalDepth1OverEcal, hcalDepth2OverEcal, eSuperClusterOverP,
794  // eSeedClusterOverP, eEleClusterOverPout.
795  //=======================================================
796 
797  public :
798 
800 
801  struct Corrections
802  {
803  bool isEcalEnergyCorrected ; // true if ecal energy has been corrected
804  float correctedEcalEnergy ; // corrected energy (if !isEcalEnergyCorrected this value is identical to the supercluster energy)
805  float correctedEcalEnergyError ; // error on energy
806  //bool isMomentumCorrected ; // DEPRECATED
807  float trackMomentumError ; // track momentum error from gsf fit
808  //
809  LorentzVector fromSuperClusterP4 ; // for P4_FROM_SUPER_CLUSTER
810  float fromSuperClusterP4Error ; // for P4_FROM_SUPER_CLUSTER
811  LorentzVector combinedP4 ; // for P4_COMBINATION
812  float combinedP4Error ; // for P4_COMBINATION
813  LorentzVector pflowP4 ; // for P4_PFLOW_COMBINATION
814  float pflowP4Error ; // for P4_PFLOW_COMBINATION
815  P4Kind candidateP4Kind ; // say which momentum has been stored in reco::Candidate
816  //
818  : isEcalEnergyCorrected(false), correctedEcalEnergy(0.), correctedEcalEnergyError(999.),
819  /*isMomentumCorrected(false),*/ trackMomentumError(999.),
820  fromSuperClusterP4Error(999.), combinedP4Error(999.), pflowP4Error(999.),
821  candidateP4Kind(P4_UNKNOWN)
822  {}
823  } ;
824 
825  // setters
826  void setCorrectedEcalEnergyError( float newEnergyError ) ;
827  void setCorrectedEcalEnergy( float newEnergy ) ;
829  void setP4( P4Kind kind, const LorentzVector & p4, float p4Error, bool setCandidate ) ;
830  using RecoCandidate::setP4 ;
831 
832  // accessors
837  const LorentzVector & p4( P4Kind kind ) const ;
838  using RecoCandidate::p4 ;
839  float p4Error( P4Kind kind ) const ;
841  const Corrections & corrections() const { return corrections_ ; }
842 
843  // bare setter (if you know what you're doing)
845 
846  // for backward compatibility
848  float ecalEnergy() const { return correctedEcalEnergy() ; }
849  float ecalEnergyError() const { return correctedEcalEnergyError() ; }
850  //bool isMomentumCorrected() const { return corrections_.isMomentumCorrected ; }
851  float caloEnergy() const { return correctedEcalEnergy() ; }
852  bool isEnergyScaleCorrected() const { return isEcalEnergyCorrected() ; }
853  void correctEcalEnergy( float newEnergy, float newEnergyError )
854  {
855  setCorrectedEcalEnergy(newEnergy) ;
856  setEcalEnergyError(newEnergyError) ;
857  }
858  void correctMomentum( const LorentzVector & p4, float trackMomentumError, float p4Error )
859  { setTrackMomentumError(trackMomentumError) ; setP4(P4_COMBINATION,p4,p4Error,true) ; }
860 
861 
862  private:
863 
864  // attributes
866 
867  public:
870  float dPhi1 ;
872  float dPhi2 ;
874  float dRz1 ;
876  float dRz2 ;
878  unsigned char subdetectors ;
880  dPhi1(-999),
881  dPhi2(-999),
882  dRz1(-999),
883  dRz2(-999),
884  subdetectors(0)
885  {}
887  };
888  void setPixelMatchSubdetectors(int sd1, int sd2){ pixelMatchVariables_.subdetectors = 10*sd1+sd2 ; }
889  void setPixelMatchDPhi1(float dPhi1){ pixelMatchVariables_.dPhi1 = dPhi1 ; }
890  void setPixelMatchDPhi2(float dPhi2){ pixelMatchVariables_.dPhi2 = dPhi2 ; }
891  void setPixelMatchDRz1 (float dRz1 ){ pixelMatchVariables_.dRz1 = dRz1 ; }
892  void setPixelMatchDRz2 (float dRz2 ){ pixelMatchVariables_.dRz2 = dRz2 ; }
893 
896  float pixelMatchDPhi1() const { return pixelMatchVariables_.dPhi1 ; }
897  float pixelMatchDPhi2() const { return pixelMatchVariables_.dPhi2 ; }
898  float pixelMatchDRz1 () const { return pixelMatchVariables_.dRz1 ; }
899  float pixelMatchDRz2 () const { return pixelMatchVariables_.dRz2 ; }
900  private:
902  } ;
903 
904  } // namespace reco
905 
906 #endif
const PflowIsolationVariables & pfIsolationVariables() const
Definition: GsfElectron.h:677
CaloCluster_iterator basicClustersEnd() const
Definition: GsfElectron.h:322
float sigmaIphiIphi() const
Definition: GsfElectron.h:437
CaloClusterPtr electronCluster() const
Definition: GsfElectron.h:244
bool isEEGap() const
Definition: GsfElectron.h:359
void setDr04Isolation(const IsolationVariables &dr04)
Definition: GsfElectron.h:570
const ShowerShape & showerShape() const
Definition: GsfElectron.h:454
float dPhi1
Pixel match variable: deltaPhi for innermost hit.
Definition: GsfElectron.h:870
GsfTrackRef gsfTrack() const override
reference to a GsfTrack
Definition: GsfElectron.h:185
float dr04HcalTowerSumEt() const
Definition: GsfElectron.h:562
float full5x5_eLeft() const
Definition: GsfElectron.h:475
unsigned char subdetectors
Subdetectors for first and second pixel hit.
Definition: GsfElectron.h:878
void correctEcalEnergy(float newEnergy, float newEnergyError)
Definition: GsfElectron.h:853
void setTrackFbrem(float fbrem)
Definition: GsfElectron.h:764
MvaInput mvaInput_
Definition: GsfElectron.h:697
PixelMatchVariables pixelMatchVariables_
Definition: GsfElectron.h:901
void setP4(P4Kind kind, const LorentzVector &p4, float p4Error, bool setCandidate)
Definition: GsfElectron.cc:199
float nSaturatedXtals() const
Definition: GsfElectron.h:516
void setPassCutBasedPreselection(bool flag)
Definition: GsfElectron.h:717
virtual TrackRef closestCtfTrackRef() const
Definition: GsfElectron.h:201
float trackMomentumError() const
Definition: GsfElectron.h:836
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:253
GsfTrackRefVector::const_iterator ambiguousGsfTracksBegin() const
Definition: GsfElectron.h:713
void setFFlagIsEE(const bool b)
Definition: GsfElectron.h:366
void setPixelMatchDRz2(float dRz2)
Definition: GsfElectron.h:892
float scSigmaEtaEta() const
Definition: GsfElectron.h:486
void setCore(const reco::GsfElectronCoreRef &core)
Definition: GsfElectron.h:181
const Corrections & corrections() const
Definition: GsfElectron.h:841
bool isEBEtaGap() const
Definition: GsfElectron.h:357
float dr03HcalDepth1TowerSumEtBc() const
Definition: GsfElectron.h:552
virtual SuperClusterRef parentSuperCluster() const
Definition: GsfElectron.h:190
float eSuperClusterOverP() const
Definition: GsfElectron.h:245
float dRz2
Pixel match variable: deltaRz for second hit.
Definition: GsfElectron.h:876
P4Kind candidateP4Kind() const
Definition: GsfElectron.h:840
const TrackExtrapolations & trackExtrapolations() const
Definition: GsfElectron.h:296
float full5x5_e5x5() const
Definition: GsfElectron.h:462
float full5x5_hcalDepth1OverEcalBc() const
Definition: GsfElectron.h:467
void setPixelMatchDPhi1(float dPhi1)
Definition: GsfElectron.h:889
math::XYZVectorF trackMomentumAtVtxWithConstraint() const
Definition: GsfElectron.h:295
GsfElectron * clone() const override
returns a clone of the Candidate object
Definition: GsfElectron.cc:161
const IsolationVariables & isolationVariables03() const
Definition: GsfElectron.h:575
bool isEBEEGap() const
Definition: GsfElectron.h:355
float dr04HcalDepth1TowerSumEt() const
Definition: GsfElectron.h:560
float hcalDepth2OverEcal() const
Definition: GsfElectron.h:443
bool overlap(const Candidate &) const override
check overlap with another candidate
Definition: GsfElectron.cc:152
float full5x5_e1x5() const
Definition: GsfElectron.h:460
const SaturationInfo & saturationInfo() const
Definition: GsfElectron.h:518
float pixelMatchDRz2() const
Definition: GsfElectron.h:899
float hadronicOverEm1() const
Definition: GsfElectron.h:492
Classification class_
Definition: GsfElectron.h:773
void correctMomentum(const LorentzVector &p4, float trackMomentumError, float p4Error)
Definition: GsfElectron.h:858
float full5x5_hcalDepth2OverEcal() const
Definition: GsfElectron.h:465
math::XYZVectorF trackMomentumAtVtx() const
Definition: GsfElectron.h:291
ConversionRejection conversionRejection_
Definition: GsfElectron.h:617
Definition: __init__.py:1
void setMvaInput(const MvaInput &mi)
Definition: GsfElectron.h:687
void setSaturationInfo(const SaturationInfo &s)
Definition: GsfElectron.h:519
float sumPUPt
sum pt of charged Particles not from PV (for Pu corrections)
Definition: GsfElectron.h:636
float p4Error(P4Kind kind) const
Definition: GsfElectron.cc:237
float full5x5_sigmaIphiIphi() const
Definition: GsfElectron.h:459
float full5x5_hcalOverEcalValid() const
Definition: GsfElectron.h:470
void setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:482
float isSeedSaturated() const
Definition: GsfElectron.h:517
float dr04TkSumPt() const
Definition: GsfElectron.h:558
Corrections corrections_
Definition: GsfElectron.h:865
float pixelMatchDPhi2() const
Definition: GsfElectron.h:897
SaturationInfo saturationInfo_
Definition: GsfElectron.h:523
int charge() const final
electric charge
Definition: LeafCandidate.h:91
float sumNeutralHadronEtHighThreshold
sum pt of neutral hadrons with a higher threshold
Definition: GsfElectron.h:634
bool isEERingGap() const
Definition: GsfElectron.h:361
bool passingCutBasedPreselection() const
Definition: GsfElectron.h:709
bool passingMvaPreselection() const
Definition: GsfElectron.h:725
cv
Definition: cuy.py:363
float dr03HcalDepth2TowerSumEt() const
Definition: GsfElectron.h:550
float sumChargedParticlePt
sum-pt of charged Particles(inludes e/mu)
Definition: GsfElectron.h:633
float hcalOverEcalValid() const
Definition: GsfElectron.h:449
float fbrem() const
Definition: GsfElectron.h:761
const std::vector< CaloTowerDetId > & hcalTowersBehindClusters() const
Definition: GsfElectron.h:445
void setAmbiguous(bool flag)
Definition: GsfElectron.h:719
GsfTrackRefVector ambiguousGsfTracks_
Definition: GsfElectron.h:734
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< float > > XYZPointF
point in space with cartesian internal representation
Definition: Point3D.h:10
float scE2x5Max() const
Definition: GsfElectron.h:489
float e2x5Max() const
Definition: GsfElectron.h:439
float eBottom() const
Definition: GsfElectron.h:453
const_iterator end() const
Termination of iteration.
Definition: RefVector.h:253
int basicClustersSize() const
Definition: GsfElectron.h:320
float convDist() const
Definition: GsfElectron.h:609
ChargeInfo chargeInfo_
Definition: GsfElectron.h:166
float convRadius() const
Definition: GsfElectron.h:611
void setPfIsolationVariables(const PflowIsolationVariables &iso)
Definition: GsfElectron.h:686
math::XYZPointF TrackPositionAtVtx() const
Definition: GsfElectron.h:302
void setDr03Isolation(const IsolationVariables &dr03)
Definition: GsfElectron.h:569
bool isEEDeeGap() const
Definition: GsfElectron.h:360
void setMvaOutput(const MvaOutput &mo)
Definition: GsfElectron.h:688
float dr04HcalTowerSumEtBc() const
Definition: GsfElectron.h:565
bool ambiguous() const
Definition: GsfElectron.h:711
const IsolationVariables & dr04IsolationVariables() const
Definition: GsfElectron.h:566
const ClassificationVariables & classificationVariables() const
Definition: GsfElectron.h:756
float superClusterFbrem() const
Definition: GsfElectron.h:755
bool isEcalEnergyCorrected() const
Definition: GsfElectron.h:833
bool isElectron() const override
Definition: GsfElectron.h:160
bool isEE() const
Definition: GsfElectron.h:353
const_iterator begin() const
Initialize an iterator over the RefVector.
Definition: RefVector.h:248
bool isEB() const
Definition: GsfElectron.h:352
void setPixelMatchSubdetectors(int sd1, int sd2)
Definition: GsfElectron.h:888
virtual reco::TrackRef track() const
reference to a Track
GsfTrackRefVector::const_iterator ambiguousGsfTracksEnd() const
Definition: GsfElectron.h:714
void setSuperClusterFbrem(float fbrem)
Definition: GsfElectron.h:765
float convDcot() const
Definition: GsfElectron.h:610
float full5x5_sigmaIetaIeta() const
Definition: GsfElectron.h:458
void clearAmbiguousGsfTracks()
Definition: GsfElectron.h:720
~GsfElectron() override
Definition: GsfElectron.h:114
void setFFlagIsEBEEGap(const bool b)
Definition: GsfElectron.h:367
bool isGsfScPixChargeConsistent() const
Definition: GsfElectron.h:155
int pixelMatchSubdetector1() const
Definition: GsfElectron.h:894
const IsolationVariables & isolationVariables04() const
Definition: GsfElectron.h:576
float full5x5_e2x5Top() const
Definition: GsfElectron.h:473
void setFFlagIsEBEtaGap(const bool b)
Definition: GsfElectron.h:368
PflowIsolationVariables pfIso_
Definition: GsfElectron.h:696
bool isGap() const
Definition: GsfElectron.h:354
float dr04HcalDepth2TowerSumEt() const
Definition: GsfElectron.h:561
math::XYZVectorF trackMomentumAtCalo() const
Definition: GsfElectron.h:292
bool isGsfCtfChargeConsistent() const
Definition: GsfElectron.h:156
float pixelMatchDPhi1() const
Definition: GsfElectron.h:896
float deltaEtaSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:249
void setFFlagIsEERingGap(const bool b)
Definition: GsfElectron.h:371
float dPhi2
Pixel match variable: deltaPhi for second hit.
Definition: GsfElectron.h:872
void setCorrectedEcalEnergyError(float newEnergyError)
Definition: GsfElectron.cc:179
float sigmaIetaIeta() const
Definition: GsfElectron.h:436
float hadronicOverEm() const
Definition: GsfElectron.h:491
float dr03HcalDepth2TowerSumEtBc() const
Definition: GsfElectron.h:553
float eSeedClusterOverP() const
Definition: GsfElectron.h:246
MvaOutput mvaOutput_
Definition: GsfElectron.h:698
float dr04EcalRecHitSumEt() const
Definition: GsfElectron.h:559
FiducialFlags fiducialFlags_
Definition: GsfElectron.h:376
float deltaPhiSeedClusterTrackAtCalo() const
Definition: GsfElectron.h:253
const MvaInput & mvaInput() const
Definition: GsfElectron.h:682
float sumPhotonEtHighThreshold
sum pt of PF photons with a higher threshold
Definition: GsfElectron.h:635
float full5x5_sigmaEtaEta() const
Definition: GsfElectron.h:457
ShowerShape showerShape_
Definition: GsfElectron.h:499
float trackFbrem() const
Definition: GsfElectron.h:754
math::XYZVectorF trackMomentumOut() const
Definition: GsfElectron.h:293
float sumPhotonEt
sum pt of PF photons // old float photonIso ;
Definition: GsfElectron.h:631
float deltaPhiSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:252
int numberOfBrems() const
Definition: GsfElectron.h:760
float eLeft() const
Definition: GsfElectron.h:450
float hcalOverEcal() const
Definition: GsfElectron.h:444
void setPassMvaPreselection(bool flag)
Definition: GsfElectron.h:724
float dr04HcalDepth1TowerSumEtBc() const
Definition: GsfElectron.h:563
float dr03TkSumPt() const
Definition: GsfElectron.h:547
math::XYZPointF trackPositionAtCalo() const
Definition: GsfElectron.h:290
void setFFlagIsEBPhiGap(const bool b)
Definition: GsfElectron.h:369
std::vector< CaloTowerDetId > hcalTowersBehindClusters
Definition: GsfElectron.h:396
float dr03HcalDepth1TowerSumEt() const
Definition: GsfElectron.h:549
double f[11][100]
float eTop() const
Definition: GsfElectron.h:452
math::XYZPointF TrackPositionAtCalo() const
Definition: GsfElectron.h:303
const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
float eEleClusterOverPout() const
Definition: GsfElectron.h:248
float sumNeutralHadronEt
sum pt of neutral hadrons // old float neutralHadronIso ;
Definition: GsfElectron.h:630
float eSeedClusterOverPout() const
Definition: GsfElectron.h:247
void setFFlagIsEB(const bool b)
Definition: GsfElectron.h:365
float full5x5_hcalOverEcalBc() const
Definition: GsfElectron.h:469
float hcalPFClusterIso() const
Definition: GsfElectron.h:680
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< float > > XYZVectorF
spatial vector with cartesian internal representation
Definition: Vector3D.h:17
float hadronicOverEm2() const
Definition: GsfElectron.h:493
int pixelMatchSubdetector2() const
Definition: GsfElectron.h:895
float hcalOverEcalBc() const
Definition: GsfElectron.h:448
int scPixCharge() const
Definition: GsfElectron.h:153
float scSigmaIEtaIEta() const
Definition: GsfElectron.h:487
float pixelMatchDRz1() const
Definition: GsfElectron.h:898
void setIsolation04(const IsolationVariables &dr04)
Definition: GsfElectron.h:574
IsolationVariables dr04_
Definition: GsfElectron.h:582
float ecalEnergyError() const
Definition: GsfElectron.h:849
float deltaPhiEleClusterTrackAtCalo() const
Definition: GsfElectron.h:254
void setDeltaPhiSuperClusterAtVtx(float dphi)
Definition: GsfElectron.h:262
bool isEnergyScaleCorrected() const
Definition: GsfElectron.h:852
void setEcalEnergyError(float energyError)
Definition: GsfElectron.h:847
void setTrackMomentumError(float trackMomentumError)
Definition: GsfElectron.cc:195
math::XYZPoint superClusterPosition() const
Definition: GsfElectron.h:319
float full5x5_hcalDepth1OverEcal() const
Definition: GsfElectron.h:464
float deltaEtaSeedClusterTrackAtVtx() const
Definition: GsfElectron.h:255
float hcalDepth1OverEcal() const
Definition: GsfElectron.h:442
float shFracInnerHits() const
Definition: GsfElectron.h:200
float correctedEcalEnergy() const
Definition: GsfElectron.h:834
void setPixelMatchDPhi2(float dPhi2)
Definition: GsfElectron.h:890
ClassificationVariables classVariables_
Definition: GsfElectron.h:772
bool isEBGap() const
Definition: GsfElectron.h:356
GsfElectronCoreRef core_
Definition: GsfElectron.h:207
ShowerShape full5x5_showerShape_
Definition: GsfElectron.h:500
TrackBaseRef convPartner() const
Definition: GsfElectron.h:608
float full5x5_e2x5Bottom() const
Definition: GsfElectron.h:474
const ChargeInfo & chargeInfo() const
Definition: GsfElectron.h:157
float full5x5_e2x5Max() const
Definition: GsfElectron.h:461
float eRight() const
Definition: GsfElectron.h:451
CaloCluster_iterator basicClustersBegin() const
Definition: GsfElectron.h:321
void clear()
Clear the vector.
Definition: RefVector.h:147
float deltaEtaEleClusterTrackAtCalo() const
Definition: GsfElectron.h:251
void setClassification(Classification myclass)
Definition: GsfElectron.h:767
float e1x5() const
Definition: GsfElectron.h:438
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
Classification classification() const
Definition: GsfElectron.h:757
float hcalDepth2OverEcalBc() const
Definition: GsfElectron.h:447
const MvaOutput & mvaOutput() const
Definition: GsfElectron.h:683
float full5x5_hcalOverEcal() const
Definition: GsfElectron.h:466
math::XYZPoint caloPosition() const
Definition: GsfElectron.h:325
GsfTrackRefVector::size_type ambiguousGsfTracksSize() const
Definition: GsfElectron.h:712
float dr04HcalDepth2TowerSumEtBc() const
Definition: GsfElectron.h:564
double b
Definition: hdecay.h:120
float full5x5_eBottom() const
Definition: GsfElectron.h:478
float full5x5_hcalDepth2OverEcalBc() const
Definition: GsfElectron.h:468
float full5x5_eTop() const
Definition: GsfElectron.h:477
float ecalPFClusterIso() const
Definition: GsfElectron.h:679
float ecalEnergy() const
Definition: GsfElectron.h:848
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
virtual GsfElectronCoreRef core() const
Definition: GsfElectron.cc:8
float mva_Isolated() const
Definition: GsfElectron.h:691
float dr03EcalRecHitSumEt() const
Definition: GsfElectron.h:548
math::XYZVectorF trackMomentumAtEleClus() const
Definition: GsfElectron.h:294
float mva_e_pi() const
Definition: GsfElectron.h:692
float e5x5() const
Definition: GsfElectron.h:440
float dr03HcalTowerSumEtBc() const
Definition: GsfElectron.h:554
float full5x5_r9() const
Definition: GsfElectron.h:463
math::XYZVectorF momentumAtVtxWithConstraint
Definition: GsfElectron.h:285
float correctedEcalEnergyError() const
Definition: GsfElectron.h:835
void setCorrectedEcalEnergy(float newEnergy)
Definition: GsfElectron.cc:182
void setIsolation03(const IsolationVariables &dr03)
Definition: GsfElectron.h:573
float r9() const
Definition: GsfElectron.h:441
float deltaEtaSeedClusterTrackAtCalo() const
Definition: GsfElectron.h:250
const ShowerShape & full5x5_showerShape() const
Definition: GsfElectron.h:479
fixed size matrix
void setTrackExtrapolations(const TrackExtrapolations &te)
Definition: GsfElectron.h:299
const IsolationVariables & dr03IsolationVariables() const
Definition: GsfElectron.h:555
int convFlags() const
Definition: GsfElectron.h:607
math::XYZPointF trackPositionAtVtx() const
Definition: GsfElectron.h:289
float full5x5_eRight() const
Definition: GsfElectron.h:476
bool isEBPhiGap() const
Definition: GsfElectron.h:358
bool isGsfCtfScPixChargeConsistent() const
Definition: GsfElectron.h:154
SuperClusterRef superCluster() const override
reference to a SuperCluster
Definition: GsfElectron.h:184
ClosestCtfTrack(TrackRef track, float sh)
Definition: GsfElectron.h:198
const TrackClusterMatching & trackClusterMatching() const
Definition: GsfElectron.h:258
bool trackerDrivenSeed() const
Definition: GsfElectron.h:189
void setPassPflowPreselection(bool flag)
Definition: GsfElectron.h:718
void push_back(value_type const &ref)
Add a Ref<C, T> to the RefVector.
Definition: RefVector.h:69
size_type size() const
Size of the RefVector.
Definition: RefVector.h:107
float dr03HcalTowerSumEt() const
Definition: GsfElectron.h:551
const ConversionRejection & conversionRejectionVariables() const
Definition: GsfElectron.h:612
void setDeltaEtaSuperClusterAtVtx(float de)
Definition: GsfElectron.h:261
float dRz1
Pixel match variable: deltaRz for innermost hit.
Definition: GsfElectron.h:874
void setCorrections(const Corrections &c)
Definition: GsfElectron.h:844
void setClassificationVariables(const ClassificationVariables &cv)
Definition: GsfElectron.h:766
float scE5x5() const
Definition: GsfElectron.h:490
TrackClusterMatching trackClusterMatching_
Definition: GsfElectron.h:268
bool passCutBasedPreselection_
Definition: GsfElectron.h:730
float hcalDepth1OverEcalBc() const
Definition: GsfElectron.h:446
IsolationVariables dr03_
Definition: GsfElectron.h:581
void addAmbiguousGsfTrack(const reco::GsfTrackRef &t)
Definition: GsfElectron.h:721
float sumChargedHadronPt
sum-pt of charged Hadron // old float chargedHadronIso ;
Definition: GsfElectron.h:629
void full5x5_setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:483
TrackExtrapolations trackExtrapolations_
Definition: GsfElectron.h:309
float full5x5_e2x5Right() const
Definition: GsfElectron.h:472
float caloEnergy() const
Definition: GsfElectron.h:851
bool ecalDriven() const
Definition: GsfElectron.cc:174
void setFFlagIsEEDeeGap(const bool b)
Definition: GsfElectron.h:370
bool passPflowPreselection_
Definition: GsfElectron.h:731
float ctfGsfOverlap() const
Definition: GsfElectron.h:187
const FiducialFlags & fiducialFlags() const
Definition: GsfElectron.h:362
void setP4(const LorentzVector &p4) final
set 4-momentum
void setPixelMatchDRz1(float dRz1)
Definition: GsfElectron.h:891
virtual ClosestCtfTrack closestCtfTrack() const
Definition: GsfElectron.h:202
float sigmaEtaEta() const
Definition: GsfElectron.h:435
float scE1x5() const
Definition: GsfElectron.h:488
float full5x5_e2x5Left() const
Definition: GsfElectron.h:471
virtual TrackRef closestTrack() const
Definition: GsfElectron.h:186
float energyError(float E, float *par)
bool ecalDrivenSeed() const
Definition: GsfElectron.h:188
bool passingPflowPreselection() const
Definition: GsfElectron.h:710