CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PXFDetId.cc
Go to the documentation of this file.
2 
4 }
5 
6 PXFDetId::PXFDetId(uint32_t rawid) : DetId(rawid) {
7 }
8 PXFDetId::PXFDetId(const DetId& id) : DetId(id.rawId()) {
9 }
10 
11 std::ostream& operator<<(std::ostream& os,const PXFDetId& id) {
12  return os << "(PixelEndcap "
13  << id.disk() << ','
14  << id.blade() << ','
15  << id.panel() << ','
16  << id.module() << ')';
17 }
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
Definition: DetId.h:20
PXFDetId()
Definition: PXFDetId.cc:3