Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-23 15:57:34

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      << " Disc        : " << id.nDisc() << std::endl
0009      << " Side        : " << id.discSide() << std::endl
0010      << " Sector      : " << id.sector() << std::endl
0011      << " Module      : " << id.module() << std::endl
0012      << " Module type : " << id.modType() << std::endl
0013      << " Sensor      : " << id.sensor() << std::endl;
0014   return os;
0015 }