#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctHFBitCounts.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const L1GctHFBitCounts &cand) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const L1GctHFBitCounts & | cand | |||
) |
Definition at line 76 of file L1GctHFBitCounts.cc.
References L1GctHFBitCounts::bitCount(), and lat::endl().
00076 { 00077 s << "L1GctHFBitCounts :"; 00078 s << " ring1 eta+=" << cand.bitCount(0); 00079 s << " ring1 eta-=" << cand.bitCount(1); 00080 s << " ring2 eta+=" << cand.bitCount(2); 00081 s << " ring2 eta-=" << cand.bitCount(3); 00082 s << std::endl; 00083 return s; 00084 }