CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/CondFormats/L1TObjects/interface/L1MuGMTChannelMask.h

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00003 //   \class L1MuGMTChannelMask
00004 //
00008 //
00009 //   $Date: 2008/11/05 17:19:49 $
00010 //   $Revision: 1.1 $
00011 //
00012 //
00013 //   Author :
00014 //   Ivan Mikulec      HEPHY / Vienna
00015 //
00016 //
00017 //--------------------------------------------------
00018 #ifndef CondFormatsL1TObjects_L1MuGMTChannelMask_h
00019 #define CondFormatsL1TObjects_L1MuGMTChannelMask_h
00020 
00021 #include <string>
00022 
00023 class L1MuGMTChannelMask {
00024 public:
00025   L1MuGMTChannelMask() {}
00026   ~L1MuGMTChannelMask() {}
00027   
00028   void setSubsystemMask(const unsigned SubsystemMask) { m_SubsystemMask = SubsystemMask; }
00029   unsigned getSubsystemMask() const { return m_SubsystemMask; }
00030 
00031 private:
00032 
00033   unsigned m_SubsystemMask;
00034 
00035 };
00036 
00037 
00038 #endif
00039