casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Types | Public Member Functions | Protected Attributes
casa::Gaussian1DParam< T > Class Template Reference

Parameter handling for one dimensional Gaussian class. More...

#include <Gaussian1DParam.h>

Inheritance diagram for casa::Gaussian1DParam< T >:
casa::Function1D< T > casa::Function< T, T > casa::Functional< FunctionTraits< T >::ArgType, T > casa::Functional< Vector< FunctionTraits< T >::ArgType >, T > casa::Gaussian1D< T >

List of all members.

Public Types

enum  {
  HEIGHT,
  CENTER,
  WIDTH
}

Public Member Functions

 Gaussian1DParam ()
 Constructs the one dimensional Gaussians.
 Gaussian1DParam (const T &height)
 Gaussian1DParam (const T &height, const T &center)
 Gaussian1DParam (const T &height, const T &center, const T &width)
 Gaussian1DParam (const Gaussian1DParam< T > &other)
 Copy constructor (deep copy)
template<class W >
 Gaussian1DParam (const Gaussian1DParam< W > &other)
Gaussian1DParam< T > & operator= (const Gaussian1DParam< T > &other)
 Copy assignment (deep copy)
virtual ~Gaussian1DParam ()
 Destructor.
virtual const Stringname () const
 Give name of function.
height () const
 Get or set the peak height of the Gaussian.
void setHeight (const T &height)
flux () const
 Get or set the analytical integrated area underneath the Gaussian.
void setFlux (const T &flux)
center () const
 Get or set the center ordinate of the Gaussian.
void setCenter (const T &cnter)
width () const
 Get or set the FWHM of the Gaussian.
void setWidth (const T &width)

Protected Attributes

fwhm2int
 
   


Detailed Description

template<class T>
class casa::Gaussian1DParam< T >

Parameter handling for one dimensional Gaussian class.

Intended use:

Internal

Review Status

Reviewed By:
tcornwel
Date Reviewed:
1996/02/22
Test programs:
tGaussian1D

Prerequisite

Etymology

A 1-dimensional Gaussian's parameters.

Synopsis

A Gaussian1D is described by a height, center, and width. The parameters (height, center and width) may be changed at run time.

The width of the Gaussian (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 Gaussian 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 Gaussian. 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 Gaussian 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 FunctionParam class), is used to provide an interface to the Fitting classes.

There are 3 parameters that are used to describe the Gaussian:

  1. The height of the Gaussian. This is identical to the value returned using the height() member function.
  2. The center of the Gaussian in the x direction. This is identical to the value returned using the center() member function.
  3. The width (FWHM) of the Gaussian. To aid convergence of the non-linear fitting routines this parameter is allowed to be negative. This does not affect the shape of the Gaussian as the square of the width is used when evaluating the 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.

This class is in general used implicitly by the Gaussian1D class only.

Example

       Gaussian1D<Double> gf(5.0, 25.0, 7);
       gf(25);            // = 5.0
       gf.setHeight(1.0);
       gf[WIDTH](2.0);                
       gf[CENTER](0.0);
       gf(1);             // = 0.5*height = 0.5

Template Type Argument Requirements (T)

Thrown Exceptions

To Do

Definition at line 128 of file Gaussian1DParam.h.


Member Enumeration Documentation

template<class T>
anonymous enum
Enumerator:
HEIGHT 
CENTER 
WIDTH 

Definition at line 131 of file Gaussian1DParam.h.


Constructor & Destructor Documentation

template<class T>
casa::Gaussian1DParam< T >::Gaussian1DParam ( )

Constructs the one dimensional Gaussians.

Defaults: height=1, center=0, width(FWHM)=1.
Warning: Could not use default arguments that worked both with gcc and IRIX and all templates

template<class T>
casa::Gaussian1DParam< T >::Gaussian1DParam ( const T &  height) [explicit]
template<class T>
casa::Gaussian1DParam< T >::Gaussian1DParam ( const T &  height,
const T &  center 
)
template<class T>
casa::Gaussian1DParam< T >::Gaussian1DParam ( const T &  height,
const T &  center,
const T &  width 
)
template<class T>
casa::Gaussian1DParam< T >::Gaussian1DParam ( const Gaussian1DParam< T > &  other)

Copy constructor (deep copy)

template<class T>
template<class W >
casa::Gaussian1DParam< T >::Gaussian1DParam ( const Gaussian1DParam< W > &  other) [inline]

Definition at line 149 of file Gaussian1DParam.h.

template<class T>
virtual casa::Gaussian1DParam< T >::~Gaussian1DParam ( ) [virtual]

Destructor.


Member Function Documentation

template<class T>
T casa::Gaussian1DParam< T >::center ( ) const [inline]

Get or set the center ordinate of the Gaussian.

Definition at line 181 of file Gaussian1DParam.h.

template<class T>
T casa::Gaussian1DParam< T >::flux ( ) const

Get or set the analytical integrated area underneath the Gaussian.

Use these functions as an alternative to the height functions.

template<class T>
T casa::Gaussian1DParam< T >::height ( ) const [inline]

Get or set the peak height of the Gaussian.

Definition at line 168 of file Gaussian1DParam.h.

Referenced by casa::Gaussian1DParam< AutoDiff< T > >::setHeight().

template<class T>
virtual const String& casa::Gaussian1DParam< T >::name ( ) const [inline, virtual]

Give name of function.

Reimplemented from casa::Function< T, T >.

Definition at line 163 of file Gaussian1DParam.h.

template<class T>
Gaussian1DParam<T>& casa::Gaussian1DParam< T >::operator= ( const Gaussian1DParam< T > &  other)

Copy assignment (deep copy)

template<class T>
void casa::Gaussian1DParam< T >::setCenter ( const T &  cnter) [inline]

Definition at line 182 of file Gaussian1DParam.h.

template<class T>
void casa::Gaussian1DParam< T >::setFlux ( const T &  flux)
template<class T>
void casa::Gaussian1DParam< T >::setHeight ( const T &  height) [inline]

Definition at line 169 of file Gaussian1DParam.h.

template<class T>
void casa::Gaussian1DParam< T >::setWidth ( const T &  width) [inline]

Definition at line 188 of file Gaussian1DParam.h.

template<class T>
T casa::Gaussian1DParam< T >::width ( ) const [inline]

Get or set the FWHM of the Gaussian.

Definition at line 187 of file Gaussian1DParam.h.

Referenced by casa::Gaussian1DParam< AutoDiff< T > >::setWidth().


Member Data Documentation

template<class T>
T casa::Gaussian1DParam< T >::fwhm2int [protected]

   

Constant to scale halfwidth at 1/e to FWHM static const T fwhm2int;

Definition at line 194 of file Gaussian1DParam.h.


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