RPCRunIOV

RunIOV_Item

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef RPCRunIOV_h
#define RPCRunIOV_h
#include <vector>

class RPCRunIOV {
public:
  struct RunIOV_Item {
    int run;
    int iov1;
    int iov2;
  };
  RPCRunIOV() {}
  virtual ~RPCRunIOV() {}
  std::vector<RunIOV_Item> ObRunIOV_rpc;
};

#endif