CMS 3D CMS Logo

GEMMaskedStrips.h
Go to the documentation of this file.
1 #ifndef CondFormats_GEMObjects_GEMMaskedStrips_h
2 #define CondFormats_GEMObjects_GEMMaskedStrips_h
3 
5 #include <vector>
6 #include <iostream>
7 
9 public:
10  struct MaskItem {
11  int rawId;
12  int strip;
14  };
15 
18 
19  std::vector<MaskItem> const& getMaskVec() const { return maskVec_; }
20  void fillMaskVec(MaskItem m) { maskVec_.push_back(m); }
21 
22 private:
23  std::vector<MaskItem> maskVec_;
24 
26 };
27 #endif
std::vector< MaskItem > maskVec_
std::vector< MaskItem > const & getMaskVec() const
#define COND_SERIALIZABLE
Definition: Serializable.h:39
void fillMaskVec(MaskItem m)