IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4540 for trunk/psLib/src/fft


Ignore:
Timestamp:
Jul 12, 2005, 9:12:01 AM (21 years ago)
Author:
desonia
Message:

massive restructuring of codebase.

Location:
trunk/psLib/src/fft
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/Makefile.am

    r4446 r4540  
    1 #Makefile for dataManip functions of psLib
     1#Makefile for fft functions of psLib
    22#
    3 INCLUDES = \
    4         -I$(top_srcdir)/src/astro \
    5         -I$(top_srcdir)/src/db \
    6         -I$(top_srcdir)/src/fft \
    7         -I$(top_srcdir)/src/fits \
    8         -I$(top_srcdir)/src/imageops \
    9         -I$(top_srcdir)/src/math \
    10         -I$(top_srcdir)/src/mathtypes \
    11         -I$(top_srcdir)/src/sys \
    12         -I$(top_srcdir)/src/types \
    13         -I$(top_srcdir)/src/xml \
    14         $(all_includes)
     3noinst_LTLIBRARIES = libpslibfft.la
    154
    16 noinst_LTLIBRARIES = libpslibdataManip.la
     5libpslibfft_la_SOURCES = \
     6        psImageFFT.c \
     7        psVectorFFT.c
    178
    18 libpslibdataManip_la_SOURCES = psUnaryOp.c psBinaryOp.c psStats.c \
    19                 psFunctions.c psMatrix.c psVectorFFT.c psMinimize.c psRandom.c
    20 
    21 BUILT_SOURCES = psDataManipErrors.h
    22 EXTRA_DIST = psDataManipErrors.dat psDataManipErrors.h dataManip.i
    23 
    24 psDataManipErrors.h: psDataManipErrors.dat
    25         $(top_srcdir)/src/psParseErrorCodes --data=$? $@
     9EXTRA_DIST = fft.i
    2610
    2711pslibincludedir = $(includedir)
    2812pslibinclude_HEADERS = \
    29         psConstants.h \
    30         psStats.h  \
    31         psFunctions.h \
    32         psMatrix.h \
    33     psBinaryOp.h \
    34     psUnaryOp.h \
    3513        psVectorFFT.h \
    36         psMinimize.h \
    37         psRandom.h
     14        psImageFFT.h
    3815
  • trunk/psLib/src/fft/psImageFFT.h

    r4316 r4540  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-06-18 03:13:02 $
     9 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-07-12 19:12:01 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3333psImage* psImageFFT(
    3434    psImage* out,                      ///< a psImage to recycle.  If NULL, a new psImage is made.
    35     const psImage* image,                 ///< the psImage to apply transform to
     35    const psImage* image,              ///< the psImage to apply transform to
    3636    psFFTFlags direction               ///< the direction of the transform
    3737);
     
    7979 */
    8080psImage* psImagePowerSpectrum(
    81     psImage* out,                       ///< a psImage to recycle.  If NULL, a new psImage is made.
    82     const psImage* in                   ///< the psImage to power spectrum of
     81    psImage* out,                      ///< a psImage to recycle.  If NULL, a new psImage is made.
     82    const psImage* in                  ///< the psImage to power spectrum of
    8383);
    8484
  • trunk/psLib/src/fft/psVectorFFT.c

    r3970 r4540  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-05-19 02:09:39 $
     7 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-07-12 19:12:01 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222#include "psLogMsg.h"
    2323
    24 #include "psDataManipErrors.h"
     24#include "psErrorText.h"
    2525
    2626#define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE
Note: See TracChangeset for help on using the changeset viewer.