#include "L1Trigger/GlobalCaloTrigger/interface/L1GctWheelEnergyFpga.h"
#include "L1Trigger/GlobalCaloTrigger/interface/L1GctWheelJetFpga.h"
#include "L1Trigger/GlobalCaloTrigger/interface/L1GctJetLeafCard.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &os, const L1GctWheelEnergyFpga &fpga) |
ostream& operator<< | ( | ostream & | os, | |
const L1GctWheelEnergyFpga & | fpga | |||
) |
Definition at line 67 of file L1GctWheelEnergyFpga.cc.
References lat::endl(), i, L1GctWheelEnergyFpga::m_id, L1GctWheelEnergyFpga::m_inputEt, L1GctWheelEnergyFpga::m_inputEx, L1GctWheelEnergyFpga::m_inputEy, L1GctWheelEnergyFpga::m_inputLeafCards, L1GctWheelEnergyFpga::m_outputEt, L1GctWheelEnergyFpga::m_outputEx, and L1GctWheelEnergyFpga::m_outputEy.
00068 { 00069 os << "===L1GctWheelEnergyFPGA===" << endl; 00070 os << "ID : " << fpga.m_id << endl; 00071 os << "No. of Input Leaf Cards " << fpga.m_inputLeafCards.size() << endl; 00072 for(unsigned i=0; i < fpga.m_inputLeafCards.size(); i++) 00073 { 00074 os << "LeafCard* " << i << " = " << fpga.m_inputLeafCards.at(i) << endl; 00075 } 00076 os << "Input Ex " << endl; 00077 for(unsigned i=0; i < fpga.m_inputEx.size(); i++) 00078 { 00079 os << fpga.m_inputEx.at(i) << endl; 00080 } 00081 os << "Input Ey " << endl; 00082 for(unsigned i=0; i < fpga.m_inputEy.size(); i++) 00083 { 00084 os << fpga.m_inputEy.at(i) << endl; 00085 } 00086 os << "Input Et " << endl; 00087 for(unsigned i=0; i < fpga.m_inputEt.size(); i++) 00088 { 00089 os << fpga.m_inputEt.at(i) << endl; 00090 } 00091 os << "Output Ex " << fpga.m_outputEx << endl; 00092 os << "Output Ey " << fpga.m_outputEy << endl; 00093 os << "Output Et " << fpga.m_outputEt << endl; 00094 os << endl; 00095 return os; 00096 }