#include <ostream>
Go to the source code of this file.
Classes | |
class | L1GctEtMiss |
Persistable copy of missing Et measured at Level-1. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &s, const L1GctEtMiss &c) |
Pretty-print operator for L1GctEtMiss. |
Definition in file L1GctEtMiss.h.
std::ostream& operator<< | ( | std::ostream & | s, | |
const L1GctEtMiss & | c | |||
) |
Pretty-print operator for L1GctEtMiss.
Definition at line 37 of file L1GctEtMiss.cc.
References L1GctEtMiss::et(), L1GctEtMiss::overFlow(), and L1GctEtMiss::phi().
00037 { 00038 s << " L1GctEtMiss: "; 00039 s << " mag=" << c.et() << ", phi=" << c.phi(); 00040 if (c.overFlow()) { s << "; overflow set"; } 00041 return s; 00042 }