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 Mix (RPCObGasMix)
0003  *
0004  *  $Date: 2009/12/13 09:56:28 $
0005  *  $Revision: 1.1 $
0006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
0007  */
0008 
0009 #ifndef RPCObGasMix_h
0010 #define RPCObGasMix_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012 
0013 #include <vector>
0014 
0015 class RPCObGasMix {
0016 public:
0017   struct Item {
0018     int unixtime;
0019     float gas1;  // IC4H10
0020     float gas2;  // C2H2F4
0021     float gas3;  // SF6
0022 
0023     COND_SERIALIZABLE;
0024   };
0025   RPCObGasMix() {}
0026   virtual ~RPCObGasMix() {}
0027   std::vector<Item> ObGasMix_rpc;
0028 
0029   COND_SERIALIZABLE;
0030 };
0031 
0032 #endif