Changeset 896 in Sophya for trunk/SophyaLib/NTools


Ignore:
Timestamp:
Apr 12, 2000, 7:50:34 PM (25 years ago)
Author:
ansari
Message:

Documentation- namespace, utils.cc mis ds SysTools - Reza 12/4/2000

Location:
trunk/SophyaLib/NTools
Files:
2 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/NTools.o.list

    r852 r896  
    3232simplesort.o
    3333tabmath.o
    34 utils.o
  • trunk/SophyaLib/NTools/cimage.h

    r852 r896  
    228228}
    229229
     230
    230231/*  .......................................................  */
    231232/*         Fonctions de copie d'images et de paves           */
     
    294295#endif
    295296
     297
    296298#endif
    297299
  • trunk/SophyaLib/NTools/cspline.h

    r501 r896  
    88// Class CSpline et CSpline2 selon Numerical Receipes (cmv 17/02/97)
    99///////////////////////////////////////////////////////////////////
    10 class CSpline EXC_AWARE {
     10namespace SOPHYA {
     11
     12//! Spline fit to a set of points Y=f(X) (as in Numerical Receipes).
     13class CSpline {
    1114
    1215public:
     
    7174
    7275///////////////////////////////////////////////////////////////////
    73 class CSpline2 EXC_AWARE {
     76//! 2D Spline fit to a set of points Y=f(X1,X2) (as in Numerical Receipes).
     77class CSpline2  {
    7478
    7579public:
     
    116120};
    117121
     122} // Fin du namespace
     123
    118124#endif /* CSPLINE_H_SEEN */
  • trunk/SophyaLib/NTools/dynccd.h

    r244 r896  
    88#include "ppersist.h"
    99
     10namespace SOPHYA {
     11
    1012enum {kConstantNoise = 0, kPhotonNoise, kSigFondNoise, kSqrtADUNoise};
    1113
    12 class DynCCD EXC_AWARE
     14class DynCCD
    1315{
    1416  public :
     
    3032  float Noise(float pixel) const;
    3133};
     34
     35} // Fin du namespace
    3236
    3337// Quelques fonctions pour manipuler des images de bruit
     
    6367//STRUCTPERSISTIO(DynCCD, TypNoise, sizeof(int_4)+6*sizeof(float))
    6468
     69
    6570#endif
  • trunk/SophyaLib/NTools/fftpserver.cc

    r805 r896  
    55
    66
    7 /*! \class FFTPackServer
    8  \brief An FFT server based on fftpack
    9 
     7/*!
     8\class SOPHYA::FFTPackServer
    109A class that calculates Fourier transforms forwards and backwards.
    1110
     
    1615Otherwise, the output is in the fftpack format.
    1716
    18 Complex input must be entered using the <complex> template.  Otherwise,
    19 all input is assumed to be real.
    2017
    2118Due to the way that fftpack manages
     
    2623*/
    2724
    28 /*! \fn virtual void FFTServer::fftf(int l, r_4* inout)
     25/* \fn virtual void FFTServer::fftf(int l, r_4* inout)
    2926  \param l length of array
    3027  \param inout input array /output forward FFT (original array destroyed)
     
    3431  \param inout input array /output backward FFT (original array destroyed)
    3532*/
    36 /*! \fn virtual void FFTServer::fftf(int l, r_8* inout)
     33/* \fn virtual void FFTServer::fftf(int l, r_8* inout)
    3734  \param l length of array
    3835  \param inout input array /output forward FFT (original array destroyed)
    3936  \param inout input/output array (original array destroyed)
    4037*/
    41 /*! \fn virtual void FFTServer::fftb(int l, r_8* inout)
     38/* \fn virtual void FFTServer::fftb(int l, r_8* inout)
    4239  \param l length of array
    4340  \param inout input array /output backward FFT(original array destroyed)
    4441*/
    45 /*!\fn  virtual void FFTServer::fftf(int l, complex<r_4>* inout)
     42/*\fn  virtual void FFTServer::fftf(int l, complex<r_4>* inout)
    4643  \param l length of array
    4744  \param inout input array /output forward FFT (original array destroyed)
    4845*/
    49 /*! \fn virtual void FFTServer::fftb(int l, complex<r_4>* inout)
     46/* \fn virtual void FFTServer::fftb(int l, complex<r_4>* inout)
    5047  \param l length of array
    5148  \param inout input array /output backward FFT (original array destroyed)
    5249*/
    53 /*! \fn virtual void FFTServer::fftf(int l, complex<r_8>* inout)
     50/* \fn virtual void FFTServer::fftf(int l, complex<r_8>* inout)
    5451  \param l length of array
    5552  \param inout input array /output forward FFT (original array destroyed)
    5653*/
    57 /*! \fn virtual void FFTServer::fftb(int l, complex<r_8>* inout)
     54/* \fn virtual void FFTServer::fftb(int l, complex<r_8>* inout)
    5855  \param l length of array
    5956  \param inout input array /output backward FFT(original array destroyed)
    6057*/
    61 /*!\fn  virtual void FFTServer::fftf(Vector& in, Vector& out)
     58/*\fn  virtual void FFTServer::fftf(Vector& in, Vector& out)
    6259  \param in input array
    6360  \param out forward FFT
    6461*/
    65 /*! \fn virtual void FFTServer::fftb(Vector& in, Vector& out)
     62/* \fn virtual void FFTServer::fftb(Vector& in, Vector& out)
    6663  \param in input array
    6764  \param out backward FFT
  • trunk/SophyaLib/NTools/fftpserver.h

    r791 r896  
    88namespace SOPHYA {
    99
     10//! An FFT server based on fftpack.
    1011class FFTPackServer : public FFTServerInterface {
    1112 public:
  • trunk/SophyaLib/NTools/rzimage.h

    r852 r896  
    1515#include "dvlist.h"
    1616
    17 namespace SOPHYA {class GeneralFit;}
     17namespace SOPHYA {
     18class GeneralFit;
     19}
    1820
    1921// Flags de verifications sur les indices
     
    231233}
    232234
     235
    233236#endif
Note: See TracChangeset for help on using the changeset viewer.