File indexing completed on 2023-03-17 10:47:24
0001 #ifndef RPCClusterSize_h
0002 #define RPCClusterSize_h
0003
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005
0006 #include <vector>
0007 #include <map>
0008 #include <iostream>
0009
0010 class RPCClusterSize {
0011 public:
0012
0013 struct ClusterSizeItem {
0014 int dpid;
0015 float clusterSize;
0016
0017 COND_SERIALIZABLE;
0018 };
0019
0020 RPCClusterSize() {}
0021 ~RPCClusterSize() {}
0022
0023 std::vector<ClusterSizeItem> const& getCls() const { return v_cls; }
0024 std::vector<ClusterSizeItem> v_cls;
0025
0026 COND_SERIALIZABLE;
0027 };
0028
0029 #endif