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 
10  public:
11  struct DeadItem {
12  int rawId;
13  int strip;
15  };
16 
19 
20  std::vector<DeadItem> const & getDeadVec() const {return deadVec_;}
21 
22  private:
23  std::vector<DeadItem> deadVec_;
24 
26 };
27 #endif
#define COND_SERIALIZABLE
Definition: Serializable.h:38
std::vector< DeadItem > deadVec_
Definition: GEMDeadStrips.h:23
std::vector< DeadItem > const & getDeadVec() const
Definition: GEMDeadStrips.h:20