#include <ostream>
#include <string>
Go to the source code of this file.
Classes | |
class | L1GctInternEtSum |
L1 GCT internal energy sum. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &s, const L1GctInternEtSum &c) |
Pretty-print operator for L1GctInternEtSum. |
std::ostream& operator<< | ( | std::ostream & | s, | |
const L1GctInternEtSum & | c | |||
) |
Pretty-print operator for L1GctInternEtSum.
Definition at line 120 of file L1GctInternEtSum.cc.
References L1GctInternEtSum::bx(), L1GctInternEtSum::capBlock(), L1GctInternEtSum::capIndex(), L1GctInternEtSum::et(), and L1GctInternEtSum::oflow().
00120 { 00121 s << "L1GctInternEtSum : "; 00122 s << " mag=" << c.et(); 00123 if (c.oflow()) { s << "; overflow set"; } 00124 s << " cap block=" << c.capBlock(); 00125 s << " index=" << c.capIndex(); 00126 s << " BX=" << c.bx(); 00127 return s; 00128 }