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

◆ DColl

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

Definition at line 65 of file HGCDigitizerBase.h.

◆ DigiType

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

Definition at line 63 of file HGCDigitizerBase.h.

Constructor & Destructor Documentation

◆ HGCDigitizerBase()

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

CTOR.

Definition at line 9 of file HGCDigitizerBase.cc.

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");
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  }
55  myFEelectronics_ = std::unique_ptr<HGCFEElectronics<DFr>>(new HGCFEElectronics<DFr>(feCfg));
56  myFEelectronics_->SetNoiseValues(noise_fC_);
58 }

◆ ~HGCDigitizerBase()

template<class DFr>
virtual HGCDigitizerBase< DFr >::~HGCDigitizerBase ( )
inlinevirtual

DTOR.

Definition at line 122 of file HGCDigitizerBase.h.

122 {};

Member Function Documentation

◆ GenerateGaussianNoise()

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.

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 }

◆ keV2fC()

template<class DFr>
float HGCDigitizerBase< DFr >::keV2fC ( ) const
inline

getters

Definition at line 88 of file HGCDigitizerBase.h.

88 { return keV2fC_; }

◆ run()

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.

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 }

◆ runDigitizer()

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.

115  {
116  throw cms::Exception("HGCDigitizerBaseException") << " Failed to find specialization of runDigitizer";
117  }

◆ runSimple()

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.

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 }

◆ tdcForToAOnset()

template<class DFr>
std::array<float, 3> HGCDigitizerBase< DFr >::tdcForToAOnset ( ) const
inline

Definition at line 91 of file HGCDigitizerBase.h.

91 { return myFEelectronics_->getTDCForToAOnset(); }

◆ tdcOnset()

template<class DFr>
float HGCDigitizerBase< DFr >::tdcOnset ( ) const
inline

Definition at line 90 of file HGCDigitizerBase.h.

90 { return myFEelectronics_->getTDCOnset(); }

◆ toaModeByEnergy()

template<class DFr>
bool HGCDigitizerBase< DFr >::toaModeByEnergy ( ) const
inline

Definition at line 89 of file HGCDigitizerBase.h.

89 { return (myFEelectronics_->toaMode() == HGCFEElectronics<DFr>::WEIGHTEDBYE); }

◆ updateOutput()

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.

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 }

Member Data Documentation

◆ bxTime_

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

◆ cce_

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

◆ doseMapFile_

template<class DFr>
std::string HGCDigitizerBase< DFr >::doseMapFile_
protected

◆ doTimeSamples_

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

◆ GaussianNoiseArray_

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

Definition at line 163 of file HGCDigitizerBase.h.

◆ keV2fC_

template<class DFr>
float HGCDigitizerBase< DFr >::keV2fC_
protected

◆ myCfg_

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

◆ myFEelectronics_

template<class DFr>
std::unique_ptr<HGCFEElectronics<DFr> > HGCDigitizerBase< DFr >::myFEelectronics_
protected

◆ noise_fC_

template<class DFr>
std::vector<float> HGCDigitizerBase< DFr >::noise_fC_
protected

◆ NoiseArrayLength_

template<class DFr>
const size_t HGCDigitizerBase< DFr >::NoiseArrayLength_ = 200000
staticprotected

Definition at line 161 of file HGCDigitizerBase.h.

◆ NoiseGeneration_Method_

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

◆ NoiseMean_

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

Definition at line 160 of file HGCDigitizerBase.h.

◆ NoiseStd_

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

Definition at line 160 of file HGCDigitizerBase.h.

◆ RandNoiseGenerationFlag_

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

◆ samplesize_

template<class DFr>
const size_t HGCDigitizerBase< DFr >::samplesize_ = 15
staticprotected

Definition at line 162 of file HGCDigitizerBase.h.

◆ scal_

template<class DFr>
HGCalSiNoiseMap HGCDigitizerBase< DFr >::scal_
protected

◆ scaleByDose_

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

◆ thresholdFollowsMIP_

template<class DFr>
bool HGCDigitizerBase< DFr >::thresholdFollowsMIP_
protected
HGCAL_noise_fC_cfi.scaleByDoseAlgo
scaleByDoseAlgo
Definition: HGCAL_noise_fC_cfi.py:6
HGCDigitizerBase::bxTime_
double bxTime_
Definition: HGCDigitizerBase.h:150
DigiToRawDM_cff.digiColl
digiColl
Definition: DigiToRawDM_cff.py:32
HGCalSiNoiseMap::SiCellOpCharacteristics
Definition: HGCalSiNoiseMap.h:19
mps_fire.i
i
Definition: mps_fire.py:355
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
HGCDigitizerBase::GaussianNoiseArray_
std::array< std::array< double, samplesize_ >, NoiseArrayLength_ > GaussianNoiseArray_
Definition: HGCDigitizerBase.h:163
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
HGCalSiNoiseMap::getMaxADCPerGain
std::vector< double > & getMaxADCPerGain()
Definition: HGCalSiNoiseMap.h:65
HGCDigitizerBase::RandNoiseGenerationFlag_
bool RandNoiseGenerationFlag_
Definition: HGCDigitizerBase.h:164
HGCDigitizerBase::NoiseStd_
const double NoiseStd_
Definition: HGCDigitizerBase.h:160
HGCDigitizerBase::NoiseGeneration_Method_
bool NoiseGeneration_Method_
Definition: HGCDigitizerBase.h:166
HGCDigitizerBase::scaleByDose_
bool scaleByDose_
Definition: HGCDigitizerBase.h:138
HGCalRadiationMap::setGeometry
void setGeometry(const CaloSubdetectorGeometry *)
Definition: HGCalRadiationMap.cc:12
edm::ParameterSet::existsAs
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:160
HGCalSiNoiseMap::AUTO
Definition: HGCalSiNoiseMap.h:16
HGCSiliconDetId
Definition: HGCSiliconDetId.h:22
hgc_digi::HGCCellInfo::size
double size
Definition: HGCDigitizerTypes.h:35
HGCDigitizerBase::GenerateGaussianNoise
void GenerateGaussianNoise(CLHEP::HepRandomEngine *engine, const double NoiseMean, const double NoiseStd)
Gaussian Noise Generation Member Function.
Definition: HGCDigitizerBase.cc:61
HGCDigitizerBase::runDigitizer
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
Definition: HGCDigitizerBase.h:110
HGCDigitizerBase::doseMapFile_
std::string doseMapFile_
Definition: HGCDigitizerBase.h:141
hgceeDigitizer_cfi.digitizationType
digitizationType
Definition: hgceeDigitizer_cfi.py:54
hgc_digi_utils::addCellMetadata
void addCellMetadata(HGCCellInfo &info, const HcalGeometry *geom, const DetId &detid)
Definition: HGCDigitizerBase.h:31
Calorimetry_cff.thickness
thickness
Definition: Calorimetry_cff.py:114
HGCalSiNoiseMap::SiCellOpCharacteristics::cce
double cce
Definition: HGCalSiNoiseMap.h:22
HGCalSiNoiseMap::GainRange_t
GainRange_t
Definition: HGCalSiNoiseMap.h:16
hgc_digi::HGCSimHitData
std::array< HGCSimData_t, nSamples > HGCSimHitData
Definition: HGCDigitizerTypes.h:17
HGCDigitizerBase::updateOutput
void updateOutput(std::unique_ptr< DColl > &coll, const DFr &rawDataFrame)
prepares the output according to the number of time samples to produce
Definition: HGCDigitizerBase.cc:179
HGCDigitizerBase::runSimple
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
Definition: HGCDigitizerBase.cc:93
HGCDigitizerBase::noise_fC_
std::vector< float > noise_fC_
Definition: HGCDigitizerBase.h:132
HGCFEElectronics
models the behavior of the front-end electronics
Definition: HGCFEElectronics.h:20
hgc_digi::HGCCellInfo
Definition: HGCDigitizerTypes.h:31
HGCalSiNoiseMap::setIleakParam
void setIleakParam(const std::vector< double > &pars)
set the ileak parameters to use
Definition: HGCalSiNoiseMap.h:32
HGCDigitizerBase::NoiseArrayLength_
static const size_t NoiseArrayLength_
Definition: HGCDigitizerBase.h:161
HGCDigitizerBase::keV2fC_
float keV2fC_
Definition: HGCDigitizerBase.h:129
edm::ParameterSet::exists
bool exists(std::string const &parameterName) const
checks if a parameter exists
Definition: ParameterSet.cc:674
edm::ParameterSet
Definition: ParameterSet.h:36
HGCDigitizerBase::doTimeSamples_
bool doTimeSamples_
Definition: HGCDigitizerBase.h:153
HGCDigitizerBase::samplesize_
static const size_t samplesize_
Definition: HGCDigitizerBase.h:162
HGCalSiNoiseMap::setDoseMap
void setDoseMap(const std::string &, const unsigned int &)
overrides base class method with specifics for the configuration of the algo
Definition: HGCalSiNoiseMap.cc:48
HGCDigitizerBase::scal_
HGCalSiNoiseMap scal_
Definition: HGCDigitizerBase.h:144
HGCalSiNoiseMap::setCceParam
void setCceParam(const std::vector< double > &parsFine, const std::vector< double > &parsThin, const std::vector< double > &parsThick)
set the cce parameters to use
Definition: HGCalSiNoiseMap.h:37
hgc_digi::HGCCellInfo::hit_info
std::array< HGCSimHitData, 2 > hit_info
Definition: HGCDigitizerTypes.h:33
hgc_digi::HGCCellInfo::thickness
int thickness
Definition: HGCDigitizerTypes.h:34
hgcalLayerClusters_cfi.noises
noises
Definition: hgcalLayerClusters_cfi.py:40
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
HGCDigitizerBase::thresholdFollowsMIP_
bool thresholdFollowsMIP_
Definition: HGCDigitizerBase.h:156
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
HGCalSiNoiseMap::getLSBPerGain
std::vector< double > & getLSBPerGain()
Definition: HGCalSiNoiseMap.h:64
Exception
Definition: hltDiff.cc:246
HGCDigitizerBase::NoiseMean_
const double NoiseMean_
Definition: HGCDigitizerBase.h:160
hgchebackDigitizer_cfi.noise
noise
Definition: hgchebackDigitizer_cfi.py:42
HGCalSiNoiseMap::getSiCellOpCharacteristics
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...
Definition: HGCalSiNoiseMap.cc:59
HGCalSiNoiseMap::SiCellOpCharacteristics::thrADC
unsigned int thrADC
Definition: HGCalSiNoiseMap.h:23
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
HGCalSiNoiseMap::SiCellOpCharacteristics::noise
double noise
Definition: HGCalSiNoiseMap.h:22
HGCDigitizerBase::myCfg_
edm::ParameterSet myCfg_
Definition: HGCDigitizerBase.h:122
HGCDigitizerBase::cce_
std::vector< double > cce_
Definition: HGCDigitizerBase.h:135
HGCDigitizerBase::myFEelectronics_
std::unique_ptr< HGCFEElectronics< DFr > > myFEelectronics_
Definition: HGCDigitizerBase.h:147
hgceeDigitizer_cfi.feCfg
feCfg
Definition: hgceeDigitizer_cfi.py:15
HGCalSiNoiseMap::SiCellOpCharacteristics::gain
unsigned int gain
Definition: HGCalSiNoiseMap.h:23