File indexing completed on 2024-09-07 04:35:51
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef DataFormats_CTPPSDigi_TotemRPDigi
0011 #define DataFormats_CTPPSDigi_TotemRPDigi
0012
0013
0014
0015
0016 class TotemRPDigi {
0017 public:
0018 TotemRPDigi(unsigned short strip_no = 0) : strip_no_(strip_no) {}
0019
0020 unsigned short stripNumber() const { return strip_no_; }
0021
0022 private:
0023
0024 unsigned short strip_no_;
0025 };
0026
0027 inline bool operator<(const TotemRPDigi& one, const TotemRPDigi& other) {
0028 return one.stripNumber() < other.stripNumber();
0029 }
0030
0031 #endif