CMS 3D CMS Logo

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