Changeset 909 in Sophya for trunk/SophyaLib/SkyT/specresp.cc
- Timestamp:
- Apr 13, 2000, 4:10:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/specresp.cc
r668 r909 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: specresp.cc,v 1. 3 1999-11-29 14:16:08ansari Exp $3 // $Id: specresp.cc,v 1.4 2000-04-13 14:10:45 ansari Exp $ 4 4 // 5 5 // Description: … … 21 21 #include "tvector.h" 22 22 23 /*! 24 * \class SOPHYA::SpectralResponse <BR> 25 SpectralResponse corresponds to a detector filter's 26 response as a function of the frequency. 27 The SpectralResponse class is an abstract class. 28 The virtual constructor takes as arguments the 29 minimum and maximum values of the frequency range on 30 which the detector response is defined 31 */ 23 32 //---------------- 24 33 // Constructor -- … … 107 116 108 117 118 /*! 119 This function performs the integration 120 of the transmission function in its frequency range 121 (defined when instanciating an object of on of the 122 subclasses) 123 */ 109 124 double 110 125 SpectralResponse::IntegratedSpect() const … … 114 129 } 115 130 131 /*! 132 The IntegratedSpect function performs the integration 133 of the transmission function in a frequency range <BR> defined by 134 numin and numax. 135 */ 116 136 double 117 137 SpectralResponse::IntegratedSpect(double numin, double numax) const … … 137 157 } 138 158 159 /*! 160 The logIntegratedSpect function performs the integration 161 of the logarithm of the transmission function in a frequency range <BR> defined by 162 numin and numax. 163 */ 139 164 double 140 165 SpectralResponse::logIntegratedSpect(double numin, double numax) const … … 154 179 } 155 180 181 /*! 182 Same than IntegratedSpect(numin,numax) over its 183 frequency range defined at the initialisation 184 */ 156 185 double 157 186 SpectralResponse::logIntegratedSpect() const
Note:
See TracChangeset
for help on using the changeset viewer.