Expand description
This module contains methods to link Model
s with Dataset
s via a Manager::evaluate
method. This module also holds a ExtendedLogLikelihood
struct which holds two Manager
s
and, as the name suggests, calculates an extended log-likelihood using a very basic method over
data and (accepted) Monte-Carlo.
Structsยง
- Extended
LogLikelihood - The
ExtendedLogLikelihood
stores twoManager
s, one for data and one for a Monte-Carlo dataset used for acceptance correction. These should probably have the sameManager
in practice, but this is left to the user. - Manager
- The
Manager
struct links aModel
to aDataset
and provides methods to manipulate theModel
and evaluate it over theDataset
.