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/specrespvector.cc

    r806 r909  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: specrespvector.cc,v 1.6 2000-04-03 17:42:39 ansari Exp $
     3//      $Id: specrespvector.cc,v 1.7 2000-04-13 14:10:45 ansari Exp $
    44//
    55// Description:
     
    2626// Constructor --
    2727//----------------
     28/*!
     29 * \class SOPHYA::SpecRespVec
     30 One may also want to defined the filter of a detector by two vectors:
     31 one for the frequencies and one for the corresponding transmission values.
     32 In this case on should use the SpecRespVec class !
     33*/
    2834SpecRespVec::SpecRespVec()
    2935        : SpectralResponse()
     
    3137}
    3238
     39/*! Constructor:
     40  \param nu  vector of the frequencies
     41  \param fdenu  vector of the corresponding transmission values of the filter
     42*/
    3343SpecRespVec::SpecRespVec(Vector const & nu, Vector const & fdenu, double numin, double numax)
    3444        : SpectralResponse(numin, numax)
     
    6979
    7080
    71  
     81/*! The transmission function extrapolates the transmission values for the
     82  frequencies that are not present in the nu vector <BR>
     83  given at the instanciation of the class.
     84*/
    7285double
    7386SpecRespVec::transmission(double nu)  const
Note: See TracChangeset for help on using the changeset viewer.