File indexing completed on 2023-03-17 10:47:22
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef CondFormats_PPSObjects_TotemSymbId
0010 #define CondFormats_PPSObjects_TotemSymbId
0011
0012 #include <iostream>
0013
0014
0015
0016
0017 class TotemSymbID {
0018 public:
0019
0020 unsigned int symbolicID;
0021
0022 bool operator<(const TotemSymbID &sid) const { return (symbolicID < sid.symbolicID); }
0023
0024 bool operator==(const TotemSymbID &sid) const { return (symbolicID == sid.symbolicID); }
0025
0026 friend std::ostream &operator<<(std::ostream &s, const TotemSymbID &sid);
0027 };
0028
0029 #endif