16#ifndef ALICEO2_ROBUSTAVERAGE_H_
17#define ALICEO2_ROBUSTAVERAGE_H_
46 RobustAverage(
const unsigned int maxValues,
bool withWeights =
true) : mUseWeights{withWeights}
48 mValues.reserve(maxValues);
50 mWeights.reserve(maxValues);
63 void reserve(
const unsigned int maxValues);
75 std::pair<float, float>
getFilteredAverage(
const float sigma = 3,
const float interQuartileRange = 0.9);
78 std::tuple<float, float, float, unsigned int>
filterPointsMedian(
const float maxAbsMedian,
const float sigma = 5);
81 float getMean()
const {
return mValues.empty() ? 0 :
getMean(mValues.begin(), mValues.end()); }
123 std::vector<float> mValues{};
124 std::vector<float> mWeights{};
125 std::vector<float> mTmpValues{};
128 float getMean(std::vector<float>::const_iterator
begin, std::vector<float>::const_iterator
end)
const;
130 float getWeightedMean(std::vector<float>::const_iterator beginValues, std::vector<float>::const_iterator endValues, std::vector<float>::const_iterator beginWeight, std::vector<float>::const_iterator endWeight)
const;
134 float getStdDev(
const float mean, std::vector<float>::const_iterator
begin, std::vector<float>::const_iterator
end);
140 float getFilteredMean(
const float mean,
const float stdev,
const float sigma)
const;
void addValue(const float value, const float weight=1)
float getTrunctedMean(float low, float high)
void setValues(const std::vector< float > &values)
RobustAverage()=default
default constructor
float getQuantile(float quantile, int type)
float getWeightedMean() const
void reserve(const unsigned int maxValues)
void print() const
values which will be averaged and filtered
RobustAverage(std::vector< float > &&values)
std::pair< float, float > getFilteredAverage(const float sigma=3, const float interQuartileRange=0.9)
bool getUseWeights() const
returns if weights are stored
void setUseWeights(bool useweights)
returns if weights are stored
const auto & getValues() const
void clear()
clear the stored values
RobustAverage(const unsigned int maxValues, bool withWeights=true)
const auto & getWeigths() const
std::tuple< float, float, float, unsigned int > filterPointsMedian(const float maxAbsMedian, const float sigma=5)
remove all the point which are abs(val - val_median)>maxAbsMedian
GLuint GLuint GLfloat weight
GLsizei const GLfloat * value
GLint GLint GLsizei GLint GLenum GLenum type
GLenum GLsizei GLsizei GLint * values
Global TPC definitions and constants.
Enum< T >::Iterator begin(Enum< T >)
Defining DataPointCompositeObject explicitly as copiable.