CMS 3D CMS Logo

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

#include <PFRecHitQTests.h>

Inheritance diagram for PFRecHitQTestECALMultiThreshold:
PFRecHitQTestBase

Public Member Functions

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

bool pass (const reco::PFRecHit &hit)
 

Protected Attributes

bool applySelectionsToAllCrystals_
 
bool endcapGeometrySet_
 
const std::vector< double > thresholds_
 

Private Attributes

edm::ESGetToken< CaloGeometry, CaloGeometryRecordgeomToken_
 

Detailed Description

Definition at line 362 of file PFRecHitQTests.h.

Constructor & Destructor Documentation

◆ PFRecHitQTestECALMultiThreshold() [1/2]

PFRecHitQTestECALMultiThreshold::PFRecHitQTestECALMultiThreshold ( )
inline

Definition at line 364 of file PFRecHitQTests.h.

364 {}

◆ PFRecHitQTestECALMultiThreshold() [2/2]

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

Definition at line 366 of file PFRecHitQTests.h.

References edm::errors::Configuration, EcalRingCalibrationTools::N_RING_TOTAL, and thresholds_.

367  : PFRecHitQTestBase(iConfig, cc),
368  thresholds_(iConfig.getParameter<std::vector<double>>("thresholds")),
369  applySelectionsToAllCrystals_(iConfig.getParameter<bool>("applySelectionsToAllCrystals")),
370  geomToken_(cc.esConsumes()) {
372  throw edm::Exception(edm::errors::Configuration, "ValueError")
373  << "thresholds is expected to have " << EcalRingCalibrationTools::N_RING_TOTAL << " elements but has "
374  << thresholds_.size();
375  }
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
const std::vector< double > thresholds_
PFRecHitQTestBase()=default
static constexpr short N_RING_TOTAL

Member Function Documentation

◆ beginEvent()

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

Implements PFRecHitQTestBase.

Definition at line 377 of file PFRecHitQTests.h.

References DetId::Ecal, EcalEndcap, endcapGeometrySet_, geomToken_, edm::EventSetup::getHandle(), CaloGeometry::getSubdetectorGeometry(), and EcalRingCalibrationTools::setCaloGeometry().

377  {
380  endcapGeometrySet_ = false;
381  if (endcapGeometry) {
383  endcapGeometrySet_ = true;
384  }
385  }
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
static void setCaloGeometry(const CaloGeometry *geometry)
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34

◆ pass()

bool PFRecHitQTestECALMultiThreshold::pass ( const reco::PFRecHit hit)
inlineprotected

Definition at line 409 of file PFRecHitQTests.h.

References EcalBarrel, endcapGeometrySet_, EcalRingCalibrationTools::getRingIndex(), and thresholds_.

Referenced by test().

409  {
410  DetId detId(hit.detId());
411 
412  // this is to skip endcap ZS for Phase2 until there is a defined geometry
413  // apply the loosest ZS threshold, for the first eta-ring in EB
414  if (not endcapGeometrySet_) {
415  // there is only ECAL EB in Phase 2
416  if (detId.subdetId() != EcalBarrel)
417  return true;
418 
419  // 0-169: EB eta-rings
420  // 170-208: EE- eta rings
421  // 209-247: EE+ eta rings
422  int firstEBRing = 0;
423  return (hit.energy() > thresholds_[firstEBRing]);
424  }
425 
426  int iring = EcalRingCalibrationTools::getRingIndex(detId);
427  if (hit.energy() > thresholds_[iring])
428  return true;
429 
430  return false;
431  }
static short getRingIndex(DetId aDetId)
Retrieve the phi-ring index corresponding to a DetId.
const std::vector< double > thresholds_
Definition: DetId.h:17

◆ test() [1/6]

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

Implements PFRecHitQTestBase.

Definition at line 387 of file PFRecHitQTests.h.

References applySelectionsToAllCrystals_, or, and pass().

387  {
389  return pass(hit);
390  else
391  return fullReadOut or pass(hit);
392  }
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
bool pass(const reco::PFRecHit &hit)

◆ test() [2/6]

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

Implements PFRecHitQTestBase.

Definition at line 393 of file PFRecHitQTests.h.

393 { return true; }

◆ test() [3/6]

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

Implements PFRecHitQTestBase.

Definition at line 395 of file PFRecHitQTests.h.

395 { return true; }

◆ test() [4/6]

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

Implements PFRecHitQTestBase.

Definition at line 396 of file PFRecHitQTests.h.

396 { return true; }

◆ test() [5/6]

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

Implements PFRecHitQTestBase.

Definition at line 398 of file PFRecHitQTests.h.

398 { return true; }

◆ test() [6/6]

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

Implements PFRecHitQTestBase.

Definition at line 400 of file PFRecHitQTests.h.

400 { return true; }

Member Data Documentation

◆ applySelectionsToAllCrystals_

bool PFRecHitQTestECALMultiThreshold::applySelectionsToAllCrystals_
protected

Definition at line 407 of file PFRecHitQTests.h.

Referenced by test().

◆ endcapGeometrySet_

bool PFRecHitQTestECALMultiThreshold::endcapGeometrySet_
protected

Definition at line 404 of file PFRecHitQTests.h.

Referenced by beginEvent(), and pass().

◆ geomToken_

edm::ESGetToken<CaloGeometry, CaloGeometryRecord> PFRecHitQTestECALMultiThreshold::geomToken_
private

Definition at line 434 of file PFRecHitQTests.h.

Referenced by beginEvent().

◆ thresholds_

const std::vector<double> PFRecHitQTestECALMultiThreshold::thresholds_
protected

Definition at line 403 of file PFRecHitQTests.h.

Referenced by pass(), and PFRecHitQTestECALMultiThreshold().