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 teh MGPA electronics

Definition at line 22 of file EcalMGPASample.h.

Constructor & Destructor Documentation

EcalMGPASample::EcalMGPASample ( )
inline

Definition at line 24 of file EcalMGPASample.h.

24 { theSample = 0; }
uint16_t theSample
EcalMGPASample::EcalMGPASample ( uint16_t  data)
inline

Definition at line 25 of file EcalMGPASample.h.

References ecalMGPA::adc(), data, and ecalMGPA::gainId().

25 { theSample = data; }
uint16_t theSample
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
EcalMGPASample::EcalMGPASample ( int  adc,
int  gainId 
)

Definition at line 4 of file EcalMGPASample.cc.

References theSample.

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

Member Function Documentation

int EcalMGPASample::adc ( ) const
inline
int EcalMGPASample::gainId ( ) const
inline
EcalMGPASample::operator uint16_t ( ) const
inline

Definition at line 36 of file EcalMGPASample.h.

36 { return theSample; }
uint16_t theSample
uint16_t EcalMGPASample::operator() ( ) const
inline

for streaming

Definition at line 35 of file EcalMGPASample.h.

35 { return theSample; }
uint16_t theSample
uint16_t EcalMGPASample::raw ( ) const
inline

get the raw word

Definition at line 29 of file EcalMGPASample.h.

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

29 { return theSample; }
uint16_t theSample

Member Data Documentation

uint16_t EcalMGPASample::theSample
private

Definition at line 39 of file EcalMGPASample.h.

Referenced by EcalMGPASample().