#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternEmCand.h"
#include <iostream>
#include "DataFormats/L1CaloTrigger/interface/L1CaloRegionDetId.h"
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &s, const L1GctInternEmCand &cand) |
ostream& operator<< | ( | ostream & | s, |
const L1GctInternEmCand & | cand | ||
) |
Definition at line 59 of file L1GctInternEmCand.cc.
References L1GctInternEmCand::bx(), L1GctInternEmCand::capBlock(), L1GctInternEmCand::capIndex(), L1GctInternEmCand::etaIndex(), L1GctInternEmCand::etaSign(), L1GctInternEmCand::isolated(), L1GctInternEmCand::phiIndex(), L1GctInternEmCand::rank(), and asciidump::s.
{ s << "L1GctInternEmCand : "; s << "rank=" << cand.rank(); s << ", etaSign=" << cand.etaSign() << ", eta=" << (cand.etaIndex()&0xf) << ", phi=" << cand.phiIndex(); s << ", iso=" << cand.isolated(); s << " cap block=" << hex << cand.capBlock(); s << ", index=" << dec << cand.capIndex() << ", BX=" << cand.bx(); return s; }