CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
DTLayerId.cc File Reference
#include <iostream>
#include <DataFormats/MuonDetId/interface/DTLayerId.h>
#include <FWCore/Utilities/interface/Exception.h>

Go to the source code of this file.

Functions

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

Detailed Description

Impl of DTLayerId

Author
Stefano ARGIRO
Version
Id:
DTLayerId.cc,v 1.2 2006/01/19 15:42:59 cerminar Exp
Date
02 Aug 2005

Definition in file DTLayerId.cc.

Function Documentation

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

Definition at line 84 of file DTLayerId.cc.

84  {
85  os << " Wh:"<< id.wheel()
86  << " St:"<< id.station()
87  << " Se:"<< id.sector()
88  << " Sl:"<< id.superlayer()
89  << " La:"<< id.layer()
90  <<" ";
91 
92  return os;
93 }