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

    r668 r909  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: specresp.cc,v 1.3 1999-11-29 14:16:08 ansari Exp $
     3//      $Id: specresp.cc,v 1.4 2000-04-13 14:10:45 ansari Exp $
    44//
    55// Description:
     
    2121#include "tvector.h"
    2222
     23/*!
     24 * \class SOPHYA::SpectralResponse <BR>
     25 SpectralResponse corresponds to a detector filter's
     26 response as a function of the frequency.
     27 The SpectralResponse class is an abstract class.
     28 The virtual constructor takes as arguments the
     29 minimum and maximum values of the frequency range on
     30 which the detector response is defined
     31 */
    2332//----------------
    2433// Constructor --
     
    107116
    108117
     118/*!
     119  This function performs the integration
     120  of the transmission function in its frequency range
     121  (defined when instanciating an object of on of the
     122  subclasses)
     123*/
    109124double
    110125SpectralResponse::IntegratedSpect()  const
     
    114129}
    115130
     131/*!
     132  The IntegratedSpect function performs the integration
     133  of the transmission function in a frequency range <BR> defined by
     134  numin and numax.
     135*/
    116136double
    117137SpectralResponse::IntegratedSpect(double numin, double numax) const
     
    137157}
    138158
     159/*!
     160  The logIntegratedSpect function performs the integration
     161  of the logarithm of the transmission function in a frequency range <BR> defined by
     162  numin and numax.
     163*/
    139164double
    140165SpectralResponse::logIntegratedSpect(double numin, double numax) const
     
    154179}
    155180
     181/*!
     182  Same than IntegratedSpect(numin,numax) over its
     183  frequency range defined at the initialisation
     184*/
    156185double
    157186SpectralResponse::logIntegratedSpect()  const
Note: See TracChangeset for help on using the changeset viewer.