CMS 3D CMS Logo

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

#include <HGCalVFESummationImpl.h>

Public Member Functions

void eventSetup (const edm::EventSetup &es)
 
 HGCalVFESummationImpl (const edm::ParameterSet &conf)
 
void triggerCellSums (const HGCalTriggerGeometryBase &, const std::vector< std::pair< DetId, uint32_t > > &, std::unordered_map< uint32_t, uint32_t > &payload)
 

Private Attributes

double lsb_scintillator_MIP_
 
double lsb_silicon_fC_
 
std::vector< double > thickness_corrections_
 
double threshold_scintillator_
 
std::vector< double > thresholds_silicon_
 
HGCalTriggerTools triggerTools_
 

Detailed Description

Definition at line 14 of file HGCalVFESummationImpl.h.

Constructor & Destructor Documentation

◆ HGCalVFESummationImpl()

HGCalVFESummationImpl::HGCalVFESummationImpl ( const edm::ParameterSet conf)

Definition at line 3 of file HGCalVFESummationImpl.cc.

4  : thickness_corrections_(conf.getParameter<std::vector<double>>("ThicknessCorrections")),
5  lsb_silicon_fC_(conf.getParameter<double>("siliconCellLSB_fC")),
6  lsb_scintillator_MIP_(conf.getParameter<double>("scintillatorCellLSB_MIP")) {
7  const unsigned nThickness = 3;
8  if (thickness_corrections_.size() != nThickness) {
9  throw cms::Exception("Configuration")
10  << thickness_corrections_.size() << " thickness corrections are given instead of " << nThickness
11  << " (the number of sensor thicknesses)";
12  }
14  conf.getParameter<edm::ParameterSet>("noiseSilicon").getParameter<std::vector<double>>("values");
15  if (thresholds_silicon_.size() != nThickness) {
16  throw cms::Exception("Configuration") << thresholds_silicon_.size() << " silicon thresholds are given instead of "
17  << nThickness << " (the number of sensor thicknesses)";
18  }
19  threshold_scintillator_ = conf.getParameter<edm::ParameterSet>("noiseScintillator").getParameter<double>("noise_MIP");
20  const auto threshold = conf.getParameter<double>("noiseThreshold");
23  return noise * threshold;
24  });
26 }

References Exception, edm::ParameterSet::getParameter(), hgcalDigitizer_cfi::noise, thickness_corrections_, remoteMonitoring_LED_IterMethod_cfg::threshold, threshold_scintillator_, thresholds_silicon_, and HcalDetIdTransform::transform().

Member Function Documentation

◆ eventSetup()

void HGCalVFESummationImpl::eventSetup ( const edm::EventSetup es)
inline

Definition at line 18 of file HGCalVFESummationImpl.h.

References HGCalTriggerTools::eventSetup(), and triggerTools_.

◆ triggerCellSums()

void HGCalVFESummationImpl::triggerCellSums ( const HGCalTriggerGeometryBase ,
const std::vector< std::pair< DetId, uint32_t > > &  ,
std::unordered_map< uint32_t, uint32_t > &  payload 
)

Definition at line 28 of file HGCalVFESummationImpl.cc.

30  {
31  if (linearized_dataframes.empty())
32  return;
33  // sum energies in trigger cells
34  for (const auto& frame : linearized_dataframes) {
35  DetId cellid(frame.first);
36  uint32_t value = frame.second;
37 
38  // Apply noise threshold before summing into trigger cells
39  if (triggerTools_.isSilicon(cellid)) {
43  } else if (triggerTools_.isScintillator(cellid)) {
45  }
46  if (value == 0)
47  continue;
48 
49  // find trigger cell associated to cell
50  uint32_t tcid = geometry.getTriggerCellFromCell(cellid);
51  payload.emplace(tcid, 0); // do nothing if key exists already
52 
53  // equalize value among cell thicknesses for Silicon parts
54  if (triggerTools_.isSilicon(cellid) && !triggerTools_.isNose(cellid)) {
56  double thickness_correction = thickness_corrections_.at(thickness);
57  value = (double)value * thickness_correction;
58  }
59 
60  // sums energy for the same trigger cell id
61  payload[tcid] += value; // 32 bits integer should be largely enough
62  }
63 }

References amptDefault_cfi::frame, HGCalTriggerTools::isNose(), HGCalTriggerTools::isScintillator(), HGCalTriggerTools::isSilicon(), lsb_scintillator_MIP_, lsb_silicon_fC_, jets_cff::payload, Calorimetry_cff::thickness, thickness_corrections_, HGCalTriggerTools::thicknessIndex(), remoteMonitoring_LED_IterMethod_cfg::threshold, threshold_scintillator_, thresholds_silicon_, triggerTools_, and relativeConstraints::value.

Member Data Documentation

◆ lsb_scintillator_MIP_

double HGCalVFESummationImpl::lsb_scintillator_MIP_
private

Definition at line 26 of file HGCalVFESummationImpl.h.

Referenced by triggerCellSums().

◆ lsb_silicon_fC_

double HGCalVFESummationImpl::lsb_silicon_fC_
private

Definition at line 25 of file HGCalVFESummationImpl.h.

Referenced by triggerCellSums().

◆ thickness_corrections_

std::vector<double> HGCalVFESummationImpl::thickness_corrections_
private

Definition at line 24 of file HGCalVFESummationImpl.h.

Referenced by HGCalVFESummationImpl(), and triggerCellSums().

◆ threshold_scintillator_

double HGCalVFESummationImpl::threshold_scintillator_
private

Definition at line 28 of file HGCalVFESummationImpl.h.

Referenced by HGCalVFESummationImpl(), and triggerCellSums().

◆ thresholds_silicon_

std::vector<double> HGCalVFESummationImpl::thresholds_silicon_
private

Definition at line 27 of file HGCalVFESummationImpl.h.

Referenced by HGCalVFESummationImpl(), and triggerCellSums().

◆ triggerTools_

HGCalTriggerTools HGCalVFESummationImpl::triggerTools_
private

Definition at line 29 of file HGCalVFESummationImpl.h.

Referenced by eventSetup(), and triggerCellSums().

HGCalTriggerTools::eventSetup
void eventSetup(const edm::EventSetup &)
Definition: HGCalTriggerTools.cc:35
HGCalVFESummationImpl::lsb_silicon_fC_
double lsb_silicon_fC_
Definition: HGCalVFESummationImpl.h:25
geometry
Definition: geometry.py:1
HGCalVFESummationImpl::thresholds_silicon_
std::vector< double > thresholds_silicon_
Definition: HGCalVFESummationImpl.h:27
HGCalTriggerTools::thicknessIndex
int thicknessIndex(const DetId &, bool tc=false) const
Definition: HGCalTriggerTools.cc:233
HGCalTriggerTools::isScintillator
bool isScintillator(const DetId &id) const
Definition: HGCalTriggerTools.h:46
HGCalTriggerTools::isSilicon
bool isSilicon(const DetId &) const
Definition: HGCalTriggerTools.cc:181
DetId
Definition: DetId.h:17
HGCalVFESummationImpl::lsb_scintillator_MIP_
double lsb_scintillator_MIP_
Definition: HGCalVFESummationImpl.h:26
Calorimetry_cff.thickness
thickness
Definition: Calorimetry_cff.py:114
HcalDetIdTransform::transform
unsigned transform(const HcalDetId &id, unsigned transformCode)
Definition: HcalDetIdTransform.cc:7
jets_cff.payload
payload
Definition: jets_cff.py:34
HGCalTriggerTools::isNose
bool isNose(const DetId &) const
Definition: HGCalTriggerTools.cc:170
edm::ParameterSet
Definition: ParameterSet.h:36
hgcalDigitizer_cfi.noise
noise
Definition: hgcalDigitizer_cfi.py:150
value
Definition: value.py:1
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
relativeConstraints.value
value
Definition: relativeConstraints.py:53
amptDefault_cfi.frame
frame
Definition: amptDefault_cfi.py:12
Exception
Definition: hltDiff.cc:246
HGCalVFESummationImpl::triggerTools_
HGCalTriggerTools triggerTools_
Definition: HGCalVFESummationImpl.h:29
HGCalVFESummationImpl::threshold_scintillator_
double threshold_scintillator_
Definition: HGCalVFESummationImpl.h:28
remoteMonitoring_LED_IterMethod_cfg.threshold
threshold
Definition: remoteMonitoring_LED_IterMethod_cfg.py:426
HGCalVFESummationImpl::thickness_corrections_
std::vector< double > thickness_corrections_
Definition: HGCalVFESummationImpl.h:24