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)
- cont
Methods Summary
copy
()Copy Gauss1D object in a new one and returns it.
Print Gaussian parameters.
Methods Documentation