CMS 3D CMS Logo

EventID.cc
Go to the documentation of this file.
2 #include <ostream>
3 
4 namespace edm {
5  std::ostream& operator<<(std::ostream& oStream, EventID const& iID) {
6  oStream << "run: " << iID.run() << " lumi: " << iID.luminosityBlock() << " event: " << iID.event();
7  return oStream;
8  }
9 } // namespace edm
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:39
RunNumber_t run() const
Definition: EventID.h:38
HLT enums.
std::ostream & operator<<(std::ostream &ost, const HLTGlobalStatus &hlt)
Formatted printout of trigger tbale.
EventNumber_t event() const
Definition: EventID.h:40