CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_2_9/src/L1Trigger/GlobalCaloTrigger/src/L1GctWheelEnergyFpga.cc File Reference

#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)

Function Documentation

ostream& operator<< ( ostream &  os,
const L1GctWheelEnergyFpga fpga 
)

Definition at line 70 of file L1GctWheelEnergyFpga.cc.

References i, L1GctWheelEnergyFpga::m_id, L1GctWheelEnergyFpga::m_inputEt, L1GctWheelEnergyFpga::m_inputEx, L1GctWheelEnergyFpga::m_inputEy, L1GctWheelEnergyFpga::m_inputHt, L1GctWheelEnergyFpga::m_inputLeafCards, L1GctWheelEnergyFpga::m_outputEt, L1GctWheelEnergyFpga::m_outputEx, L1GctWheelEnergyFpga::m_outputEy, and L1GctWheelEnergyFpga::m_outputHt.

{
  os << "===L1GctWheelEnergyFPGA===" << 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 << "LeafCard* " << i << " = " << fpga.m_inputLeafCards.at(i) << endl;
    } 
  os << "Input Ex " << endl;
  for(unsigned i=0; i < fpga.m_inputEx.size(); i++)
    {
      os << fpga.m_inputEx.at(i) << endl;
    } 
  os << "Input Ey " << endl;
  for(unsigned i=0; i < fpga.m_inputEy.size(); i++)
    {
      os << fpga.m_inputEy.at(i) << endl;
    } 
  os << "Input Et " << endl;
  for(unsigned i=0; i < fpga.m_inputEt.size(); i++)
    {
      os << fpga.m_inputEt.at(i) << endl;
    } 
  os << "Input Ht " << endl;
  for(unsigned i=0; i < fpga.m_inputHt.size(); i++)
    {
      os << (fpga.m_inputHt.at(i)) << endl;
    } 
  os << "Output Ex " << fpga.m_outputEx << endl;
  os << "Output Ey " << fpga.m_outputEy << endl;
  os << "Output Et " << fpga.m_outputEt << endl;
  os << "Output Ht " << fpga.m_outputHt << endl;
  os << endl;
  return os;
}