CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1GctEtHad.h
Go to the documentation of this file.
1 #ifndef L1GCTETHAD_H
2 #define L1GCTETHAD_H
3 
4 #include <ostream>
5 #include <cstdint>
6 
14 
17 class L1GctEtHad {
18 public:
19  enum numberOfBits {
24  };
25 
26  L1GctEtHad();
27  L1GctEtHad(uint16_t rawData);
28  L1GctEtHad(uint16_t rawData, int16_t bx);
29  L1GctEtHad(unsigned et, bool oflow);
30  L1GctEtHad(unsigned et, bool oflow, int16_t bx);
31  virtual ~L1GctEtHad();
32 
34  std::string name() const { return "EtHad"; }
35 
37  bool empty() const { return false; }
38 
40  uint16_t raw() const { return m_data; }
41 
43  unsigned et() const { return m_data & kEtHadMaxValue; }
44 
46  bool overFlow() const { return (m_data & kEtHadOFlowBit) != 0; }
47 
49  int16_t bx() const { return m_bx; }
50 
52  int operator==(const L1GctEtHad& e) const { return m_data == e.raw(); }
53 
55  int operator!=(const L1GctEtHad& e) const { return m_data != e.raw(); }
56 
57 private:
58  uint16_t m_data;
59  int16_t m_bx;
60 };
61 
63 std::ostream& operator<<(std::ostream& s, const L1GctEtHad& c);
64 
65 #endif
uint16_t raw() const
get the data
Definition: L1GctEtHad.h:40
const edm::EventSetup & c
std::string name() const
name method
Definition: L1GctEtHad.h:34
int16_t m_bx
Definition: L1GctEtHad.h:59
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:167
bool overFlow() const
get the overflow
Definition: L1GctEtHad.h:46
unsigned et() const
get the Et
Definition: L1GctEtHad.h:43
int16_t bx() const
get bunch-crossing index
Definition: L1GctEtHad.h:49
Persistable copy of total Ht measured at Level-1.
Definition: L1GctEtHad.h:17
uint16_t m_data
Definition: L1GctEtHad.h:58
int operator!=(const L1GctEtHad &e) const
inequality operator
Definition: L1GctEtHad.h:55
bool empty() const
empty method (= false; hadronic Et is always calculated)
Definition: L1GctEtHad.h:37
virtual ~L1GctEtHad()
Definition: L1GctEtHad.cc:18
int operator==(const L1GctEtHad &e) const
equality operator
Definition: L1GctEtHad.h:52