CMS 3D CMS Logo

L1MuDTTrackAssParam.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Description: Parameters for Track Assembler
4 //
5 //
6 //
7 // Author :
8 // N. Neumeister CERN EP
9 //
10 //--------------------------------------------------
11 #ifndef L1MUDT_TRACK_ASS_PARAM_H
12 #define L1MUDT_TRACK_ASS_PARAM_H
13 
14 #include <iosfwd>
15 #include <string>
16 
17 //@@ number of Track Classes
18 const int MAX_TC = 11;
19 
20 //@@ defined Track Classes ordered in decreasing priority
22  T12, T14, T13, T24, T23, T34, UNDEF };
23 
24 // overload output stream operator for TrackClass
25 std::ostream& operator<<( std::ostream& s, TrackClass tc);
26 
27 // convert TrackClass to bitmap
28 const unsigned int tc2bitmap(const TrackClass tc);
29 
30 // convert TrackClass to graphical format
31 const std::string tc2string(const TrackClass tc);
32 
33 #endif
const std::string tc2string(const TrackClass tc)
const unsigned int tc2bitmap(const TrackClass tc)
std::ostream & operator<<(std::ostream &s, TrackClass tc)
const int MAX_TC