CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
PFCandWithSuperClusterExtractor Class Reference

#include <PFCandWithSuperClusterExtractor.h>

Inheritance diagram for PFCandWithSuperClusterExtractor:
reco::isodeposit::IsoDepositExtractor

Public Member Functions

virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
 
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Candidate &cand) const
 
virtual void fillVetos (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackCollection &cand)
 
 PFCandWithSuperClusterExtractor ()
 
 PFCandWithSuperClusterExtractor (const edm::ParameterSet &par)
 
virtual ~PFCandWithSuperClusterExtractor ()
 
- Public Member Functions inherited from reco::isodeposit::IsoDepositExtractor
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackBaseRef &track) const
 make single IsoDeposit based on trackRef as input More...
 
virtual reco::IsoDeposit deposit (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::CandidateBaseRef &track) const
 make single IsoDeposit based on a CandidateBaseRef as input More...
 
virtual std::vector
< reco::IsoDeposit
deposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
 
virtual std::vector
< reco::IsoDeposit
deposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackBaseRef &track) const
 
virtual std::vector
< reco::IsoDeposit
deposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Candidate &track) const
 
virtual std::vector
< reco::IsoDeposit
deposits (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::CandidateBaseRef &track) const
 
virtual ~IsoDepositExtractor ()
 Destructor. More...
 

Private Member Functions

reco::IsoDeposit depositFromObject (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Photon &cand) const
 
reco::IsoDeposit depositFromObject (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::GsfElectron &cand) const
 
reco::IsoDeposit depositFromObject (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &cand) const
 
reco::IsoDeposit depositFromObject (const edm::Event &ev, const edm::EventSetup &evSetup, const reco::PFCandidate &cand) const
 
reco::IsoDeposit::Veto veto (const reco::IsoDeposit::Direction &dir) const
 

Private Attributes

std::string theDepositLabel
 
double theDiff_r
 
double theDiff_z
 
double theDR_Max
 
double theDR_Veto
 
bool theMissHitVetoSuperClusterMatch
 
edm::InputTag thePFCandTag
 
bool theVetoSuperClusterMatch
 

Detailed Description

Definition at line 20 of file PFCandWithSuperClusterExtractor.h.

Constructor & Destructor Documentation

PFCandWithSuperClusterExtractor::PFCandWithSuperClusterExtractor ( )
inline

Definition at line 24 of file PFCandWithSuperClusterExtractor.h.

24 {};
PFCandWithSuperClusterExtractor::PFCandWithSuperClusterExtractor ( const edm::ParameterSet par)

Definition at line 13 of file PFCandWithSuperClusterExtractor.cc.

13  :
14  thePFCandTag(par.getParameter<edm::InputTag>("inputCandView")),
15  theDepositLabel(par.getUntrackedParameter<std::string>("DepositLabel")),
16  theVetoSuperClusterMatch(par.getParameter<bool>("SCMatch_Veto")),
17  theMissHitVetoSuperClusterMatch(par.getParameter<bool>("MissHitSCMatch_Veto")),
18  theDiff_r(par.getParameter<double>("Diff_r")),
19  theDiff_z(par.getParameter<double>("Diff_z")),
20  theDR_Max(par.getParameter<double>("DR_Max")),
21  theDR_Veto(par.getParameter<double>("DR_Veto"))
22 {
23  // std::cout << " Loading PFCandWithSuperClusterExtractor " << std::endl;
24 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
virtual PFCandWithSuperClusterExtractor::~PFCandWithSuperClusterExtractor ( )
inlinevirtual

Definition at line 27 of file PFCandWithSuperClusterExtractor.h.

27 {}

Member Function Documentation

virtual reco::IsoDeposit PFCandWithSuperClusterExtractor::deposit ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Track track 
) const
inlinevirtual

make single IsoDeposit based on track as input purely virtual: have to implement in concrete implementations

Implements reco::isodeposit::IsoDepositExtractor.

Definition at line 33 of file PFCandWithSuperClusterExtractor.h.

References depositFromObject().

Referenced by depositFromObject().

34  {
35  return depositFromObject(ev, evSetup, muon);
36  }
reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Photon &cand) const
virtual reco::IsoDeposit PFCandWithSuperClusterExtractor::deposit ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Candidate track 
) const
inlinevirtual

make single IsoDeposit based on a candidate as input purely virtual: have to implement in concrete implementations

Reimplemented from reco::isodeposit::IsoDepositExtractor.

Definition at line 38 of file PFCandWithSuperClusterExtractor.h.

References depositFromObject().

39  {
40 
41  const reco::Photon * myPhoton= dynamic_cast<const reco::Photon*>(&cand);
42  if(myPhoton)
43  return depositFromObject(ev, evSetup,*myPhoton);
44 
45  const reco::GsfElectron * myElectron = dynamic_cast<const reco::GsfElectron*>(&cand);
46  if(myElectron)
47  return depositFromObject(ev,evSetup,*myElectron);
48 
49  const reco::PFCandidate * myPFCand = dynamic_cast<const reco::PFCandidate*>(&cand);
50  return depositFromObject(ev, evSetup,*myPFCand);
51  }
reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Photon &cand) const
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:33
IsoDeposit PFCandWithSuperClusterExtractor::depositFromObject ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Photon cand 
) const
private

Definition at line 43 of file PFCandWithSuperClusterExtractor.cc.

References abs, deltaR(), deposit(), PFRecoTauDiscriminationAgainstElectronDeadECAL_cfi::dR, reco::LeafCandidate::eta(), eta(), edm::Ref< C, T, F >::isNonnull(), phi, reco::LeafCandidate::phi(), reco::LeafCandidate::pt(), reco::Photon::superCluster(), theDiff_r, theDiff_z, theDR_Max, theDR_Veto, thePFCandTag, theVetoSuperClusterMatch, reco::LeafCandidate::vertex(), veto(), and reco::LeafCandidate::vz().

Referenced by deposit().

44 {
45  reco::isodeposit::Direction candDir(cand.eta(), cand.phi());
46  IsoDeposit deposit(candDir );
47  deposit.setVeto( veto(candDir) );
48  deposit.addCandEnergy(cand.pt());
49 
51  event.getByLabel(thePFCandTag, PFCandH);
52 
53  double eta = cand.eta(), phi = cand.phi();
54  reco::Particle::Point vtx = cand.vertex();
55  for (PFCandidateCollection::const_iterator it = PFCandH->begin(), ed = PFCandH->end(); it != ed; ++it) {
56  double dR = deltaR(it->eta(), it->phi(), eta, phi);
57  // veto SC
58  if (theVetoSuperClusterMatch && cand.superCluster().isNonnull() && it->superClusterRef().isNonnull() && cand.superCluster() == it->superClusterRef()) continue;
59  if ( (dR < theDR_Max) && (dR > theDR_Veto) &&
60  (std::abs(it->vz() - cand.vz()) < theDiff_z) &&
61  ((it->vertex() - vtx).Rho() < theDiff_r)) {
62  // ok
63  reco::isodeposit::Direction dirTrk(it->eta(), it->phi());
64  deposit.addDeposit(dirTrk, it->pt());
65  }
66  }
67 
68  return deposit;
69 }
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:75
virtual const Point & vertex() const
vertex position
#define abs(x)
Definition: mlp_lapack.h:159
reco::SuperClusterRef superCluster() const
Ref to SuperCluster.
Definition: Photon.cc:59
T eta() const
virtual double eta() const
momentum pseudorapidity
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:23
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:134
math::XYZPoint Point
point in the space
Definition: Particle.h:29
virtual double vz() const
z coordinate of vertex position
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
virtual double pt() const
transverse momentum
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
virtual double phi() const
momentum azimuthal angle
Definition: DDAxes.h:10
IsoDeposit PFCandWithSuperClusterExtractor::depositFromObject ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::GsfElectron cand 
) const
private

Definition at line 72 of file PFCandWithSuperClusterExtractor.cc.

References abs, deltaR(), deposit(), PFRecoTauDiscriminationAgainstElectronDeadECAL_cfi::dR, reco::LeafCandidate::eta(), eta(), reco::GsfElectron::gsfTrack(), edm::Ref< C, T, F >::isNonnull(), phi, reco::LeafCandidate::phi(), reco::LeafCandidate::pt(), reco::GsfElectron::superCluster(), theDiff_r, theDiff_z, theDR_Max, theDR_Veto, theMissHitVetoSuperClusterMatch, thePFCandTag, reco::LeafCandidate::vertex(), veto(), and reco::LeafCandidate::vz().

73 {
74  reco::isodeposit::Direction candDir(cand.eta(), cand.phi());
75  IsoDeposit deposit(candDir );
76  deposit.setVeto( veto(candDir) );
77  deposit.addCandEnergy(cand.pt());
78 
80  event.getByLabel(thePFCandTag, PFCandH);
81 
82  double eta = cand.eta(), phi = cand.phi();
83  reco::Particle::Point vtx = cand.vertex();
84  for (PFCandidateCollection::const_iterator it = PFCandH->begin(), ed = PFCandH->end(); it != ed; ++it) {
85  double dR = deltaR(it->eta(), it->phi(), eta, phi);
86  // If MissHits>0 (possibly reconstructed as a photon in the PF in this case, kill the the photon if sharing the same SC)
87  if (cand.gsfTrack()->trackerExpectedHitsInner().numberOfHits()>0 && theMissHitVetoSuperClusterMatch &&
88  it->mva_nothing_gamma() > 0.99 && cand.superCluster().isNonnull()
89  && it->superClusterRef().isNonnull()
90  && cand.superCluster() == it->superClusterRef()) continue;
91  if ( (dR < theDR_Max) && (dR > theDR_Veto) &&
92  (std::abs(it->vz() - cand.vz()) < theDiff_z) &&
93  ((it->vertex() - vtx).Rho() < theDiff_r)) {
94  // ok
95  reco::isodeposit::Direction dirTrk(it->eta(), it->phi());
96  deposit.addDeposit(dirTrk, it->pt());
97  }
98  }
99 
100  return deposit;
101 }
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:75
virtual const Point & vertex() const
vertex position
#define abs(x)
Definition: mlp_lapack.h:159
T eta() const
virtual double eta() const
momentum pseudorapidity
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:23
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
virtual SuperClusterRef superCluster() const
reference to a SuperCluster
Definition: GsfElectron.h:168
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:134
math::XYZPoint Point
point in the space
Definition: Particle.h:29
virtual double vz() const
z coordinate of vertex position
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
virtual double pt() const
transverse momentum
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
virtual double phi() const
momentum azimuthal angle
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
Definition: GsfElectron.h:169
Definition: DDAxes.h:10
IsoDeposit PFCandWithSuperClusterExtractor::depositFromObject ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::Track cand 
) const
private

Definition at line 105 of file PFCandWithSuperClusterExtractor.cc.

References abs, deltaR(), deposit(), PFRecoTauDiscriminationAgainstElectronDeadECAL_cfi::dR, reco::TrackBase::eta(), eta(), phi, reco::TrackBase::phi(), reco::TrackBase::pt(), theDiff_r, theDiff_z, theDR_Max, theDR_Veto, thePFCandTag, reco::TrackBase::vertex(), veto(), and reco::TrackBase::vz().

106 {
107  reco::isodeposit::Direction candDir(cand.eta(), cand.phi());
108  IsoDeposit deposit(candDir );
109  deposit.setVeto( veto(candDir) );
110  deposit.addCandEnergy(cand.pt());
112  event.getByLabel(thePFCandTag, PFCandH);
113 
114  double eta = cand.eta(), phi = cand.phi();
115  reco::Particle::Point vtx = cand.vertex();
116  for (PFCandidateCollection::const_iterator it = PFCandH->begin(), ed = PFCandH->end(); it != ed; ++it) {
117  double dR = deltaR(it->eta(), it->phi(), eta, phi);
118 
119  if ( (dR < theDR_Max) && (dR > theDR_Veto) &&
120  (std::abs(it->vz() - cand.vz()) < theDiff_z) &&
121  ((it->vertex() - vtx).Rho() < theDiff_r)) {
122  // ok
123  reco::isodeposit::Direction dirTrk(it->eta(), it->phi());
124  deposit.addDeposit(dirTrk, it->pt());
125  }
126  }
127 
128  return deposit;
129 }
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:75
#define abs(x)
Definition: mlp_lapack.h:159
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:139
T eta() const
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:23
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:141
double pt() const
track transverse momentum
Definition: TrackBase.h:131
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:134
math::XYZPoint Point
point in the space
Definition: Particle.h:29
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
const Point & vertex() const
reference point on the track. This method is DEPRECATED, please use referencePoint() instead ...
Definition: TrackBase.h:156
double vz() const
z coordinate of the reference point on track
Definition: TrackBase.h:147
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
Definition: DDAxes.h:10
IsoDeposit PFCandWithSuperClusterExtractor::depositFromObject ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::PFCandidate cand 
) const
private

Definition at line 132 of file PFCandWithSuperClusterExtractor.cc.

References abs, deltaR(), deposit(), PFRecoTauDiscriminationAgainstElectronDeadECAL_cfi::dR, reco::LeafCandidate::eta(), eta(), edm::Ref< C, T, F >::isNonnull(), phi, reco::LeafCandidate::phi(), reco::LeafCandidate::pt(), reco::PFCandidate::superClusterRef(), theDiff_r, theDiff_z, theDR_Max, theDR_Veto, thePFCandTag, theVetoSuperClusterMatch, reco::PFCandidate::vertex(), veto(), and reco::PFCandidate::vz().

133 {
134  reco::isodeposit::Direction candDir(cand.eta(), cand.phi());
135  IsoDeposit deposit(candDir );
136  deposit.setVeto( veto(candDir) );
137  deposit.addCandEnergy(cand.pt());
139  event.getByLabel(thePFCandTag, PFCandH);
140 
141  double eta = cand.eta(), phi = cand.phi();
142  reco::Particle::Point vtx = cand.vertex();
143  for (PFCandidateCollection::const_iterator it = PFCandH->begin(), ed = PFCandH->end(); it != ed; ++it) {
144  // veto SC
145  if (theVetoSuperClusterMatch && cand.superClusterRef().isNonnull() && it->superClusterRef().isNonnull() && cand.superClusterRef() == it->superClusterRef()) continue;
146  double dR = deltaR(it->eta(), it->phi(), eta, phi);
147 
148  if ( (dR < theDR_Max) && (dR > theDR_Veto) &&
149  (std::abs(it->vz() - cand.vz()) < theDiff_z) &&
150  ((it->vertex() - vtx).Rho() < theDiff_r)) {
151  // ok
152  reco::isodeposit::Direction dirTrk(it->eta(), it->phi());
153  deposit.addDeposit(dirTrk, it->pt());
154  }
155  }
156 
157  return deposit;
158 }
virtual double vz() const
z coordinate of vertex position
Definition: PFCandidate.h:377
void setVeto(const Veto &aVeto)
Set veto.
Definition: IsoDeposit.h:75
#define abs(x)
Definition: mlp_lapack.h:159
T eta() const
virtual double eta() const
momentum pseudorapidity
void addDeposit(double dr, double deposit)
Add deposit (ie. transverse energy or pT)
Definition: IsoDeposit.cc:23
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
void addCandEnergy(double et)
Set energy or pT attached to cand trajectory.
Definition: IsoDeposit.h:134
math::XYZPoint Point
point in the space
Definition: Particle.h:29
virtual const Point & vertex() const
vertex position
Definition: PFCandidate.cc:546
reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
virtual double pt() const
transverse momentum
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const
virtual double phi() const
momentum azimuthal angle
reco::SuperClusterRef superClusterRef() const
return a reference to the corresponding SuperCluster if any
Definition: PFCandidate.cc:502
Definition: DDAxes.h:10
virtual void PFCandWithSuperClusterExtractor::fillVetos ( const edm::Event ev,
const edm::EventSetup evSetup,
const reco::TrackCollection tracks 
)
inlinevirtual

fill vetoes: to exclude deposits at IsoDeposit creation stage check concrete extractors if it's no-op !

Implements reco::isodeposit::IsoDepositExtractor.

Definition at line 29 of file PFCandWithSuperClusterExtractor.h.

30  { }
reco::IsoDeposit::Veto PFCandWithSuperClusterExtractor::veto ( const reco::IsoDeposit::Direction dir) const
private

Member Data Documentation

std::string PFCandWithSuperClusterExtractor::theDepositLabel
private

Definition at line 70 of file PFCandWithSuperClusterExtractor.h.

double PFCandWithSuperClusterExtractor::theDiff_r
private

Definition at line 73 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().

double PFCandWithSuperClusterExtractor::theDiff_z
private

Definition at line 74 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().

double PFCandWithSuperClusterExtractor::theDR_Max
private

Definition at line 75 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().

double PFCandWithSuperClusterExtractor::theDR_Veto
private

Definition at line 76 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject(), and veto().

bool PFCandWithSuperClusterExtractor::theMissHitVetoSuperClusterMatch
private

Definition at line 72 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().

edm::InputTag PFCandWithSuperClusterExtractor::thePFCandTag
private

Definition at line 69 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().

bool PFCandWithSuperClusterExtractor::theVetoSuperClusterMatch
private

Definition at line 71 of file PFCandWithSuperClusterExtractor.h.

Referenced by depositFromObject().