Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /*
0002  * Payload definition(s): Chamber Gas Flow In and Out (RPCObGas)
0003  *
0004  *  $Date: 2009/11/16 12:53:47 $
0005  *  $Revision: 1.3 $
0006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
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