Gauss2D¶
-
class
mpdaf.obj.Gauss2D(center, flux, fwhm, cont, rot, peak, err_center, err_flux, err_fwhm, err_cont, err_rot, err_peak, ima=None)[source]¶ Bases:
objectThis class stores 2D gaussian parameters.
Attributes: - center : (float,float)
Gaussian center (y,x).
- flux : float
Gaussian integrated flux.
- fwhm : (float,float)
Gaussian fwhm (fhwm_y,fwhm_x).
- cont : float
Continuum value.
- rot : float
Rotation in degrees.
- peak : float
Gaussian peak value.
- err_center : (float,float)
Estimated error on Gaussian center.
- err_flux : float
Estimated error on Gaussian integrated flux.
- err_fwhm : (float,float)
Estimated error on Gaussian fwhm.
- err_cont : float
Estimated error on continuum value.
- err_rot : float
Estimated error on rotation.
- err_peak : float
Estimated error on Gaussian peak value.
- ima :
Image Gaussian image
Methods Summary
copy()Copy Gauss2D object in a new one and returns it. print_param()Print Gaussian parameters. Methods Documentation