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>

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
Version
Id:
RPCDetId.cc,v 1.24 2009/05/31 15:32:35 mmaggi Exp
Date
02 Aug 2005

Definition in file RPCDetId.cc.

Function Documentation

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

Definition at line 265 of file RPCDetId.cc.

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