00001 #include <iostream> 00002 #include <vector> 00003 00004 /* \class RPCGas 00005 * 00006 * Definition of RPC Gas data type for O2O 00007 * 00008 * \author Davide Pagano (Pavia) 00009 */ 00010 00011 00012 class RPCGas { 00013 00014 public: 00015 00016 struct GasItem { 00017 int dpid; 00018 float flowin; 00019 float flowout; 00020 int day; 00021 int time; 00022 }; 00023 00024 std::vector<GasItem> Gas_rpc; 00025 00026 RPCGas(){ 00027 00028 std::cout << ">> creating RPC Gas object" << std::endl; 00029 00030 } 00031 virtual ~RPCGas(){} 00032 00033 }; 00034