Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
CorrelationProxy.cpp
Go to the documentation of this file.
1#include "CorrelationProxy.h"
2
7 const ParamId& pid_2,
9 return this->cp(pid_1, pid_2, type);
10}
11
16 const ExperimentObs& oid_2,
18 return this->cp(oid_1, oid_2, type);
19}
20
24double CorrelationProxy::operator()(const std::string& experiment,
25 const Observables& oid_1,
26 const Observables& oid_2,
28 return this->cp(experiment, oid_1, oid_2, type);
29}
30
34double CorrelationProxy::operator()(const std::string& experiment,
35 const ObservableId& oid_1,
36 const ObservableId& oid_2,
38 return this->cp(experiment, oid_1, oid_2, type);
39}
40
44double CorrelationProxy::operator()(const std::string& experiment,
45 const BinnedObservableId& oid_1,
46 const BinnedObservableId& oid_2,
48 return this->cp(experiment, oid_1, oid_2, type);
49}
50
54double CorrelationProxy::operator()(const std::string& exp_1,
55 const BinnedObservableId& oid_1,
56 const std::string& exp_2,
57 const BinnedObservableId& oid_2,
59 return this->cp(exp_1, oid_1, exp_2, oid_2, type);
60}
Proxy “user-facing” to retrieve correlations between parameters or experiment-scoped observables.
Observables
Definition GeneralEnum.h:4
CorrelationType
Type of correlation component requested.
double operator()(const ParamId &pid_1, const ParamId &pid_2, Type type) override
Returns the requested correlation quantity for two parameters.
Identifies an observable together with a numerical bin.
Composite identifier for a single parameter.
Definition ParamID.h:57