CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
DTWireId.h File Reference
#include <DataFormats/MuonDetId/interface/DTLayerId.h>

Go to the source code of this file.

Classes

class  DTWireId
 

Functions

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

Function Documentation

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

Definition at line 101 of file DTWireId.cc.

101  {
102 
103  os << " Wh:"<< id.wheel()
104  << " St:"<< id.station()
105  << " Se:"<< id.sector()
106  << " Sl:"<< id.superlayer()
107  << " La:"<< id.layer()
108  << " Wi:"<< id.wire()
109  <<" ";
110 
111  return os;
112 }