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 
10  public:
11  struct MaskItem {
12  int rawId;
13  int strip;
15  };
16 
19 
20  std::vector<MaskItem> const & getMaskVec() const {return maskVec_;}
21  void fillMaskVec(MaskItem m) {maskVec_.push_back(m);}
22 
23  private:
24  std::vector<MaskItem> maskVec_;
25 
27 };
28 #endif
std::vector< MaskItem > const & getMaskVec() const
std::vector< MaskItem > maskVec_
#define COND_SERIALIZABLE
Definition: Serializable.h:38
void fillMaskVec(MaskItem m)