1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

hist: a few fixes and missing functions

This commit is contained in:
Steffen Vogel 2019-06-04 16:55:21 +02:00
parent 627b5f316d
commit 053ca037cb

View file

@ -85,23 +85,32 @@ public:
{
return high;
}
double getLow() const
{
return low;
}
double getHighest() const
{
return highest;
}
double getLowest() const
{
return lowest;
}
double getLast() const
{
return last;
}
cnt_t getTotal() const
{
return total;
}
protected:
double resolution; /**< The distance between two adjacent buckets. */