CMS 3D CMS Logo

SiStripDetId.cc
Go to the documentation of this file.
2 #include <iomanip>
3 
4 std::ostream &operator<<(std::ostream &os, const SiStripDetId &id) {
5  return os << "[SiStripDetId::print]" << std::endl
6  << " rawId : 0x" << std::hex << std::setfill('0') << std::setw(8) << id.rawId() << std::dec
7  << std::endl
8  << " bits[0:24] : " << std::hex << std::setfill('0') << std::setw(8) << (0x01FFFFFF & id.rawId())
9  << std::dec << std::endl
10  << " Detector : " << id.det() << std::endl
11  << " SubDetector : " << id.subdetId() << std::endl
12  << " reserved : " << id.reserved();
13 }
std::ostream & operator<<(std::ostream &os, const SiStripDetId &id)
Definition: SiStripDetId.cc:4
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:18