CMS 3D CMS Logo

ETLDetId.cc
Go to the documentation of this file.
2 #include <iomanip>
3 
4 std::ostream& operator<<(std::ostream& os, const ETLDetId& id) {
5  os << (MTDDetId&)id;
6  os << " ETL " << std::endl
7  << " Side : " << id.mtdSide() << std::endl
8  << " Ring : " << id.mtdRR() << " "
9  << " Disc/Side/Sector = " << id.nDisc() << " " << id.discSide() << " " << id.sector() << std::endl
10  << " Module : " << id.module() << std::endl
11  << " Module type : " << id.modType() << std::endl;
12  return os;
13 }
Detector identifier base class for the MIP Timing Layer.
Definition: MTDDetId.h:21
std::ostream & operator<<(std::ostream &os, const ETLDetId &id)
Definition: ETLDetId.cc:4
Detector identifier class for the Endcap Timing Layer.
Definition: ETLDetId.h:15