CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions
ecalMGPA Namespace Reference

Typedefs

typedef uint16_t sample_type
 

Functions

constexpr int adc (sample_type sample)
 get the ADC sample (12 bits) More...
 
constexpr int gainId (sample_type sample)
 get the gainId (2 bits) More...
 
constexpr sample_type pack (int adc, int gainId)
 

Typedef Documentation

typedef uint16_t ecalMGPA::sample_type

Definition at line 8 of file EcalMGPASample.h.

Function Documentation

constexpr int ecalMGPA::adc ( sample_type  sample)

get the ADC sample (12 bits)

Definition at line 11 of file EcalMGPASample.h.

11 { return sample & 0xFFF; }
constexpr int ecalMGPA::gainId ( sample_type  sample)

get the gainId (2 bits)

Definition at line 13 of file EcalMGPASample.h.

13 { return (sample >> 12) & 0x3; }
constexpr sample_type ecalMGPA::pack ( int  adc,
int  gainId 
)

Definition at line 14 of file EcalMGPASample.h.

14 { return (adc & 0xFFF) | ((gainId & 0x3) << 12); }
constexpr int gainId(sample_type sample)
get the gainId (2 bits)
uint16_t *__restrict__ uint16_t const *__restrict__ adc