SimultaneousEvaluator¶
-
class
minkit.SimultaneousEvaluator(evaluators, constraints=None)[source]¶ Bases:
minkit.EvaluatorBuild an object to evaluate PDFs on independent data samples. This class is not meant to be used by users.
Parameters: - evaluators (list(UnbinnedEvaluator or BinnedEvaluator)) – list of evaluators to use.
- constraints (list(PDF) or None) – set of constraints to consider in the minimization.
Attributes Summary
argsAll the arguments of the evaluator. dataData sample. pdfProbability density function. Methods Summary
__call__(*values)Evaluate the FCN. fcn()Calculate the value of the FCN with the current set of values. using_caches()Create a context where the cache of the PDF is activated. Attributes Documentation
-
data¶ Data sample.
Type: DataSet or BinnedDataSet
Methods Documentation
-
__call__(*values)[source]¶ Evaluate the FCN. Values must be provided sorted as
PDF.args().Parameters: values (tuple(float)) – set of values to evaluate the FCN. Returns: Value of the FCN. Return type: float See also