#include "DataFormats/L1CaloTrigger/interface/L1CaloEmCand.h"
#include <iostream>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &s, const L1CaloEmCand &cand) |
ostream& operator<< | ( | ostream & | s, | |
const L1CaloEmCand & | cand | |||
) |
Definition at line 74 of file L1CaloEmCand.cc.
References L1CaloEmCand::bx(), L1CaloEmCand::index(), L1CaloEmCand::isolated(), L1CaloEmCand::rank(), L1CaloEmCand::rctCard(), L1CaloEmCand::rctCrate(), and L1CaloEmCand::rctRegion().
00074 { 00075 s << "L1CaloEmCand : " << hex; 00076 s << "rank=" << cand.rank(); 00077 s << ", region=" << cand.rctRegion() << ", card=" << cand.rctCard() << ", crate=" << cand.rctCrate(); 00078 s << ", iso=" << cand.isolated() << dec; 00079 s << hex << ", index=" << cand.index() << ", BX=" << cand.bx() << dec; 00080 return s; 00081 }