Changeset 909 in Sophya for trunk/SophyaLib/SkyT/specrespvector.cc
- Timestamp:
- Apr 13, 2000, 4:10:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/specrespvector.cc
r806 r909 1 1 //-------------------------------------------------------------------------- 2 2 // File and Version Information: 3 // $Id: specrespvector.cc,v 1. 6 2000-04-03 17:42:39ansari Exp $3 // $Id: specrespvector.cc,v 1.7 2000-04-13 14:10:45 ansari Exp $ 4 4 // 5 5 // Description: … … 26 26 // Constructor -- 27 27 //---------------- 28 /*! 29 * \class SOPHYA::SpecRespVec 30 One may also want to defined the filter of a detector by two vectors: 31 one for the frequencies and one for the corresponding transmission values. 32 In this case on should use the SpecRespVec class ! 33 */ 28 34 SpecRespVec::SpecRespVec() 29 35 : SpectralResponse() … … 31 37 } 32 38 39 /*! Constructor: 40 \param nu vector of the frequencies 41 \param fdenu vector of the corresponding transmission values of the filter 42 */ 33 43 SpecRespVec::SpecRespVec(Vector const & nu, Vector const & fdenu, double numin, double numax) 34 44 : SpectralResponse(numin, numax) … … 69 79 70 80 71 81 /*! The transmission function extrapolates the transmission values for the 82 frequencies that are not present in the nu vector <BR> 83 given at the instanciation of the class. 84 */ 72 85 double 73 86 SpecRespVec::transmission(double nu) const
Note:
See TracChangeset
for help on using the changeset viewer.