CMS 3D CMS Logo

Functions
DTWireId.cc File Reference
#include <iostream>
#include <DataFormats/MuonDetId/interface/DTWireId.h>
#include <FWCore/Utilities/interface/Exception.h>

Go to the source code of this file.

Functions

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

Detailed Description

Impl of DTWireId

Author
G. Cerminara - INFN Torino
Date
02 Aug 2005

Definition in file DTWireId.cc.

Function Documentation

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

Definition at line 101 of file DTWireId.cc.

Referenced by DTWireId::layerId().

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 }