CMS 3D CMS Logo

RPCDeadStrips.h
Go to the documentation of this file.
1 #ifndef RPCDeadStrips_h
2 #define RPCDeadStrips_h
3 
5 
6 #include <vector>
7 #include <iostream>
8 
9 class RPCDeadStrips {
10 public:
11  struct DeadItem {
12  int rawId;
13  int strip;
14 
16  };
17 
19 
21 
22  std::vector<DeadItem> const& getDeadVec() const { return DeadVec; }
23 
24  std::vector<DeadItem> DeadVec;
25 
27 };
28 
29 #endif
#define COND_SERIALIZABLE
Definition: Serializable.h:39
std::vector< DeadItem > const & getDeadVec() const
Definition: RPCDeadStrips.h:22
std::vector< DeadItem > DeadVec
Definition: RPCDeadStrips.h:24