#include <ostream>
Go to the source code of this file.
Classes | |
class | L1GctEtHad |
Persistable copy of total Ht measured at Level-1. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &s, const L1GctEtHad &c) |
Pretty-print operator for L1GctEtHad. |
Definition in file L1GctEtHad.h.
std::ostream& operator<< | ( | std::ostream & | s, | |
const L1GctEtHad & | c | |||
) |
Pretty-print operator for L1GctEtHad.
Definition at line 25 of file L1GctEtHad.cc.
References L1GctEtHad::et(), and L1GctEtHad::overFlow().
00025 { 00026 s << " L1GctEtHad: "; 00027 s << " ht=" << c.et(); 00028 if (c.overFlow()) { s << "; overflow set"; } 00029 return s; 00030 }