CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/CondFormats/RPCObjects/interface/RPCObGas.h

Go to the documentation of this file.
00001 /*
00002  * Payload definition(s): Chamber Gas Flow In and Out (RPCObGas)
00003  *
00004  *  $Date: 2009/11/16 13:00:18 $
00005  *  $Revision: 1.2 $
00006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00007  */
00008 
00009 #ifndef RPCObGas_h
00010 #define RPCObGas_h
00011 #include <vector>
00012 
00013 class RPCObGas {
00014     public:
00015       struct Item {
00016         int dpid;
00017         float flowin;
00018         float flowout;
00019         int day;
00020         int time;
00021       };
00022     RPCObGas(){}
00023     virtual ~RPCObGas(){}
00024     std::vector<Item>  ObGas_rpc;
00025    };
00026 
00027 #endif
00028