CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCObGasmap.h
Go to the documentation of this file.
1 /*
2  * Payload definition(s): Gas Map (RPCObGasmap)
3  *
4  * $Date: 2009/11/16 13:01:46 $
5  * $Revision: 1.2 $
6  * \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
7  */
8 
9 #ifndef RPCObGasmap_h
10 #define RPCObGasmap_h
11 #include <vector>
12 #include <string>
13 
14 
15 class RPCObGasmap {
16  public:
17  struct GasMap_Item {
18  int dpid;
19  int region;
20  int ring;
21  int station;
22  int sector;
23  int layer;
24  int subsector;
25  int suptype;
26  };
28  virtual ~RPCObGasmap(){}
29  std::vector<GasMap_Item> ObGasMap_rpc;
30  };
31 
32 #endif
33 
virtual ~RPCObGasmap()
Definition: RPCObGasmap.h:28
std::vector< GasMap_Item > ObGasMap_rpc
Definition: RPCObGasmap.h:29