#include <ESSample.h>
Public Member Functions | |
int | adc () const |
get the ADC sample (singed 16 bits) | |
ESSample () | |
ESSample (int16_t data) | |
ESSample (int adc) | |
int16_t | operator() () |
for streaming | |
int16_t | raw () const |
get the raw word | |
Private Attributes | |
int16_t | theSample |
Definition at line 7 of file ESSample.h.
ESSample::ESSample | ( | ) | [inline] |
ESSample::ESSample | ( | int16_t | data | ) | [inline] |
Definition at line 12 of file ESSample.h.
References runTheMatrix::data, and theSample.
ESSample::ESSample | ( | int | adc | ) |
int ESSample::adc | ( | ) | const [inline] |
get the ADC sample (singed 16 bits)
Definition at line 18 of file ESSample.h.
References theSample.
Referenced by EcalPreshowerDigisValidation::analyze(), ESTimingTask::analyze(), EcalPreshowerNoiseDistrib::analyze(), EcalMixingModuleValidation::analyze(), ESPedestalTask::analyze(), ESDataFormatterV4::DigiToRaw(), ESDataFormatterV1_1::DigiToRaw(), ESRecHitFitAlgo::EvalAmplitude(), ESRecHitAnalyticAlgo::EvalAmplitude(), ESRecHitSimAlgo::EvalAmplitude(), GlobalDigisAnalyzer::fillECal(), GlobalDigisProducer::fillECal(), operator<<(), ESZeroSuppressionProducer::produce(), and ESUnpacker::word2digi().
{ return theSample; }
int16_t ESSample::operator() | ( | ) | [inline] |
int16_t ESSample::raw | ( | ) | const [inline] |
get the raw word
Definition at line 16 of file ESSample.h.
References theSample.
{ return theSample; }
int16_t ESSample::theSample [private] |
Definition at line 24 of file ESSample.h.
Referenced by adc(), ESSample(), operator()(), and raw().