CMS 3D CMS Logo

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
Date
02 Aug 2005

Definition in file DTLayerId.cc.

Function Documentation

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

Definition at line 83 of file DTLayerId.cc.

Referenced by DTLayerId::superlayerId().

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