A GaussianShape models the spatial distribution of radiation from the sky as a two-dimensional Gaussian function with user specified major axis width, minor axis width and position angle.
This class like the other component shapes becomes more useful when used through the SkyComponent class, which incorperates the flux and spectral variation of the emission, or through the ComponentList class, which handles groups of SkyComponent objects.
The reference direction is defined in celestial co-ordinates, using a MDirection object. It indicates where the centre of the Gaussian is on the sky. The direction can be specified both in the constructor or with the setRefDirection function.
The width of the Gaussian is defined as the angle subtended by the full width at half maximum of the Gaussian. The major axis has the larger width and is aligned North-South when the position angle is zero. A positive position angle moves the Northern side of the component to the East. The axial ratio is the ratio of the minor to major axis widths. The major axis MUST not be smaller than the minor axis otherwise an exception (AipsError) is thrown.
These parameters of the Gaussian (width, position angle, direction etc.) can be specified at construction time, using the *inRad functions or through functions in the base classes (TwoSidedShape & ComponentShape). The base classes also implement functions for inter-converting this object into a record representation.
The flux, or integrated intensity, is always normalised to one. This class does not model the actual flux or its variation with frequency. It solely models the way the emission varies with position on the sky.
The scale member function is used to sample the component at any point on the sky. The scale factor calculated by this function is the proportion of the flux that is within a specified pixel size centered on the specified direction. Ultimatly this function will integrate the emission from the Gaussian over the entire pixel but currently it just assumes the flux can be calculated by the height of the Gaussian at the centre of the pixel scaled by the pixel area. This is NOT accurate for Gaussians whose width is small compared with the pixel size.
This class contains functions that return the Fourier transform of the component at a specified spatial frequency. There are described more fully in the description of the visibility functions below.
{ // Construct a Gaussian shape MDirection blob_dir; { // get the right direction into blob_dir Quantity blob_ra; MVAngle::read(blob_ra, "19:39:"); Quantity blob_dec; MVAngle::read(blob_dec, "-63.43."); blob_dir = MDirection(blob_ra, blob_dec, MDirection::J2000); } { const Flux<Double> flux(6.28, 0.1, 0.15, 0.01); const GaussianShape shape(blob_dir, Quantity(30, "arcmin"), Quantity(2000, "mas"), Quantity(C::pi_2, "rad")); const ConstantSpectrum spectrum; SkyComponent component(flux, shape, spectrum); printShape(shape); } }The printShape function is the example shown for the TwoSidedShape class.
Construct a Gaussian shape centred in the specified direction, specifying the widths & position angle.
The copy constructor uses copy semantics.
The destructor does nothing special.
The assignment operator uses copy semantics.
get the type of the shape. This function always returns ComponentType::GAUSSIAN.
set or return the width and orientation of the Gaussian. All numerical values are in radians. There are also functions in the base class for doing this with other angular units.
Calculate the proportion of the flux that is in a pixel of specified size centered in the specified direction. The returned value will always be between zero and one (inclusive).
Same as the previous function except that many directions can be sampled at once. The reference frame and pixel size must be the same for all the specified directions.
Return the Fourier transform of the component at the specified point in the spatial frequency domain. The point is specified by a 3 element vector (u,v,w) that has units of meters and the frequency of the observation, in Hertz. These two quantities can be used to derive the required spatial frequency (s = uvw*freq/c). The w component is not used in these functions.
The reference position for the transform is the direction of the component. As this component is symmetric about this point the transform is always a real value.
Same as the previous function except that many (u,v,w) points can be sampled at once. The uvw Matrix must have a first dimension of three, and a second dimension that is the same as the length of the scale Vector. Otherwise and exception is thrown (when compiled in debug mode).
Return a pointer to a copy of this object upcast to a ComponentShape object. The class that uses this function is responsible for deleting the pointer. This is used to implement a virtual copy constructor.
Function which checks the internal data of this class for correct dimensionality and consistent values. Returns True if everything is fine otherwise returns False.