CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
HcalQIESample Class Reference

#include <HcalQIESample.h>

Public Member Functions

constexpr int adc () const
 get the ADC sample More...
 
constexpr int capid () const
 get the Capacitor id More...
 
constexpr bool dv () const
 is the Data Valid bit set? More...
 
constexpr bool er () const
 is the error bit set? More...
 
constexpr int fiber () const
 get the fiber number More...
 
constexpr int fiberAndChan () const
 get the id channel More...
 
constexpr int fiberChan () const
 get the fiber channel number More...
 
constexpr HcalQIESample ()
 
constexpr HcalQIESample (uint16_t data)
 
constexpr HcalQIESample (int adc, int capid, int fiber, int fiberchan, bool dv=true, bool er=false)
 
constexpr double nominal_fC () const
 get the nominal FC (no calibrations applied) More...
 
constexpr uint16_t operator() ()
 for streaming More...
 
constexpr uint16_t raw () const
 get the raw word More...
 

Private Attributes

uint16_t theSample
 

Detailed Description

Simple container packer/unpacker for a single QIE data word

Author
J. Mans - Minnesota

Definition at line 32 of file HcalQIESample.h.

Constructor & Destructor Documentation

constexpr HcalQIESample::HcalQIESample ( )
inline

Definition at line 34 of file HcalQIESample.h.

34 : theSample{0} {}
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr HcalQIESample::HcalQIESample ( uint16_t  data)
inline

Definition at line 35 of file HcalQIESample.h.

35 : theSample{data} {}
uint16_t theSample
Definition: HcalQIESample.h:63
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
constexpr HcalQIESample::HcalQIESample ( int  adc,
int  capid,
int  fiber,
int  fiberchan,
bool  dv = true,
bool  er = false 
)
inline

Definition at line 36 of file HcalQIESample.h.

37  : theSample((uint16_t)((adc & 0x7f) | ((capid & 0x3) << 7) | (((fiber - 1) & 0x7) << 13) |
38  ((fiberchan & 0x3) << 11) | ((dv) ? (0x0200) : (0)) | ((er) ? (0x0400) : (0)))) {}
constexpr bool er() const
is the error bit set?
Definition: HcalQIESample.h:51
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr int adc() const
get the ADC sample
Definition: HcalQIESample.h:43
constexpr bool dv() const
is the Data Valid bit set?
Definition: HcalQIESample.h:49
constexpr int capid() const
get the Capacitor id
Definition: HcalQIESample.h:47
constexpr int fiber() const
get the fiber number
Definition: HcalQIESample.h:53

Member Function Documentation

constexpr int HcalQIESample::adc ( ) const
inline
constexpr int HcalQIESample::capid ( ) const
inline
constexpr bool HcalQIESample::dv ( ) const
inline

is the Data Valid bit set?

Definition at line 49 of file HcalQIESample.h.

References theSample.

Referenced by operator<<(), UHTRpacker::packQIE8sample(), CastorDigiMonitor::processEvent(), and L1Analysis::L1AnalysisL1HO::SetHO().

49 { return (theSample & 0x0200) != 0; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr bool HcalQIESample::er ( ) const
inline

is the error bit set?

Definition at line 51 of file HcalQIESample.h.

References theSample.

Referenced by operator<<(), UHTRpacker::packQIE8header(), UHTRpacker::packQIE8sample(), CastorDigiMonitor::processEvent(), and L1Analysis::L1AnalysisL1HO::SetHO().

51 { return (theSample & 0x0400) != 0; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr int HcalQIESample::fiber ( ) const
inline

get the fiber number

Definition at line 53 of file HcalQIESample.h.

References theSample.

Referenced by CastorUnpacker_impl::unpack(), HcalUnpacker_impl::unpack(), CastorUnpacker::unpack(), and HcalUnpacker::unpackVME().

53 { return ((theSample >> 13) & 0x7) + 1; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr int HcalQIESample::fiberAndChan ( ) const
inline

get the id channel

Definition at line 57 of file HcalQIESample.h.

References theSample.

Referenced by CastorUnpacker_impl::unpack(), HcalUnpacker_impl::unpack(), CastorUnpacker::unpack(), and HcalUnpacker::unpackVME().

57 { return (theSample >> 11) & 0x1F; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr int HcalQIESample::fiberChan ( ) const
inline

get the fiber channel number

Definition at line 55 of file HcalQIESample.h.

References theSample.

Referenced by CastorUnpacker_impl::unpack(), HcalUnpacker_impl::unpack(), CastorUnpacker::unpack(), and HcalUnpacker::unpackVME().

55 { return (theSample >> 11) & 0x3; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr double HcalQIESample::nominal_fC ( ) const
inline

get the nominal FC (no calibrations applied)

Definition at line 45 of file HcalQIESample.h.

References adc(), and nominal_adc2fc.

Referenced by HFRaddamTask::_process(), JetToDigiDump::analyze(), ZDCDigiStudy::analyze(), and HBHETimeProfileStatusBitSetter::TotalEnergyInDataFrame().

45 { return nominal_adc2fc[adc()]; }
static constexpr float nominal_adc2fc[128]
Definition: HcalQIESample.h:13
constexpr int adc() const
get the ADC sample
Definition: HcalQIESample.h:43
constexpr uint16_t HcalQIESample::operator() ( )
inline

for streaming

Definition at line 60 of file HcalQIESample.h.

References theSample.

60 { return theSample; }
uint16_t theSample
Definition: HcalQIESample.h:63
constexpr uint16_t HcalQIESample::raw ( ) const
inline

get the raw word

Definition at line 41 of file HcalQIESample.h.

References theSample.

Referenced by CastorPacker::pack(), HcalPacker::pack(), CastorUnpacker::unpack(), and HcalUnpacker::unpackVME().

41 { return theSample; }
uint16_t theSample
Definition: HcalQIESample.h:63

Member Data Documentation

uint16_t HcalQIESample::theSample
private

Definition at line 63 of file HcalQIESample.h.

Referenced by adc(), capid(), dv(), er(), fiber(), fiberAndChan(), fiberChan(), operator()(), and raw().