Changeset 896 in Sophya
- Timestamp:
- Apr 12, 2000, 7:50:34 PM (25 years ago)
- Location:
- trunk/SophyaLib/NTools
- Files:
-
- 2 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/NTools.o.list
r852 r896 32 32 simplesort.o 33 33 tabmath.o 34 utils.o -
trunk/SophyaLib/NTools/cimage.h
r852 r896 228 228 } 229 229 230 230 231 /* ....................................................... */ 231 232 /* Fonctions de copie d'images et de paves */ … … 294 295 #endif 295 296 297 296 298 #endif 297 299 -
trunk/SophyaLib/NTools/cspline.h
r501 r896 8 8 // Class CSpline et CSpline2 selon Numerical Receipes (cmv 17/02/97) 9 9 /////////////////////////////////////////////////////////////////// 10 class CSpline EXC_AWARE { 10 namespace SOPHYA { 11 12 //! Spline fit to a set of points Y=f(X) (as in Numerical Receipes). 13 class CSpline { 11 14 12 15 public: … … 71 74 72 75 /////////////////////////////////////////////////////////////////// 73 class CSpline2 EXC_AWARE { 76 //! 2D Spline fit to a set of points Y=f(X1,X2) (as in Numerical Receipes). 77 class CSpline2 { 74 78 75 79 public: … … 116 120 }; 117 121 122 } // Fin du namespace 123 118 124 #endif /* CSPLINE_H_SEEN */ -
trunk/SophyaLib/NTools/dynccd.h
r244 r896 8 8 #include "ppersist.h" 9 9 10 namespace SOPHYA { 11 10 12 enum {kConstantNoise = 0, kPhotonNoise, kSigFondNoise, kSqrtADUNoise}; 11 13 12 class DynCCD EXC_AWARE14 class DynCCD 13 15 { 14 16 public : … … 30 32 float Noise(float pixel) const; 31 33 }; 34 35 } // Fin du namespace 32 36 33 37 // Quelques fonctions pour manipuler des images de bruit … … 63 67 //STRUCTPERSISTIO(DynCCD, TypNoise, sizeof(int_4)+6*sizeof(float)) 64 68 69 65 70 #endif -
trunk/SophyaLib/NTools/fftpserver.cc
r805 r896 5 5 6 6 7 /*! \class FFTPackServer 8 \brief An FFT server based on fftpack 9 7 /*! 8 \class SOPHYA::FFTPackServer 10 9 A class that calculates Fourier transforms forwards and backwards. 11 10 … … 16 15 Otherwise, the output is in the fftpack format. 17 16 18 Complex input must be entered using the <complex> template. Otherwise,19 all input is assumed to be real.20 17 21 18 Due to the way that fftpack manages … … 26 23 */ 27 24 28 /* !\fn virtual void FFTServer::fftf(int l, r_4* inout)25 /* \fn virtual void FFTServer::fftf(int l, r_4* inout) 29 26 \param l length of array 30 27 \param inout input array /output forward FFT (original array destroyed) … … 34 31 \param inout input array /output backward FFT (original array destroyed) 35 32 */ 36 /* !\fn virtual void FFTServer::fftf(int l, r_8* inout)33 /* \fn virtual void FFTServer::fftf(int l, r_8* inout) 37 34 \param l length of array 38 35 \param inout input array /output forward FFT (original array destroyed) 39 36 \param inout input/output array (original array destroyed) 40 37 */ 41 /* !\fn virtual void FFTServer::fftb(int l, r_8* inout)38 /* \fn virtual void FFTServer::fftb(int l, r_8* inout) 42 39 \param l length of array 43 40 \param inout input array /output backward FFT(original array destroyed) 44 41 */ 45 /* !\fn virtual void FFTServer::fftf(int l, complex<r_4>* inout)42 /*\fn virtual void FFTServer::fftf(int l, complex<r_4>* inout) 46 43 \param l length of array 47 44 \param inout input array /output forward FFT (original array destroyed) 48 45 */ 49 /* !\fn virtual void FFTServer::fftb(int l, complex<r_4>* inout)46 /* \fn virtual void FFTServer::fftb(int l, complex<r_4>* inout) 50 47 \param l length of array 51 48 \param inout input array /output backward FFT (original array destroyed) 52 49 */ 53 /* !\fn virtual void FFTServer::fftf(int l, complex<r_8>* inout)50 /* \fn virtual void FFTServer::fftf(int l, complex<r_8>* inout) 54 51 \param l length of array 55 52 \param inout input array /output forward FFT (original array destroyed) 56 53 */ 57 /* !\fn virtual void FFTServer::fftb(int l, complex<r_8>* inout)54 /* \fn virtual void FFTServer::fftb(int l, complex<r_8>* inout) 58 55 \param l length of array 59 56 \param inout input array /output backward FFT(original array destroyed) 60 57 */ 61 /* !\fn virtual void FFTServer::fftf(Vector& in, Vector& out)58 /*\fn virtual void FFTServer::fftf(Vector& in, Vector& out) 62 59 \param in input array 63 60 \param out forward FFT 64 61 */ 65 /* !\fn virtual void FFTServer::fftb(Vector& in, Vector& out)62 /* \fn virtual void FFTServer::fftb(Vector& in, Vector& out) 66 63 \param in input array 67 64 \param out backward FFT -
trunk/SophyaLib/NTools/fftpserver.h
r791 r896 8 8 namespace SOPHYA { 9 9 10 //! An FFT server based on fftpack. 10 11 class FFTPackServer : public FFTServerInterface { 11 12 public: -
trunk/SophyaLib/NTools/rzimage.h
r852 r896 15 15 #include "dvlist.h" 16 16 17 namespace SOPHYA {class GeneralFit;} 17 namespace SOPHYA { 18 class GeneralFit; 19 } 18 20 19 21 // Flags de verifications sur les indices … … 231 233 } 232 234 235 233 236 #endif
Note:
See TracChangeset
for help on using the changeset viewer.