histogram.cc
Go to the documentation of this file.
00001 /*
00002  * Copyright 2018 The Cartographer Authors
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *      http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #include "cartographer/metrics/histogram.h"
00018 
00019 #include "glog/logging.h"
00020 
00021 namespace cartographer {
00022 namespace metrics {
00023 
00024 namespace {
00025 
00026 // Implementation of histogram that does nothing.
00027 class NullHistogram : public Histogram {
00028  public:
00029   void Observe(double) override {}
00030 };
00031 
00032 }  // namespace
00033 
00034 Histogram* Histogram::Null() {
00035   static NullHistogram null_histogram;
00036   return &null_histogram;
00037 }
00038 
00039 Histogram::BucketBoundaries Histogram::FixedWidth(double width,
00040                                                   int num_finite_buckets) {
00041   BucketBoundaries result;
00042   double boundary = 0;
00043   for (int i = 0; i < num_finite_buckets; ++i) {
00044     boundary += width;
00045     result.push_back(boundary);
00046   }
00047   return result;
00048 }
00049 
00050 Histogram::BucketBoundaries Histogram::ScaledPowersOf(double base,
00051                                                       double scale_factor,
00052                                                       double max_value) {
00053   CHECK_GT(base, 1);
00054   CHECK_GT(scale_factor, 0);
00055   BucketBoundaries result;
00056   double boundary = scale_factor;
00057   while (boundary < max_value) {
00058     result.push_back(boundary);
00059     boundary *= base;
00060   }
00061   return result;
00062 }
00063 
00064 }  // namespace metrics
00065 }  // namespace cartographer


cartographer
Author(s): The Cartographer Authors
autogenerated on Thu May 9 2019 02:27:35