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.26 2011/10/28 17:34:24 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 266 of file RPCDetId.cc.

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