CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
PFRecHitQTestHOThreshold Class Reference

#include <PFRecHitQTests.h>

Inheritance diagram for PFRecHitQTestHOThreshold:
PFRecHitQTestBase

Public Member Functions

void beginEvent (const edm::Event &event, const edm::EventSetup &iSetup) override
 
 PFRecHitQTestHOThreshold ()
 
 PFRecHitQTestHOThreshold (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
bool test (reco::PFRecHit &hit, const EcalRecHit &rh, bool &clean, bool fullReadOut) override
 
bool test (reco::PFRecHit &hit, const HBHERecHit &rh, bool &clean) override
 
bool test (reco::PFRecHit &hit, const HFRecHit &rh, bool &clean) override
 
bool test (reco::PFRecHit &hit, const HORecHit &rh, bool &clean) override
 
bool test (reco::PFRecHit &hit, const CaloTower &rh, bool &clean) override
 
bool test (reco::PFRecHit &hit, const HGCRecHit &rh, bool &clean) override
 
- Public Member Functions inherited from PFRecHitQTestBase
 PFRecHitQTestBase ()=default
 
 PFRecHitQTestBase (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
virtual ~PFRecHitQTestBase ()=default
 

Protected Attributes

const double threshold0_
 
const double threshold12_
 

Detailed Description

Definition at line 319 of file PFRecHitQTests.h.

Constructor & Destructor Documentation

◆ PFRecHitQTestHOThreshold() [1/2]

PFRecHitQTestHOThreshold::PFRecHitQTestHOThreshold ( )
inline

Definition at line 321 of file PFRecHitQTests.h.

321 : threshold0_(0.), threshold12_(0.) {}

◆ PFRecHitQTestHOThreshold() [2/2]

PFRecHitQTestHOThreshold::PFRecHitQTestHOThreshold ( const edm::ParameterSet iConfig,
edm::ConsumesCollector cc 
)
inline

Definition at line 323 of file PFRecHitQTests.h.

324  : PFRecHitQTestBase(iConfig, cc),
325  threshold0_(iConfig.getParameter<double>("threshold_ring0")),
326  threshold12_(iConfig.getParameter<double>("threshold_ring12")) {}
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
PFRecHitQTestBase()=default

Member Function Documentation

◆ beginEvent()

void PFRecHitQTestHOThreshold::beginEvent ( const edm::Event event,
const edm::EventSetup iSetup 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 328 of file PFRecHitQTests.h.

328 {}

◆ test() [1/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const EcalRecHit rh,
bool &  clean,
bool  fullReadOut 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 330 of file PFRecHitQTests.h.

330 { return true; }

◆ test() [2/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const HBHERecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 332 of file PFRecHitQTests.h.

332 { return true; }

◆ test() [3/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const HFRecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 334 of file PFRecHitQTests.h.

334 { return true; }

◆ test() [4/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const HORecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 336 of file PFRecHitQTests.h.

References funct::abs(), CaloRecHit::detid(), threshold0_, and threshold12_.

336  {
337  HcalDetId detid(rh.detid());
338  if (abs(detid.ieta()) <= 4 and hit.energy() > threshold0_)
339  return true;
340  if (abs(detid.ieta()) > 4 and hit.energy() > threshold12_)
341  return true;
342 
343  return false;
344  }
constexpr const DetId & detid() const
Definition: CaloRecHit.h:33
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

◆ test() [5/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const CaloTower rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 346 of file PFRecHitQTests.h.

346 { return true; }

◆ test() [6/6]

bool PFRecHitQTestHOThreshold::test ( reco::PFRecHit hit,
const HGCRecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 348 of file PFRecHitQTests.h.

348 { return true; }

Member Data Documentation

◆ threshold0_

const double PFRecHitQTestHOThreshold::threshold0_
protected

Definition at line 351 of file PFRecHitQTests.h.

Referenced by test().

◆ threshold12_

const double PFRecHitQTestHOThreshold::threshold12_
protected

Definition at line 352 of file PFRecHitQTests.h.

Referenced by test().