|
casacore
|
#include <FunctionParam.h>
Public Member Functions | |
| FunctionParam () | |
| Construct a default FunctionParam with 0 parameters. | |
| FunctionParam (const uInt n) | |
| Construct a FunctionParam with n parameters with zero value and all masks True. | |
| FunctionParam (const Vector< T > &in) | |
| Construct a FunctionParam from the given vector, with all masks True. | |
| FunctionParam (const FunctionParam< T > &other) | |
| Copy constructor (deep copy). | |
| template<class W> | |
| FunctionParam (const FunctionParam< W > &other) | |
| Copy from different type (deep copy). | |
| virtual | ~FunctionParam () |
| Destructor. | |
| FunctionParam & | operator= (const FunctionParam< T > &other) |
| Copy assignment (deep copy). | |
| T & | operator[] (const uInt n) |
| Manipulate the nth parameter (0-based) with no index check. | |
| const T & | operator[] (const uInt n) const |
| Bool | operator== (const FunctionParam< T > &other) const |
| Compare two parameter sets for equal size, values and masks. | |
| Bool | operator!= (const FunctionParam< T > &other) const |
| uInt | nelements () const |
| Return the number of parameters. | |
| T & | parameter (const uInt n) |
| Manipulate the nth parameter (0-based) with no index check. | |
| const T & | parameter (const uInt n) const |
| Bool & | mask (const uInt n) |
| Manipulate the mask associated with the nth parameter (e.g. | |
| const Bool & | mask (const uInt n) const |
| const Vector< T > & | getParameters () const |
| Get all parameters at once. | |
| void | setParameters (const Vector< T > ¶ms) |
| Set all the parameters at once. | |
| const Vector< Bool > & | getParamMasks () const |
| Get all parameter masks at once. | |
| void | setParamMasks (const Vector< Bool > &masks) |
| Set all parameter masks at once. | |
| uInt | nMaskedParameters () const |
| Operations on the masked parameters only. | |
| Vector< T > & | getMaskedParameters () const |
| All masked parameters only. | |
| void | setMaskedParameters (Vector< T > &in) |
| ostream & | print (ostream &os) const |
| Output the parameters. | |
Private Member Functions | |
| void | createMaskedPtr () const |
| Create a cached version of the masked parameter list. | |
| void | clearMaskedPtr () const |
| Clear the masked parameter list. | |
Private Attributes | |
| uInt | npar_p |
| Number of parameters. | |
| Vector< T > | param_p |
| Parameters. | |
| Vector< Bool > | mask_p |
| Masks. | |
| Vector< T > * | maskedPtr_p |
| Cached masked data. | |
Container of function parameters with masking flags
Public interface
FunctionParam is used to provide an interface to an entity which has parameters that can be flagged. This is useful, for example, in implementing parameter fitting which operates on generic function objects.
Each parameter can be masked. The mask can, e.g., be used to indicate to a generic least-squares fitting routine to only adjust parameters with a True mask (the default). For that reason methods that only handle True data items have names with Adjust in the names. In general the user should not be concerned with these methods, but should only manipulate the parameter flags and values.
See the Function class for a usage interface.
Generically manipulatable adjustable parameters are important for fitting.
Definition at line 85 of file FunctionParam.h.
| casacore::FunctionParam< T >::FunctionParam | ( | ) |
Construct a default FunctionParam with 0 parameters.
Referenced by FunctionParam(), FunctionParam(), operator!=(), operator=(), and operator==().
|
explicit |
Construct a FunctionParam with n parameters with zero value and all masks True.
|
explicit |
Construct a FunctionParam from the given vector, with all masks True.
| casacore::FunctionParam< T >::FunctionParam | ( | const FunctionParam< T > & | other | ) |
Copy constructor (deep copy).
References FunctionParam().
|
inline |
Copy from different type (deep copy).
Definition at line 100 of file FunctionParam.h.
References FunctionParam(), getParameters(), getParamMasks(), casacore::FunctionTraits< T >::getValue(), mask_p, maskedPtr_p, nelements(), npar_p, param_p, and casacore::FunctionTraits< T >::setValue().
|
virtual |
Destructor.
|
private |
Clear the masked parameter list.
|
private |
Create a cached version of the masked parameter list.
| Vector< T > & casacore::FunctionParam< T >::getMaskedParameters | ( | ) | const |
All masked parameters only.
|
inline |
Get all parameters at once.
Returns zero length Vector if there are no parameters.
Definition at line 149 of file FunctionParam.h.
References param_p.
Referenced by FunctionParam().
|
inline |
Get all parameter masks at once.
Returns zero length Vector if there are no parameters.
Definition at line 157 of file FunctionParam.h.
References mask_p.
Referenced by FunctionParam().
| Bool & casacore::FunctionParam< T >::mask | ( | const uInt | n | ) |
Manipulate the mask associated with the nth parameter (e.g.
to indicate whether the parameter is adjustable or nonadjustable). Note no index check.
|
inline |
Definition at line 144 of file FunctionParam.h.
References mask_p.
|
inline |
Return the number of parameters.
Definition at line 132 of file FunctionParam.h.
References param_p.
Referenced by FunctionParam().
| uInt casacore::FunctionParam< T >::nMaskedParameters | ( | ) | const |
Operations on the masked parameters only.
For possible re-use the results are cached.
Number of masked (=True) parameters
| Bool casacore::FunctionParam< T >::operator!= | ( | const FunctionParam< T > & | other | ) | const |
References FunctionParam().
| FunctionParam & casacore::FunctionParam< T >::operator= | ( | const FunctionParam< T > & | other | ) |
Copy assignment (deep copy).
References FunctionParam().
| Bool casacore::FunctionParam< T >::operator== | ( | const FunctionParam< T > & | other | ) | const |
Compare two parameter sets for equal size, values and masks.
References FunctionParam().
|
inline |
Manipulate the nth parameter (0-based) with no index check.
Definition at line 121 of file FunctionParam.h.
References param_p.
|
inline |
Definition at line 122 of file FunctionParam.h.
References param_p.
|
inline |
Manipulate the nth parameter (0-based) with no index check.
Definition at line 135 of file FunctionParam.h.
References param_p.
|
inline |
Definition at line 136 of file FunctionParam.h.
References param_p.
| ostream & casacore::FunctionParam< T >::print | ( | ostream & | os | ) | const |
Output the parameters.
Referenced by casacore::operator<<().
| void casacore::FunctionParam< T >::setMaskedParameters | ( | Vector< T > & | in | ) |
| void casacore::FunctionParam< T >::setParameters | ( | const Vector< T > & | params | ) |
Set all the parameters at once.
Only the minimum of the input number and the object number of parameters will be set.
| void casacore::FunctionParam< T >::setParamMasks | ( | const Vector< Bool > & | masks | ) |
Set all parameter masks at once.
Only the minimum of the input number and the object number of parameters will be set.
|
private |
Masks.
Definition at line 185 of file FunctionParam.h.
Referenced by FunctionParam(), getParamMasks(), and mask().
|
mutableprivate |
|
private |
Number of parameters.
Definition at line 181 of file FunctionParam.h.
Referenced by FunctionParam().
|
private |
Parameters.
Definition at line 183 of file FunctionParam.h.
Referenced by FunctionParam(), getParameters(), nelements(), operator[](), operator[](), parameter(), and parameter().