casa
$Rev:20696$
|
A one dimensional Lorentzian class. More...
#include <Lorentzian1D.h>
Public Member Functions | |
Lorentzian1D () | |
Constructs the one dimensional Lorentzians. | |
Lorentzian1D (const T &height) | |
Lorentzian1D (const T &height, const T ¢er) | |
Lorentzian1D (const T &height, const T ¢er, const T &width) | |
Lorentzian1D (const Lorentzian1D< T > &other) | |
Copy constructor (deep copy) | |
template<class W > | |
Lorentzian1D (const Lorentzian1D< W > &other) | |
Lorentzian1D< T > & | operator= (const Lorentzian1D< T > &other) |
Copy assignment (deep copy) | |
virtual | ~Lorentzian1D () |
Destructor. | |
virtual T | eval (typename Function1D< T >::FunctionArg x) const |
Evaluate the Lorentzian at x . | |
virtual Function< T > * | clone () const |
Return a copy of this object from the heap. | |
virtual Function< typename FunctionTraits< T >::DiffType > * | cloneAD () const |
virtual Function< typename FunctionTraits< T >::BaseType > * | cloneNonAD () const |
A one dimensional Lorentzian class.
Public interface
A Lorentzian1D functional is designed exclusively for calculating a Lorentzian (or Normal) distribution in one dimension. Other classes exist for calculating these functions in two ( Lorentzian2D ) and N ( LorentzianND ) dimensions.
A Lorentzian1D
is described by a height, center, and width. Its fundamental operation is evaluating itself at some x
. The parameters (height, center and width) may be changed at run time.
The width of the Lorentzian (for the constructors or the setWidth
function) is always specified in terms of the full width at half maximum (FWHM). It is always positive and attempts to set a non-positive width will throw an assertion when in debug mode.
The peak height of the Lorentzian can be specified at construction time or by using the setHeight
function. Alternatively the setFlux
function can be used to implicitly set the peak height by specifying the integrated area under the Lorentzian. The height (or flux) can be positive, negative or zero, as this class makes no assumptions on what quantity the height represents.
Tip: Changing the width of the Lorentzian will not affect its peak height but will change its flux; So you should always set the width before setting the flux;
The parameter interface (see Lorentzian1DParam class), is used to provide an interface to the Fitting classes.
There are 3 parameters that are used to describe the Lorentzian:
height()
member function. center()
member function. An enumeration for the HEIGHT
, WIDTH
and CENTER
parameter index is provided, enabling the setting and reading of parameters with the []
operator. The mask()
methods can be used to check and set the parameter masks.
Lorentzian<Double> gf(5.0, 25.0, 7); gf(25); // = 5.0 gf[HEIGHT](1.0); gf.setWidth(2.0); gf[CENTER](0.0); gf(1); // = 0.5*height = 0.5
Definition at line 135 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | ) | [inline] |
Constructs the one dimensional Lorentzians.
Defaults: height=1, center=0, width(FWHM)=1.
Warning: Could not use default arguments that worked both with gcc and IRIX
Definition at line 145 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | const T & | height | ) | [inline, explicit] |
Definition at line 146 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | const T & | height, |
const T & | center | ||
) | [inline] |
Definition at line 147 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | const T & | height, |
const T & | center, | ||
const T & | width | ||
) | [inline] |
Definition at line 149 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | const Lorentzian1D< T > & | other | ) | [inline] |
Copy constructor (deep copy)
Definition at line 155 of file Lorentzian1D.h.
casa::Lorentzian1D< T >::Lorentzian1D | ( | const Lorentzian1D< W > & | other | ) | [inline] |
Definition at line 157 of file Lorentzian1D.h.
virtual casa::Lorentzian1D< T >::~Lorentzian1D | ( | ) | [inline, virtual] |
Destructor.
Definition at line 165 of file Lorentzian1D.h.
virtual Function<T>* casa::Lorentzian1D< T >::clone | ( | ) | const [inline, virtual] |
Return a copy of this object from the heap.
The caller is responsible for deleting this pointer.
Implements casa::Function< T, T >.
Definition at line 177 of file Lorentzian1D.h.
virtual Function<typename FunctionTraits<T>::DiffType>* casa::Lorentzian1D< T >::cloneAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T, T >.
Definition at line 178 of file Lorentzian1D.h.
virtual Function<typename FunctionTraits<T>::BaseType>* casa::Lorentzian1D< T >::cloneNonAD | ( | ) | const [inline, virtual] |
Reimplemented from casa::Function< T, T >.
Definition at line 180 of file Lorentzian1D.h.
virtual T casa::Lorentzian1D< T >::eval | ( | typename Function1D< T >::FunctionArg | x | ) | const [virtual] |
Evaluate the Lorentzian at x
.
Lorentzian1D<T>& casa::Lorentzian1D< T >::operator= | ( | const Lorentzian1D< T > & | other | ) | [inline] |
Copy assignment (deep copy)
Definition at line 161 of file Lorentzian1D.h.