|
Laura++
3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
|
The abstract interface for the objects that control the calculation of the likelihood.
More...
#include <LauFitObject.hh>
|
virtual | ~LauFitObject ()=default |
| Destructor.
|
|
void | useAsymmFitErrors (Bool_t useAsymmErrors) |
| Turn on or off the computation of asymmetric errors (e.g. MINOS routine in Minuit) More...
|
|
Bool_t | useAsymmFitErrors () const |
| Report whether or not calculation of asymmetric errors is enabled.
|
|
void | twoStageFit (Bool_t doTwoStageFit) |
| Turn on or off the two stage fit. More...
|
|
Bool_t | twoStageFit () const |
| Report whether the two-stage fit is enabled.
|
|
virtual void | withinAsymErrorCalc (const Bool_t inAsymErrCalc) |
| Mark that the fit is calculating asymmetric errors. More...
|
|
Bool_t | withinAsymErrorCalc () const |
| Query whether the fit is calculating the asymmetric errors. More...
|
|
void | setNExpts (UInt_t nExperiments, UInt_t firstExperiment, Bool_t toyExpts) |
| Set the number of experiments, the first experiment, and whether this is toy. More...
|
|
UInt_t | eventsPerExpt () const |
| Obtain the total number of events in the current experiment.
|
|
UInt_t | nExpt () const |
| Obtain the number of experiments.
|
|
UInt_t | firstExpt () const |
| Obtain the number of the first experiment.
|
|
UInt_t | iExpt () const |
| Obtain the number of the current experiment.
|
|
Bool_t | toyExpts () const |
| Obtain whether this is toy.
|
|
virtual void | setParsFromMinuit (Double_t *par, Int_t npar)=0 |
| This function sets the parameter values from Minuit. More...
|
|
virtual Double_t | getTotNegLogLikelihood ()=0 |
| Calculate the new value of the negative log likelihood. More...
|
|
void | addConstraint (const TString &formula, const std::vector< TString > &pars, const Double_t mean, const Double_t width) |
| Store constraint information for fit parameters. More...
|
|
void | addFormulaConstraint (const TString &formula, const std::vector< TString > &pars, const Double_t mean, const Double_t width) |
| Store constraint information for fit parameters. More...
|
|
void | addMultiDimConstraint (const std::vector< TString > &pars, const TVectorD &means, const TMatrixD &covMat) |
| Store n-dimensional constraint information for fit parameters. More...
|
|
The abstract interface for the objects that control the calculation of the likelihood.
Definition at line 47 of file LauFitObject.hh.
◆ ConstraintType
Enumeration of the different types of constraint.
Enumerator |
---|
Formula | Formula-based constraint on a combination of parameters.
|
MultDim | Multi-dimensional constraint on several parameters.
|
Definition at line 184 of file LauFitObject.hh.
◆ addConstraint()
void LauFitObject::addConstraint |
( |
const TString & |
formula, |
|
|
const std::vector< TString > & |
pars, |
|
|
const Double_t |
mean, |
|
|
const Double_t |
width |
|
) |
| |
Store constraint information for fit parameters.
- Deprecated:
- Renamed to addFormulaConstraint, please switch to use this. Will be dropped in next major release.
- Parameters
-
[in] | formula | the formula to be used in the LauFormulaPar |
[in] | pars | a vector of LauParameter names to be used in the Formula, in the order specified by the formula |
[in] | mean | the value of the mean of the Gaussian constraint |
[in] | width | the value of the width of the Gaussian constraint |
Definition at line 114 of file LauFitObject.cc.
◆ addFormulaConstraint()
void LauFitObject::addFormulaConstraint |
( |
const TString & |
formula, |
|
|
const std::vector< TString > & |
pars, |
|
|
const Double_t |
mean, |
|
|
const Double_t |
width |
|
) |
| |
Store constraint information for fit parameters.
- Parameters
-
[in] | formula | the formula to be used in the LauFormulaPar |
[in] | pars | a vector of LauParameter names to be used in the Formula, in the order specified by the formula |
[in] | mean | the value of the mean of the Gaussian constraint |
[in] | width | the value of the width of the Gaussian constraint |
Definition at line 124 of file LauFitObject.cc.
◆ addMultiDimConstraint()
void LauFitObject::addMultiDimConstraint |
( |
const std::vector< TString > & |
pars, |
|
|
const TVectorD & |
means, |
|
|
const TMatrixD & |
covMat |
|
) |
| |
Store n-dimensional constraint information for fit parameters.
- Parameters
-
[in] | pars | a vector of LauParameter names to be used in the constraint |
[in] | means | the values of the means of the Gaussian constraint |
[in] | covMat | the covariance matrix of the parameters of the Gaussian constraint |
Definition at line 139 of file LauFitObject.cc.
◆ checkRepetition()
Bool_t LauFitObject::checkRepetition |
( |
const std::vector< TString > & |
names, |
|
|
const ConstraintType |
conType |
|
) |
| |
|
protected |
Check if parameters names for constraints have already been used elsewhere.
Also adds the names to the appropriate set
- Parameters
-
[in] | names | a vector of parameter names |
[in] | conType | the type of constraint being added - determines which set to which to add the parmaeters |
- Returns
- kTRUE if no repetitions found, kFALSE if one or more repetitions found
Definition at line 177 of file LauFitObject.cc.
◆ generateConstraintMeans()
void LauFitObject::generateConstraintMeans |
( |
std::vector< LauAbsRValue * > & |
conVars | ) |
|
|
protected |
Generate per-experiment mean for each Gaussian constraint.
Generates a new mean for all Gaussian constraints. The constraints on a single fit parameter and the formula-based constraints are provided as the argument, while the multi-dimensional constraints are already a member variable.
- Parameters
-
[in,out] | conVars | the fit parameter and formula-based constraints |
Definition at line 154 of file LauFitObject.cc.
◆ getTotNegLogLikelihood()
virtual Double_t LauFitObject::getTotNegLogLikelihood |
( |
| ) |
|
|
pure virtual |
◆ setCurrentExperiment()
void LauFitObject::setCurrentExperiment |
( |
const UInt_t |
curExpt | ) |
|
|
inlineprotected |
Set the ID of the current experiment.
- Parameters
-
[in] | curExpt | the experiment number |
Definition at line 298 of file LauFitObject.hh.
◆ setNExpts()
void LauFitObject::setNExpts |
( |
UInt_t |
nExperiments, |
|
|
UInt_t |
firstExperiment, |
|
|
Bool_t |
toyExpts |
|
) |
| |
Set the number of experiments, the first experiment, and whether this is toy.
The default settings are nExperiments = 1, firstExperiment = 0, toyExpts = kFALSE, i.e. the settings for fitting a single data sample. As such, this function only needs to be called if generating/fitting toy samples.
- Parameters
-
[in] | nExperiments | the number of experiments |
[in] | firstExperiment | the number of the first experiment |
[in] | toyExpts | whether this is toy - determines whether to generate per-experiment means for each Gaussian constraint, as per arXiv:1210.7141 |
Definition at line 61 of file LauFitObject.cc.
◆ setParsFromMinuit()
virtual void LauFitObject::setParsFromMinuit |
( |
Double_t * |
par, |
|
|
Int_t |
npar |
|
) |
| |
|
pure virtual |
◆ startNewFit()
void LauFitObject::startNewFit |
( |
const UInt_t |
nPars, |
|
|
const UInt_t |
nFreePars |
|
) |
| |
|
protected |
Indicate the start of a new fit.
- Parameters
-
[in] | nPars | the total number of fit parameters |
[in] | nFreePars | the number of free fit parameters |
Definition at line 83 of file LauFitObject.cc.
◆ storeFitStatus()
Store fit status information.
- Parameters
-
[in] | status | the status information of the fit |
[in] | covMatrix | the fit covariance matrix |
Definition at line 93 of file LauFitObject.cc.
◆ twoStageFit()
void LauFitObject::twoStageFit |
( |
Bool_t |
doTwoStageFit | ) |
|
|
inline |
Turn on or off the two stage fit.
The two-stage fit allows certain parameters to be fixed in one stage and floated in another stage of the fit. Can be used, for example, in a CP fit where the CP-parameters are fixed to zero in the first stage (while the CP-average parameters are determined), then floated in the second.
- Parameters
-
[in] | doTwoStageFit | boolean specifying whether or not the two-stage fit should be enabled |
Definition at line 73 of file LauFitObject.hh.
◆ useAsymmFitErrors()
void LauFitObject::useAsymmFitErrors |
( |
Bool_t |
useAsymmErrors | ) |
|
|
inline |
Turn on or off the computation of asymmetric errors (e.g. MINOS routine in Minuit)
- Parameters
-
[in] | useAsymmErrors | boolean specifying whether or not the computation of asymmetric errors is enabled |
Definition at line 57 of file LauFitObject.hh.
◆ withinAsymErrorCalc() [1/2]
Bool_t LauFitObject::withinAsymErrorCalc |
( |
| ) |
const |
|
inline |
Query whether the fit is calculating the asymmetric errors.
- Returns
- kTRUE if the fit is calculating the asymmetric errors, kFALSE otherwise
Definition at line 94 of file LauFitObject.hh.
◆ withinAsymErrorCalc() [2/2]
virtual void LauFitObject::withinAsymErrorCalc |
( |
const Bool_t |
inAsymErrCalc | ) |
|
|
inlinevirtual |
Mark that the fit is calculating asymmetric errors.
This is called by the fitter interface to mark when entering and exiting the asymmetric error calculation.
- Parameters
-
[in] | inAsymErrCalc | boolean marking that the fit is calculating the asymmetric errors |
Reimplemented in LauSimFitCoordinator.
Definition at line 85 of file LauFitObject.hh.
◆ worstLogLike()
void LauFitObject::worstLogLike |
( |
const Double_t |
newWorstLogLike | ) |
|
|
inlineprotected |
Set a new value for the worst log likelihood.
- Parameters
-
[in] | newWorstLogLike | the new value of the worst log likelihood |
Definition at line 317 of file LauFitObject.hh.
◆ toyExpts_
Bool_t LauFitObject::toyExpts_ |
|
private |
Flag to indicate whether this is toy.
Determines whether to generate per-experiment means for each Gaussian constraint, as per arXiv:1210.7141
Definition at line 389 of file LauFitObject.hh.
The documentation for this class was generated from the following files:
|