File indexing completed on 2024-04-06 12:02:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef CondFormatsL1TObjects_L1MuGMTChannelMask_h
0019 #define CondFormatsL1TObjects_L1MuGMTChannelMask_h
0020
0021 #include "CondFormats/Serialization/interface/Serializable.h"
0022
0023 #include <string>
0024
0025 class L1MuGMTChannelMask {
0026 public:
0027 L1MuGMTChannelMask() {}
0028 ~L1MuGMTChannelMask() {}
0029
0030 void setSubsystemMask(const unsigned SubsystemMask) { m_SubsystemMask = SubsystemMask; }
0031 unsigned getSubsystemMask() const { return m_SubsystemMask; }
0032
0033 private:
0034 unsigned m_SubsystemMask;
0035
0036 COND_SERIALIZABLE;
0037 };
0038
0039 #endif