Changeset 909 in Sophya for trunk/SophyaLib/SkyT/radspecvector.cc
- Timestamp:
- Apr 13, 2000, 4:10:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/radspecvector.cc
r669 r909 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: radspecvector.cc,v 1. 5 1999-11-29 16:59:11ansari Exp $3 // $Id: radspecvector.cc,v 1.6 2000-04-13 14:10:45 ansari Exp $ 4 4 // 5 5 // Description: … … 26 26 // Constructor -- 27 27 //---------------- 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 28 37 RadSpectraVec::RadSpectraVec() 29 38 { 30 39 } 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 */ 32 44 RadSpectraVec::RadSpectraVec(Vector const & nu, Vector const & fdenu, double numin, double numax) 33 45 : RadSpectra(numin, numax) … … 55 67 56 68 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 */ 58 73 double 59 74 RadSpectraVec::flux(double nu) const
Note:
See TracChangeset
for help on using the changeset viewer.