CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1GctEtMiss.cc
Go to the documentation of this file.
1 
3 
4 L1GctEtMiss::L1GctEtMiss() : m_data(0), m_bx(0) { }
5 
6 // The raw data is masked off so as only the MET magnitude, overflow + phi bits are stored.
7 // This is because the raw data stream also contains a BC0 flag on bit 31, and bit 15 is always
8 // set to 1. This data is masked off so as to match an L1GctEtMiss object constructed using
9 // the L1GctEtMiss(unsigned et, unsigned phi, bool oflow) constructor.
10 L1GctEtMiss::L1GctEtMiss(uint32_t rawData) : m_data(rawData & kRawCtorMask), m_bx(0) { }
11 
12 L1GctEtMiss::L1GctEtMiss(uint32_t rawData, int16_t bx) : m_data(rawData & kRawCtorMask), m_bx(bx) { }
13 
14 L1GctEtMiss::L1GctEtMiss(unsigned et, unsigned phi, bool oflow) : m_data(0),
15  m_bx(0)
16 {
17  if ((et <= kEtMissMaxValue) && (phi < kEtMissPhiNBins)) {
18  m_data = et | (oflow ? kEtMissOFlowBit : 0) | ((phi & kETMissPhiMask)<<kEtMissPhiShift) ;
19  } else {
21  }
22 }
23 
24 L1GctEtMiss::L1GctEtMiss(unsigned et, unsigned phi, bool oflow, int16_t bx) : m_data(0),
25  m_bx(bx)
26 {
27  if ((et <= kEtMissMaxValue) && (phi < kEtMissPhiNBins)) {
28  m_data = et | (oflow ? kEtMissOFlowBit : 0) | ((phi & kETMissPhiMask)<<kEtMissPhiShift) ;
29  } else {
31  }
32 }
33 
35 
37 std::ostream& operator<<(std::ostream& s, const L1GctEtMiss& c) {
38  s << " L1GctEtMiss: ";
39  s << " mag=" << c.et() << ", phi=" << c.phi();
40  if (c.overFlow()) { s << "; overflow set"; }
41  return s;
42 }
43 
Persistable copy of missing Et measured at Level-1.
Definition: L1GctEtMiss.h:18
unsigned phi() const
get the Et
Definition: L1GctEtMiss.h:64
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
bool overFlow() const
get the overflow
Definition: L1GctEtMiss.h:61
uint32_t m_data
Definition: L1GctEtMiss.h:77
virtual ~L1GctEtMiss()
Definition: L1GctEtMiss.cc:34
unsigned et() const
get the magnitude
Definition: L1GctEtMiss.h:58
Definition: DDAxes.h:10