EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Statistics.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_STATISTICS_HPP_
2 #define ORG_EEROS_CORE_STATISTICS_HPP_
3 
4 namespace eeros {
5 
6  class Statistics {
7  public:
8  Statistics();
9  Statistics(long max_count);
10  void add(double value);
11  void reset();
12 
13  long max_count;
14  long count;
15  double min;
16  double max;
17  double mean;
18  };
19 };
20 
21 #endif // ORG_EEROS_CORE_STATISTICS_HPP_
double min
Definition: Statistics.hpp:15
double mean
Definition: Statistics.hpp:17
long max_count
Definition: Statistics.hpp:13
Definition: Statistics.hpp:6
void reset()
Definition: Statistics.cpp:26
Statistics()
Definition: Statistics.cpp:8
void add(double value)
Definition: Statistics.cpp:12
long count
Definition: Statistics.hpp:14
double max
Definition: Statistics.hpp:16