CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCObGasMix.h
Go to the documentation of this file.
1 /*
2  * Payload definition(s): Chamber Gas Mix (RPCObGasMix)
3  *
4  * $Date: 2009/12/13 09:56:28 $
5  * $Revision: 1.1 $
6  * \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
7  */
8 
9 #ifndef RPCObGasMix_h
10 #define RPCObGasMix_h
12 
13 #include <vector>
14 
15 class RPCObGasMix {
16  public:
17  struct Item {
18  int unixtime;
19  float gas1; // IC4H10
20  float gas2; // C2H2F4
21  float gas3; // SF6
22 
24 };
26  virtual ~RPCObGasMix(){}
27  std::vector<Item> ObGasMix_rpc;
28 
30 };
31 
32 #endif
33 
std::vector< Item > ObGasMix_rpc
Definition: RPCObGasMix.h:27
#define COND_SERIALIZABLE
Definition: Serializable.h:37
virtual ~RPCObGasMix()
Definition: RPCObGasMix.h:26