Changeset 901 in Sophya
- Timestamp:
- Apr 13, 2000, 10:17:04 AM (25 years ago)
- Location:
- trunk/SophyaLib/SkyT
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/blackbody.h
r669 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: blackbody.h,v 1. 4 1999-11-29 16:59:10ansari Exp $4 // $Id: blackbody.h,v 1.5 2000-04-13 08:17:02 ansari Exp $ 5 5 // 6 6 // Description: … … 16 16 #include "radspec.h" 17 17 #include "convtools.h" 18 18 namespace SOPHYA { 19 19 class BlackBody : public RadSpectra 20 20 { … … 40 40 41 41 }; 42 42 } 43 43 #endif -
trunk/SophyaLib/SkyT/convtools.h
r607 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: convtools.h,v 1. 2 1999-11-20 21:00:48ansari Exp $4 // $Id: convtools.h,v 1.3 2000-04-13 08:17:02 ansari Exp $ 5 5 // 6 6 // Description: … … 14 14 #ifndef CONV_TOOLS_H_SEEN 15 15 #define CONV_TOOLS_H_SEEN 16 16 namespace SOPHYA { 17 17 class ConvTools 18 18 { … … 24 24 25 25 }; 26 } 26 27 #endif -
trunk/SophyaLib/SkyT/derivblackbody.h
r879 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: derivblackbody.h,v 1. 1 2000-04-11 13:26:05ansari Exp $4 // $Id: derivblackbody.h,v 1.2 2000-04-13 08:17:03 ansari Exp $ 5 5 // 6 6 // Description: … … 16 16 #include "radspec.h" 17 17 #include "convtools.h" 18 18 namespace SOPHYA { 19 19 class DerivBlackBody : public RadSpectra 20 20 { … … 40 40 41 41 }; 42 42 } 43 43 #endif -
trunk/SophyaLib/SkyT/nupower.h
r669 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: nupower.h,v 1. 5 1999-11-29 16:59:10ansari Exp $4 // $Id: nupower.h,v 1.6 2000-04-13 08:17:03 ansari Exp $ 5 5 // 6 6 // Description: … … 16 16 #include "radspec.h" 17 17 #include "convtools.h" 18 18 namespace SOPHYA { 19 19 // Power law spectra f = a ((nu-nu0)/dnu)^b 20 20 class PowerLawSpectra : public RadSpectra … … 41 41 double _a, _b, _nu0, _dnu; 42 42 }; 43 43 } 44 44 #endif -
trunk/SophyaLib/SkyT/radspec.h
r669 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: radspec.h,v 1. 4 1999-11-29 16:59:11ansari Exp $4 // $Id: radspec.h,v 1.5 2000-04-13 08:17:03 ansari Exp $ 5 5 // 6 6 // Description: … … 25 25 // ***IMPORTANT*** All frequencies are expressed in GHz (10^9 Hz) 26 26 // and flux in Watt/m^2/sr 27 27 namespace SOPHYA { 28 28 class RadSpectra 29 29 { … … 85 85 inline ostream& operator << (ostream& s, RadSpectra const & rs) 86 86 { rs.Print(s); return(s); } 87 87 } 88 88 89 89 #endif -
trunk/SophyaLib/SkyT/radspecvector.h
r669 r901 24 24 // ***IMPORTANT*** All frequencies are expressed in GHz (10^9 Hz) 25 25 // and flux in Watt/m^2/sr 26 26 namespace SOPHYA { 27 27 class RadSpectraVec : public RadSpectra 28 28 { … … 57 57 Vector _vecOfFDeNu; 58 58 }; 59 59 } 60 60 #endif -
trunk/SophyaLib/SkyT/squarefilt.h
r669 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: squarefilt.h,v 1. 4 1999-11-29 16:59:13 ansari Exp $4 // $Id: squarefilt.h,v 1.5 2000-04-13 08:17:03 ansari Exp $ 5 5 // 6 6 // Description: … … 26 26 // -- Class Interface -- 27 27 // --------------------- 28 28 namespace SOPHYA { 29 29 class SquareFilter:public SpectralResponse 30 30 { … … 53 53 }; 54 54 55 55 } 56 56 #endif -
trunk/SophyaLib/SkyT/trianglefilt.h
r669 r901 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: trianglefilt.h,v 1. 4 1999-11-29 16:59:13ansari Exp $4 // $Id: trianglefilt.h,v 1.5 2000-04-13 08:17:04 ansari Exp $ 5 5 // 6 6 // Description: … … 25 25 // -- Class Interface -- 26 26 // --------------------- 27 27 namespace SOPHYA { 28 28 class TriangleFilter:public SpectralResponse 29 29 { … … 49 49 }; 50 50 51 51 } 52 52 53 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.