Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:30

0001 #ifndef RPCRunIOV_h
0002 #define RPCRunIOV_h
0003 #include <vector>
0004 
0005 class RPCRunIOV {
0006 public:
0007   struct RunIOV_Item {
0008     int run;
0009     int iov1;
0010     int iov2;
0011   };
0012   RPCRunIOV() {}
0013   virtual ~RPCRunIOV() {}
0014   std::vector<RunIOV_Item> ObRunIOV_rpc;
0015 };
0016 
0017 #endif