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
|
#ifndef RPCClusterSize_h
#define RPCClusterSize_h
#include "CondFormats/Serialization/interface/Serializable.h"
#include <vector>
#include <map>
#include <iostream>
class RPCClusterSize {
public:
//structure suitable for cluster size
struct ClusterSizeItem {
int dpid;
float clusterSize;
COND_SERIALIZABLE;
};
RPCClusterSize() {}
~RPCClusterSize() {}
std::vector<ClusterSizeItem> const& getCls() const { return v_cls; }
std::vector<ClusterSizeItem> v_cls;
COND_SERIALIZABLE;
};
#endif //RPCClusterSize_h
|