Changeset 909 in Sophya for trunk/SophyaLib/SkyT/trianglefilt.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/trianglefilt.cc

    r669 r909  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: trianglefilt.cc,v 1.4 1999-11-29 16:59:13 ansari Exp $
     3//      $Id: trianglefilt.cc,v 1.5 2000-04-13 14:10:46 ansari Exp $
    44//
    55// Description:
     
    2121// Constructor --
    2222//----------------
    23 
     23/*!
     24 * \class SOPHYA::TriangleFilter
     25 * triangle detector response
     26 */
    2427TriangleFilter::TriangleFilter()
    2528   : SpectralResponse()
    2629{
    2730}
     31/*! Constructor: nupeak is the frequency value at the hat of the triangle and
     32  valueatpeak is the corresponding transmission value. */
    2833TriangleFilter::TriangleFilter(double numin, double numax,double nupeak, double valueatpeak)
    2934   : SpectralResponse(numin, numax)
     
    4449//              ---------------------------
    4550
     51/*! The transmission function is a triangle defined in the constructor
     52by numin and numax (for which the transmission goes to 0.) and
     53the hat of the triangle (defined by a peak frequency and the corresponding
     54transmission value. */
    4655double
    4756TriangleFilter::transmission(double nu) const
     
    6473TriangleFilter::peakTransmission() const
    6574{
    66 return _peakTransmission;
     75  return _peakTransmission;
    6776}
    6877
Note: See TracChangeset for help on using the changeset viewer.