CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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
Version
Id:
DTWireId.cc,v 1.3 2006/04/12 17:52:40 namapane Exp
Date
02 Aug 2005

Definition in file DTWireId.cc.

Function Documentation

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

Definition at line 102 of file DTWireId.cc.

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