File indexing completed on 2023-03-17 10:50:23
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef L1MUBM_TRACK_ASS_PARAM_H
0012 #define L1MUBM_TRACK_ASS_PARAM_H
0013
0014 #include <iosfwd>
0015 #include <string>
0016
0017
0018 const int MAX_TC = 11;
0019
0020
0021 enum TrackClass { T1234, T123, T124, T134, T234, T12, T14, T13, T24, T23, T34, UNDEF };
0022
0023
0024 std::ostream& operator<<(std::ostream& s, TrackClass tc);
0025
0026
0027 const unsigned int tc2bitmap(const TrackClass tc);
0028
0029
0030 const std::string tc2string(const TrackClass tc);
0031
0032 #endif