CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 25 of file EcalMGPASample.h.

Constructor & Destructor Documentation

EcalMGPASample::EcalMGPASample ( )
inline

Definition at line 27 of file EcalMGPASample.h.

References theSample.

27 { theSample=0; }
uint16_t theSample
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:82
EcalMGPASample::EcalMGPASample ( int  adc,
int  gainId 
)

Definition at line 4 of file EcalMGPASample.cc.

References theSample.

4  {
5  theSample=(adc&0xFFF) | ((gainId&0x3)<<12);
6 }
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 39 of file EcalMGPASample.h.

References theSample.

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

for streaming

Definition at line 38 of file EcalMGPASample.h.

References theSample.

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

get the raw word

Definition at line 32 of file EcalMGPASample.h.

References theSample.

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

32 { return theSample; }
uint16_t theSample

Member Data Documentation

uint16_t EcalMGPASample::theSample
private

Definition at line 42 of file EcalMGPASample.h.

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