Changeset 909 in Sophya for trunk/SophyaLib/SkyT/gaussfilt.cc


Ignore:
Timestamp:
Apr 13, 2000, 4:10:46 PM (25 years ago)
Author:
ansari
Message:

Sophie: adding documentation for Doxygen in the .cc files:wq

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyT/gaussfilt.cc

    r668 r909  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: gaussfilt.cc,v 1.4 1999-11-29 14:16:04 ansari Exp $
     3//      $Id: gaussfilt.cc,v 1.5 2000-04-13 14:10:44 ansari Exp $
    44//
    55// Description:
     
    1919#include "gaussfilt.h"
    2020
    21 //----------------
    22 // Constructor --
    23 //----------------
     21/*!
     22 * \class SOPHYA::GaussianFilter
     23 * Gaussian detector response
     24 */
    2425GaussianFilter::GaussianFilter()
    2526  : SpectralResponse()
     
    2829}
    2930
     31/*! Constructor: the parameters correspond to the function defined in the
     32  <a href="#gausseq"> equation </a> below
     33*/
    3034GaussianFilter::GaussianFilter(double nu0, double s, double a, double numin, double numax)
    3135  : SpectralResponse(numin, numax)
     
    4650//              ---------------------------
    4751
     52/*! The transmission function is the wel known gaussian:
     53  <a name="gausseq"> </a>
     54  \f[
     55  \hbox{transmission}= A  e^{-{({\nu-\nu_0\over s})^2}};
     56  \f]
     57*/
    4858
    4959double
Note: See TracChangeset for help on using the changeset viewer.