CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/DataFormats/SiPixelDetId/src/PXBDetId.cc

Go to the documentation of this file.
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 }