#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternHtMiss.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const L1GctInternHtMiss &rhs) |
std::ostream& operator<< | ( | std::ostream & | os, |
const L1GctInternHtMiss & | rhs | ||
) |
Definition at line 170 of file L1GctInternHtMiss.cc.
References L1GctInternHtMiss::bx(), L1GctInternHtMiss::capBlock(), L1GctInternHtMiss::capIndex(), L1GctInternHtMiss::htx(), L1GctInternHtMiss::hty(), L1GctInternHtMiss::isThereHtx(), L1GctInternHtMiss::isThereHty(), and L1GctInternHtMiss::overflow().
{ os << " L1GctInternHtMiss: htx="; if(rhs.isThereHtx()) { os << rhs.htx(); } else { os << "n/a"; } os << ", hty="; if(rhs.isThereHty()) { os << rhs.hty(); } else { os << "n/a"; } if (rhs.overflow()) { os << "; overflow set"; } os << "; cap block=0x" << std::hex << rhs.capBlock() << std::dec << ", index=" << rhs.capIndex() << ", BX=" << rhs.bx(); return os; }