#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctJetCand.h"
#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctEtHad.h"
#include "L1Trigger/GlobalCaloTrigger/interface/L1GctProcessor.h"
#include "L1Trigger/GlobalCaloTrigger/interface/L1GctJetLeafCard.h"
#include "L1Trigger/GlobalCaloTrigger/src/L1GctUnsignedInt.h"
#include <vector>
Go to the source code of this file.
Classes | |
class | L1GctWheelJetFpga |
Represents a GCT Wheel Jet FPGA. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const L1GctWheelJetFpga &fpga) |
std::ostream& operator<< | ( | std::ostream & | os, |
const L1GctWheelJetFpga & | fpga | ||
) |
Definition at line 95 of file L1GctWheelJetFpga.cc.
References i, L1GctWheelJetFpga::m_id, and L1GctWheelJetFpga::m_inputLeafCards.
{ using std::endl; os << "===L1GctWheelJetFPGA===" << endl; os << "ID = " << fpga.m_id << endl; os << "No of Input Leaf Cards " << fpga.m_inputLeafCards.size() << endl; for(unsigned i=0; i < fpga.m_inputLeafCards.size(); i++) { os << "InputLeafCard* " << i << " = " << fpga.m_inputLeafCards.at(i) << endl; } // os << "No. of Input Jets " << fpga.m_inputJets.size() << endl; // for(unsigned i=0; i < fpga.m_inputJets.size(); i++) // { // os << fpga.m_inputJets.at(i); // } // os << "No. of raw central Jets " << fpga.m_rawCentralJets.size() << endl; // for(unsigned i=0; i < fpga.m_rawCentralJets.size(); i++) // { // os << fpga.m_rawCentralJets.at(i); // } // os << "No. of raw forward Jets " << fpga.m_rawForwardJets.size() << endl; // for(unsigned i=0; i < fpga.m_rawForwardJets.size(); i++) // { // os << fpga.m_rawForwardJets.at(i); // } // os << "No. of raw tau Jets " << fpga.m_rawTauJets.size() << endl; // for(unsigned i=0; i < fpga.m_rawTauJets.size(); i++) // { // os << fpga.m_rawTauJets.at(i); // } // os << "No. of output central Jets " << fpga.m_centralJets.size() << endl; // for(unsigned i=0; i < fpga.m_centralJets.size(); i++) // { // os << fpga.m_centralJets.at(i); // } // os << "No. of output forward Jets " << fpga.m_forwardJets.size() << endl; // for(unsigned i=0; i < fpga.m_forwardJets.size(); i++) // { // os << fpga.m_forwardJets.at(i); // } // os << "No. of output tau Jets " << fpga.m_tauJets.size() << endl; // for(unsigned i=0; i < fpga.m_tauJets.size(); i++) // { // os << fpga.m_tauJets.at(i); // } os << endl; return os; }