CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/CondFormats/RPCObjects/interface/RPCDeadStrips.h

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