Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef L1MUDT_TRACK_ASS_PARAM_H
00014 #define L1MUDT_TRACK_ASS_PARAM_H
00015
00016 #include <iosfwd>
00017 #include <string>
00018
00019
00020 const int MAX_TC = 11;
00021
00022
00023 enum TrackClass { T1234, T123, T124, T134, T234,
00024 T12, T14, T13, T24, T23, T34, UNDEF };
00025
00026
00027 std::ostream& operator<<( std::ostream& s, TrackClass tc);
00028
00029
00030 const unsigned int tc2bitmap(const TrackClass tc);
00031
00032
00033 const std::string tc2string(const TrackClass tc);
00034
00035 #endif