CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1GctEtTotal.cc
Go to the documentation of this file.
1 
3 
4 L1GctEtTotal::L1GctEtTotal() : m_data(0), m_bx(0) {}
5 
6 L1GctEtTotal::L1GctEtTotal(uint16_t rawData) : m_data(rawData & kRawCtorMask), m_bx(0) {}
7 
8 L1GctEtTotal::L1GctEtTotal(uint16_t rawData, int16_t bx) : m_data(rawData & kRawCtorMask), m_bx(bx) {}
9 
10 L1GctEtTotal::L1GctEtTotal(unsigned et, bool oflow) : m_data(0), m_bx(0) {
11  m_data = (et & kEtTotalMaxValue) | ((oflow || et > kEtTotalMaxValue) ? kEtTotalOFlowBit : 0);
12 }
13 
14 L1GctEtTotal::L1GctEtTotal(unsigned et, bool oflow, int16_t bx) : m_data(0), m_bx(bx) {
15  m_data = (et & kEtTotalMaxValue) | ((oflow || et > kEtTotalMaxValue) ? kEtTotalOFlowBit : 0);
16 }
17 
19 
21 std::ostream& operator<<(std::ostream& s, const L1GctEtTotal& c) {
22  s << " L1GctEtTotal: ";
23  s << " et=" << c.et();
24  if (c.overFlow()) {
25  s << "; overflow set";
26  }
27  return s;
28 }
const edm::EventSetup & c
bool overFlow() const
get the overflow
Definition: L1GctEtTotal.h:46
unsigned et() const
get the Et
Definition: L1GctEtTotal.h:43
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:167
uint16_t m_data
Definition: L1GctEtTotal.h:58
Persistable copy of total Et measured at Level-1.
Definition: L1GctEtTotal.h:17
virtual ~L1GctEtTotal()
Definition: L1GctEtTotal.cc:18