CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/CondFormats/RPCObjects/interface/RPCMaskedStrips.h

Go to the documentation of this file.
00001 #ifndef RPCMaskedStrips_h
00002 #define RPCMaskedStrips_h
00003 
00004 #include<vector>
00005 #include<iostream>
00006 #include<boost/cstdint.hpp>
00007 
00008 
00009 class RPCMaskedStrips {
00010 
00011  public:
00012 
00013   struct MaskItem {
00014     int rawId;
00015     int strip;
00016   };
00017   
00018   RPCMaskedStrips(){}
00019 
00020   ~RPCMaskedStrips(){}
00021 
00022   std::vector<MaskItem> const & getMaskVec() const {return MaskVec;}
00023 
00024   std::vector<MaskItem> MaskVec;
00025 
00026 };
00027 
00028 #endif