CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PhoSingleTowerHadOverEmCut.cc
Go to the documentation of this file.
3 
5 public:
8  _hadronicOverEMCutValueEB(c.getParameter<double>("hadronicOverEMCutValueEB")),
9  _hadronicOverEMCutValueEE(c.getParameter<double>("hadronicOverEMCutValueEE")),
10  _barrelCutOff(c.getParameter<double>("barrelCutOff")) {
11  }
12 
13  result_type operator()(const reco::PhotonPtr&) const override final;
14 
15  double value(const reco::CandidatePtr& cand) const override final;
16 
17  CandidateType candidateType() const override final {
18  return PHOTON;
19  }
20 
21 private:
23 };
24 
27  "PhoSingleTowerHadOverEmCut");
28 
29 CutApplicatorBase::result_type
31 operator()(const reco::PhotonPtr& cand) const {
32  const float hadronicOverEMCutValue =
33  ( std::abs(cand->superCluster()->eta()) < _barrelCutOff ?
35 
36  return cand->hadTowOverEm() < hadronicOverEMCutValue;
37 }
38 
40 value(const reco::CandidatePtr& cand) const {
41  reco::PhotonPtr pho(cand);
42  return pho->hadTowOverEm();
43 }
result_type operator()(const reco::PhotonPtr &) const overridefinal
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double value(const reco::CandidatePtr &cand) const overridefinal
edm::Ptr< Candidate > CandidatePtr
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:25
string const
Definition: compareJSON.py:14
#define DEFINE_EDM_PLUGIN(factory, type, name)
PhoSingleTowerHadOverEmCut(const edm::ParameterSet &c)
CandidateType candidateType() const overridefinal