CMS 3D CMS Logo

DTSectCollId.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: DTSectCollId.cc
4 //
5 // Description: Definition of sector collectors
6 //
7 //
8 // Author List:
9 // S. Marcellini
10 // Modifications:
11 // 11/12/06 C.Battilana : new SectCollId definitions
12 //
13 //
14 //--------------------------------------------------
15 
16 
17 //-----------------------
18 // This Class's Header --
19 //-----------------------
21 
22 //-------------------------------
23 // Collaborating Class Headers --
24 //-------------------------------
25 
26 
27 //---------------
28 // C++ Headers --
29 //---------------
30 
31 
32 
33 #include <iostream>
34 std::ostream& operator<<(std::ostream &os, const DTSectCollId& id){
35  os << "Wheel: " << id.wheel()
36  << " Sector: " << id.sector();
37  return os;
38 }
39 
40 
std::ostream & operator<<(std::ostream &os, const DTSectCollId &id)
Definition: DTSectCollId.cc:34