CMS 3D CMS Logo

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), m_bx(0) {
15  if ((et <= kEtMissMaxValue) && (phi < kEtMissPhiNBins)) {
16  m_data = et | (oflow ? kEtMissOFlowBit : 0) | ((phi & kETMissPhiMask) << kEtMissPhiShift);
17  } else {
19  }
20 }
21 
22 L1GctEtMiss::L1GctEtMiss(unsigned et, unsigned phi, bool oflow, int16_t bx) : m_data(0), m_bx(bx) {
23  if ((et <= kEtMissMaxValue) && (phi < kEtMissPhiNBins)) {
24  m_data = et | (oflow ? kEtMissOFlowBit : 0) | ((phi & kETMissPhiMask) << kEtMissPhiShift);
25  } else {
27  }
28 }
29 
31 
33 std::ostream& operator<<(std::ostream& s, const L1GctEtMiss& c) {
34  s << " L1GctEtMiss: ";
35  s << " mag=" << c.et() << ", phi=" << c.phi();
36  if (c.overFlow()) {
37  s << "; overflow set";
38  }
39  return s;
40 }
unsigned phi() const
get the Et
Definition: L1GctEtMiss.h:62
unsigned et() const
get the magnitude
Definition: L1GctEtMiss.h:56
Persistable copy of missing Et measured at Level-1.
Definition: L1GctEtMiss.h:17
std::ostream & operator<<(std::ostream &s, const L1GctEtMiss &c)
Pretty-print operator for L1GctEtMiss.
Definition: L1GctEtMiss.cc:33
uint32_t m_data
Definition: L1GctEtMiss.h:74
virtual ~L1GctEtMiss()
Definition: L1GctEtMiss.cc:30