Gauss1D

class mpdaf.obj.Gauss1D(lpeak, peak, flux, fwhm, cont, err_lpeak, err_peak, err_flux, err_fwhm, chisq, dof)[source]

Bases: object

This class stores 1D Gaussian parameters.

Attributes:
cont : float

Continuum value.

fwhm : float

Gaussian fwhm.

lpeak : float

Gaussian center.

peak : float

Gaussian peak value.

flux : float

Gaussian integrated flux.

err_fwhm : float

Estimated error on Gaussian fwhm.

err_lpeak : float

Estimated error on Gaussian center.

err_peak : float

Estimated error on Gaussian peak value.

err_flux : float

Estimated error on Gaussian integrated flux.

chisq : float

minimization process info (Chi-sqr)

dof : float

minimization process info (number of points - number of parameters)

Methods Summary

copy() Copy Gauss1D object in a new one and returns it.
print_param() Print Gaussian parameters.

Methods Documentation

copy()[source]

Copy Gauss1D object in a new one and returns it.

print_param()[source]

Print Gaussian parameters.