CMS 3D CMS Logo

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

Persistable copy of total Et measured at Level-1. More...

#include <L1GctEtTotal.h>

Public Types

enum  numberOfBits { kEtTotalNBits = 12, kEtTotalOFlowBit = 1 << kEtTotalNBits, kEtTotalMaxValue = kEtTotalOFlowBit - 1, kRawCtorMask = kEtTotalOFlowBit | kEtTotalMaxValue }
 

Public Member Functions

int16_t bx () const
 get bunch-crossing index More...
 
bool empty () const
 empty method (= false; total Et is always calculated) More...
 
unsigned et () const
 get the Et More...
 
 L1GctEtTotal ()
 
 L1GctEtTotal (uint16_t rawData)
 
 L1GctEtTotal (uint16_t rawData, int16_t bx)
 
 L1GctEtTotal (unsigned et, bool oflow)
 
 L1GctEtTotal (unsigned et, bool oflow, int16_t bx)
 
std::string name () const
 name method More...
 
int operator!= (const L1GctEtTotal &e) const
 inequality operator More...
 
int operator== (const L1GctEtTotal &e) const
 equality operator More...
 
bool overFlow () const
 get the overflow More...
 
uint16_t raw () const
 get the data More...
 
virtual ~L1GctEtTotal ()
 

Private Attributes

int16_t m_bx
 
uint16_t m_data
 

Detailed Description

Persistable copy of total Et measured at Level-1.

Definition at line 17 of file L1GctEtTotal.h.

Member Enumeration Documentation

Enumerator
kEtTotalNBits 
kEtTotalOFlowBit 
kEtTotalMaxValue 
kRawCtorMask 

Definition at line 19 of file L1GctEtTotal.h.

Constructor & Destructor Documentation

L1GctEtTotal::L1GctEtTotal ( )

Definition at line 4 of file L1GctEtTotal.cc.

4 : m_data(0), m_bx(0) {}
int16_t m_bx
Definition: L1GctEtTotal.h:59
uint16_t m_data
Definition: L1GctEtTotal.h:58
L1GctEtTotal::L1GctEtTotal ( uint16_t  rawData)

Definition at line 6 of file L1GctEtTotal.cc.

6 : m_data(rawData & kRawCtorMask), m_bx(0) {}
int16_t m_bx
Definition: L1GctEtTotal.h:59
uint16_t m_data
Definition: L1GctEtTotal.h:58
L1GctEtTotal::L1GctEtTotal ( uint16_t  rawData,
int16_t  bx 
)

Definition at line 8 of file L1GctEtTotal.cc.

8 : m_data(rawData & kRawCtorMask), m_bx(bx) {}
int16_t m_bx
Definition: L1GctEtTotal.h:59
uint16_t m_data
Definition: L1GctEtTotal.h:58
int16_t bx() const
get bunch-crossing index
Definition: L1GctEtTotal.h:49
L1GctEtTotal::L1GctEtTotal ( unsigned  et,
bool  oflow 
)

Definition at line 10 of file L1GctEtTotal.cc.

References kEtTotalMaxValue, kEtTotalOFlowBit, and m_data.

10  : m_data(0), m_bx(0) {
11  m_data = (et & kEtTotalMaxValue) | ((oflow || et > kEtTotalMaxValue) ? kEtTotalOFlowBit : 0);
12 }
unsigned et() const
get the Et
Definition: L1GctEtTotal.h:43
int16_t m_bx
Definition: L1GctEtTotal.h:59
uint16_t m_data
Definition: L1GctEtTotal.h:58
L1GctEtTotal::L1GctEtTotal ( unsigned  et,
bool  oflow,
int16_t  bx 
)

Definition at line 14 of file L1GctEtTotal.cc.

References kEtTotalMaxValue, kEtTotalOFlowBit, and m_data.

14  : m_data(0), m_bx(bx) {
15  m_data = (et & kEtTotalMaxValue) | ((oflow || et > kEtTotalMaxValue) ? kEtTotalOFlowBit : 0);
16 }
unsigned et() const
get the Et
Definition: L1GctEtTotal.h:43
int16_t m_bx
Definition: L1GctEtTotal.h:59
uint16_t m_data
Definition: L1GctEtTotal.h:58
int16_t bx() const
get bunch-crossing index
Definition: L1GctEtTotal.h:49
L1GctEtTotal::~L1GctEtTotal ( )
virtual

Definition at line 18 of file L1GctEtTotal.cc.

18 {}

Member Function Documentation

int16_t L1GctEtTotal::bx ( ) const
inline

get bunch-crossing index

Definition at line 49 of file L1GctEtTotal.h.

References m_bx.

49 { return m_bx; }
int16_t m_bx
Definition: L1GctEtTotal.h:59
bool L1GctEtTotal::empty ( ) const
inline

empty method (= false; total Et is always calculated)

Definition at line 37 of file L1GctEtTotal.h.

37 { return false; }
unsigned L1GctEtTotal::et ( ) const
inline
std::string L1GctEtTotal::name ( ) const
inline
int L1GctEtTotal::operator!= ( const L1GctEtTotal e) const
inline

inequality operator

Definition at line 55 of file L1GctEtTotal.h.

References m_data, and raw().

55 { return m_data != e.raw(); }
uint16_t m_data
Definition: L1GctEtTotal.h:58
uint16_t raw() const
get the data
Definition: L1GctEtTotal.h:40
int L1GctEtTotal::operator== ( const L1GctEtTotal e) const
inline

equality operator

Definition at line 52 of file L1GctEtTotal.h.

References m_data, and raw().

52 { return m_data == e.raw(); }
uint16_t m_data
Definition: L1GctEtTotal.h:58
uint16_t raw() const
get the data
Definition: L1GctEtTotal.h:40
bool L1GctEtTotal::overFlow ( ) const
inline

get the overflow

Definition at line 46 of file L1GctEtTotal.h.

References kEtTotalOFlowBit, and m_data.

Referenced by L1GtEnergySumCondition::evaluateCondition(), and operator<<().

uint16_t L1GctEtTotal::raw ( ) const
inline

get the data

Definition at line 40 of file L1GctEtTotal.h.

References m_data.

Referenced by L1GtPatternGenerator::analyze(), L1GlobalTriggerPSB::fillPsbBlock(), operator!=(), and operator==().

40 { return m_data; }
uint16_t m_data
Definition: L1GctEtTotal.h:58

Member Data Documentation

int16_t L1GctEtTotal::m_bx
private

Definition at line 59 of file L1GctEtTotal.h.

Referenced by bx().

uint16_t L1GctEtTotal::m_data
private

Definition at line 58 of file L1GctEtTotal.h.

Referenced by et(), L1GctEtTotal(), operator!=(), operator==(), overFlow(), and raw().