CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_3_1/src/DataFormats/MuonDetId/src/CSCDetId.cc File Reference

#include <DataFormats/MuonDetId/interface/CSCDetId.h>
#include <FWCore/Utilities/interface/Exception.h>
#include <iostream>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CSCDetId &id)

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CSCDetId id 
)

Definition at line 110 of file CSCDetId.cc.

{
  // Note that there is no endl to end the output

   os << " E:" << id.endcap()
      << " S:" << id.station()
      << " R:" << id.ring()
      << " C:" << id.chamber()
      << " L:" << id.layer();
   return os;
}