statistics.hpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2017 CNRS
3 //
4 // This file is part of tsid
5 // tsid is free software: you can redistribute it
6 // and/or modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation, either version
8 // 3 of the License, or (at your option) any later version.
9 // tsid is distributed in the hope that it will be
10 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
11 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // General Lesser Public License for more details. You should have
13 // received a copy of the GNU Lesser General Public License along with
14 // tsid If not, see
15 // <http://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef __invdyn_statistics_H__
19 #define __invdyn_statistics_H__
20 
21 #include <iostream>
22 #include <map>
23 #include <sstream>
24 
25 #define STATISTICS_MAX_NAME_LENGTH 60
26 
27 // Generic statistics exception class
29  public:
30  StatisticsException(std::string error) : error(error) {}
31  std::string error;
32 };
33 
66 class Statistics {
67  public:
69  Statistics();
70 
72  ~Statistics();
73 
75  bool quantity_exists(std::string name);
76 
78  void store(std::string name, const double& value);
79 
81  void reset(std::string name);
82 
84  void reset_all();
85 
87  void report(std::string name, int precision = 2,
88  std::ostream& output = std::cout);
89 
91  void report_all(int precision = 2, std::ostream& output = std::cout);
92 
94  long double get_total(std::string name);
95 
97  long double get_average(std::string name);
98 
100  long double get_min(std::string name);
101 
103  long double get_max(std::string name);
104 
106  long double get_last(std::string name);
107 
110  void turn_off();
111 
113  void turn_on();
114 
115  protected:
117  struct QuantityData {
118  QuantityData() : total(0), min(0), max(0), last(0), stops(0) {}
119 
121  long double total;
122 
124  long double min;
125 
127  long double max;
128 
130  long double last;
131 
133  int stops;
134  };
135 
137  bool active;
138 
141  std::map<std::string, QuantityData>* records_of;
142 };
143 
145 
146 #endif
JointCollectionTpl const DataTpl< Scalar, Options, JointCollectionTpl > const Eigen::MatrixBase< Mat > & min
std::string error
Definition: statistics.hpp:31
std::map< std::string, QuantityData > * records_of
Definition: statistics.hpp:141
AD< Scalar > max(const AD< Scalar > &x, const AD< Scalar > &y)
A class to compute statistics about quantities of interest.
Definition: statistics.hpp:66
StatisticsException(std::string error)
Definition: statistics.hpp:30
float value
Statistics & getStatistics()
Definition: statistics.cpp:25


tsid
Author(s): Andrea Del Prete, Justin Carpentier
autogenerated on Sun Jul 2 2023 02:21:51