CMS 3D CMS Logo

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

#include <PFRecHitQTests.h>

Inheritance diagram for PFRecHitQTestECAL:
PFRecHitQTestBase

Public Member Functions

void beginEvent (const edm::Event &event, const edm::EventSetup &iSetup) override
 
 PFRecHitQTestECAL ()
 
 PFRecHitQTestECAL (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

bool skipTTRecoveredHits_
 
double thresholdCleaning_
 
bool timingCleaning_
 
bool topologicalCleaning_
 

Detailed Description

Definition at line 462 of file PFRecHitQTests.h.

Constructor & Destructor Documentation

◆ PFRecHitQTestECAL() [1/2]

PFRecHitQTestECAL::PFRecHitQTestECAL ( )
inline

Definition at line 464 of file PFRecHitQTests.h.

464 {}

◆ PFRecHitQTestECAL() [2/2]

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

Definition at line 466 of file PFRecHitQTests.h.

467  : PFRecHitQTestBase(iConfig, cc),
468  thresholdCleaning_(iConfig.getParameter<double>("cleaningThreshold")),
469  timingCleaning_(iConfig.getParameter<bool>("timingCleaning")),
470  topologicalCleaning_(iConfig.getParameter<bool>("topologicalCleaning")),
471  skipTTRecoveredHits_(iConfig.getParameter<bool>("skipTTRecoveredHits")) {}
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
PFRecHitQTestBase()=default

Member Function Documentation

◆ beginEvent()

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

Implements PFRecHitQTestBase.

Definition at line 473 of file PFRecHitQTests.h.

473 {}

◆ test() [1/6]

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

Implements PFRecHitQTestBase.

Definition at line 475 of file PFRecHitQTests.h.

References EcalRecHit::checkFlag(), clean(), EcalRecHit::energy(), EcalRecHit::kDiWeird, EcalRecHit::kOutOfTime, EcalRecHit::kTowerRecovered, EcalRecHit::kWeird, or, skipTTRecoveredHits_, thresholdCleaning_, timingCleaning_, and topologicalCleaning_.

475  {
477  clean = true;
478  return false;
479  }
481  clean = true;
482  return false;
483  }
484 
486  clean = true;
487  return false;
488  }
489 
490  return true;
491  }
static void clean(char *s)
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
float energy() const
Definition: EcalRecHit.h:69
bool checkFlag(int flag) const
check if the flag is true
Definition: EcalRecHit.h:188

◆ test() [2/6]

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

Implements PFRecHitQTestBase.

Definition at line 493 of file PFRecHitQTests.h.

493 { return true; }

◆ test() [3/6]

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

Implements PFRecHitQTestBase.

Definition at line 495 of file PFRecHitQTests.h.

495 { return true; }

◆ test() [4/6]

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

Implements PFRecHitQTestBase.

Definition at line 497 of file PFRecHitQTests.h.

497 { return true; }

◆ test() [5/6]

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

Implements PFRecHitQTestBase.

Definition at line 499 of file PFRecHitQTests.h.

499 { return true; }

◆ test() [6/6]

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

Implements PFRecHitQTestBase.

Definition at line 501 of file PFRecHitQTests.h.

501 { return true; }

Member Data Documentation

◆ skipTTRecoveredHits_

bool PFRecHitQTestECAL::skipTTRecoveredHits_
protected

Definition at line 507 of file PFRecHitQTests.h.

Referenced by test().

◆ thresholdCleaning_

double PFRecHitQTestECAL::thresholdCleaning_
protected

Definition at line 504 of file PFRecHitQTests.h.

Referenced by test().

◆ timingCleaning_

bool PFRecHitQTestECAL::timingCleaning_
protected

Definition at line 505 of file PFRecHitQTests.h.

Referenced by test().

◆ topologicalCleaning_

bool PFRecHitQTestECAL::topologicalCleaning_
protected

Definition at line 506 of file PFRecHitQTests.h.

Referenced by test().