Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:08

0001 #include "DataFormats/ForwardDetId/interface/ETLDetId.h"
0002 #include <iomanip>
0003 
0004 std::ostream& operator<<(std::ostream& os, const ETLDetId& id) {
0005   os << (MTDDetId&)id;
0006   os << " ETL " << std::endl
0007      << " Side        : " << id.mtdSide() << std::endl
0008      << " Ring        : " << id.mtdRR() << "    "
0009      << " Disc/Side/Sector = " << id.nDisc() << " " << id.discSide() << " " << id.sector() << std::endl
0010      << " Module      : " << id.module() << std::endl
0011      << " Module type : " << id.modType() << std::endl
0012      << " Sensor      : " << id.sensor() << std::endl;
0013   return os;
0014 }