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