Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DTRecHit_DTEnums_H
0002 #define DTRecHit_DTEnums_H
0003 
0004 /** \class DTEnums
0005  *  Define some useful enums for DTs
0006  *
0007  *  \author G. Cerminara - INFN Torino
0008  */
0009 
0010 #include <ostream>
0011 
0012 namespace DTEnums {
0013 
0014   /// Which side of the DT cell
0015   enum DTCellSide { undefLR = 0, Right = 1, Left = 2 };
0016 
0017 }  // namespace DTEnums
0018 
0019 std::ostream& operator<<(std::ostream& s, DTEnums::DTCellSide p);
0020 
0021 #endif