Skip to content

Commit 9bde833

Browse files
committed
Changes attributes to parameters
1 parent 2926195 commit 9bde833

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

cpp/includes/defines.h

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const std::string docsProgressEventData = R"(The Python binding for the C++ prog
1111
The progress event shows the percentage completion for the calculation. This can be emitted by
1212
the DREAM algorithm only.
1313
14-
Attributes
14+
Parameters
1515
----------
1616
message : str
1717
The title text for the event.
@@ -29,7 +29,7 @@ const std::string docsPlotEventData = R"(The Python binding for the C++ plotEven
2929
The plot event data contains intermediate results from the calculation. This can be emitted
3030
by the Simplex and DE algorithms only.
3131
32-
Attributes
32+
Parameters
3333
----------
3434
reflectivity : 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
----------
8383
reflectivity : list
8484
The prediction interval data for reflectivity of each contrast.
@@ -98,7 +98,7 @@ struct PredictionIntervals
9898
const std::string docsConfidenceIntervals = R"(The Python binding for the C++ confidenceIntervals struct.
9999
The 65% and 95% confidence intervals for the best fit results.
100100
101-
Attributes
101+
Parameters
102102
----------
103103
percentile95 : np.ndarray[np.float]
104104
The 95% confidence intervals for each fit parameter.
@@ -118,7 +118,7 @@ struct ConfidenceIntervals
118118
const std::string docsNestedSamplerOutput = R"(The Python binding for the C++ nestedSamplerOutput struct.
119119
The output information from the Nested Sampler (ns).
120120
121-
Attributes
121+
Parameters
122122
----------
123123
logZ : float
124124
The natural logarithm of the evidence Z for the parameter values.
@@ -146,7 +146,7 @@ struct NestedSamplerOutput
146146
const std::string docsDreamParams = R"(The Python binding for the C++ dreamParams struct.
147147
The parameters used by the inner DREAM algorithm.
148148
149-
Attributes
149+
Parameters
150150
----------
151151
nParams : float
152152
The number of parameters used by the algorithm.
@@ -217,7 +217,7 @@ struct DreamParams
217217
const std::string docsDreamOutput = R"(The Python binding for the C++ DreamOutput struct.
218218
The diagnostic output information from DREAM.
219219
220-
Attributes
220+
Parameters
221221
----------
222222
allChains : np.ndarray[np.float]
223223
An ``nGenerations`` x ``nParams + 2`` x ``nChains`` size array,
@@ -268,7 +268,7 @@ struct DreamOutput
268268
const std::string docsBayesResults = R"(The Python binding for the C++ bayesResults struct.
269269
The results of a Bayesian RAT calculation.
270270
271-
Attributes
271+
Parameters
272272
----------
273273
predictionIntervals : RATapi.rat_core.orePredictionIntervals
274274
The prediction intervals.
@@ -298,7 +298,7 @@ struct BayesResults
298298
const std::string docsCalculation = R"(The Python binding for the C++ calculationResult struct.
299299
The goodness of fit from the Abeles calculation.
300300
301-
Attributes
301+
Parameters
302302
----------
303303
chiValues : np.ndarray[np.float]
304304
The chi-squared value for each contrast.
@@ -315,7 +315,7 @@ struct Calculation
315315
const std::string docsContrastParams = R"(The Python binding for the C++ contrastParams struct.
316316
The experimental parameters for each contrast.
317317
318-
Attributes
318+
Parameters
319319
----------
320320
scalefactors : np.ndarray[np.float]
321321
The scalefactor values for each contrast.
@@ -340,7 +340,7 @@ struct ContrastParams
340340

341341
const std::string docsOutputResult = R"(The C++ result struct of a RAT calculation.
342342
343-
Attributes
343+
Parameters
344344
----------
345345
reflectivity : list
346346
The reflectivity curves for each contrast, with the same range as the data
@@ -389,7 +389,7 @@ struct OutputResult {
389389
const std::string docsPriors = R"(The Python binding for the C++ priors struct.
390390
The priors for each parameter defined in the project.
391391
392-
Attributes
392+
Parameters
393393
----------
394394
params : list
395395
Priors for params in the problem definition.
@@ -431,7 +431,7 @@ struct Priors
431431
const std::string docsLimits = R"(The Python binding for the C++ limit struct which contains
432432
Min and max values for each parameter defined in the project.
433433
434-
Attributes
434+
Parameters
435435
----------
436436
params : np.ndarray[np.float]
437437
Limits for params in the problem definition.
@@ -465,7 +465,7 @@ struct Limits {
465465
const std::string docsNameStore = R"(The Python binding for the C++ names struct which
466466
contains names of all parameters in the project.
467467
468-
Attributes
468+
Parameters
469469
----------
470470
params : list
471471
Names of params in the problem definition.
@@ -501,7 +501,7 @@ struct NameStore {
501501
const std::string docsChecks = R"(The Python binding for the C++ checks struct which contains
502502
flags indicating which parameters should be fitted in the project.
503503
504-
Attributes
504+
Parameters
505505
----------
506506
params : np.ndarray[np.float]
507507
Non-zero values indicates which params is fitted.
@@ -534,7 +534,7 @@ struct Checks {
534534

535535
const std::string docsProblemDefinition = R"(The Python binding for the C++ problem struct.
536536
537-
Attributes
537+
Parameters
538538
----------
539539
TF : str
540540
The target function for the calculation which can be 'normal' or 'domains'.
@@ -673,7 +673,7 @@ struct ProblemDefinition {
673673

674674
const std::string docsControl = R"(The Python binding for the C++ controls struct.
675675
676-
Attributes
676+
Parameters
677677
----------
678678
parallel : str
679679
How the calculation should be parallelised (This uses the Parallel Computing Toolbox). Can be 'single', 'contrasts' or 'points'.

0 commit comments

Comments
 (0)