CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/DataFormats/L1Trigger/interface/L1MonitorDigi.h File Reference

#include <ostream>
#include <string>
#include <utility>

Go to the source code of this file.

Classes

class  L1MonitorDigi

Functions

std::ostream & operator<< (std::ostream &, const L1MonitorDigi &)

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const L1MonitorDigi  
)

Definition at line 37 of file L1MonitorDigi.cc.

References L1MonitorDigi::cid(), L1MonitorDigi::raw(), alignCSCRings::s, L1MonitorDigi::sid(), L1MonitorDigi::value(), L1MonitorDigi::x1(), L1MonitorDigi::x2(), and L1MonitorDigi::x3().

                                                                {
  s << "L1Mon "
    << " system: "  << std::setw(2) << mon.sid()
    << " (cid."        << std::setw(2) << mon.cid() << ")"
    << std::hex << std::setfill('0')
    << " location: " 
    << "(" << std::setw(5) << std::setprecision(2) << mon.x1() 
    << "," << std::setw(5) << std::setprecision(2) << mon.x2() 
    << "," << std::setw(5) << std::setprecision(2) << mon.x3() << ")"
    << " value: " << std::setw(5) << std::setprecision(2) << mon.value()
    << " word: " << std::setw(8) << mon.raw()   
    << std::dec << std::setfill(' ');
  return s;
}