Changeset 927 in Sophya
- Timestamp:
- Apr 14, 2000, 9:28:14 AM (25 years ago)
- Location:
- trunk/SophyaLib/SkyT
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/blackbody.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: blackbody.cc,v 1. 5 2000-04-13 14:10:43ansari Exp $3 // $Id: blackbody.cc,v 1.6 2000-04-14 07:28:11 ansari Exp $ 4 4 // 5 5 // Description: … … 21 21 22 22 /*! 23 * \class SOPHYA::BlackBody <BR> 23 * \class SOPHYA::BlackBody 24 \ingroup SkyT 24 25 This class corresponds to the emission spectrum of a 25 26 blackbody radiation. -
trunk/SophyaLib/SkyT/convtools.cc
r607 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: convtools.cc,v 1. 2 1999-11-20 21:00:48ansari Exp $3 // $Id: convtools.cc,v 1.3 2000-04-14 07:28:12 ansari Exp $ 4 4 // 5 5 // Description: … … 12 12 #include "convtools.h" 13 13 14 /*! \class SOPHYA::ConvTools 15 * \ingroup SkyT 16 * Definition of usual usefull constants 17 */ 14 18 // Boltzman constant J/K 15 19 double ConvTools::kb = 1.380662e-23; 16 20 // Mean value of the cmb temperature (K) 17 21 double ConvTools::tcmb=2.728; 18 // constante de Planck enJs22 // Planck constant in Js 19 23 double ConvTools::hpl=6.626176e-34; 20 24 // Light speed PDG 1992 m/s -
trunk/SophyaLib/SkyT/derivblackbody.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: derivblackbody.cc,v 1. 3 2000-04-13 14:10:44ansari Exp $3 // $Id: derivblackbody.cc,v 1.4 2000-04-14 07:28:12 ansari Exp $ 4 4 // 5 5 // Description: … … 22 22 23 23 24 /*! \class SOPHYA::DerivBlackBody <BR> 24 /*! \class SOPHYA::DerivBlackBody 25 \ingroup SkyT 25 26 * This class corresponds to the emission spectrum of a 26 27 * dipole (since its emission spectrum is the derivation -
trunk/SophyaLib/SkyT/gaussfilt.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: gaussfilt.cc,v 1. 5 2000-04-13 14:10:44ansari Exp $3 // $Id: gaussfilt.cc,v 1.6 2000-04-14 07:28:12 ansari Exp $ 4 4 // 5 5 // Description: … … 21 21 /*! 22 22 * \class SOPHYA::GaussianFilter 23 * \ingroup SkyT 23 24 * Gaussian detector response 24 25 */ -
trunk/SophyaLib/SkyT/nupower.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: nupower.cc,v 1. 6 2000-04-13 14:10:44ansari Exp $3 // $Id: nupower.cc,v 1.7 2000-04-14 07:28:12 ansari Exp $ 4 4 // 5 5 // Description: … … 23 23 24 24 /*! 25 * \class SOPHYA::PowerLawSpectra <BR> 25 * \class SOPHYA::PowerLawSpectra 26 \ingroup SkyT 26 27 * This class corresponds to a power law radiation spectrum. 27 28 */ -
trunk/SophyaLib/SkyT/radspec.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: radspec.cc,v 1. 4 2000-04-13 14:10:44ansari Exp $3 // $Id: radspec.cc,v 1.5 2000-04-14 07:28:13 ansari Exp $ 4 4 // 5 5 // Description: … … 22 22 #include "radspec.h" 23 23 #include "integ.h" 24 25 /*! 26 * \class SOPHYA::RadSpectra <BR> 24 /*! 25 \defgroup SkyT SkyT module 26 This module contains classes and functions which define 27 several radiation spectra and filter responses 28 */ 29 30 /*! 31 * \class SOPHYA::RadSpectra 32 * \ingroup SkyT 27 33 * This class is an abstract base class for radiation emission spectra. The flux() function returns the value of the flux (the spectral <BR> 28 34 * energy distribution) as a function of the frequency. As in the SpectralResponse class, the () operator has been redefined <BR> -
trunk/SophyaLib/SkyT/radspecvector.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: radspecvector.cc,v 1. 6 2000-04-13 14:10:45ansari Exp $3 // $Id: radspecvector.cc,v 1.7 2000-04-14 07:28:13 ansari Exp $ 4 4 // 5 5 // Description: … … 29 29 /*! 30 30 * \class SOPHYA::RadSpectraVec 31 \ingroup SkyT 31 32 * One may define the radiation 32 33 * spectrum with two vectors: <BR> one for the frequencies and the second for the -
trunk/SophyaLib/SkyT/skyinit.cc
r759 r927 8 8 #include "gaussfilt.h" 9 9 10 /*! \class SOPHYA::SkyTInitiator 11 * \ingroup SkyT 12 */ 10 13 int SkyTInitiator::FgInit = 0; 11 14 -
trunk/SophyaLib/SkyT/specresp.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: specresp.cc,v 1. 4 2000-04-13 14:10:45ansari Exp $3 // $Id: specresp.cc,v 1.5 2000-04-14 07:28:13 ansari Exp $ 4 4 // 5 5 // Description: … … 22 22 23 23 /*! 24 * \class SOPHYA::SpectralResponse <BR> 24 * \class SOPHYA::SpectralResponse 25 \ingroup SkyT 25 26 SpectralResponse corresponds to a detector filter's 26 27 response as a function of the frequency. -
trunk/SophyaLib/SkyT/specrespvector.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: specrespvector.cc,v 1. 7 2000-04-13 14:10:45ansari Exp $3 // $Id: specrespvector.cc,v 1.8 2000-04-14 07:28:14 ansari Exp $ 4 4 // 5 5 // Description: … … 28 28 /*! 29 29 * \class SOPHYA::SpecRespVec 30 \ingroup SkyT 30 31 One may also want to defined the filter of a detector by two vectors: 31 32 one for the frequencies and one for the corresponding transmission values. -
trunk/SophyaLib/SkyT/squarefilt.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: squarefilt.cc,v 1. 5 2000-04-13 14:10:45ansari Exp $3 // $Id: squarefilt.cc,v 1.6 2000-04-14 07:28:14 ansari Exp $ 4 4 // 5 5 // Description: … … 20 20 /*! 21 21 * \class SOPHYA::SquareFilter 22 \ingroup SkyT 22 23 * Square detector response 23 24 */ -
trunk/SophyaLib/SkyT/trianglefilt.cc
r909 r927 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: trianglefilt.cc,v 1. 5 2000-04-13 14:10:46ansari Exp $3 // $Id: trianglefilt.cc,v 1.6 2000-04-14 07:28:14 ansari Exp $ 4 4 // 5 5 // Description: … … 23 23 /*! 24 24 * \class SOPHYA::TriangleFilter 25 \ingroup SkyT 25 26 * triangle detector response 26 27 */
Note:
See TracChangeset
for help on using the changeset viewer.