|
||||
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
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |