CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCDeadStrips.h
Go to the documentation of this file.
1 #ifndef RPCDeadStrips_h
2 #define RPCDeadStrips_h
3 
4 #include<vector>
5 #include<iostream>
6 #include<boost/cstdint.hpp>
7 
8 
9 class RPCDeadStrips {
10 
11  public:
12 
13  struct DeadItem {
14  int rawId;
15  int strip;
16  };
17 
19 
21 
22  std::vector<DeadItem> const & getDeadVec() const {return DeadVec;}
23 
24  std::vector<DeadItem> DeadVec;
25 
26 };
27 
28 #endif
std::vector< DeadItem > DeadVec
Definition: RPCDeadStrips.h:24
std::vector< DeadItem > const & getDeadVec() const
Definition: RPCDeadStrips.h:22