DeadItem

RPCDeadStrips

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#ifndef RPCDeadStrips_h
#define RPCDeadStrips_h

#include "CondFormats/Serialization/interface/Serializable.h"

#include <vector>
#include <iostream>

class RPCDeadStrips {
public:
  struct DeadItem {
    int rawId;
    int strip;

    COND_SERIALIZABLE;
  };

  RPCDeadStrips() {}

  ~RPCDeadStrips() {}

  std::vector<DeadItem> const& getDeadVec() const { return DeadVec; }

  std::vector<DeadItem> DeadVec;

  COND_SERIALIZABLE;
};

#endif