Loading [MathJax]/extensions/tex2jax.js
DistributionDescription.hpp
1 #pragma once
2 
3 //OPALS
4 #include "opals/config.hpp"
5 #include "opals/String.hpp"
6 #include "opals/Vector.hpp"
7 #include "opals/CustomOptionType.hpp"
8 
9 namespace opals
10 {
11  struct DistributionDescriptionAccess;
12 
13  /// \brief Description of a variety of different statistical distribution
14  ///
15  ///
16  /// \author JO
17  /// \date 01.09.2023
18  class OPALS_API DistributionDescription : public CustomOptionType<DistributionDescription>
19  {
20  public:
21 
22  /// supported distributions
23  enum struct Distribution {
24  none,
25  normal, ///< Normal (Gaussian) Distribution (2 parameters: mean, stdDev)
26  chiSquare, ///< Chi Squared Distribution (1 parameter: degrees of freedom)
27  exponential, ///< Exponential Distribution (1 parameter: lambda)
28  fisher, ///< F Distribution (2 parameters: degrees of freedom1, degrees of freedom2)
29  poisson, ///< Poisson Distribution (1 parameter: mean)
30  rayleigh, ///< Rayleigh Distribution (1 parameter: sigma)
31  students ///< Students t Distribution (1 parameter: degrees of freedom)
32  };
33 
34  /// supported distributions
35  enum struct Value {
36  nummeric,
37  min,
38  max,
39  mean,
40  median,
41  mode,
42  stdDev,
43  stdDevMAD,
44  rms,
45  skewness
46  };
47 
50  DistributionDescription(Distribution type, double param1); ///< initialize single parameter distributions
51  DistributionDescription(Distribution type, Value param1); ///< initialize single parameter distributions
52  DistributionDescription(Distribution type, double param1, double param2); ///< initialize dual parameter distributions
53  DistributionDescription(Distribution type, Value param1, double param2); ///< initialize dual parameter distributions
54  DistributionDescription(Distribution type, Value param1, Value param2); ///< initialize dual parameter distributions
55  virtual ~DistributionDescription();
56 
57  bool isEmpty() const;
58 
59  void reset();
60 
61  Distribution getDistribution() const;
62 
63  unsigned getParamCount() const;
64  double getParamValue(unsigned idx) const;
65  Value getParamType(unsigned idx) const;
66 
67  /// creates new DistributionDescription object and fill in all non numeric parameters with the given values
68  DistributionDescription copyFill(double min, double max, double mean, double median, double mode, double stdDev, double stdDevMAD, double rms, double skewness) const;
69 
70  //generic set function. make sure that you call validate afterwards
71  void setDistribution(Distribution type);
72  void setParam(unsigned degrees_of_freedom1);
73  void setParam(unsigned degrees_of_freedom1, unsigned degrees_of_freedom2);
74  void setParam(double param1);
75  void setParam(Value param1, Value param2);
76  void setParam(Value param1, double param2);
77  void setParam(double param1, double param2);
78  void setParam(double param1, Value param2);
79 
80  void validate() const; ///< validates combination of parameters and throws exception if they are invalid
81 
82  void setNormal(Value mean, Value stdDev);
83  void setNormal(Value mean, double stdDev);
84  void setNormal(double mean, double stdDev);
85  void setNormal(double mean, Value stdDev);
86  void setChiSquare(unsigned degrees_of_freedom);
87  void setExponential(double lambda);
88  void setExponential(Value lambda);
89  void setFisher(unsigned degrees_of_freedom1, unsigned degrees_of_freedom2);
90  void setPoisson(double mean);
91  void setPoisson(Value mean);
92  void setRayleigh(Value sigma);
93  void setStudents(unsigned degrees_of_freedom);
94 
95  static const char* help(bool);
96  static const char* syntax();
97  static bool exportsPythonType();
98 
99  protected:
100  void clearParam();
101  void addValue(Value v);
102  void addValue(double v);
103  void addValue(unsigned v);
104 
105  Distribution distribution;
106 
107  opals::Vector<Value> valueTypes;
108  opals::Vector<double> nummericValues;
109 
110  friend struct DistributionDescriptionAccess;
111  };
112 }
Base class for all custom parameter types.
Definition: CustomOptionType.hpp:39
Description of a variety of different statistical distribution.
Definition: DistributionDescription.hpp:18
Distribution
supported distributions
Definition: DistributionDescription.hpp:23
Value
supported distributions
Definition: DistributionDescription.hpp:35
@ mean
Mean.
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
@ none
Suppress all logging output.
A dynamic character string whose interface conforms to STL's std::string.
Definition: String.hpp:35