CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Attributes | Private Attributes
HBHEChannelInfo Class Reference

#include <HBHEChannelInfo.h>

Public Types

typedef HcalDetId key_type
 

Public Member Functions

uint8_t const * adc () const
 
int capid () const
 
double chargeInWindow (const unsigned begin, const unsigned end) const
 
void clear ()
 
double darkCurrent () const
 
float const * dFcPerADC () const
 
double energyInWindow (const unsigned begin, const unsigned end) const
 
double fcByPE () const
 
double const * gain () const
 
double const * gainWidth () const
 
bool hasCapidError () const
 
bool hasEffectivePedestals () const
 
bool hasLinkError () const
 
bool hasTimeInfo () const
 
 HBHEChannelInfo ()
 
 HBHEChannelInfo (const bool hasTimeFromTDC, const bool hasEffectivePed)
 
HcalDetId id () const
 
bool isDropped () const
 
double lambda () const
 
unsigned nSamples () const
 
uint8_t peakAdcValue (const unsigned begin, const unsigned end) const
 
unsigned peakChargeTS (const unsigned begin, const unsigned end) const
 
unsigned peakEnergyTS (const unsigned begin, const unsigned end) const
 
double const * pedestal () const
 
double const * pedestalWidth () const
 
double const * rawCharge () const
 
int recoShape () const
 
float const * riseTime () const
 
void setChannelInfo (const HcalDetId &detId, const int recoShape, const unsigned nSamp, const unsigned iSoi, const int iCapid, const double darkCurrent, const double fcByPE, const double lambda, const bool linkError, const bool capidError, const bool dropThisChannel)
 
void setSample (const unsigned ts, const uint8_t rawADC, const float differentialChargeGain, const double q, const double ped, const double pedWidth, const double g, const double gainWidth, const float t)
 
unsigned soi () const
 
float soiRiseTime () const
 
void tagAsDropped ()
 
uint8_t tsAdc (const unsigned ts) const
 
double tsCharge (const unsigned ts) const
 
float tsDFcPerADC (const unsigned ts) const
 
double tsEnergy (const unsigned ts) const
 
double tsGain (const unsigned ts) const
 
double tsGainWidth (const unsigned ts) const
 
double tsPedestal (const unsigned ts) const
 
double tsPedestalWidth (const unsigned ts) const
 
double tsRawCharge (const unsigned ts) const
 
float tsRiseTime (const unsigned ts) const
 

Static Public Attributes

static const unsigned MAXSAMPLES = 10
 

Private Attributes

uint8_t adc_ [MAXSAMPLES]
 
int32_t capid_
 
double darkCurrent_
 
float dFcPerADC_ [MAXSAMPLES]
 
bool dropped_
 
double fcByPE_
 
double gain_ [MAXSAMPLES]
 
double gainWidth_ [MAXSAMPLES]
 
bool hasCapidError_
 
bool hasEffectivePedestals_
 
bool hasLinkError_
 
bool hasTimeInfo_
 
HcalDetId id_
 
double lambda_
 
uint32_t nSamples_
 
double pedestal_ [MAXSAMPLES]
 
double pedestalWidth_ [MAXSAMPLES]
 
double rawCharge_ [MAXSAMPLES]
 
int32_t recoShape_
 
float riseTime_ [MAXSAMPLES]
 
uint32_t soi_
 

Detailed Description

Unpacked charge and TDC information in a format which works for both QIE8 and QIE11

Definition at line 14 of file HBHEChannelInfo.h.

Member Typedef Documentation

Definition at line 17 of file HBHEChannelInfo.h.

Constructor & Destructor Documentation

HBHEChannelInfo::HBHEChannelInfo ( )
inline

Definition at line 21 of file HBHEChannelInfo.h.

22  : id_(), rawCharge_{0.}, pedestal_{0.}, pedestalWidth_{0.},
23  gain_{0.}, gainWidth_{0.}, darkCurrent_{0}, fcByPE_{0}, lambda_{0},
24  riseTime_{0.f}, adc_{0},
25  dFcPerADC_{0.f}, recoShape_{0}, nSamples_{0},
26  soi_{0}, capid_{0}, hasTimeInfo_{false}, hasEffectivePedestals_{false},
27  dropped_{true}, hasLinkError_{false}, hasCapidError_{false}
28  {}
double gainWidth_[MAXSAMPLES]
float dFcPerADC_[MAXSAMPLES]
double pedestalWidth_[MAXSAMPLES]
uint8_t adc_[MAXSAMPLES]
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
float riseTime_[MAXSAMPLES]
HBHEChannelInfo::HBHEChannelInfo ( const bool  hasTimeFromTDC,
const bool  hasEffectivePed 
)
inlineexplicit

Definition at line 30 of file HBHEChannelInfo.h.

31  : id_(), rawCharge_{0.}, pedestal_{0.}, pedestalWidth_{0.},
32  gain_{0.}, gainWidth_{0.}, darkCurrent_{0}, fcByPE_{0}, lambda_{0},
33  riseTime_{0.f}, adc_{0},
34  dFcPerADC_{0.f}, recoShape_{0}, nSamples_{0},
35  soi_{0}, capid_{0}, hasTimeInfo_(hasTimeFromTDC),
36  hasEffectivePedestals_(hasEffectivePed),
37  dropped_{true}, hasLinkError_{false}, hasCapidError_{false}
38  {}
double gainWidth_[MAXSAMPLES]
float dFcPerADC_[MAXSAMPLES]
double pedestalWidth_[MAXSAMPLES]
uint8_t adc_[MAXSAMPLES]
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
float riseTime_[MAXSAMPLES]

Member Function Documentation

uint8_t const* HBHEChannelInfo::adc ( ) const
inline

Definition at line 118 of file HBHEChannelInfo.h.

References adc_.

118 {return adc_;}
uint8_t adc_[MAXSAMPLES]
int HBHEChannelInfo::capid ( ) const
inline

Definition at line 102 of file HBHEChannelInfo.h.

References capid_.

Referenced by HBHERecHitAuxSetter::setAux().

102 {return capid_;}
double HBHEChannelInfo::chargeInWindow ( const unsigned  begin,
const unsigned  end 
) const
inline

Definition at line 146 of file HBHEChannelInfo.h.

References mps_fire::i, nSamples_, pedestal_, and rawCharge_.

Referenced by SimpleHBHEPhase1Algo::reconstruct().

147  {
148  double sum = 0.0;
149  const unsigned imax = end < nSamples_ ? end : nSamples_;
150  for (unsigned i=begin; i<imax; ++i)
151  sum += (rawCharge_[i] - pedestal_[i]);
152  return sum;
153  }
#define end
Definition: vmac.h:39
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
#define begin
Definition: vmac.h:32
void HBHEChannelInfo::clear ( void  )
inline

Definition at line 40 of file HBHEChannelInfo.h.

References capid_, darkCurrent_, dropped_, fcByPE_, hasCapidError_, hasLinkError_, id_, lambda_, nSamples_, recoShape_, soi_, and mitigatedMETSequence_cff::U.

Referenced by Vispa.Views.WidgetView.WidgetView::closeEvent(), Vispa.Views.BoxDecayView.BoxDecayView::closeEvent(), Vispa.Share.FindAlgorithm.FindAlgorithm::findUsingFindDialog(), Vispa.Views.LineDecayView.LineDecayView::setDataObjects(), Vispa.Views.WidgetView.WidgetView::setDataObjects(), BeautifulSoup.Tag::setString(), Vispa.Views.TreeView.TreeView::updateContent(), Vispa.Views.TableView.TableView::updateContent(), Vispa.Views.BoxDecayView.BoxDecayView::updateContent(), and Vispa.Views.PropertyView.PropertyView::updateContent().

41  {
42  id_ = HcalDetId(0U);
43  recoShape_ = 0;
44  nSamples_ = 0;
45  soi_ = 0;
46  capid_ = 0;
47  darkCurrent_ = 0;
48  fcByPE_ = 0;
49  lambda_ = 0,
50  dropped_ = true;
51  hasLinkError_ = false;
52  hasCapidError_ = false;
53  }
double HBHEChannelInfo::darkCurrent ( ) const
inline

Definition at line 105 of file HBHEChannelInfo.h.

References darkCurrent_.

Referenced by setChannelInfo().

105 {return darkCurrent_;}
float const* HBHEChannelInfo::dFcPerADC ( ) const
inline

Definition at line 119 of file HBHEChannelInfo.h.

References dFcPerADC_.

119 {return dFcPerADC_;}
float dFcPerADC_[MAXSAMPLES]
double HBHEChannelInfo::energyInWindow ( const unsigned  begin,
const unsigned  end 
) const
inline

Definition at line 155 of file HBHEChannelInfo.h.

References gain_, mps_fire::i, nSamples_, pedestal_, and rawCharge_.

Referenced by SimpleHBHEPhase1Algo::m0Energy().

156  {
157  double sum = 0.0;
158  const unsigned imax = end < nSamples_ ? end : nSamples_;
159  for (unsigned i=begin; i<imax; ++i)
160  sum += (rawCharge_[i] - pedestal_[i])*gain_[i];
161  return sum;
162  }
#define end
Definition: vmac.h:39
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
#define begin
Definition: vmac.h:32
double HBHEChannelInfo::fcByPE ( ) const
inline
double const* HBHEChannelInfo::gain ( ) const
inline

Definition at line 116 of file HBHEChannelInfo.h.

References gain_.

116 {return gain_;}
double gain_[MAXSAMPLES]
double const* HBHEChannelInfo::gainWidth ( ) const
inline

Definition at line 117 of file HBHEChannelInfo.h.

References gainWidth_.

Referenced by setSample().

117 {return gainWidth_;}
double gainWidth_[MAXSAMPLES]
bool HBHEChannelInfo::hasCapidError ( ) const
inline

Definition at line 110 of file HBHEChannelInfo.h.

References hasCapidError_.

Referenced by HBHERecHitAuxSetter::setAux().

110 {return hasCapidError_;}
bool HBHEChannelInfo::hasEffectivePedestals ( ) const
inline

Definition at line 104 of file HBHEChannelInfo.h.

References hasEffectivePedestals_.

Referenced by HBHEPhase1Reconstructor::processData().

104 {return hasEffectivePedestals_;}
bool HBHEChannelInfo::hasLinkError ( ) const
inline

Definition at line 109 of file HBHEChannelInfo.h.

References hasLinkError_.

Referenced by HBHERecHitAuxSetter::setAux().

109 {return hasLinkError_;}
bool HBHEChannelInfo::hasTimeInfo ( ) const
inline
HcalDetId HBHEChannelInfo::id ( ) const
inline
bool HBHEChannelInfo::isDropped ( ) const
inline

Definition at line 108 of file HBHEChannelInfo.h.

References dropped_.

Referenced by HBHEPhase1Reconstructor::processData(), and HBHERecHitAuxSetter::setAux().

108 {return dropped_;}
double HBHEChannelInfo::lambda ( ) const
inline

Definition at line 107 of file HBHEChannelInfo.h.

References lambda_.

Referenced by setChannelInfo().

107 {return lambda_;}
unsigned HBHEChannelInfo::nSamples ( ) const
inline
uint8_t HBHEChannelInfo::peakAdcValue ( const unsigned  begin,
const unsigned  end 
) const
inline

Definition at line 202 of file HBHEChannelInfo.h.

References adc_, mps_fire::i, and nSamples_.

203  {
204  uint8_t peak = 0;
205  const unsigned imax = end < nSamples_ ? end : nSamples_;
206  for (unsigned i=begin; i<imax; ++i)
207  if (adc_[i] > peak)
208  peak = adc_[i];
209  return peak;
210  }
#define end
Definition: vmac.h:39
uint8_t adc_[MAXSAMPLES]
#define begin
Definition: vmac.h:32
unsigned HBHEChannelInfo::peakChargeTS ( const unsigned  begin,
const unsigned  end 
) const
inline

Definition at line 166 of file HBHEChannelInfo.h.

References mps_fire::i, MAXSAMPLES, nSamples_, pedestal_, lumiQueryAPI::q, and rawCharge_.

167  {
168  unsigned iPeak = MAXSAMPLES;
169  double dmax = -DBL_MAX;
170  const unsigned imax = end < nSamples_ ? end : nSamples_;
171  for (unsigned i=begin; i<imax; ++i)
172  {
173  const double q = rawCharge_[i] - pedestal_[i];
174  if (q > dmax)
175  {
176  dmax = q;
177  iPeak = i;
178  }
179  }
180  return iPeak;
181  }
static const unsigned MAXSAMPLES
#define end
Definition: vmac.h:39
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
#define begin
Definition: vmac.h:32
unsigned HBHEChannelInfo::peakEnergyTS ( const unsigned  begin,
const unsigned  end 
) const
inline

Definition at line 183 of file HBHEChannelInfo.h.

References MillePedeFileConverter_cfg::e, gain_, mps_fire::i, MAXSAMPLES, nSamples_, pedestal_, and rawCharge_.

Referenced by SimpleHBHEPhase1Algo::m0Time().

184  {
185  unsigned iPeak = MAXSAMPLES;
186  double dmax = -DBL_MAX;
187  const unsigned imax = end < nSamples_ ? end : nSamples_;
188  for (unsigned i=begin; i<imax; ++i)
189  {
190  const double e = (rawCharge_[i] - pedestal_[i])*gain_[i];
191  if (e > dmax)
192  {
193  dmax = e;
194  iPeak = i;
195  }
196  }
197  return iPeak;
198  }
static const unsigned MAXSAMPLES
#define end
Definition: vmac.h:39
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
#define begin
Definition: vmac.h:32
double const* HBHEChannelInfo::pedestal ( ) const
inline

Definition at line 114 of file HBHEChannelInfo.h.

References pedestal_.

114 {return pedestal_;}
double pedestal_[MAXSAMPLES]
double const* HBHEChannelInfo::pedestalWidth ( ) const
inline

Definition at line 115 of file HBHEChannelInfo.h.

References pedestalWidth_.

115 {return pedestalWidth_;}
double pedestalWidth_[MAXSAMPLES]
double const* HBHEChannelInfo::rawCharge ( ) const
inline

Definition at line 113 of file HBHEChannelInfo.h.

References rawCharge_.

113 {return rawCharge_;}
double rawCharge_[MAXSAMPLES]
int HBHEChannelInfo::recoShape ( ) const
inline
float const* HBHEChannelInfo::riseTime ( ) const
inline

Definition at line 120 of file HBHEChannelInfo.h.

References hasTimeInfo_, and riseTime_.

121  {if (hasTimeInfo_) return riseTime_; else return nullptr;}
float riseTime_[MAXSAMPLES]
void HBHEChannelInfo::setChannelInfo ( const HcalDetId detId,
const int  recoShape,
const unsigned  nSamp,
const unsigned  iSoi,
const int  iCapid,
const double  darkCurrent,
const double  fcByPE,
const double  lambda,
const bool  linkError,
const bool  capidError,
const bool  dropThisChannel 
)
inline

Definition at line 55 of file HBHEChannelInfo.h.

References capid_, darkCurrent(), darkCurrent_, dropped_, fcByPE(), fcByPE_, hasCapidError_, hasLinkError_, id_, lambda(), lambda_, MAXSAMPLES, nSamples_, recoShape(), recoShape_, and soi_.

Referenced by HBHEPhase1Reconstructor::processData().

60  {
62  id_ = detId;
63  nSamples_ = nSamp < MAXSAMPLES ? nSamp : MAXSAMPLES;
64  soi_ = iSoi;
65  capid_ = iCapid;
67  fcByPE_ = fcByPE;
68  lambda_ = lambda,
69  dropped_ = dropThisChannel;
70  hasLinkError_ = linkError;
71  hasCapidError_ = capidError;
72  }
double lambda() const
static const unsigned MAXSAMPLES
double fcByPE() const
int recoShape() const
double darkCurrent() const
void HBHEChannelInfo::setSample ( const unsigned  ts,
const uint8_t  rawADC,
const float  differentialChargeGain,
const double  q,
const double  ped,
const double  pedWidth,
const double  g,
const double  gainWidth,
const float  t 
)
inline

Definition at line 78 of file HBHEChannelInfo.h.

References adc_, dFcPerADC_, g, gain_, gainWidth(), gainWidth_, pedestal_, pedestalWidth_, lumiQueryAPI::q, rawCharge_, riseTime_, and lumiQTWidget::t.

Referenced by HBHEPhase1Reconstructor::processData().

83  {
84  rawCharge_[ts] = q;
85  riseTime_[ts] = t;
86  adc_[ts] = rawADC;
87  dFcPerADC_[ts] = differentialChargeGain;
88  pedestal_[ts] = ped;
89  gain_[ts] = g;
90  pedestalWidth_[ts] = pedWidth;
91  gainWidth_[ts] = gainWidth;
92  }
double const * gainWidth() const
double gainWidth_[MAXSAMPLES]
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 g
Definition: Activities.doc:4
float dFcPerADC_[MAXSAMPLES]
double pedestalWidth_[MAXSAMPLES]
uint8_t adc_[MAXSAMPLES]
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
float riseTime_[MAXSAMPLES]
unsigned HBHEChannelInfo::soi ( ) const
inline
float HBHEChannelInfo::soiRiseTime ( ) const
inline

Definition at line 139 of file HBHEChannelInfo.h.

References hasTimeInfo_, nSamples_, riseTime_, soi_, and HcalSpecialTimes::UNKNOWN_T_NOTDC.

Referenced by SimpleHBHEPhase1Algo::reconstruct().

140  {
141  return (hasTimeInfo_ && soi_ < nSamples_) ?
143  }
constexpr float UNKNOWN_T_NOTDC
float riseTime_[MAXSAMPLES]
void HBHEChannelInfo::tagAsDropped ( )
inline

Definition at line 74 of file HBHEChannelInfo.h.

References dropped_.

75  {dropped_ = true;}
uint8_t HBHEChannelInfo::tsAdc ( const unsigned  ts) const
inline

Definition at line 133 of file HBHEChannelInfo.h.

References adc_.

Referenced by HBHERecHitAuxSetter::setAux().

133 {return adc_[ts];}
uint8_t adc_[MAXSAMPLES]
double HBHEChannelInfo::tsCharge ( const unsigned  ts) const
inline

Definition at line 129 of file HBHEChannelInfo.h.

References pedestal_, and rawCharge_.

Referenced by HBHEPhase1Reconstructor::runHBHENegativeEFilter().

130  {return rawCharge_[ts] - pedestal_[ts];}
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
float HBHEChannelInfo::tsDFcPerADC ( const unsigned  ts) const
inline

Definition at line 134 of file HBHEChannelInfo.h.

References dFcPerADC_.

Referenced by PulseShapeFitOOTPileupCorrection::phase1Apply(), MahiFit::phase1Apply(), and MahiFit::phase1Debug().

134 {return dFcPerADC_[ts];}
float dFcPerADC_[MAXSAMPLES]
double HBHEChannelInfo::tsEnergy ( const unsigned  ts) const
inline

Definition at line 131 of file HBHEChannelInfo.h.

References gain_, pedestal_, and rawCharge_.

Referenced by SimpleHBHEPhase1Algo::m0Time().

132  {return (rawCharge_[ts] - pedestal_[ts])*gain_[ts];}
double gain_[MAXSAMPLES]
double pedestal_[MAXSAMPLES]
double rawCharge_[MAXSAMPLES]
double HBHEChannelInfo::tsGain ( const unsigned  ts) const
inline
double HBHEChannelInfo::tsGainWidth ( const unsigned  ts) const
inline

Definition at line 128 of file HBHEChannelInfo.h.

References gainWidth_.

128 {return gainWidth_[ts];}
double gainWidth_[MAXSAMPLES]
double HBHEChannelInfo::tsPedestal ( const unsigned  ts) const
inline
double HBHEChannelInfo::tsPedestalWidth ( const unsigned  ts) const
inline
double HBHEChannelInfo::tsRawCharge ( const unsigned  ts) const
inline
float HBHEChannelInfo::tsRiseTime ( const unsigned  ts) const
inline

Definition at line 135 of file HBHEChannelInfo.h.

References hasTimeInfo_, riseTime_, and HcalSpecialTimes::UNKNOWN_T_NOTDC.

Referenced by MahiFit::phase1Debug().

constexpr float UNKNOWN_T_NOTDC
float riseTime_[MAXSAMPLES]

Member Data Documentation

uint8_t HBHEChannelInfo::adc_[MAXSAMPLES]
private

Definition at line 239 of file HBHEChannelInfo.h.

Referenced by adc(), peakAdcValue(), setSample(), and tsAdc().

int32_t HBHEChannelInfo::capid_
private

Definition at line 255 of file HBHEChannelInfo.h.

Referenced by capid(), clear(), and setChannelInfo().

double HBHEChannelInfo::darkCurrent_
private

Definition at line 231 of file HBHEChannelInfo.h.

Referenced by clear(), darkCurrent(), and setChannelInfo().

float HBHEChannelInfo::dFcPerADC_[MAXSAMPLES]
private

Definition at line 243 of file HBHEChannelInfo.h.

Referenced by dFcPerADC(), setSample(), and tsDFcPerADC().

bool HBHEChannelInfo::dropped_
private

Definition at line 265 of file HBHEChannelInfo.h.

Referenced by clear(), isDropped(), setChannelInfo(), and tagAsDropped().

double HBHEChannelInfo::fcByPE_
private

Definition at line 232 of file HBHEChannelInfo.h.

Referenced by clear(), fcByPE(), and setChannelInfo().

double HBHEChannelInfo::gain_[MAXSAMPLES]
private

Definition at line 225 of file HBHEChannelInfo.h.

Referenced by energyInWindow(), gain(), peakEnergyTS(), setSample(), tsEnergy(), and tsGain().

double HBHEChannelInfo::gainWidth_[MAXSAMPLES]
private

Definition at line 228 of file HBHEChannelInfo.h.

Referenced by gainWidth(), setSample(), and tsGainWidth().

bool HBHEChannelInfo::hasCapidError_
private

Definition at line 269 of file HBHEChannelInfo.h.

Referenced by clear(), hasCapidError(), and setChannelInfo().

bool HBHEChannelInfo::hasEffectivePedestals_
private

Definition at line 261 of file HBHEChannelInfo.h.

Referenced by hasEffectivePedestals().

bool HBHEChannelInfo::hasLinkError_
private

Definition at line 268 of file HBHEChannelInfo.h.

Referenced by clear(), hasLinkError(), and setChannelInfo().

bool HBHEChannelInfo::hasTimeInfo_
private

Definition at line 258 of file HBHEChannelInfo.h.

Referenced by hasTimeInfo(), riseTime(), soiRiseTime(), and tsRiseTime().

HcalDetId HBHEChannelInfo::id_
private

Definition at line 213 of file HBHEChannelInfo.h.

Referenced by clear(), id(), and setChannelInfo().

double HBHEChannelInfo::lambda_
private

Definition at line 233 of file HBHEChannelInfo.h.

Referenced by clear(), lambda(), and setChannelInfo().

const unsigned HBHEChannelInfo::MAXSAMPLES = 10
static
uint32_t HBHEChannelInfo::nSamples_
private
double HBHEChannelInfo::pedestal_[MAXSAMPLES]
private
double HBHEChannelInfo::pedestalWidth_[MAXSAMPLES]
private

Definition at line 222 of file HBHEChannelInfo.h.

Referenced by pedestalWidth(), setSample(), and tsPedestalWidth().

double HBHEChannelInfo::rawCharge_[MAXSAMPLES]
private
int32_t HBHEChannelInfo::recoShape_
private

Definition at line 246 of file HBHEChannelInfo.h.

Referenced by clear(), recoShape(), and setChannelInfo().

float HBHEChannelInfo::riseTime_[MAXSAMPLES]
private

Definition at line 236 of file HBHEChannelInfo.h.

Referenced by riseTime(), setSample(), soiRiseTime(), and tsRiseTime().

uint32_t HBHEChannelInfo::soi_
private

Definition at line 252 of file HBHEChannelInfo.h.

Referenced by clear(), setChannelInfo(), soi(), and soiRiseTime().