File indexing completed on 2024-04-06 12:19:41
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #ifndef L1MUDT_TRACK_SEG_LOC_H
0021 #define L1MUDT_TRACK_SEG_LOC_H
0022
0023
0024
0025
0026
0027 #include <iosfwd>
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041 class L1MuDTTrackSegLoc {
0042 public:
0043
0044 L1MuDTTrackSegLoc();
0045
0046
0047 L1MuDTTrackSegLoc(int wheel_id, int sector_id, int station_id);
0048
0049
0050 L1MuDTTrackSegLoc(const L1MuDTTrackSegLoc&);
0051
0052
0053 virtual ~L1MuDTTrackSegLoc();
0054
0055
0056 inline int wheel() const { return m_wheel; }
0057
0058
0059 inline int sector() const { return m_sector; }
0060
0061
0062 inline int station() const { return m_station; }
0063
0064
0065 L1MuDTTrackSegLoc& operator=(const L1MuDTTrackSegLoc&);
0066
0067
0068 bool operator==(const L1MuDTTrackSegLoc&) const;
0069
0070
0071 bool operator!=(const L1MuDTTrackSegLoc&) const;
0072
0073
0074 bool operator<(const L1MuDTTrackSegLoc&) const;
0075
0076
0077 friend std::ostream& operator<<(std::ostream&, const L1MuDTTrackSegLoc&);
0078
0079 private:
0080 int m_wheel;
0081 int m_sector;
0082 int m_station;
0083 };
0084
0085 #endif