Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
, |
|
|
const SiStripDetId & |
|
|
) |
| |
Debug info for SiStripDetId class.
Definition at line 42 of file SiStripDetId.cc.
43 return os <<
"[SiStripDetId::print]" << std::endl
45 << std::hex << std::setfill(
'0') << std::setw(8)
47 << std::dec << std::endl
49 << std::hex << std::setfill(
'0') << std::setw(8)
50 << (0x01FFFFFF &
id.rawId())
51 << std::dec << std::endl
52 <<
" Detector : " <<
id.det() << std::endl
53 <<
" SubDetector : " <<
id.subdetId() << std::endl
54 <<
" reserved : " <<
id.reserved();