Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CARTOGRAPHER_COMMON_HISTOGRAM_H_
00018 #define CARTOGRAPHER_COMMON_HISTOGRAM_H_
00019
00020 #include <string>
00021 #include <vector>
00022
00023 #include "cartographer/common/port.h"
00024
00025 namespace cartographer {
00026 namespace common {
00027
00028 class Histogram {
00029 public:
00030 void Add(float value);
00031 std::string ToString(int buckets) const;
00032
00033 private:
00034 std::vector<float> values_;
00035 };
00036
00037 }
00038 }
00039
00040 #endif // CARTOGRAPHER_COMMON_HISTOGRAM_H_