CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
PhoSingleTowerHadOverEmCut Class Reference
Inheritance diagram for PhoSingleTowerHadOverEmCut:
CutApplicatorBase candidate_functions::CandidateCut

Public Member Functions

CandidateType candidateType () const final
 
result_type operator() (const reco::PhotonPtr &) const final
 
 PhoSingleTowerHadOverEmCut (const edm::ParameterSet &c)
 
double value (const reco::CandidatePtr &cand) const final
 
- Public Member Functions inherited from CutApplicatorBase
virtual result_type asCandidate (const argument_type &) const
 
 CutApplicatorBase ()
 
 CutApplicatorBase (const edm::ParameterSet &c)
 
 CutApplicatorBase (const CutApplicatorBase &)=delete
 
const std::string & name () const override
 
result_type operator() (const argument_type &) const override final
 
virtual result_type operator() (const reco::GsfElectronPtr &) const
 
virtual result_type operator() (const pat::ElectronPtr &) const
 
virtual result_type operator() (const reco::MuonPtr &) const
 
virtual result_type operator() (const pat::MuonPtr &) const
 
CutApplicatorBaseoperator= (const CutApplicatorBase &)=delete
 
 ~CutApplicatorBase () override
 Destructor. More...
 
- Public Member Functions inherited from candidate_functions::CandidateCut
 CandidateCut ()
 
virtual ~CandidateCut ()
 

Private Attributes

const float _barrelCutOff
 
const float _hadronicOverEMCutValueEB
 
const float _hadronicOverEMCutValueEE
 

Additional Inherited Members

- Public Types inherited from CutApplicatorBase
enum  CandidateType {
  NONE, ELECTRON, MUON, PHOTON,
  TAU, PATELECTRON, PATMUON, PATPHOTON,
  PATTAU
}
 
- Public Types inherited from candidate_functions::CandidateCut
using argument_type = reco::CandidatePtr
 
using result_type = bool
 

Detailed Description

Definition at line 4 of file PhoSingleTowerHadOverEmCut.cc.

Constructor & Destructor Documentation

PhoSingleTowerHadOverEmCut::PhoSingleTowerHadOverEmCut ( const edm::ParameterSet c)
inline

Definition at line 6 of file PhoSingleTowerHadOverEmCut.cc.

References operator()(), and value().

6  :
8  _hadronicOverEMCutValueEB(c.getParameter<double>("hadronicOverEMCutValueEB")),
9  _hadronicOverEMCutValueEE(c.getParameter<double>("hadronicOverEMCutValueEE")),
10  _barrelCutOff(c.getParameter<double>("barrelCutOff")) {
11  }
T getParameter(std::string const &) const

Member Function Documentation

CandidateType PhoSingleTowerHadOverEmCut::candidateType ( ) const
inlinefinalvirtual

Reimplemented from CutApplicatorBase.

Definition at line 17 of file PhoSingleTowerHadOverEmCut.cc.

References CutApplicatorBase::PHOTON.

17  {
18  return PHOTON;
19  }
CutApplicatorBase::result_type PhoSingleTowerHadOverEmCut::operator() ( const reco::PhotonPtr cand) const
finalvirtual

Reimplemented from CutApplicatorBase.

Definition at line 31 of file PhoSingleTowerHadOverEmCut.cc.

References _barrelCutOff, _hadronicOverEMCutValueEB, _hadronicOverEMCutValueEE, funct::abs(), and value().

Referenced by PhoSingleTowerHadOverEmCut().

31  {
32  const float hadronicOverEMCutValue =
33  ( std::abs(cand->superCluster()->eta()) < _barrelCutOff ?
35 
36  return cand->hadTowOverEm() < hadronicOverEMCutValue;
37 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double PhoSingleTowerHadOverEmCut::value ( const reco::CandidatePtr cand) const
finalvirtual

Implements candidate_functions::CandidateCut.

Definition at line 40 of file PhoSingleTowerHadOverEmCut.cc.

Referenced by operator()(), and PhoSingleTowerHadOverEmCut().

40  {
41  reco::PhotonPtr pho(cand);
42  return pho->hadTowOverEm();
43 }

Member Data Documentation

const float PhoSingleTowerHadOverEmCut::_barrelCutOff
private

Definition at line 22 of file PhoSingleTowerHadOverEmCut.cc.

Referenced by operator()().

const float PhoSingleTowerHadOverEmCut::_hadronicOverEMCutValueEB
private

Definition at line 22 of file PhoSingleTowerHadOverEmCut.cc.

Referenced by operator()().

const float PhoSingleTowerHadOverEmCut::_hadronicOverEMCutValueEE
private

Definition at line 22 of file PhoSingleTowerHadOverEmCut.cc.

Referenced by operator()().