laura is hosted by Hepforge, IPPP Durham
Laura++  v3r2
A maximum likelihood fitting package for performing Dalitz-plot analysis.

Class for defining combinations of fit parameter objects. More...

#include <LauFormulaPar.hh>

Inheritance diagram for LauFormulaPar:
LauAbsRValue

Public Member Functions

 LauFormulaPar (const TString &forName, const TString &formula, const std::vector< LauParameter * > &params)
 Constructor. More...
 
virtual ~LauFormulaPar ()
 
 LauFormulaPar (const LauFormulaPar &rhs)
 Copy constructor. More...
 
LauFormulaParoperator= (const LauFormulaPar &rhs)
 Copy assignment operator. More...
 
Double_t value () const
 Return the value of the LauFormalaPar. More...
 
Double_t unblindValue () const
 The unblinded value of the parameter. More...
 
const TString & name () const
 The parameter name. More...
 
std::vector< LauParameter * > getPars ()
 Get the LauParameters used in LauFormulaPar. More...
 
Bool_t isLValue () const
 Boolean to say it is not an L value. More...
 
Bool_t fixed () const
 Boolean to say if the LauFormulaPar is fixed. More...
 
Bool_t gaussConstraint () const
 Check whether a Gaussian constraints is applied. More...
 
Double_t constraintMean () const
 The mean of the Gaussian constraint. More...
 
Double_t constraintWidth () const
 The width of the Gaussian constraint. More...
 
void addGaussianConstraint (Double_t newGaussMean, Double_t newGaussWidth)
 Add a Gaussian constraint (or modify an existing one) More...
 
void removeGaussianConstraint ()
 Remove the Gaussian constraint. More...
 
- Public Member Functions inherited from LauAbsRValue
 LauAbsRValue ()
 Constructor. More...
 
virtual ~LauAbsRValue ()
 Destructor. More...
 
 LauAbsRValue (const LauAbsRValue &)
 Copy constructor. More...
 
LauAbsRValueoperator= (const LauAbsRValue &)
 Copy assignment operator. More...
 

Private Attributes

TString name_
 The parameter name. More...
 
TFormula formula_
 The formula. More...
 
std::vector< LauParameter * > paramVec_
 Vector of LauParameters in the formula. More...
 
Double_t * dummy_
 Array. More...
 
Double_t * paramArray_
 Array. More...
 
Bool_t gaussConstraint_
 Choice to use Gaussian constraint. More...
 
Double_t constraintMean_
 Mean value of the Gaussian constraint. More...
 
Double_t constraintWidth_
 Width of the Gaussian constraint. More...
 

Detailed Description

Class for defining combinations of fit parameter objects.

Allows for combinations of LauParameters to be passed to the fit models. Equations of the form [0]*2 + 3*[1] are accepted, with a vector of LauParameters to define inputs [0] and [1]. The parameter for [0] must be stored first in the vector, and so on.

Definition at line 35 of file LauFormulaPar.hh.

Constructor & Destructor Documentation

LauFormulaPar::LauFormulaPar ( const TString &  forName,
const TString &  formula,
const std::vector< LauParameter * > &  params 
)

Constructor.

Parameters
[in]forNamethe name of the formula
[in]formulathe desired expression, using TFormula syntax
[in]paramsa vector of LauParameters used in the formula

Definition at line 31 of file LauFormulaPar.cc.

LauFormulaPar::~LauFormulaPar ( )
virtual

Definition at line 60 of file LauFormulaPar.cc.

LauFormulaPar::LauFormulaPar ( const LauFormulaPar rhs)

Copy constructor.

Definition at line 66 of file LauFormulaPar.cc.

Member Function Documentation

void LauFormulaPar::addGaussianConstraint ( Double_t  newGaussMean,
Double_t  newGaussWidth 
)

Add a Gaussian constraint (or modify an existing one)

Parameters
[in]newGaussMeanthe new value of the Gaussian constraint mean
[in]newGaussWidththe new value of the Gaussian constraint width

Definition at line 151 of file LauFormulaPar.cc.

Double_t LauFormulaPar::constraintMean ( ) const
inlinevirtual

The mean of the Gaussian constraint.

Returns
the mean value of the Gaussian constraint

Implements LauAbsRValue.

Definition at line 101 of file LauFormulaPar.hh.

Double_t LauFormulaPar::constraintWidth ( ) const
inlinevirtual

The width of the Gaussian constraint.

Returns
the width of the Gaussian constraint

Implements LauAbsRValue.

Definition at line 107 of file LauFormulaPar.hh.

Bool_t LauFormulaPar::fixed ( ) const
virtual

Boolean to say if the LauFormulaPar is fixed.

Returns
kFALSE unless all LauParameters in the formula are fixed

Implements LauAbsRValue.

Definition at line 143 of file LauFormulaPar.cc.

Bool_t LauFormulaPar::gaussConstraint ( ) const
inlinevirtual

Check whether a Gaussian constraints is applied.

Returns
the boolean flag true/false whether a Gaussian constraint is applied

Implements LauAbsRValue.

Definition at line 95 of file LauFormulaPar.hh.

std::vector<LauParameter*> LauFormulaPar::getPars ( )
inlinevirtual

Get the LauParameters used in LauFormulaPar.

Returns
the list of LauParameters

Implements LauAbsRValue.

Definition at line 77 of file LauFormulaPar.hh.

Bool_t LauFormulaPar::isLValue ( ) const
inlinevirtual

Boolean to say it is not an L value.

Returns
kFALSE, LauFormulaPars are not L values

Implements LauAbsRValue.

Definition at line 83 of file LauFormulaPar.hh.

const TString& LauFormulaPar::name ( ) const
inlinevirtual

The parameter name.

Returns
the name of the parameter

Implements LauAbsRValue.

Definition at line 71 of file LauFormulaPar.hh.

LauFormulaPar & LauFormulaPar::operator= ( const LauFormulaPar rhs)

Copy assignment operator.

Definition at line 95 of file LauFormulaPar.cc.

void LauFormulaPar::removeGaussianConstraint ( )

Remove the Gaussian constraint.

Definition at line 158 of file LauFormulaPar.cc.

Double_t LauFormulaPar::unblindValue ( ) const
virtual

The unblinded value of the parameter.

Returns
the unblinded value of the parameter

Implements LauAbsRValue.

Definition at line 131 of file LauFormulaPar.cc.

Double_t LauFormulaPar::value ( ) const
virtual

Return the value of the LauFormalaPar.

Returns
the value of the formula

Implements LauAbsRValue.

Definition at line 119 of file LauFormulaPar.cc.

Member Data Documentation

Double_t LauFormulaPar::constraintMean_
private

Mean value of the Gaussian constraint.

Definition at line 139 of file LauFormulaPar.hh.

Double_t LauFormulaPar::constraintWidth_
private

Width of the Gaussian constraint.

Definition at line 141 of file LauFormulaPar.hh.

Double_t* LauFormulaPar::dummy_
private

Array.

Definition at line 132 of file LauFormulaPar.hh.

TFormula LauFormulaPar::formula_
mutableprivate

The formula.

Definition at line 126 of file LauFormulaPar.hh.

Bool_t LauFormulaPar::gaussConstraint_
private

Choice to use Gaussian constraint.

Definition at line 137 of file LauFormulaPar.hh.

TString LauFormulaPar::name_
private

The parameter name.

Definition at line 123 of file LauFormulaPar.hh.

Double_t* LauFormulaPar::paramArray_
private

Array.

Definition at line 134 of file LauFormulaPar.hh.

std::vector<LauParameter*> LauFormulaPar::paramVec_
private

Vector of LauParameters in the formula.

Definition at line 129 of file LauFormulaPar.hh.


The documentation for this class was generated from the following files: