00001 #ifndef RPCClusterSize_h 00002 #define RPCClusterSize_h 00003 00004 #include<vector> 00005 #include<map> 00006 #include<iostream> 00007 #include<boost/cstdint.hpp> 00008 00009 class RPCClusterSize { 00010 00011 public: 00012 00013 00014 //structure suitable for cluster size 00015 struct ClusterSizeItem { 00016 int dpid; 00017 float clusterSize; 00018 }; 00019 00020 00021 RPCClusterSize(){} 00022 ~RPCClusterSize(){} 00023 00024 00025 std::vector<ClusterSizeItem> const & getCls() const {return v_cls;} 00026 std::vector<ClusterSizeItem> v_cls; 00027 00028 }; 00029 00030 #endif //RPCClusterSize_h