CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1aInfo.cc
Go to the documentation of this file.
3 
4 L1aInfo::L1aInfo() : orbitNr_(0), bxid_(0), index_(0), eventType_(0) {}
5 
7  : orbitNr_(((uint64_t)(l1Info.orbithigh) << 32) | l1Info.orbitlow),
8  bxid_(l1Info.bxid),
9  index_(-l1Info.ind0 - 1),
10  eventType_(l1Info.eventtype) {}
11 
12 std::ostream& operator<<(std::ostream& s, const L1aInfo& l1aInfo) {
13  s << "Index: " << l1aInfo.getIndex() << std::endl;
14  s << " OrbitNr: " << l1aInfo.getOrbitNr() << std::endl;
15  s << " BXID: " << l1aInfo.getBXID() << std::endl;
16  s << " EventType: " << (uint16_t)l1aInfo.getEventType() << std::endl;
17 
18  return s;
19 }
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:167
Class to contain L1 accept history information from TCDS FED.
Definition: L1aInfo.h:16
uint16_t getBXID() const
Definition: L1aInfo.h:36
uint8_t getEventType() const
Definition: L1aInfo.h:39
L1aInfo()
Definition: L1aInfo.cc:4
unsigned long long uint64_t
Definition: Time.h:13
int16_t getIndex() const
Definition: L1aInfo.h:30
uint64_t getOrbitNr() const
Definition: L1aInfo.h:33