#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(), and L1GctInternEmCand::rank().
00059 { 00060 s << "L1GctInternEmCand : "; 00061 s << "rank=" << hex << cand.rank(); 00062 s << ", etaSign=" << cand.etaSign() << ", eta=" << (cand.etaIndex()&0xf) << ", phi=" << cand.phiIndex(); 00063 s << ", iso=" << cand.isolated(); 00064 s << " cap block=" << cand.capBlock() << ", index=" << cand.capIndex() << ", BX=" << cand.bx() << dec; 00065 return s; 00066 }