File indexing completed on 2023-03-17 10:47:25
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef RPCObGas_h
0010 #define RPCObGas_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012
0013 #include <vector>
0014
0015 class RPCObGas {
0016 public:
0017 struct Item {
0018 int dpid;
0019 float flowin;
0020 float flowout;
0021 int day;
0022 int time;
0023
0024 COND_SERIALIZABLE;
0025 };
0026 RPCObGas() {}
0027 virtual ~RPCObGas() {}
0028 std::vector<Item> ObGas_rpc;
0029
0030 COND_SERIALIZABLE;
0031 };
0032
0033 #endif