CMS 3D CMS Logo

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

Go to the source code of this file.

Functions

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

Detailed Description

Impl of RPCDetId

Author
Ilaria Segoni
Date
02 Aug 2005

Definition in file RPCDetId.cc.

Function Documentation

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

Definition at line 267 of file RPCDetId.cc.

267  {
268 
269 
270  os << " Re "<<id.region()
271  << " Ri "<<id.ring()
272  << " St "<<id.station()
273  << " Se "<<id.sector()
274  << " La "<<id.layer()
275  << " Su "<<id.subsector()
276  << " Ro "<<id.roll()
277  << " Tr "<<id.trIndex()
278  <<" ";
279 
280  return os;
281 }