#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 113 of file L1GctEmCand.cc.
References L1GctEmCand::bx(), L1GctEmCand::capBlock(), L1GctEmCand::capIndex(), L1GctEmCand::etaIndex(), L1GctEmCand::etaSign(), L1GctEmCand::isolated(), L1GctEmCand::phiIndex(), and L1GctEmCand::rank().
00113 { 00114 s << "L1GctEmCand : "; 00115 s << "rank=" << hex << cand.rank(); 00116 s << ", etaSign=" << cand.etaSign() << ", eta=" << (cand.etaIndex()&0x7) << ", phi=" << cand.phiIndex(); 00117 s << ", iso=" << cand.isolated() << dec; 00118 s << hex << " cap block=" << cand.capBlock() << ", index=" << cand.capIndex() << ", BX=" << cand.bx() << dec; 00119 return s; 00120 }