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:
parent
627b5f316d
commit
053ca037cb
1 changed files with 9 additions and 0 deletions
|
@ -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. */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue