CMS 3D CMS Logo

GsfEleMinEcalEtCut.cc
Go to the documentation of this file.
3 
5 public:
7 
8  result_type operator()(const reco::GsfElectronPtr&) const final;
9 
10  double value(const reco::CandidatePtr& cand) const final;
11 
13 
14 private:
15  const double minEt_;
16 };
17 
19 
21  : CutApplicatorBase(c), minEt_(c.getParameter<double>("minEt")) {}
22 
24  const reco::GsfElectron& ele = *cand;
25  const float sinTheta = ele.p() != 0 ? ele.pt() / ele.p() : 0.;
26  const float et = ele.ecalEnergy() * sinTheta;
27  return et > minEt_;
28 }
29 
31  const reco::GsfElectronPtr elePtr(cand);
32  const reco::GsfElectron& ele = *elePtr;
33  const float sinTheta = ele.p() != 0 ? ele.pt() / ele.p() : 0.;
34  const float et = ele.ecalEnergy() * sinTheta;
35  return et;
36 }
GsfEleMinEcalEtCut(const edm::ParameterSet &c)
double pt() const final
transverse momentum
double value(const reco::CandidatePtr &cand) const final
double p() const final
magnitude of momentum vector
CandidateType candidateType() const final
float ecalEnergy() const
Definition: GsfElectron.h:896
result_type operator()(const reco::GsfElectronPtr &) const final
#define DEFINE_EDM_PLUGIN(factory, type, name)