#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) |
Definition in file RPCDetId.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const RPCDetId & | id | |||
) |
Definition at line 251 of file RPCDetId.cc.
00251 { 00252 00253 00254 os << " Re "<<id.region() 00255 << " Ri "<<id.ring() 00256 << " St "<<id.station() 00257 << " Se "<<id.sector() 00258 << " La "<<id.layer() 00259 << " Su "<<id.subsector() 00260 << " Ro "<<id.roll() 00261 << " Tr "<<id.trIndex() 00262 <<" "; 00263 00264 return os; 00265 }