#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctFibreWord.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const L1GctFibreWord &fw) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const L1GctFibreWord & | fw | |||
) |
Definition at line 21 of file L1GctFibreWord.cc.
References L1GctFibreWord::block(), L1GctFibreWord::bx(), L1GctFibreWord::data(), and L1GctFibreWord::index().
00021 { 00022 s << "L1GctFibreWord : "; 00023 s << std::hex << fw.data() << ", block " << fw.block(); 00024 s << ", index : " << fw.index() << ", bx : " << fw.bx(); 00025 s << std::dec; 00026 return s; 00027 }