CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Protected Attributes | Static Protected Attributes
HGCDigitizerBase< DFr > Class Template Reference

#include <HGCDigitizerBase.h>

Public Types

typedef edm::SortedCollection< DFr > DColl
 
typedef DFr DigiType
 

Public Member Functions

void GenerateGaussianNoise (CLHEP::HepRandomEngine *engine, const double NoiseMean, const double NoiseStd)
 Gaussian Noise Generation Member Function. More...
 
 HGCDigitizerBase (const edm::ParameterSet &ps)
 CTOR. More...
 
float keV2fC () const
 getters More...
 
void run (std::unique_ptr< DColl > &digiColl, hgc::HGCSimHitDataAccumulator &simData, const CaloSubdetectorGeometry *theGeom, const std::unordered_set< DetId > &validIds, uint32_t digitizationType, CLHEP::HepRandomEngine *engine)
 steer digitization mode More...
 
virtual void runDigitizer (std::unique_ptr< DColl > &coll, hgc::HGCSimHitDataAccumulator &simData, const CaloSubdetectorGeometry *theGeom, const std::unordered_set< DetId > &validIds, uint32_t digitizerType, CLHEP::HepRandomEngine *engine)
 to be specialized by top class More...
 
void runSimple (std::unique_ptr< DColl > &coll, hgc::HGCSimHitDataAccumulator &simData, const CaloSubdetectorGeometry *theGeom, const std::unordered_set< DetId > &validIds, CLHEP::HepRandomEngine *engine)
 a trivial digitization: sum energies and digitize without noise More...
 
std::array< float, 3 > tdcForToAOnset () const
 
float tdcOnset () const
 
bool toaModeByEnergy () const
 
void updateOutput (std::unique_ptr< DColl > &coll, const DFr &rawDataFrame)
 prepares the output according to the number of time samples to produce More...
 
virtual ~HGCDigitizerBase ()
 DTOR. More...
 

Protected Attributes

double bxTime_
 
std::vector< double > cce_
 
std::string doseMapFile_
 
bool doTimeSamples_
 
std::array< std::array< double, samplesize_ >, NoiseArrayLength_GaussianNoiseArray_
 
float keV2fC_
 
edm::ParameterSet myCfg_
 
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
 
std::vector< float > noise_fC_
 
bool NoiseGeneration_Method_
 
const double NoiseMean_
 
const double NoiseStd_
 
bool RandNoiseGenerationFlag_
 
HGCalSiNoiseMap scal_
 
bool scaleByDose_
 
bool thresholdFollowsMIP_
 

Static Protected Attributes

static const size_t NoiseArrayLength_ = 200000
 
static const size_t samplesize_ = 15
 

Detailed Description

template<class DFr>
class HGCDigitizerBase< DFr >

Definition at line 61 of file HGCDigitizerBase.h.

Member Typedef Documentation

template<class DFr>
typedef edm::SortedCollection<DFr> HGCDigitizerBase< DFr >::DColl

Definition at line 65 of file HGCDigitizerBase.h.

template<class DFr>
typedef DFr HGCDigitizerBase< DFr >::DigiType

Definition at line 63 of file HGCDigitizerBase.h.

Constructor & Destructor Documentation

template<class DFr >
HGCDigitizerBase< DFr >::HGCDigitizerBase ( const edm::ParameterSet ps)

CTOR.

Definition at line 9 of file HGCDigitizerBase.cc.

References HGCDigitizerBase< DFr >::bxTime_, HGCDigitizerBase< DFr >::cce_, HGCDigitizerBase< DFr >::doseMapFile_, HGCDigitizerBase< DFr >::doTimeSamples_, f, hgcalDigitizer_cfi::feCfg, edm::ParameterSet::getParameter(), HGCDigitizerBase< DFr >::keV2fC_, HGCDigitizerBase< DFr >::myCfg_, HGCDigitizerBase< DFr >::myFEelectronics_, HGCDigitizerBase< DFr >::noise_fC_, HGCDigitizerBase< DFr >::NoiseGeneration_Method_, hgcalLayerClusters_cff::noises, HGCDigitizerBase< DFr >::RandNoiseGenerationFlag_, HGCDigitizerBase< DFr >::scal_, HGCDigitizerBase< DFr >::scaleByDose_, hgcalDigitizer_cfi::scaleByDoseAlgo, HGCalSiNoiseMap::setCceParam(), HGCalSiNoiseMap::setDoseMap(), HGCalSiNoiseMap::setIleakParam(), and HGCDigitizerBase< DFr >::thresholdFollowsMIP_.

10  : scaleByDose_(false), NoiseMean_(0.0), NoiseStd_(1.0) {
11  bxTime_ = ps.getParameter<double>("bxTime");
12  myCfg_ = ps.getParameter<edm::ParameterSet>("digiCfg");
13  NoiseGeneration_Method_ = ps.getParameter<bool>("NoiseGeneration_Method");
14  doTimeSamples_ = myCfg_.getParameter<bool>("doTimeSamples");
15  thresholdFollowsMIP_ = myCfg_.getParameter<bool>("thresholdFollowsMIP");
16  if (myCfg_.exists("keV2fC"))
17  keV2fC_ = myCfg_.getParameter<double>("keV2fC");
18  else
19  keV2fC_ = 1.0;
20 
21  if (myCfg_.existsAs<edm::ParameterSet>("chargeCollectionEfficiencies")) {
22  cce_ = myCfg_.getParameter<edm::ParameterSet>("chargeCollectionEfficiencies")
23  .template getParameter<std::vector<double>>("values");
24  }
25 
26  if (myCfg_.existsAs<double>("noise_fC")) {
27  noise_fC_.reserve(1);
28  noise_fC_.push_back(myCfg_.getParameter<double>("noise_fC"));
29  } else if (myCfg_.existsAs<std::vector<double>>("noise_fC")) {
30  const auto& noises = myCfg_.getParameter<std::vector<double>>("noise_fC");
31  noise_fC_ = std::vector<float>(noises.begin(), noises.end());
32  } else if (myCfg_.existsAs<edm::ParameterSet>("noise_fC")) {
33  const auto& noises =
34  myCfg_.getParameter<edm::ParameterSet>("noise_fC").template getParameter<std::vector<double>>("values");
35  noise_fC_ = std::vector<float>(noises.begin(), noises.end());
36  scaleByDose_ = myCfg_.getParameter<edm::ParameterSet>("noise_fC").template getParameter<bool>("scaleByDose");
37  int scaleByDoseAlgo =
38  myCfg_.getParameter<edm::ParameterSet>("noise_fC").template getParameter<uint32_t>("scaleByDoseAlgo");
39  doseMapFile_ = myCfg_.getParameter<edm::ParameterSet>("noise_fC").template getParameter<std::string>("doseMap");
40  scal_.setDoseMap(doseMapFile_, scaleByDoseAlgo);
41  } else {
42  noise_fC_.resize(1, 1.f);
43  }
44  if (myCfg_.existsAs<edm::ParameterSet>("ileakParam")) {
46  myCfg_.getParameter<edm::ParameterSet>("ileakParam").template getParameter<std::vector<double>>("ileakParam"));
47  }
48  if (myCfg_.existsAs<edm::ParameterSet>("cceParams")) {
50  myCfg_.getParameter<edm::ParameterSet>("cceParams").template getParameter<std::vector<double>>("cceParamFine"),
51  myCfg_.getParameter<edm::ParameterSet>("cceParams").template getParameter<std::vector<double>>("cceParamThin"),
52  myCfg_.getParameter<edm::ParameterSet>("cceParams").template getParameter<std::vector<double>>("cceParamThick"));
53  }
54  edm::ParameterSet feCfg = myCfg_.getParameter<edm::ParameterSet>("feCfg");
55  myFEelectronics_ = std::unique_ptr<HGCFEElectronics<DFr>>(new HGCFEElectronics<DFr>(feCfg));
56  myFEelectronics_->SetNoiseValues(noise_fC_);
58 }
void setIleakParam(const std::vector< double > &pars)
set the ileak parameters to use
std::vector< float > noise_fC_
T getParameter(std::string const &) const
HGCalSiNoiseMap scal_
const double NoiseMean_
edm::ParameterSet myCfg_
void setDoseMap(const std::string &, const unsigned int &)
overrides base class method with specifics for the configuration of the algo
const double NoiseStd_
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
double f[11][100]
void setCceParam(const std::vector< double > &parsFine, const std::vector< double > &parsThin, const std::vector< double > &parsThick)
set the cce parameters to use
std::vector< double > cce_
std::string doseMapFile_
models the behavior of the front-end electronics
template<class DFr>
virtual HGCDigitizerBase< DFr >::~HGCDigitizerBase ( )
inlinevirtual

DTOR.

Definition at line 122 of file HGCDigitizerBase.h.

122 {};

Member Function Documentation

template<class DFr >
void HGCDigitizerBase< DFr >::GenerateGaussianNoise ( CLHEP::HepRandomEngine *  engine,
const double  NoiseMean,
const double  NoiseStd 
)

Gaussian Noise Generation Member Function.

Definition at line 61 of file HGCDigitizerBase.cc.

References HGCDigitizerBase< DFr >::GaussianNoiseArray_, mps_fire::i, dqmiolumiharvest::j, HGCDigitizerBase< DFr >::NoiseArrayLength_, and HGCDigitizerBase< DFr >::samplesize_.

Referenced by HGCDigitizerBase< DFr >::run().

63  {
64  for (size_t i = 0; i < NoiseArrayLength_; i++) {
65  for (size_t j = 0; j < samplesize_; j++) {
66  GaussianNoiseArray_[i][j] = CLHEP::RandGaussQ::shoot(engine, NoiseMean, NoiseStd);
67  }
68  }
69 }
std::array< std::array< double, samplesize_ >, NoiseArrayLength_ > GaussianNoiseArray_
static const size_t NoiseArrayLength_
static const size_t samplesize_
template<class DFr>
float HGCDigitizerBase< DFr >::keV2fC ( ) const
inline

getters

Definition at line 88 of file HGCDigitizerBase.h.

88 { return keV2fC_; }
template<class DFr >
void HGCDigitizerBase< DFr >::run ( std::unique_ptr< DColl > &  digiColl,
hgc::HGCSimHitDataAccumulator simData,
const CaloSubdetectorGeometry theGeom,
const std::unordered_set< DetId > &  validIds,
uint32_t  digitizationType,
CLHEP::HepRandomEngine *  engine 
)

steer digitization mode

Definition at line 72 of file HGCDigitizerBase.cc.

References HGCDigitizerBase< DFr >::GenerateGaussianNoise(), HGCDigitizerBase< DFr >::NoiseGeneration_Method_, HGCDigitizerBase< DFr >::NoiseMean_, HGCDigitizerBase< DFr >::NoiseStd_, HGCDigitizerBase< DFr >::RandNoiseGenerationFlag_, HGCDigitizerBase< DFr >::runDigitizer(), HGCDigitizerBase< DFr >::runSimple(), HGCDigitizerBase< DFr >::scal_, HGCDigitizerBase< DFr >::scaleByDose_, and HGCalRadiationMap::setGeometry().

77  {
78  if (scaleByDose_)
79  scal_.setGeometry(theGeom);
80  if (NoiseGeneration_Method_ == true) {
81  if (RandNoiseGenerationFlag_ == false) {
84  }
85  }
86  if (digitizationType == 0)
87  runSimple(digiColl, simData, theGeom, validIds, engine);
88  else
89  runDigitizer(digiColl, simData, theGeom, validIds, digitizationType, engine);
90 }
void runSimple(std::unique_ptr< DColl > &coll, hgc::HGCSimHitDataAccumulator &simData, const CaloSubdetectorGeometry *theGeom, const std::unordered_set< DetId > &validIds, CLHEP::HepRandomEngine *engine)
a trivial digitization: sum energies and digitize without noise
HGCalSiNoiseMap scal_
void setGeometry(const CaloSubdetectorGeometry *)
const double NoiseMean_
const double NoiseStd_
void GenerateGaussianNoise(CLHEP::HepRandomEngine *engine, const double NoiseMean, const double NoiseStd)
Gaussian Noise Generation Member Function.
virtual void runDigitizer(std::unique_ptr< DColl > &coll, hgc::HGCSimHitDataAccumulator &simData, const CaloSubdetectorGeometry *theGeom, const std::unordered_set< DetId > &validIds, uint32_t digitizerType, CLHEP::HepRandomEngine *engine)
to be specialized by top class
template<class DFr>
virtual void HGCDigitizerBase< DFr >::runDigitizer ( std::unique_ptr< DColl > &  coll,
hgc::HGCSimHitDataAccumulator simData,
const CaloSubdetectorGeometry theGeom,
const std::unordered_set< DetId > &  validIds,
uint32_t  digitizerType,
CLHEP::HepRandomEngine *  engine 
)
inlinevirtual

to be specialized by top class

Reimplemented in HGCHEbackDigitizer, HFNoseDigitizer, HGCEEDigitizer, and HGCHEfrontDigitizer.

Definition at line 110 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::run().

115  {
116  throw cms::Exception("HGCDigitizerBaseException") << " Failed to find specialization of runDigitizer";
117  }
template<class DFr >
void HGCDigitizerBase< DFr >::runSimple ( std::unique_ptr< DColl > &  coll,
hgc::HGCSimHitDataAccumulator simData,
const CaloSubdetectorGeometry theGeom,
const std::unordered_set< DetId > &  validIds,
CLHEP::HepRandomEngine *  engine 
)

a trivial digitization: sum energies and digitize without noise

Definition at line 93 of file HGCDigitizerBase.cc.

References hgc_digi_utils::addCellMetadata(), HGCalSiNoiseMap::AUTO, HGCalSiNoiseMap::SiCellOpCharacteristics::cce, HGCDigitizerBase< DFr >::cce_, f, dqmMemoryStats::float, HGCalSiNoiseMap::SiCellOpCharacteristics::gain, HGCDigitizerBase< DFr >::GaussianNoiseArray_, HGCalSiNoiseMap::getLSBPerGain(), HGCalSiNoiseMap::getMaxADCPerGain(), HGCalSiNoiseMap::getSiCellOpCharacteristics(), hgc_digi::HGCCellInfo::hit_info, mps_fire::i, triggerObjects_cff::id, HGCDigitizerBase< DFr >::myFEelectronics_, HGCalSiNoiseMap::SiCellOpCharacteristics::noise, hgcalDigitizer_cfi::noise, HGCDigitizerBase< DFr >::noise_fC_, HGCDigitizerBase< DFr >::NoiseArrayLength_, HGCDigitizerBase< DFr >::NoiseGeneration_Method_, HGCDigitizerBase< DFr >::samplesize_, HGCDigitizerBase< DFr >::scal_, HGCDigitizerBase< DFr >::scaleByDose_, hgc_digi::HGCCellInfo::size, hgc_digi::HGCCellInfo::thickness, Calorimetry_cff::thickness, HGCalSiNoiseMap::SiCellOpCharacteristics::thrADC, HGCDigitizerBase< DFr >::thresholdFollowsMIP_, and HGCDigitizerBase< DFr >::updateOutput().

Referenced by HGCDigitizerBase< DFr >::run().

97  {
98  HGCSimHitData chargeColl, toa;
99 
100  // this represents a cell with no signal charge
101  HGCCellInfo zeroData;
102  zeroData.hit_info[0].fill(0.f); //accumulated energy
103  zeroData.hit_info[1].fill(0.f); //time-of-flight
104  std::array<double, samplesize_> cellNoiseArray;
105  for (size_t i = 0; i < samplesize_; i++)
106  cellNoiseArray[i] = 0.0;
107  for (const auto& id : validIds) {
108  chargeColl.fill(0.f);
109  toa.fill(0.f);
110  HGCSimHitDataAccumulator::iterator it = simData.find(id);
111  HGCCellInfo& cell = (simData.end() == it ? zeroData : it->second);
112  addCellMetadata(cell, theGeom, id);
113  if (NoiseGeneration_Method_ == true) {
114  size_t hash_index = (CLHEP::RandFlat::shootInt(engine, (NoiseArrayLength_ - 1)) + id) % NoiseArrayLength_;
115 
116  cellNoiseArray = GaussianNoiseArray_[hash_index];
117  }
118  //set the noise,cce, LSB and threshold to be used
119  float cce(1.f), noiseWidth(0.f), lsbADC(-1.f), maxADC(-1.f);
120  // half the target mip value is the specification for ZS threshold
121  uint32_t thrADC(std::floor(myFEelectronics_->getTargetMipValue() / 2));
122  uint32_t gainIdx = 0;
123  if (scaleByDose_) {
124  HGCSiliconDetId detId(id);
127  cce = siop.cce;
128  noiseWidth = siop.noise;
131  gainIdx = siop.gain;
132 
134  thrADC = siop.thrADC;
135  } else if (noise_fC_[cell.thickness - 1] != 0) {
136  //this is kept for legacy compatibility with the TDR simulation
137  //probably should simply be removed in a future iteration
138  //note that in this legacy case, gainIdx is kept at 0, fixed
139  cce = (cce_.empty() ? 1.f : cce_[cell.thickness - 1]);
140  noiseWidth = cell.size * noise_fC_[cell.thickness - 1];
141  thrADC =
143  ? std::floor(cell.thickness * cce * myFEelectronics_->getADCThreshold() / myFEelectronics_->getADClsb())
144  : std::floor(cell.thickness * myFEelectronics_->getADCThreshold() / myFEelectronics_->getADClsb());
145  }
146 
147  //loop over time samples and add noise
148  for (size_t i = 0; i < cell.hit_info[0].size(); i++) {
149  double rawCharge(cell.hit_info[0][i]);
150 
151  //time of arrival
152  toa[i] = cell.hit_info[1][i];
153  if (myFEelectronics_->toaMode() == HGCFEElectronics<DFr>::WEIGHTEDBYE && rawCharge > 0)
154  toa[i] = cell.hit_info[1][i] / rawCharge;
155 
156  //final charge estimation
157  float noise;
158  if (NoiseGeneration_Method_ == true)
159  noise = (float)cellNoiseArray[i] * noiseWidth;
160  else
161  noise = CLHEP::RandGaussQ::shoot(engine, cellNoiseArray[i], noiseWidth);
162  float totalCharge(rawCharge * cce + noise);
163  if (totalCharge < 0.f)
164  totalCharge = 0.f;
165  chargeColl[i] = totalCharge;
166  }
167 
168  //run the shaper to create a new data frame
169  DFr rawDataFrame(id);
170  int thickness = cell.thickness > 0 ? cell.thickness : 1;
171  myFEelectronics_->runShaper(rawDataFrame, chargeColl, toa, engine, thrADC, lsbADC, gainIdx, maxADC, thickness);
172 
173  //update the output according to the final shape
174  updateOutput(coll, rawDataFrame);
175  }
176 }
std::vector< float > noise_fC_
void updateOutput(std::unique_ptr< DColl > &coll, const DFr &rawDataFrame)
prepares the output according to the number of time samples to produce
HGCalSiNoiseMap scal_
std::vector< double > & getMaxADCPerGain()
void addCellMetadata(HGCCellInfo &info, const HcalGeometry *geom, const DetId &detid)
std::vector< double > & getLSBPerGain()
std::array< HGCSimData_t, nSamples > HGCSimHitData
SiCellOpCharacteristics getSiCellOpCharacteristics(const HGCSiliconDetId &did, GainRange_t gain=GainRange_t::AUTO, int aimMIPtoADC=10)
returns the charge collection efficiency and noise if gain range is set to auto, it will find the mos...
std::array< HGCSimHitData, 2 > hit_info
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
double f[11][100]
std::array< std::array< double, samplesize_ >, NoiseArrayLength_ > GaussianNoiseArray_
std::vector< double > cce_
JetCorrectorParametersCollection coll
Definition: classes.h:10
static const size_t NoiseArrayLength_
models the behavior of the front-end electronics
static const size_t samplesize_
template<class DFr>
std::array<float, 3> HGCDigitizerBase< DFr >::tdcForToAOnset ( ) const
inline

Definition at line 91 of file HGCDigitizerBase.h.

91 { return myFEelectronics_->getTDCForToAOnset(); }
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
template<class DFr>
float HGCDigitizerBase< DFr >::tdcOnset ( ) const
inline

Definition at line 90 of file HGCDigitizerBase.h.

90 { return myFEelectronics_->getTDCOnset(); }
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
template<class DFr>
bool HGCDigitizerBase< DFr >::toaModeByEnergy ( ) const
inline

Definition at line 89 of file HGCDigitizerBase.h.

89 { return (myFEelectronics_->toaMode() == HGCFEElectronics<DFr>::WEIGHTEDBYE); }
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
models the behavior of the front-end electronics
template<class DFr>
void HGCDigitizerBase< DFr >::updateOutput ( std::unique_ptr< DColl > &  coll,
const DFr &  rawDataFrame 
)

prepares the output according to the number of time samples to produce

Definition at line 179 of file HGCDigitizerBase.cc.

Referenced by HGCDigitizerBase< DFr >::runSimple().

179  {
180  int itIdx(9);
181  if (rawDataFrame.size() <= itIdx + 2)
182  return;
183 
184  DFr dataFrame(rawDataFrame.id());
185  dataFrame.resize(5);
186  bool putInEvent(false);
187  for (int it = 0; it < 5; it++) {
188  dataFrame.setSample(it, rawDataFrame[itIdx - 2 + it]);
189  if (it == 2)
190  putInEvent = rawDataFrame[itIdx - 2 + it].threshold();
191  }
192 
193  if (putInEvent) {
194  coll->push_back(dataFrame);
195  }
196 }
void push_back(key_type i, value_type const &j, label_type const &flav="")
JetCorrectorParametersCollection coll
Definition: classes.h:10

Member Data Documentation

template<class DFr>
double HGCDigitizerBase< DFr >::bxTime_
protected

Definition at line 150 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::HGCDigitizerBase().

template<class DFr>
std::vector<double> HGCDigitizerBase< DFr >::cce_
protected
template<class DFr>
std::string HGCDigitizerBase< DFr >::doseMapFile_
protected

Definition at line 141 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::HGCDigitizerBase().

template<class DFr>
bool HGCDigitizerBase< DFr >::doTimeSamples_
protected

Definition at line 153 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::HGCDigitizerBase().

template<class DFr>
std::array<std::array<double, samplesize_>, NoiseArrayLength_> HGCDigitizerBase< DFr >::GaussianNoiseArray_
protected
template<class DFr>
float HGCDigitizerBase< DFr >::keV2fC_
protected

Definition at line 129 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::HGCDigitizerBase().

template<class DFr>
edm::ParameterSet HGCDigitizerBase< DFr >::myCfg_
protected

Definition at line 122 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::HGCDigitizerBase().

template<class DFr>
std::unique_ptr<HGCFEElectronics<DFr> > HGCDigitizerBase< DFr >::myFEelectronics_
protected
template<class DFr>
std::vector<float> HGCDigitizerBase< DFr >::noise_fC_
protected
template<class DFr>
const size_t HGCDigitizerBase< DFr >::NoiseArrayLength_ = 200000
staticprotected
template<class DFr>
bool HGCDigitizerBase< DFr >::NoiseGeneration_Method_
protected
template<class DFr>
const double HGCDigitizerBase< DFr >::NoiseMean_
protected

Definition at line 160 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::run().

template<class DFr>
const double HGCDigitizerBase< DFr >::NoiseStd_
protected

Definition at line 160 of file HGCDigitizerBase.h.

Referenced by HGCDigitizerBase< DFr >::run().

template<class DFr>
bool HGCDigitizerBase< DFr >::RandNoiseGenerationFlag_
protected
template<class DFr>
const size_t HGCDigitizerBase< DFr >::samplesize_ = 15
staticprotected
template<class DFr>
HGCalSiNoiseMap HGCDigitizerBase< DFr >::scal_
protected
template<class DFr>
bool HGCDigitizerBase< DFr >::scaleByDose_
protected
template<class DFr>
bool HGCDigitizerBase< DFr >::thresholdFollowsMIP_
protected