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

    r669 r909  
    11//--------------------------------------------------------------------------
    22// File and Version Information:
    3 //      $Id: radspecvector.cc,v 1.5 1999-11-29 16:59:11 ansari Exp $
     3//      $Id: radspecvector.cc,v 1.6 2000-04-13 14:10:45 ansari Exp $
    44//
    55// Description:
     
    2626// Constructor --
    2727//----------------
     28
     29/*!
     30 * \class SOPHYA::RadSpectraVec
     31 * One may define the radiation
     32 * spectrum with two vectors: <BR> one for the frequencies and the second for the
     33 * value of the flux function. <BR>
     34 * In that case, the class to use is RadSpectraVec !
     35 */
     36
    2837RadSpectraVec::RadSpectraVec()
    2938{
    3039}
    31 
     40/*! Constructor:
     41  \param nu is the frequency vector <BR>
     42  \param fdenu is the corresponding flux values (stored in a vector as well)
     43 */
    3244RadSpectraVec::RadSpectraVec(Vector const & nu, Vector const & fdenu, double numin, double numax)
    3345        : RadSpectra(numin, numax)
     
    5567
    5668
    57 
     69/*! The flux function extrapolates the flux values for the
     70  frequencies that are not present in the nu vector <BR>
     71  given at the instanciation of the class.
     72 */
    5873double
    5974RadSpectraVec::flux(double nu) const
Note: See TracChangeset for help on using the changeset viewer.