CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Private Attributes
EcalHitResponse Class Referenceabstract

#include <EcalHitResponse.h>

Inheritance diagram for EcalHitResponse:
EBHitResponseImpl< constset > EEHitResponse ESHitResponse

Public Types

typedef std::unordered_map< uint32_t, double > CalibCache
 
typedef CaloTSamplesBase< float > EcalSamples
 
typedef std::vector< unsigned int > VecInd
 

Public Member Functions

void add (const EcalSamples *pSam)
 
virtual void add (const PCaloHit &hit, CLHEP::HepRandomEngine *)
 
virtual void add (const CaloSamples &hit)
 
 EcalHitResponse (const CaloVSimParameterMap *parameterMap, const CaloVShape *shape)
 
virtual void finalizeHits ()
 
const EcalSamplesfindDetId (const DetId &detId) const
 
virtual void initializeHits ()
 
virtual EcalSamplesoperator[] (unsigned int i)=0
 
virtual const EcalSamplesoperator[] (unsigned int i) const =0
 
virtual void run (MixCollection< PCaloHit > &hits, CLHEP::HepRandomEngine *)
 
virtual unsigned int samplesSize () const =0
 
void setBunchRange (int minBunch, int maxBunch)
 
void setEventTime (const edm::TimeValue_t &iTime)
 
void setGeometry (const CaloSubdetectorGeometry *geometry)
 
void setHitCorrection (const CaloVHitCorrection *hitCorrection)
 
void setHitFilter (const CaloVHitFilter *filter)
 
void setLaserConstants (const EcalLaserDbService *laser, bool &useLCcorrection)
 
void setPECorrection (const CaloVPECorrection *peCorrection)
 
void setPhaseShift (double phaseShift)
 
bool withinBunchRange (int bunchCrossing) const
 
virtual ~EcalHitResponse ()
 

Public Attributes

const float kSamplePeriod = ecalPh1::Samp_Period
 

Protected Member Functions

double analogSignalAmplitude (const DetId &id, double energy, CLHEP::HepRandomEngine *)
 
void blankOutUsedSamples ()
 
double findLaserConstant (const DetId &detId) const
 
EcalSamplesfindSignal (const DetId &detId)
 
const CaloSubdetectorGeometrygeometry () const
 
const CaloVHitFilterhitFilter () const
 
VecIndindex ()
 
const VecIndindex () const
 
int maxBunch () const
 
int minBunch () const
 
const CaloSimParametersparams (const DetId &detId) const
 
double phaseShift () const
 
virtual void putAnalogSignal (const PCaloHit &inputHit, CLHEP::HepRandomEngine *)
 
virtual unsigned int samplesSizeAll () const =0
 
const CaloVShapeshape () const
 
double timeOfFlight (const DetId &detId) const
 
virtual EcalSamplesvSam (unsigned int i)=0
 
virtual EcalSamplesvSamAll (unsigned int i)=0
 
virtual const EcalSamplesvSamAll (unsigned int i) const =0
 

Protected Attributes

const CaloSubdetectorGeometrym_geometry
 
const CaloVHitCorrectionm_hitCorrection
 
const CaloVHitFilterm_hitFilter
 
const EcalLaserDbServicem_lasercals
 
const CaloVSimParameterMapm_parameterMap
 
const CaloVPECorrectionm_PECorrection
 
const CaloVShapem_shape
 

Private Attributes

VecInd m_index
 
edm::TimeValue_t m_iTime
 
CalibCache m_laserCalibCache
 
int m_maxBunch
 
int m_minBunch
 
double m_phaseShift
 
bool m_useLCcorrection
 

Detailed Description

Definition at line 30 of file EcalHitResponse.h.

Member Typedef Documentation

◆ CalibCache

typedef std::unordered_map<uint32_t, double> EcalHitResponse::CalibCache

Definition at line 36 of file EcalHitResponse.h.

◆ EcalSamples

Definition at line 32 of file EcalHitResponse.h.

◆ VecInd

typedef std::vector<unsigned int> EcalHitResponse::VecInd

Definition at line 34 of file EcalHitResponse.h.

Constructor & Destructor Documentation

◆ EcalHitResponse()

EcalHitResponse::EcalHitResponse ( const CaloVSimParameterMap parameterMap,
const CaloVShape shape 
)

Definition at line 20 of file EcalHitResponse.cc.

21  : m_parameterMap(parameterMap),
22  m_shape(shape),
23  m_hitCorrection(nullptr),
24  m_PECorrection(nullptr),
25  m_hitFilter(nullptr),
26  m_geometry(nullptr),
27  m_lasercals(nullptr),
28  m_minBunch(-32),
29  m_maxBunch(10),
30  m_phaseShift(1),
31  m_iTime(0),
32  m_useLCcorrection(false) {}
const CaloVShape * m_shape
edm::TimeValue_t m_iTime
const CaloVHitCorrection * m_hitCorrection
const EcalLaserDbService * m_lasercals
const CaloSubdetectorGeometry * m_geometry
const CaloVSimParameterMap * m_parameterMap
const CaloVPECorrection * m_PECorrection
const CaloVHitFilter * m_hitFilter
const CaloVShape * shape() const

◆ ~EcalHitResponse()

EcalHitResponse::~EcalHitResponse ( )
virtual

Definition at line 34 of file EcalHitResponse.cc.

34 {}

Member Function Documentation

◆ add() [1/3]

void EcalHitResponse::add ( const EcalSamples pSam)

Definition at line 209 of file EcalHitResponse.cc.

References findSignal(), and CaloTSamplesBase< Ttype >::id().

Referenced by counter.Counter::register().

209  {
210  EcalSamples& sam(*findSignal(pSam->id()));
211  sam += (*pSam);
212 }
CaloTSamplesBase< float > EcalSamples
EcalSamples * findSignal(const DetId &detId)

◆ add() [2/3]

void EcalHitResponse::add ( const PCaloHit hit,
CLHEP::HepRandomEngine *  engine 
)
virtual

Reimplemented in EBHitResponseImpl< constset >.

Definition at line 90 of file EcalHitResponse.cc.

References CaloVHitFilter::accepts(), edm::isNotFinite(), m_hitFilter, and putAnalogSignal().

Referenced by counter.Counter::register().

90  {
91  if (!edm::isNotFinite(hit.time()) && (nullptr == m_hitFilter || m_hitFilter->accepts(hit))) {
92  putAnalogSignal(hit, engine);
93  }
94 }
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
virtual void putAnalogSignal(const PCaloHit &inputHit, CLHEP::HepRandomEngine *)
virtual bool accepts(const PCaloHit &hit) const =0
const CaloVHitFilter * m_hitFilter

◆ add() [3/3]

void EcalHitResponse::add ( const CaloSamples hit)
virtual

Definition at line 96 of file EcalHitResponse.cc.

References newFWLiteAna::bin, hcalRecHitTable_cff::detId, Exception, findSignal(), hit::id, and mps_fire::result.

Referenced by counter.Counter::register().

96  {
97  const DetId detId(hit.id());
98 
100 
101  const int rsize(result.size());
102 
103  if (rsize != hit.size()) {
104  throw cms::Exception("EcalDigitization") << "CaloSamples and EcalSamples have different sizes. Type Mismatach";
105  }
106 
107  for (int bin(0); bin != rsize; ++bin) {
108  result[bin] += hit[bin];
109  }
110 }
CaloTSamplesBase< float > EcalSamples
unsigned int id
Definition: DetId.h:17
EcalSamples * findSignal(const DetId &detId)

◆ analogSignalAmplitude()

double EcalHitResponse::analogSignalAmplitude ( const DetId id,
double  energy,
CLHEP::HepRandomEngine *  engine 
)
protected

Definition at line 174 of file EcalHitResponse.cc.

References utilities::cache(), CaloVPECorrection::correctPE(), hcalRecHitTable_cff::detId, hcalRecHitTable_cff::energy, findLaserConstant(), m_laserCalibCache, m_PECorrection, m_useLCcorrection, and params().

Referenced by putAnalogSignal().

174  {
176 
177  // OK, the "energy" in the hit could be a real energy, deposited energy,
178  // or pe count. This factor converts to photoelectrons
179 
180  double lasercalib = 1.;
181  if (m_useLCcorrection == true && detId.subdetId() != 3) {
182  auto cache = m_laserCalibCache.find(detId);
183  if (cache != m_laserCalibCache.end()) {
184  lasercalib = cache->second;
185  } else {
186  lasercalib = 1.0 / findLaserConstant(detId);
187  m_laserCalibCache.emplace(detId, lasercalib);
188  }
189  }
190 
191  double npe(energy * lasercalib * parameters.simHitToPhotoelectrons(detId));
192 
193  // do we need to doPoisson statistics for the photoelectrons?
194  if (parameters.doPhotostatistics()) {
195  npe = CLHEP::RandPoissonQ::shoot(engine, npe);
196  }
197  if (nullptr != m_PECorrection)
198  npe = m_PECorrection->correctPE(detId, npe, engine);
199 
200  return npe;
201 }
double findLaserConstant(const DetId &detId) const
const CaloSimParameters * params(const DetId &detId) const
Main class for Parameters in different subdetectors.
virtual double correctPE(const DetId &detId, double npe, CLHEP::HepRandomEngine *) const =0
const CaloVPECorrection * m_PECorrection
CalibCache m_laserCalibCache
def cache(function)
Definition: utilities.py:3

◆ blankOutUsedSamples()

void EcalHitResponse::blankOutUsedSamples ( )
protected

Definition at line 79 of file EcalHitResponse.cc.

References mps_fire::i, m_index, CaloTSamplesBase< Ttype >::setZero(), findQualityFiles::size, and vSamAll().

Referenced by initializeHits(), and run().

80 {
81  const unsigned int size(m_index.size());
82 
83  for (unsigned int i(0); i != size; ++i) {
84  vSamAll(m_index[i])->setZero();
85  }
86  m_index.erase(m_index.begin(), // done and make ready to start over
87  m_index.end());
88 }
size
Write out results.
virtual EcalSamples * vSamAll(unsigned int i)=0

◆ finalizeHits()

void EcalHitResponse::finalizeHits ( )
virtual

Reimplemented in EBHitResponseImpl< constset >.

Definition at line 118 of file EcalHitResponse.cc.

118 {}

◆ findDetId()

const EcalHitResponse::EcalSamples * EcalHitResponse::findDetId ( const DetId detId) const

Definition at line 224 of file EcalHitResponse.cc.

References hcalRecHitTable_cff::detId, and vSamAll().

Referenced by ESDigitizer::run().

224  {
225  const unsigned int di(CaloGenericDetId(detId).denseIndex());
226  return vSamAll(di);
227 }
virtual EcalSamples * vSamAll(unsigned int i)=0

◆ findLaserConstant()

double EcalHitResponse::findLaserConstant ( const DetId detId) const
protected

Definition at line 161 of file EcalHitResponse.cc.

References hcalRecHitTable_cff::detId, EcalLaserDbService::getLaserCorrection(), m_iTime, and m_lasercals.

Referenced by analogSignalAmplitude().

161  {
162  const edm::Timestamp& evtTimeStamp = edm::Timestamp(m_iTime);
163  return (m_lasercals->getLaserCorrection(detId, evtTimeStamp));
164 }
edm::TimeValue_t m_iTime
float getLaserCorrection(DetId const &xid, edm::Timestamp const &iTime) const
const EcalLaserDbService * m_lasercals

◆ findSignal()

EcalHitResponse::EcalSamples * EcalHitResponse::findSignal ( const DetId detId)
protected

Definition at line 166 of file EcalHitResponse.cc.

References hcalRecHitTable_cff::detId, m_index, mps_fire::result, and vSamAll().

Referenced by add(), and putAnalogSignal().

166  {
167  const unsigned int di(CaloGenericDetId(detId).denseIndex());
168  EcalSamples* result(vSamAll(di));
169  if (result->zero())
170  m_index.push_back(di);
171  return result;
172 }
CaloTSamplesBase< float > EcalSamples
virtual EcalSamples * vSamAll(unsigned int i)=0

◆ geometry()

const CaloSubdetectorGeometry * EcalHitResponse::geometry ( ) const
protected

Definition at line 46 of file EcalHitResponse.cc.

References cms::cuda::assert(), and m_geometry.

Referenced by setGeometry(), and timeOfFlight().

46  {
47  assert(nullptr != m_geometry);
48  return m_geometry;
49 }
assert(be >=bs)
const CaloSubdetectorGeometry * m_geometry

◆ hitFilter()

const CaloVHitFilter * EcalHitResponse::hitFilter ( ) const
protected

Definition at line 222 of file EcalHitResponse.cc.

References m_hitFilter.

222 { return m_hitFilter; }
const CaloVHitFilter * m_hitFilter

◆ index() [1/2]

EcalHitResponse::VecInd & EcalHitResponse::index ( )
protected

Definition at line 218 of file EcalHitResponse.cc.

References m_index.

Referenced by ESHitResponse::operator[](), ESHitResponse::samplesSize(), and ESHitResponse::vSam().

218 { return m_index; }

◆ index() [2/2]

const EcalHitResponse::VecInd & EcalHitResponse::index ( ) const
protected

Definition at line 220 of file EcalHitResponse.cc.

References m_index.

220 { return m_index; }

◆ initializeHits()

void EcalHitResponse::initializeHits ( )
virtual

Reimplemented in EBHitResponseImpl< constset >.

Definition at line 116 of file EcalHitResponse.cc.

References blankOutUsedSamples().

116 { blankOutUsedSamples(); }
void blankOutUsedSamples()

◆ maxBunch()

int EcalHitResponse::maxBunch ( ) const
protected

Definition at line 216 of file EcalHitResponse.cc.

References m_maxBunch.

Referenced by setBunchRange().

216 { return m_maxBunch; }

◆ minBunch()

int EcalHitResponse::minBunch ( ) const
protected

Definition at line 214 of file EcalHitResponse.cc.

References m_minBunch.

Referenced by setBunchRange().

214 { return m_minBunch; }

◆ operator[]() [1/2]

virtual EcalSamples* EcalHitResponse::operator[] ( unsigned int  i)
pure virtual

◆ operator[]() [2/2]

virtual const EcalSamples* EcalHitResponse::operator[] ( unsigned int  i) const
pure virtual

◆ params()

const CaloSimParameters * EcalHitResponse::params ( const DetId detId) const
protected

Definition at line 36 of file EcalHitResponse.cc.

References cms::cuda::assert(), hcalRecHitTable_cff::detId, m_parameterMap, and CaloVSimParameterMap::simParameters().

Referenced by analogSignalAmplitude(), and putAnalogSignal().

36  {
37  assert(nullptr != m_parameterMap);
39 }
assert(be >=bs)
virtual const CaloSimParameters & simParameters(const DetId &id) const =0
const CaloVSimParameterMap * m_parameterMap

◆ phaseShift()

double EcalHitResponse::phaseShift ( ) const
protected

Definition at line 60 of file EcalHitResponse.cc.

References m_phaseShift.

Referenced by setPhaseShift().

60 { return m_phaseShift; }

◆ putAnalogSignal()

void EcalHitResponse::putAnalogSignal ( const PCaloHit inputHit,
CLHEP::HepRandomEngine *  engine 
)
protectedvirtual

Reimplemented in EBHitResponseImpl< constset >.

Definition at line 132 of file EcalHitResponse.cc.

References analogSignalAmplitude(), newFWLiteAna::bin, CaloVHitCorrection::delay(), hcalRecHitTable_cff::detId, findSignal(), hit::id, kSamplePeriod, m_hitCorrection, m_phaseShift, params(), mps_fire::result, shape(), hcalRecHitTable_cff::time, timeOfFlight(), CaloVShape::timeToRise(), and tzero.

Referenced by add(), and run().

132  {
133  const DetId detId(hit.id());
134 
136 
137  const double signal(analogSignalAmplitude(detId, hit.energy(), engine));
138 
139  double time = hit.time();
140 
141  if (m_hitCorrection) {
142  time += m_hitCorrection->delay(hit, engine);
143  }
144 
145  const double jitter(time - timeOfFlight(detId));
146 
147  const double tzero = (shape()->timeToRise() + parameters->timePhase() - jitter -
148  kSamplePeriod * (parameters->binOfMaximum() - m_phaseShift));
149  double binTime(tzero);
150 
152 
153  const unsigned int rsize(result.size());
154 
155  for (unsigned int bin(0); bin != rsize; ++bin) {
156  result[bin] += (*shape())(binTime)*signal;
157  binTime += kSamplePeriod;
158  }
159 }
double analogSignalAmplitude(const DetId &id, double energy, CLHEP::HepRandomEngine *)
const CaloSimParameters * params(const DetId &detId) const
Main class for Parameters in different subdetectors.
double timeOfFlight(const DetId &detId) const
const CaloVHitCorrection * m_hitCorrection
virtual double timeToRise() const =0
CaloTSamplesBase< float > EcalSamples
virtual double delay(const PCaloHit &hit, CLHEP::HepRandomEngine *) const =0
unsigned int id
Definition: DetId.h:17
static const double tzero[3]
EcalSamples * findSignal(const DetId &detId)
const float kSamplePeriod
const CaloVShape * shape() const

◆ run()

void EcalHitResponse::run ( MixCollection< PCaloHit > &  hits,
CLHEP::HepRandomEngine *  engine 
)
virtual

Reimplemented in EBHitResponseImpl< constset >.

Definition at line 120 of file EcalHitResponse.cc.

References CaloVHitFilter::accepts(), blankOutUsedSamples(), hfClusterShapes_cfi::hits, edm::isNotFinite(), m_hitFilter, putAnalogSignal(), and withinBunchRange().

120  {
122 
123  for (MixCollection<PCaloHit>::MixItr hitItr(hits.begin()); hitItr != hits.end(); ++hitItr) {
124  const PCaloHit& hit(*hitItr);
125  const int bunch(hitItr.bunch());
126  if (withinBunchRange(bunch) && !edm::isNotFinite(hit.time()) &&
127  (nullptr == m_hitFilter || m_hitFilter->accepts(hit)))
128  putAnalogSignal(hit, engine);
129  }
130 }
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
virtual void putAnalogSignal(const PCaloHit &inputHit, CLHEP::HepRandomEngine *)
bool withinBunchRange(int bunchCrossing) const
void blankOutUsedSamples()
virtual bool accepts(const PCaloHit &hit) const =0
const CaloVHitFilter * m_hitFilter

◆ samplesSize()

virtual unsigned int EcalHitResponse::samplesSize ( ) const
pure virtual

◆ samplesSizeAll()

virtual unsigned int EcalHitResponse::samplesSizeAll ( ) const
protectedpure virtual

◆ setBunchRange()

void EcalHitResponse::setBunchRange ( int  minBunch,
int  maxBunch 
)

Definition at line 51 of file EcalHitResponse.cc.

References m_maxBunch, m_minBunch, maxBunch(), and minBunch().

51  {
54 }
int maxBunch() const
int minBunch() const

◆ setEventTime()

void EcalHitResponse::setEventTime ( const edm::TimeValue_t iTime)

Definition at line 68 of file EcalHitResponse.cc.

References m_iTime, and m_laserCalibCache.

68  {
69  m_iTime = iTime;
70  //clear the laser cache for each event time
72 }
edm::TimeValue_t m_iTime
std::unordered_map< uint32_t, double > CalibCache
CalibCache m_laserCalibCache

◆ setGeometry()

void EcalHitResponse::setGeometry ( const CaloSubdetectorGeometry geometry)

Definition at line 56 of file EcalHitResponse.cc.

References geometry(), and m_geometry.

56 { m_geometry = geometry; }
const CaloSubdetectorGeometry * geometry() const
const CaloSubdetectorGeometry * m_geometry

◆ setHitCorrection()

void EcalHitResponse::setHitCorrection ( const CaloVHitCorrection hitCorrection)

Definition at line 64 of file EcalHitResponse.cc.

References m_hitCorrection.

64 { m_hitCorrection = hitCorrection; }
const CaloVHitCorrection * m_hitCorrection

◆ setHitFilter()

void EcalHitResponse::setHitFilter ( const CaloVHitFilter filter)

Definition at line 62 of file EcalHitResponse.cc.

References ALCARECOTkAlBeamHalo_cff::filter, and m_hitFilter.

◆ setLaserConstants()

void EcalHitResponse::setLaserConstants ( const EcalLaserDbService laser,
bool &  useLCcorrection 
)

Definition at line 74 of file EcalHitResponse.cc.

References EcalCondDBWriter_cfi::laser, m_lasercals, and m_useLCcorrection.

74  {
76  m_useLCcorrection = useLCcorrection;
77 }
const EcalLaserDbService * m_lasercals

◆ setPECorrection()

void EcalHitResponse::setPECorrection ( const CaloVPECorrection peCorrection)

Definition at line 66 of file EcalHitResponse.cc.

References m_PECorrection.

66 { m_PECorrection = peCorrection; }
const CaloVPECorrection * m_PECorrection

◆ setPhaseShift()

void EcalHitResponse::setPhaseShift ( double  phaseShift)

Definition at line 58 of file EcalHitResponse.cc.

References m_phaseShift, and phaseShift().

double phaseShift() const

◆ shape()

const CaloVShape * EcalHitResponse::shape ( void  ) const
protected

Definition at line 41 of file EcalHitResponse.cc.

References cms::cuda::assert(), and m_shape.

Referenced by ESHitResponse::ESHitResponse(), and putAnalogSignal().

41  {
42  assert(nullptr != m_shape);
43  return m_shape;
44 }
const CaloVShape * m_shape
assert(be >=bs)

◆ timeOfFlight()

double EcalHitResponse::timeOfFlight ( const DetId detId) const
protected

Definition at line 203 of file EcalHitResponse.cc.

References cms::cuda::assert(), hcalRecHitTable_cff::detId, and geometry().

Referenced by putAnalogSignal().

203  {
204  auto cellGeometry(geometry()->getGeometry(detId));
205  assert(nullptr != cellGeometry);
206  return cellGeometry->getPosition().mag() * CLHEP::cm / c_light; // Units of c_light: mm/ns
207 }
const CaloSubdetectorGeometry * geometry() const
assert(be >=bs)

◆ vSam()

virtual EcalSamples* EcalHitResponse::vSam ( unsigned int  i)
protectedpure virtual

◆ vSamAll() [1/2]

virtual EcalSamples* EcalHitResponse::vSamAll ( unsigned int  i)
protectedpure virtual

◆ vSamAll() [2/2]

virtual const EcalSamples* EcalHitResponse::vSamAll ( unsigned int  i) const
protectedpure virtual

◆ withinBunchRange()

bool EcalHitResponse::withinBunchRange ( int  bunchCrossing) const

Definition at line 112 of file EcalHitResponse.cc.

Referenced by run().

112  {
113  return (m_minBunch <= bunchCrossing && m_maxBunch >= bunchCrossing);
114 }

Member Data Documentation

◆ kSamplePeriod

const float EcalHitResponse::kSamplePeriod = ecalPh1::Samp_Period

Definition at line 42 of file EcalHitResponse.h.

Referenced by putAnalogSignal().

◆ m_geometry

const CaloSubdetectorGeometry* EcalHitResponse::m_geometry
protected

Definition at line 126 of file EcalHitResponse.h.

Referenced by geometry(), and setGeometry().

◆ m_hitCorrection

const CaloVHitCorrection* EcalHitResponse::m_hitCorrection
protected

Definition at line 123 of file EcalHitResponse.h.

Referenced by putAnalogSignal(), and setHitCorrection().

◆ m_hitFilter

const CaloVHitFilter* EcalHitResponse::m_hitFilter
protected

Definition at line 125 of file EcalHitResponse.h.

Referenced by add(), hitFilter(), run(), and setHitFilter().

◆ m_index

VecInd EcalHitResponse::m_index
private

Definition at line 138 of file EcalHitResponse.h.

Referenced by blankOutUsedSamples(), findSignal(), and index().

◆ m_iTime

edm::TimeValue_t EcalHitResponse::m_iTime
private

Definition at line 134 of file EcalHitResponse.h.

Referenced by findLaserConstant(), and setEventTime().

◆ m_laserCalibCache

CalibCache EcalHitResponse::m_laserCalibCache
private

Definition at line 136 of file EcalHitResponse.h.

Referenced by analogSignalAmplitude(), and setEventTime().

◆ m_lasercals

const EcalLaserDbService* EcalHitResponse::m_lasercals
protected

Definition at line 127 of file EcalHitResponse.h.

Referenced by findLaserConstant(), and setLaserConstants().

◆ m_maxBunch

int EcalHitResponse::m_maxBunch
private

Definition at line 131 of file EcalHitResponse.h.

Referenced by maxBunch(), and setBunchRange().

◆ m_minBunch

int EcalHitResponse::m_minBunch
private

Definition at line 130 of file EcalHitResponse.h.

Referenced by minBunch(), and setBunchRange().

◆ m_parameterMap

const CaloVSimParameterMap* EcalHitResponse::m_parameterMap
protected

Definition at line 121 of file EcalHitResponse.h.

Referenced by params().

◆ m_PECorrection

const CaloVPECorrection* EcalHitResponse::m_PECorrection
protected

Definition at line 124 of file EcalHitResponse.h.

Referenced by analogSignalAmplitude(), and setPECorrection().

◆ m_phaseShift

double EcalHitResponse::m_phaseShift
private

Definition at line 132 of file EcalHitResponse.h.

Referenced by phaseShift(), putAnalogSignal(), and setPhaseShift().

◆ m_shape

const CaloVShape* EcalHitResponse::m_shape
protected

Definition at line 122 of file EcalHitResponse.h.

Referenced by shape().

◆ m_useLCcorrection

bool EcalHitResponse::m_useLCcorrection
private

Definition at line 135 of file EcalHitResponse.h.

Referenced by analogSignalAmplitude(), and setLaserConstants().