00001 #include "DataFormats/SiPixelDetId/interface/PXBDetId.h" 00002 00003 PXBDetId::PXBDetId() : DetId() { 00004 } 00005 00006 PXBDetId::PXBDetId(uint32_t rawid) : DetId(rawid) { 00007 } 00008 PXBDetId::PXBDetId(const DetId& id) : DetId(id.rawId()) { 00009 } 00010 00011 00012 std::ostream& operator<<(std::ostream& os,const PXBDetId& id) { 00013 return os << "(PixelBarrel " 00014 << id.layer() << ',' 00015 << id.ladder() << ',' 00016 << id.module() << ')'; 00017 }