CMS 3D CMS Logo

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

#include <PFRecHitQTests.h>

Inheritance diagram for PFRecHitQTestHCALTimeVsDepth:
PFRecHitQTestBase

Public Member Functions

void beginEvent (const edm::Event &event, const edm::EventSetup &iSetup) override
 
 PFRecHitQTestHCALTimeVsDepth ()
 
 PFRecHitQTestHCALTimeVsDepth (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
bool test (reco::PFRecHit &hit, const CaloTower &rh, bool &clean) override
 
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 HGCRecHit &rh, bool &clean) override
 
bool test (reco::PFRecHit &hit, const HORecHit &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 test (unsigned aDETID, double energy, double time, bool &clean)
 

Protected Attributes

std::vector< int > depths_
 
std::vector< double > maxTimes_
 
std::vector< double > minTimes_
 
std::vector< edm::ParameterSetpsets_
 
std::vector< double > thresholds_
 

Detailed Description

Definition at line 199 of file PFRecHitQTests.h.

Constructor & Destructor Documentation

◆ PFRecHitQTestHCALTimeVsDepth() [1/2]

PFRecHitQTestHCALTimeVsDepth::PFRecHitQTestHCALTimeVsDepth ( )
inline

Definition at line 201 of file PFRecHitQTests.h.

201 {}

◆ PFRecHitQTestHCALTimeVsDepth() [2/2]

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

Definition at line 203 of file PFRecHitQTests.h.

204  : PFRecHitQTestBase(iConfig, cc), psets_(iConfig.getParameter<std::vector<edm::ParameterSet> >("cuts")) {
205  for (auto& pset : psets_) {
206  depths_.push_back(pset.getParameter<int>("depth"));
207  minTimes_.push_back(pset.getParameter<double>("minTime"));
208  maxTimes_.push_back(pset.getParameter<double>("maxTime"));
209  thresholds_.push_back(pset.getParameter<double>("threshold"));
210  }
211  }

References depths_, maxTimes_, minTimes_, muonDTDigis_cfi::pset, psets_, and thresholds_.

Member Function Documentation

◆ beginEvent()

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

Implements PFRecHitQTestBase.

Definition at line 213 of file PFRecHitQTests.h.

213 {}

◆ test() [1/7]

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

Implements PFRecHitQTestBase.

Definition at line 227 of file PFRecHitQTests.h.

227 { return true; }

◆ test() [2/7]

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

Implements PFRecHitQTestBase.

Definition at line 215 of file PFRecHitQTests.h.

215 { return true; }

Referenced by test().

◆ test() [3/7]

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

Implements PFRecHitQTestBase.

Definition at line 216 of file PFRecHitQTests.h.

216  {
217  return test(rh.detid(), rh.energy(), rh.time(), clean);
218  }

References clean(), CaloRecHit::detid(), CaloRecHit::energy(), test(), and CaloRecHit::time().

◆ test() [4/7]

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

Implements PFRecHitQTestBase.

Definition at line 220 of file PFRecHitQTests.h.

220  {
221  return test(rh.detid(), rh.energy(), rh.time(), clean);
222  }

References clean(), CaloRecHit::detid(), CaloRecHit::energy(), test(), and CaloRecHit::time().

◆ test() [5/7]

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

Implements PFRecHitQTestBase.

Definition at line 229 of file PFRecHitQTests.h.

229 { return true; }

◆ test() [6/7]

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

Implements PFRecHitQTestBase.

Definition at line 223 of file PFRecHitQTests.h.

223  {
224  return test(rh.detid(), rh.energy(), rh.time(), clean);
225  }

References clean(), CaloRecHit::detid(), CaloRecHit::energy(), test(), and CaloRecHit::time().

◆ test() [7/7]

bool PFRecHitQTestHCALTimeVsDepth::test ( unsigned  aDETID,
double  energy,
double  time,
bool &  clean 
)
inlineprotected

Definition at line 238 of file PFRecHitQTests.h.

238  {
239  HcalDetId detid(aDETID);
240  for (unsigned int i = 0; i < depths_.size(); ++i) {
241  if (detid.depth() == depths_[i]) {
242  if ((time < minTimes_[i] or time > maxTimes_[i]) and energy > thresholds_[i]) {
243  clean = true;
244  return false;
245  }
246  break;
247  }
248  }
249  return true;
250  }

References clean(), HcalDetId::depth(), depths_, HCALHighEnergyHPDFilter_cfi::energy, mps_fire::i, maxTimes_, minTimes_, or, thresholds_, and protons_cff::time.

Member Data Documentation

◆ depths_

std::vector<int> PFRecHitQTestHCALTimeVsDepth::depths_
protected

Definition at line 233 of file PFRecHitQTests.h.

Referenced by PFRecHitQTestHCALTimeVsDepth(), and test().

◆ maxTimes_

std::vector<double> PFRecHitQTestHCALTimeVsDepth::maxTimes_
protected

Definition at line 235 of file PFRecHitQTests.h.

Referenced by PFRecHitQTestHCALTimeVsDepth(), and test().

◆ minTimes_

std::vector<double> PFRecHitQTestHCALTimeVsDepth::minTimes_
protected

Definition at line 234 of file PFRecHitQTests.h.

Referenced by PFRecHitQTestHCALTimeVsDepth(), and test().

◆ psets_

std::vector<edm::ParameterSet> PFRecHitQTestHCALTimeVsDepth::psets_
protected

Definition at line 232 of file PFRecHitQTests.h.

Referenced by PFRecHitQTestHCALTimeVsDepth().

◆ thresholds_

std::vector<double> PFRecHitQTestHCALTimeVsDepth::thresholds_
protected

Definition at line 236 of file PFRecHitQTests.h.

Referenced by PFRecHitQTestHCALTimeVsDepth(), and test().

mps_fire.i
i
Definition: mps_fire.py:428
CaloRecHit::energy
constexpr float energy() const
Definition: CaloRecHit.h:29
protons_cff.time
time
Definition: protons_cff.py:35
PFRecHitQTestHCALTimeVsDepth::psets_
std::vector< edm::ParameterSet > psets_
Definition: PFRecHitQTests.h:232
CaloRecHit::detid
constexpr const DetId & detid() const
Definition: CaloRecHit.h:33
PFRecHitQTestHCALTimeVsDepth::depths_
std::vector< int > depths_
Definition: PFRecHitQTests.h:233
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition: HCALHighEnergyHPDFilter_cfi.py:5
PFRecHitQTestHCALTimeVsDepth::maxTimes_
std::vector< double > maxTimes_
Definition: PFRecHitQTests.h:235
CaloRecHit::time
constexpr float time() const
Definition: CaloRecHit.h:31
PFRecHitQTestHCALTimeVsDepth::test
bool test(reco::PFRecHit &hit, const EcalRecHit &rh, bool &clean, bool fullReadOut) override
Definition: PFRecHitQTests.h:215
HcalDetId
Definition: HcalDetId.h:12
PFRecHitQTestBase::PFRecHitQTestBase
PFRecHitQTestBase()=default
PFRecHitQTestHCALTimeVsDepth::thresholds_
std::vector< double > thresholds_
Definition: PFRecHitQTests.h:236
cc
PFRecHitQTestHCALTimeVsDepth::minTimes_
std::vector< double > minTimes_
Definition: PFRecHitQTests.h:234
clean
static void clean(char *s)
Definition: ConnectionManager.cc:13
or
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
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27