CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
EcalMGPASample Class Reference

#include <EcalMGPASample.h>

Public Member Functions

int adc () const
 get the ADC sample (12 bits) More...
 
 EcalMGPASample ()
 
 EcalMGPASample (uint16_t data)
 
 EcalMGPASample (int adc, int gainId)
 
int gainId () const
 get the gainId (2 bits) More...
 
 operator uint16_t () const
 
uint16_t operator() () const
 for streaming More...
 
uint16_t raw () const
 get the raw word More...
 

Private Attributes

uint16_t theSample
 

Detailed Description

Simple container packer/unpacker for a single sample from the MGPA electronics

Definition at line 25 of file EcalMGPASample.h.

Constructor & Destructor Documentation

◆ EcalMGPASample() [1/3]

EcalMGPASample::EcalMGPASample ( )
inline

Definition at line 27 of file EcalMGPASample.h.

References theSample.

27 { theSample = 0; }
uint16_t theSample

◆ EcalMGPASample() [2/3]

EcalMGPASample::EcalMGPASample ( uint16_t  data)
inline

Definition at line 28 of file EcalMGPASample.h.

References data, and theSample.

28 { theSample = data; }
uint16_t theSample
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80

◆ EcalMGPASample() [3/3]

EcalMGPASample::EcalMGPASample ( int  adc,
int  gainId 
)

Definition at line 4 of file EcalMGPASample.cc.

References adc(), gainId(), and theSample.

4 { theSample = (adc & 0xFFF) | ((gainId & 0x3) << 12); }
uint16_t theSample
int adc() const
get the ADC sample (12 bits)
int gainId() const
get the gainId (2 bits)

Member Function Documentation

◆ adc()

int EcalMGPASample::adc ( ) const
inline

◆ gainId()

int EcalMGPASample::gainId ( ) const
inline

◆ operator uint16_t()

EcalMGPASample::operator uint16_t ( ) const
inline

Definition at line 39 of file EcalMGPASample.h.

References theSample.

39 { return theSample; }
uint16_t theSample

◆ operator()()

uint16_t EcalMGPASample::operator() ( ) const
inline

for streaming

Definition at line 38 of file EcalMGPASample.h.

References theSample.

38 { return theSample; }
uint16_t theSample

◆ raw()

uint16_t EcalMGPASample::raw ( ) const
inline

get the raw word

Definition at line 32 of file EcalMGPASample.h.

References theSample.

Referenced by EcalDigiSelector::produce(), EcalFenixLinearizer::setInput(), and EcalEBFenixLinearizer::setInput().

32 { return theSample; }
uint16_t theSample

Member Data Documentation

◆ theSample

uint16_t EcalMGPASample::theSample
private

Definition at line 42 of file EcalMGPASample.h.

Referenced by adc(), EcalMGPASample(), gainId(), operator uint16_t(), operator()(), and raw().