Changeset 7019
- Timestamp:
- Apr 30, 2006, 3:57:06 PM (20 years ago)
- Location:
- trunk/psModules
- Files:
-
- 50 deleted
- 6 edited
-
configure.ac (modified) (3 diffs)
-
src/astrom/Makefile.am (modified) (1 diff)
-
src/astrom/pmAstrometry.c (deleted)
-
src/astrom/pmAstrometry.h (deleted)
-
src/astrom/pmChipMosaic.c (deleted)
-
src/astrom/pmChipMosaic.h (deleted)
-
src/astrom/pmConcepts.c (deleted)
-
src/astrom/pmConcepts.h (deleted)
-
src/astrom/pmConceptsRead.c (deleted)
-
src/astrom/pmConceptsRead.h (deleted)
-
src/astrom/pmConceptsStandard.c (deleted)
-
src/astrom/pmConceptsStandard.h (deleted)
-
src/astrom/pmConceptsWrite.c (deleted)
-
src/astrom/pmConceptsWrite.h (deleted)
-
src/astrom/pmFPA.c (deleted)
-
src/astrom/pmFPA.h (deleted)
-
src/astrom/pmFPAConceptsGet.c (deleted)
-
src/astrom/pmFPAConceptsGet.h (deleted)
-
src/astrom/pmFPAConceptsSet.c (deleted)
-
src/astrom/pmFPAConceptsSet.h (deleted)
-
src/astrom/pmFPAConstruct.c (deleted)
-
src/astrom/pmFPAConstruct.h (deleted)
-
src/astrom/pmFPACopy.c (deleted)
-
src/astrom/pmFPACopy.h (deleted)
-
src/astrom/pmFPAHeader.c (deleted)
-
src/astrom/pmFPAHeader.h (deleted)
-
src/astrom/pmFPAMaskWeight.c (deleted)
-
src/astrom/pmFPAMaskWeight.h (deleted)
-
src/astrom/pmFPARead.c (deleted)
-
src/astrom/pmFPARead.h (deleted)
-
src/astrom/pmFPAUtils.c (deleted)
-
src/astrom/pmFPAUtils.h (deleted)
-
src/astrom/pmFPAWrite.c (deleted)
-
src/astrom/pmFPAWrite.h (deleted)
-
src/astrom/pmFPA_JPEG.c (deleted)
-
src/astrom/pmFPA_JPEG.h (deleted)
-
src/astrom/pmFPAfile.c (deleted)
-
src/astrom/pmFPAfile.h (deleted)
-
src/astrom/pmFPAview.c (deleted)
-
src/astrom/pmFPAview.h (deleted)
-
src/astrom/pmHDU.c (deleted)
-
src/astrom/pmHDU.h (deleted)
-
src/astrom/pmHDUUtils.c (deleted)
-
src/astrom/pmHDUUtils.h (deleted)
-
src/astrom/pmReadout.c (deleted)
-
src/astrom/pmReadout.h (deleted)
-
src/imcombine/Makefile.am (modified) (1 diff)
-
src/imsubtract/Makefile.am (modified) (1 diff)
-
src/imsubtract/pmImageSubtract.c (deleted)
-
src/imsubtract/pmImageSubtract.h (deleted)
-
src/imsubtract/pmSubtractBias.c (deleted)
-
src/imsubtract/pmSubtractBias.h (deleted)
-
src/imsubtract/pmSubtractSky.c (deleted)
-
src/imsubtract/pmSubtractSky.h (deleted)
-
src/psmodules.h (modified) (3 diffs)
-
test/camera/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/configure.ac
r6872 r7019 49 49 50 50 SRCPATH='${top_srcdir}/src' 51 SRCDIRS=" astrom config detrend imcombine imsubtract objects pslib"51 SRCDIRS="pslib config concepts camera astrom detrend imcombine objects" 52 52 # escape two escapes at this level so \\ gets passed to the shell and \ to perl 53 53 SRCINC=`echo "${SRCDIRS=}" | ${PERL} -pe "s|(\w+)|-I\\\\${SRCPATH=}/\1|g"` … … 114 114 src/Makefile 115 115 src/astrom/Makefile 116 src/camera/Makefile 116 117 src/config/Makefile 118 src/concepts/Makefile 117 119 src/detrend/Makefile 118 120 src/imcombine/Makefile 119 src/imsubtract/Makefile120 121 src/objects/Makefile 121 122 src/pslib/Makefile … … 123 124 test/astrom/Makefile 124 125 test/config/Makefile 126 test/camera/Makefile 127 test/concepts/Makefile 125 128 test/detrend/Makefile 126 129 test/imcombine/Makefile 127 test/imsubtract/Makefile128 130 test/objects/Makefile 129 131 test/pslib/Makefile -
trunk/psModules/src/astrom/Makefile.am
r7007 r7019 4 4 libpsmoduleastrom_la_LDFLAGS = -release $(PACKAGE_VERSION) 5 5 libpsmoduleastrom_la_SOURCES = \ 6 pmFPA.c \7 pmFPAConstruct.c \8 pmFPACopy.c \9 pmFPAHeader.c \10 pmFPARead.c \11 pmFPAUtils.c \12 pmFPAWrite.c \13 pmHDU.c \14 pmHDUUtils.c \15 pmReadout.c \16 pmChipMosaic.c \17 pmConcepts.c \18 pmConceptsRead.c \19 pmConceptsWrite.c \20 pmConceptsStandard.c \21 pmFPA_JPEG.c \22 pmFPAview.c \23 pmFPAfile.c \24 6 pmAstrometryObjects.c 25 7 26 # pmFPAMaskWeight.c \27 8 # pmFPAAstrometry.c 28 # pmChipMosaic.c29 9 30 10 psmoduleincludedir = $(includedir) 31 11 psmoduleinclude_HEADERS = \ 32 pmFPA.h \33 pmFPAConstruct.h \34 pmFPACopy.h \35 pmFPAHeader.h \36 pmFPARead.h \37 pmFPAUtils.h \38 pmFPAWrite.h \39 pmHDU.h \40 pmHDUUtils.h \41 pmReadout.h \42 pmChipMosaic.h \43 pmConcepts.h \44 pmConceptsRead.h \45 pmConceptsWrite.h \46 pmConceptsStandard.h \47 pmFPA_JPEG.h \48 pmFPAview.h \49 pmFPAfile.h \50 12 pmAstrometryObjects.h 51 13 52 # pmFPAMaskWeight.h \53 14 # pmFPAAstrometry.h 54 # pmAstrometryObjects.h55 # pmChipMosaic.h -
trunk/psModules/src/imcombine/Makefile.am
r6872 r7019 3 3 libpsmoduleimcombine_la_CPPFLAGS = $(SRCINC) $(PSMODULE_CFLAGS) 4 4 libpsmoduleimcombine_la_LDFLAGS = -release $(PACKAGE_VERSION) 5 libpsmoduleimcombine_la_SOURCES = pmImageCombine.c 5 6 libpsmoduleimcombine_la_SOURCES = \ 7 pmImageCombine.c \ 8 pmImageSubtract.c 6 9 # pmReadoutCombine.c 7 10 8 11 psmoduleincludedir = $(includedir) 9 12 psmoduleinclude_HEADERS = \ 10 pmImageCombine.h 13 pmImageCombine.h \ 14 pmImageSubtract.h 11 15 # pmReadoutCombine.h -
trunk/psModules/src/imsubtract/Makefile.am
r6872 r7019 3 3 libpsmoduleimsubtract_la_CPPFLAGS = $(SRCINC) $(PSMODULE_CFLAGS) 4 4 libpsmoduleimsubtract_la_LDFLAGS = -release $(PACKAGE_VERSION) 5 libpsmoduleimsubtract_la_SOURCES = pmImageSubtract.c \ 6 pmSubtractBias.c 7 # pmSubtractSky.c 5 libpsmoduleimsubtract_la_SOURCES = 6 7 # pmImageSubtract.c \ 8 # pmSubtractBias.c 9 # pmSubtractSky.c 8 10 9 11 psmoduleincludedir = $(includedir) 10 psmoduleinclude_HEADERS = \ 11 pmImageSubtract.h \ 12 pmSubtractBias.h 12 psmoduleinclude_HEADERS = 13 14 # pmImageSubtract.h \ 15 # pmSubtractBias.h 13 16 # pmSubtractSky.h -
trunk/psModules/src/psmodules.h
r7004 r7019 21 21 #include <pmConfig.h> 22 22 23 // the following headers are from psModule: astrom23 // the following headers are from psModule:concepts 24 24 #include <pmConcepts.h> 25 25 #include <pmConceptsRead.h> 26 26 #include <pmConceptsStandard.h> 27 27 #include <pmConceptsWrite.h> 28 29 // the following headers are from psModule:camera 28 30 #include <pmHDU.h> 29 31 #include <pmHDUUtils.h> … … 39 41 #include <pmFPA_JPEG.h> 40 42 #include <pmReadout.h> 43 44 // the following headers are from psModule:astrom 41 45 #include <pmAstrometryObjects.h> 42 46 #include <pmChipMosaic.h> … … 49 53 #include <pmMaskBadPixelsErrors.h> 50 54 #include <pmNonLinear.h> 55 #include <pmSubtractBias.h> 56 // #include <pmSubtractSky.h> 51 57 52 58 // the following headers are from psModule:imcombine 53 59 #include <pmImageCombine.h> 60 #include <pmImageSubtract.h> 54 61 // #include <pmReadoutCombine.h> 55 56 // the following headers are from psModule:detrend57 #include <pmSubtractBias.h>58 #include <pmImageSubtract.h>59 // #include <pmSubtractSky.h>60 62 61 63 // the following headers are from psModule:objects -
trunk/psModules/test/camera/Makefile.am
r5316 r7019 3 3 AM_LDFLAGS = -L$(top_builddir)/src -lpsmodule $(PSMODULE_LIBS) 4 4 AM_CFLAGS = @AM_CFLAGS@ $(PSMODULE_CFLAGS) $(SRCINC) 5 AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) 5 6 6 TESTS = 7 TESTS =\ 8 tst_pmAstrometry 9 10 tst_pmAstrometry_SOURCES = tst_pmAstrometry.c 7 11 8 12 check_PROGRAMS = $(TESTS)
Note:
See TracChangeset
for help on using the changeset viewer.
