1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Payload definition(s): Gas Map (RPCObGasmap)
*
* $Date: 2009/11/16 12:53:47 $
* $Revision: 1.3 $
* \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
*/
#ifndef RPCObGasmap_h
#define RPCObGasmap_h
#include "CondFormats/Serialization/interface/Serializable.h"
#include <vector>
#include <string>
class RPCObGasmap {
public:
struct GasMap_Item {
int dpid;
int region;
int ring;
int station;
int sector;
int layer;
int subsector;
int suptype;
COND_SERIALIZABLE;
};
RPCObGasmap() {}
virtual ~RPCObGasmap() {}
std::vector<GasMap_Item> ObGasMap_rpc;
COND_SERIALIZABLE;
};
#endif
|