Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:20

0001 //-------------------------------------------------
0002 //
0003 //   \class L1MuGMTChannelMask
0004 //
0005 /**   Description:   GMT input channel mask
0006  *                  
0007 */
0008 //
0009 //   $Date$
0010 //   $Revision$
0011 //
0012 //
0013 //   Author :
0014 //   Ivan Mikulec      HEPHY / Vienna
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