CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCClusterSize.h
Go to the documentation of this file.
1 #ifndef RPCClusterSize_h
2 #define RPCClusterSize_h
3 
4 #include<vector>
5 #include<map>
6 #include<iostream>
7 #include<boost/cstdint.hpp>
8 
10 
11  public:
12 
13 
14  //structure suitable for cluster size
15  struct ClusterSizeItem {
16  int dpid;
17  float clusterSize;
18  };
19 
20 
23 
24 
25  std::vector<ClusterSizeItem> const & getCls() const {return v_cls;}
26  std::vector<ClusterSizeItem> v_cls;
27 
28 };
29 
30 #endif //RPCClusterSize_h
std::vector< ClusterSizeItem > v_cls
std::vector< ClusterSizeItem > const & getCls() const