Project
Loading...
Searching...
No Matches
RobustAverage.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
15
16#ifndef ALICEO2_ROBUSTAVERAGE_H_
17#define ALICEO2_ROBUSTAVERAGE_H_
18
19#include <vector>
20
21namespace o2::tpc
22{
23
39
41{
42 public:
46 RobustAverage(const unsigned int maxValues, bool withWeights = true) : mUseWeights{withWeights}
47 {
48 mValues.reserve(maxValues);
49 if (mUseWeights) {
50 mWeights.reserve(maxValues);
51 }
52 }
53
55 RobustAverage() = default;
56
59 RobustAverage(std::vector<float>&& values) : mValues{std::move(values)} {};
60
63 void reserve(const unsigned int maxValues);
64
66 void clear();
67
70 void addValue(const float value, const float weight = 1);
71
75 std::pair<float, float> getFilteredAverage(const float sigma = 3, const float interQuartileRange = 0.9);
76
78 std::tuple<float, float, float, unsigned int> filterPointsMedian(const float maxAbsMedian, const float sigma = 5);
79
81 float getMean() const { return mValues.empty() ? 0 : getMean(mValues.begin(), mValues.end()); }
82
86 float getTrunctedMean(float low, float high);
87
89 float getMedian();
90
92 float getWeightedMean() const { return mUseWeights ? getWeightedMean(mValues.begin(), mValues.end(), mWeights.begin(), mWeights.end()) : 0; }
93
95 float getStdDev() { return getStdDev(getMean(), mValues.begin(), mValues.end()); }
96
98 const auto& getValues() const { return mValues; }
99
100 void setValues(const std::vector<float>& values) { mValues = values; }
101
103 const auto& getWeigths() const { return mWeights; }
104
106 void print() const;
107
108 // sorting values and weights
109 void sort();
110
112 bool getUseWeights() const { return mUseWeights; }
113
115 void setUseWeights(bool useweights) { mUseWeights = useweights; }
116
120 float getQuantile(float quantile, int type);
121
122 private:
123 std::vector<float> mValues{};
124 std::vector<float> mWeights{};
125 std::vector<float> mTmpValues{};
126 bool mUseWeights{};
127
128 float getMean(std::vector<float>::const_iterator begin, std::vector<float>::const_iterator end) const;
129
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;
131
134 float getStdDev(const float mean, std::vector<float>::const_iterator begin, std::vector<float>::const_iterator end);
135
140 float getFilteredMean(const float mean, const float stdev, const float sigma) const;
141};
142
143} // namespace o2::tpc
144
145#endif
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 end
Definition glcorearb.h:469
GLuint GLuint GLfloat weight
Definition glcorearb.h:5477
GLsizei const GLfloat * value
Definition glcorearb.h:819
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GLenum GLsizei GLsizei GLint * values
Definition glcorearb.h:1576
Global TPC definitions and constants.
Definition SimTraits.h:167
Enum< T >::Iterator begin(Enum< T >)
Definition Defs.h:173
Defining DataPointCompositeObject explicitly as copiable.