CMS 3D CMS Logo

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

#include <PFRecHitQTests.h>

Inheritance diagram for PFRecHitQTestHCALChannel:
PFRecHitQTestBase

Public Member Functions

void beginEvent (const edm::Event &event, const edm::EventSetup &iSetup) override
 
 PFRecHitQTestHCALChannel ()
 
 PFRecHitQTestHCALChannel (const edm::ParameterSet &iConfig)
 
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)
 
virtual ~PFRecHitQTestBase ()=default
 

Protected Member Functions

bool test (unsigned aDETID, double energy, int flags, bool &clean)
 

Protected Attributes

std::vector< double > cleanThresholds_
 
std::vector< int > depths_
 
std::vector< int > flags_
 
const HcalSeverityLevelComputerhcalSevLvlComputer_
 
const HcalChannelQualitytheHcalChStatus_
 
const HcalTopologytheHcalTopology_
 
std::vector< int > thresholds_
 

Detailed Description

Definition at line 89 of file PFRecHitQTests.h.

Constructor & Destructor Documentation

PFRecHitQTestHCALChannel::PFRecHitQTestHCALChannel ( )
inline

Definition at line 91 of file PFRecHitQTests.h.

91 {}
PFRecHitQTestHCALChannel::PFRecHitQTestHCALChannel ( const edm::ParameterSet iConfig)
inline

Definition at line 93 of file PFRecHitQTests.h.

References RemoveAddSevLevel::flag, flags, edm::ParameterSet::getParameter(), HcalCaloFlagLabels::HFDigiTime, HcalCaloFlagLabels::HFInTimeWindow, and HcalCaloFlagLabels::HFLongShort.

93  : PFRecHitQTestBase(iConfig) {
94  thresholds_ = iConfig.getParameter<std::vector<int> >("maxSeverities");
95  cleanThresholds_ = iConfig.getParameter<std::vector<double> >("cleaningThresholds");
96  std::vector<std::string> flags = iConfig.getParameter<std::vector<std::string> >("flags");
97  for (auto& flag : flags) {
98  if (flag == "Standard") {
99  flags_.push_back(-1);
100  depths_.push_back(-1);
101  } else if (flag == "HFInTime") {
103  depths_.push_back(-1);
104  } else if (flag == "HFDigi") {
105  flags_.push_back(1 << HcalCaloFlagLabels::HFDigiTime);
106  depths_.push_back(-1);
107  } else if (flag == "HFLong") {
108  flags_.push_back(1 << HcalCaloFlagLabels::HFLongShort);
109  depths_.push_back(1);
110  } else if (flag == "HFShort") {
111  flags_.push_back(1 << HcalCaloFlagLabels::HFLongShort);
112  depths_.push_back(2);
113  } else {
114  flags_.push_back(-1);
115  depths_.push_back(-1);
116  }
117  }
118  }
T getParameter(std::string const &) const
std::vector< int > depths_
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
std::vector< double > cleanThresholds_
PFRecHitQTestBase()=default
std::vector< int > thresholds_
std::vector< int > flags_

Member Function Documentation

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

Implements PFRecHitQTestBase.

Definition at line 120 of file PFRecHitQTests.h.

References edm::EventSetup::get(), and edm::ESHandle< T >::product().

120  {
122  iSetup.get<HcalRecNumberingRecord>().get(topo);
123  theHcalTopology_ = topo.product();
125  iSetup.get<HcalChannelQualityRcd>().get("withTopo", hcalChStatus);
126  theHcalChStatus_ = hcalChStatus.product();
127  edm::ESHandle<HcalSeverityLevelComputer> hcalSevLvlComputerHndl;
128  iSetup.get<HcalSeverityLevelComputerRcd>().get(hcalSevLvlComputerHndl);
129  hcalSevLvlComputer_ = hcalSevLvlComputerHndl.product();
130  }
const HcalChannelQuality * theHcalChStatus_
const HcalSeverityLevelComputer * hcalSevLvlComputer_
const HcalTopology * theHcalTopology_
T get() const
Definition: EventSetup.h:71
T const * product() const
Definition: ESHandle.h:86
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const EcalRecHit rh,
bool &  clean,
bool  fullReadOut 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 132 of file PFRecHitQTests.h.

132 { return true; }
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const HBHERecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 133 of file PFRecHitQTests.h.

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

133  {
134  return test(rh.detid(), rh.energy(), rh.flags(), clean);
135  }
constexpr float energy() const
Definition: CaloRecHit.h:31
constexpr const DetId & detid() const
Definition: CaloRecHit.h:35
bool test(reco::PFRecHit &hit, const EcalRecHit &rh, bool &clean, bool fullReadOut) override
std::vector< T * > clean
Definition: MVATrainer.cc:154
constexpr uint32_t flags() const
Definition: CaloRecHit.h:36
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const HFRecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 137 of file PFRecHitQTests.h.

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

137  {
138  return test(rh.detid(), rh.energy(), rh.flags(), clean);
139  }
constexpr float energy() const
Definition: CaloRecHit.h:31
constexpr const DetId & detid() const
Definition: CaloRecHit.h:35
bool test(reco::PFRecHit &hit, const EcalRecHit &rh, bool &clean, bool fullReadOut) override
std::vector< T * > clean
Definition: MVATrainer.cc:154
constexpr uint32_t flags() const
Definition: CaloRecHit.h:36
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const HORecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 140 of file PFRecHitQTests.h.

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

140  {
141  return test(rh.detid(), rh.energy(), rh.flags(), clean);
142  }
constexpr float energy() const
Definition: CaloRecHit.h:31
constexpr const DetId & detid() const
Definition: CaloRecHit.h:35
bool test(reco::PFRecHit &hit, const EcalRecHit &rh, bool &clean, bool fullReadOut) override
std::vector< T * > clean
Definition: MVATrainer.cc:154
constexpr uint32_t flags() const
Definition: CaloRecHit.h:36
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const CaloTower rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 144 of file PFRecHitQTests.h.

144 { return true; }
bool PFRecHitQTestHCALChannel::test ( reco::PFRecHit hit,
const HGCRecHit rh,
bool &  clean 
)
inlineoverridevirtual

Implements PFRecHitQTestBase.

Definition at line 146 of file PFRecHitQTests.h.

146 { return true; }
bool PFRecHitQTestHCALChannel::test ( unsigned  aDETID,
double  energy,
int  flags,
bool &  clean 
)
inlineprotected

Definition at line 157 of file PFRecHitQTests.h.

References HcalDetId::depth(), HcalTopology::getMergePositionFlag(), HcalSeverityLevelComputer::getSeverityLevel(), HcalChannelStatus::getValue(), HcalCondObjectContainer< Item >::getValues(), HcalEndcap, mps_fire::i, HcalTopology::idFront(), or, and HcalDetId::subdet().

157  {
158  HcalDetId detid = (HcalDetId)aDETID;
159  if (theHcalTopology_->getMergePositionFlag() and detid.subdet() == HcalEndcap) {
160  detid = theHcalTopology_->idFront(detid);
161  }
162 
163  const HcalChannelStatus* theStatus = theHcalChStatus_->getValues(detid);
164  unsigned theStatusValue = theStatus->getValue();
165  // Now get severity of problems for the given detID, based on the rechit flag word and the channel quality status value
166  for (unsigned int i = 0; i < thresholds_.size(); ++i) {
167  int hitSeverity = 0;
168  if (energy < cleanThresholds_[i])
169  continue;
170 
171  if (flags_[i] < 0) {
172  hitSeverity = hcalSevLvlComputer_->getSeverityLevel(detid, flags, theStatusValue);
173  } else {
174  hitSeverity = hcalSevLvlComputer_->getSeverityLevel(detid, flags & flags_[i], theStatusValue);
175  }
176 
177  if (hitSeverity > thresholds_[i] and ((depths_[i] < 0 or (depths_[i] == detid.depth())))) {
178  clean = true;
179  return false;
180  }
181  }
182  return true;
183  }
const HcalChannelQuality * theHcalChStatus_
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:146
std::vector< int > depths_
const HcalSeverityLevelComputer * hcalSevLvlComputer_
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
const Item * getValues(DetId fId, bool throwOnFail=true) const
std::vector< double > cleanThresholds_
bool getMergePositionFlag() const
Definition: HcalTopology.h:171
const HcalTopology * theHcalTopology_
int depth() const
get the tower depth
Definition: HcalDetId.h:166
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
std::vector< T * > clean
Definition: MVATrainer.cc:154
int getSeverityLevel(const DetId &myid, const uint32_t &myflag, const uint32_t &mystatus) const
std::vector< int > thresholds_
HcalDetId idFront(const HcalDetId &id) const
Definition: HcalTopology.h:177
uint32_t getValue() const
std::vector< int > flags_

Member Data Documentation

std::vector<double> PFRecHitQTestHCALChannel::cleanThresholds_
protected

Definition at line 150 of file PFRecHitQTests.h.

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

Definition at line 152 of file PFRecHitQTests.h.

std::vector<int> PFRecHitQTestHCALChannel::flags_
protected

Definition at line 151 of file PFRecHitQTests.h.

const HcalSeverityLevelComputer* PFRecHitQTestHCALChannel::hcalSevLvlComputer_
protected

Definition at line 155 of file PFRecHitQTests.h.

const HcalChannelQuality* PFRecHitQTestHCALChannel::theHcalChStatus_
protected

Definition at line 154 of file PFRecHitQTests.h.

const HcalTopology* PFRecHitQTestHCALChannel::theHcalTopology_
protected

Definition at line 153 of file PFRecHitQTests.h.

std::vector<int> PFRecHitQTestHCALChannel::thresholds_
protected

Definition at line 149 of file PFRecHitQTests.h.