CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_5_3_10/src/DataFormats/CSCDigi/interface/CSCCLCTDigi.h File Reference

#include <boost/cstdint.hpp>
#include <iosfwd>

Go to the source code of this file.

Classes

class  CSCCLCTDigi

Functions

std::ostream & operator<< (std::ostream &o, const CSCCLCTDigi &digi)

Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const CSCCLCTDigi digi 
)

Definition at line 142 of file CSCCLCTDigi.cc.

References CSCCLCTDigi::getBend(), CSCCLCTDigi::getBX(), CSCCLCTDigi::getCFEB(), CSCCLCTDigi::getKeyStrip(), CSCCLCTDigi::getPattern(), CSCCLCTDigi::getQuality(), CSCCLCTDigi::getStrip(), CSCCLCTDigi::getStripType(), CSCCLCTDigi::getTrknmb(), and CSCCLCTDigi::isValid().

                                                                 {
  return o << "CSC CLCT #"    << digi.getTrknmb()
           << ": Valid = "    << digi.isValid()
           << " Quality = "   << digi.getQuality()
           << " Pattern = "   << digi.getPattern()
           << " StripType = " << digi.getStripType()
           << " Bend = "      << digi.getBend()
           << " Strip = "     << digi.getStrip()
           << " KeyStrip = "  << digi.getKeyStrip()
           << " CFEB = "      << digi.getCFEB()
           << " BX = "        << digi.getBX();
}