CMS 3D CMS Logo

BTLDetId.cc
Go to the documentation of this file.
2 #include <iomanip>
3 
4 std::ostream& operator<< ( std::ostream& os, const BTLDetId& id ) {
5  os << ( MTDDetId& ) id;
6  os << " BTL " << std::endl
7  << " Side : " << id.mtdSide() << std::endl
8  << " Rod : " << id.mtdRR() << std::endl
9  << " Module : " << id.module() << std::endl
10  << " Crystal type: " << id.modType() << std::endl
11  << " Crystal : " << id.crystal() << std::endl;
12  return os;
13 }
Detector identifier base class for the MIP Timing Layer.
Definition: MTDDetId.h:21
Detector identifier class for the Barrel Timing Layer. The crystal count must start from 0...
Definition: BTLDetId.h:17
std::ostream & operator<<(std::ostream &os, const BTLDetId &id)
Definition: BTLDetId.cc:4