4 #include "opals/config.hpp"
5 #include "opals/String.hpp"
6 #include "opals/Vector.hpp"
7 #include "opals/CustomOptionType.hpp"
11 struct DistributionDescriptionAccess;
61 Distribution getDistribution()
const;
63 unsigned getParamCount()
const;
64 double getParamValue(
unsigned idx)
const;
65 Value getParamType(
unsigned idx)
const;
68 DistributionDescription copyFill(
double min,
double max,
double mean,
double median,
double mode,
double stdDev,
double stdDevMAD,
double rms,
double skewness)
const;
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);
80 void validate()
const;
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);
95 static const char* help(
bool);
96 static const char* syntax();
97 static bool exportsPythonType();
101 void addValue(Value v);
102 void addValue(
double v);
103 void addValue(
unsigned v);
105 Distribution distribution;
110 friend struct DistributionDescriptionAccess;