@@ -11,7 +11,7 @@ const std::string docsProgressEventData = R"(The Python binding for the C++ prog
1111The progress event shows the percentage completion for the calculation. This can be emitted by
1212the DREAM algorithm only.
1313
14- Attributes
14+ Parameters
1515----------
1616message : str
1717 The title text for the event.
@@ -29,7 +29,7 @@ const std::string docsPlotEventData = R"(The Python binding for the C++ plotEven
2929The plot event data contains intermediate results from the calculation. This can be emitted
3030by the Simplex and DE algorithms only.
3131
32- Attributes
32+ Parameters
3333----------
3434reflectivity : list
3535 The reflectivity curves for each contrast, with the same range as the data
@@ -78,7 +78,7 @@ with five rows. The rows represent:
7878- 3: the 65th percentile;
7979- 4: the 95th percentile.
8080
81- Attributes
81+ Parameters
8282----------
8383reflectivity : list
8484 The prediction interval data for reflectivity of each contrast.
@@ -98,7 +98,7 @@ struct PredictionIntervals
9898const std::string docsConfidenceIntervals = R"( The Python binding for the C++ confidenceIntervals struct.
9999The 65% and 95% confidence intervals for the best fit results.
100100
101- Attributes
101+ Parameters
102102----------
103103percentile95 : np.ndarray[np.float]
104104 The 95% confidence intervals for each fit parameter.
@@ -118,7 +118,7 @@ struct ConfidenceIntervals
118118const std::string docsNestedSamplerOutput = R"( The Python binding for the C++ nestedSamplerOutput struct.
119119The output information from the Nested Sampler (ns).
120120
121- Attributes
121+ Parameters
122122----------
123123logZ : float
124124 The natural logarithm of the evidence Z for the parameter values.
@@ -146,7 +146,7 @@ struct NestedSamplerOutput
146146const std::string docsDreamParams = R"( The Python binding for the C++ dreamParams struct.
147147The parameters used by the inner DREAM algorithm.
148148
149- Attributes
149+ Parameters
150150----------
151151nParams : float
152152 The number of parameters used by the algorithm.
@@ -217,7 +217,7 @@ struct DreamParams
217217const std::string docsDreamOutput = R"( The Python binding for the C++ DreamOutput struct.
218218The diagnostic output information from DREAM.
219219
220- Attributes
220+ Parameters
221221----------
222222allChains : np.ndarray[np.float]
223223 An ``nGenerations`` x ``nParams + 2`` x ``nChains`` size array,
@@ -268,7 +268,7 @@ struct DreamOutput
268268const std::string docsBayesResults = R"( The Python binding for the C++ bayesResults struct.
269269The results of a Bayesian RAT calculation.
270270
271- Attributes
271+ Parameters
272272----------
273273predictionIntervals : RATapi.rat_core.orePredictionIntervals
274274 The prediction intervals.
@@ -298,7 +298,7 @@ struct BayesResults
298298const std::string docsCalculation = R"( The Python binding for the C++ calculationResult struct.
299299The goodness of fit from the Abeles calculation.
300300
301- Attributes
301+ Parameters
302302----------
303303chiValues : np.ndarray[np.float]
304304 The chi-squared value for each contrast.
@@ -315,7 +315,7 @@ struct Calculation
315315const std::string docsContrastParams = R"( The Python binding for the C++ contrastParams struct.
316316The experimental parameters for each contrast.
317317
318- Attributes
318+ Parameters
319319----------
320320scalefactors : np.ndarray[np.float]
321321 The scalefactor values for each contrast.
@@ -340,7 +340,7 @@ struct ContrastParams
340340
341341const std::string docsOutputResult = R"( The C++ result struct of a RAT calculation.
342342
343- Attributes
343+ Parameters
344344----------
345345reflectivity : list
346346 The reflectivity curves for each contrast, with the same range as the data
@@ -389,7 +389,7 @@ struct OutputResult {
389389const std::string docsPriors = R"( The Python binding for the C++ priors struct.
390390The priors for each parameter defined in the project.
391391
392- Attributes
392+ Parameters
393393----------
394394params : list
395395 Priors for params in the problem definition.
@@ -431,7 +431,7 @@ struct Priors
431431const std::string docsLimits = R"( The Python binding for the C++ limit struct which contains
432432Min and max values for each parameter defined in the project.
433433
434- Attributes
434+ Parameters
435435----------
436436params : np.ndarray[np.float]
437437 Limits for params in the problem definition.
@@ -465,7 +465,7 @@ struct Limits {
465465const std::string docsNameStore = R"( The Python binding for the C++ names struct which
466466contains names of all parameters in the project.
467467
468- Attributes
468+ Parameters
469469----------
470470params : list
471471 Names of params in the problem definition.
@@ -501,7 +501,7 @@ struct NameStore {
501501const std::string docsChecks = R"( The Python binding for the C++ checks struct which contains
502502flags indicating which parameters should be fitted in the project.
503503
504- Attributes
504+ Parameters
505505----------
506506params : np.ndarray[np.float]
507507 Non-zero values indicates which params is fitted.
@@ -534,7 +534,7 @@ struct Checks {
534534
535535const std::string docsProblemDefinition = R"( The Python binding for the C++ problem struct.
536536
537- Attributes
537+ Parameters
538538----------
539539TF : str
540540 The target function for the calculation which can be 'normal' or 'domains'.
@@ -673,7 +673,7 @@ struct ProblemDefinition {
673673
674674const std::string docsControl = R"( The Python binding for the C++ controls struct.
675675
676- Attributes
676+ Parameters
677677----------
678678parallel : str
679679 How the calculation should be parallelised (This uses the Parallel Computing Toolbox). Can be 'single', 'contrasts' or 'points'.
0 commit comments