CMS 3D CMS Logo

Classes | Functions
CSCDetId.h File Reference
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/MuonDetId/interface/MuonSubdetId.h"

Go to the source code of this file.

Classes

class  CSCDetId
 

Functions

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

Function Documentation

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

Definition at line 76 of file CSCDetId.cc.

77 {
78  // Note that there is no endl to end the output
79 
80  os << " E:" << id.endcap()
81  << " S:" << id.station()
82  << " R:" << id.ring()
83  << " C:" << id.chamber()
84  << " L:" << id.layer();
85  return os;
86 }