001    package edu.nrao.sss.model.source;
002    
003    import javax.xml.bind.annotation.XmlRootElement;
004    
005    /**
006     * A source brightness of type {@link BrightnessDistribution#GAUSSIAN}.
007     * <p>
008     * <b>CVS Info:</b>
009     * <table style="margin-left:2em">
010     *   <tr><td>$Revision: 161 $</td></tr>
011     *   <tr><td>$Date: 2006-12-15 11:48:34 -0700 (Fri, 15 Dec 2006) $</td></tr>
012     *   <tr><td>$Author: btruitt $</td></tr>
013     * </table></p>
014     *  
015     * @author David M. Harland
016     * @since 2006-05-16
017     */
018    @XmlRootElement
019    public class GaussianBrightness
020      extends AreaBrightness
021    {
022      /**
023       * Creates a new source brightness of type
024       * {@link BrightnessDistribution#GAUSSIAN}.
025       */
026      GaussianBrightness()
027      {
028        super();
029        distributionType = BrightnessDistribution.GAUSSIAN;
030      }
031    }