Changeset 3275
- Timestamp:
- Feb 17, 2005, 12:22:06 PM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 1 added
- 8 edited
-
DEV_NOTES (added)
-
README (modified) (1 diff)
-
test/astronomy/Makefile.am (modified) (3 diffs)
-
test/collections/Makefile.am (modified) (2 diffs)
-
test/dataIO/Makefile.am (modified) (1 diff)
-
test/dataManip/Makefile.am (modified) (2 diffs)
-
test/fileUtils/Makefile.am (modified) (1 diff)
-
test/image/Makefile.am (modified) (3 diffs)
-
test/sysUtils/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/README
r3124 r3275 1 Pan-STARRS Image Processing Pipeline Library 2 ============================================ 3 4 The is psLib, the Pan-STARRS Image Processing Pipeline Library, a base 5 collection of functions for the Pan-STARRS PS1 observatory. 6 7 It was developed by the Maui High Performance Computing Center 8 (http://www.mhpcc.edu) for the University of Hawai'i Institute for Astronomy 9 (http://ifa.hawaii.edu). 10 11 psLib is free software, you can redistribute it and/or modify it under 12 the terms of the GNU General Public License. 13 14 The GNU General Public License does not permit this software to be 15 redistributed in proprietary programs. 16 17 This library is distributed in the hope that it will be useful, but 18 WITHOUT ANY WARRANTY; without even the implied warranty of 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 20 21 Availability 22 ============ 23 24 The current version of psLib is always available from 25 http://mhpcc.pan-starrs.org/code. 26 27 Installation 28 ============ 29 30 psLib follows the standard GNU installation procedure. Please consult 31 the INSTALL file in this distribution for more detailed instructions. 32 33 For information about specific platforms and compilers see the 34 "Compilation Notes" section in the INSTALL file. 35 36 More information about Pan-STARRS 37 ================================= 38 39 The project homepage is http://www.pan-starrs.org. 40 41 Reporting Bugs 42 ============== 43 44 If you find a bug, please report it via the project's Bugzilla webpage at 45 http://www.pan-starrs.org/bugzilla or email robert.desonia@mhpcc.hpc.mil. 46 47 -
trunk/psLib/test/astronomy/Makefile.am
r3246 r3275 15 15 16 16 17 check_PROGRAMS = tst_psTime_01 \17 TESTS = tst_psTime_01 \ 18 18 tst_psTime_02 \ 19 19 tst_psTime_03 \ … … 31 31 tst_psAstrometry01 32 32 33 check_PROGRAMS =$(TESTS) 34 33 35 check_DATA = test.config \ 34 36 psTime.config \ … … 43 45 TESTS_ENVIRONMENT = export PS_CONFIG_FILE="psTime.config" && perl $(top_srcdir)/test/runTest --verified=$(srcdir)/verified 44 46 45 TESTS = tst_psTime_01 \46 tst_psTime_02 \47 tst_psTime_03 \48 tst_psTime_04 \49 tst_psMetadataIO \50 tst_psMetadata_01 \51 tst_psMetadata_02 \52 tst_psMetadata_03 \53 tst_psMetadata_04 \54 tst_psMetadata_05 \55 tst_psMetadata_06 \56 tst_psMetadata_07 \57 tst_psAstrometry \58 tst_psCoord \59 tst_psAstrometry0160 47 61 48 tests: $(check_DATA) $(TESTS) -
trunk/psLib/test/collections/Makefile.am
r3237 r3275 15 15 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) 16 16 17 check_PROGRAMS = \18 tst_psVector \19 tst_psArray \20 tst_psArray01 \21 tst_psArray02 \22 tst_psBitSet \23 tst_psVectorSort_01 \24 tst_psVectorSort_02 \25 tst_psVectorSort_03 \26 tst_psVectorSort_04 \27 tst_psList \28 tst_psHash00 \29 tst_psHash01 \30 tst_psHash02 \31 tst_psHash03 \32 tst_psHash04 \33 tst_psHash05 \34 tst_psScalar35 36 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified37 17 TESTS = \ 38 18 tst_psVector \ … … 53 33 tst_psHash05 \ 54 34 tst_psScalar 35 36 check_PROGRAMS =$(TESTS) 37 38 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 39 55 40 tests: $(TESTS) 56 41 -
trunk/psLib/test/dataIO/Makefile.am
r3237 r3275 16 16 AM_CFLAGS = -DUTC_DAT_FILE="\"$(top_srcdir)/share/pslib/tai_utc.dat\"" 17 17 18 check_PROGRAMS = \18 TESTS = \ 19 19 tst_psLookupTable_01 \ 20 20 tst_psFits 21 21 22 check_PROGRAMS = $(TESTS) 23 22 24 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 23 TESTS = \24 tst_psLookupTable_01 \25 tst_psFits26 25 tests: $(TESTS) 27 26 -
trunk/psLib/test/dataManip/Makefile.am
r3237 r3275 15 15 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) 16 16 17 check_PROGRAMS = \17 TESTS = \ 18 18 tst_psFunc00 \ 19 19 tst_psFunc01 \ … … 57 57 tst_psVectorFFT 58 58 59 check_PROGRAMS = $(TESTS) 60 59 61 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 60 TESTS = \ 61 tst_psFunc00 \ 62 tst_psFunc01 \ 63 tst_psFunc02 \ 64 tst_psFunc03 \ 65 tst_psFunc04 \ 66 tst_psFunc05 \ 67 tst_psFunc07 \ 68 tst_psHist00 \ 69 tst_psHist01 \ 70 tst_psHist02 \ 71 tst_psHist03 \ 72 tst_psMatrix01 \ 73 tst_psMatrix02 \ 74 tst_psMatrix03 \ 75 tst_psMatrix04 \ 76 tst_psMatrix05 \ 77 tst_psMatrix06 \ 78 tst_psMatrix07 \ 79 tst_psMatrixVectorArithmetic01 \ 80 tst_psMatrixVectorArithmetic02 \ 81 tst_psMatrixVectorArithmetic03 \ 82 tst_psMatrixVectorArithmetic04 \ 83 tst_psMinimize04 \ 84 tst_psMinimize04_F32 \ 85 tst_psMinimize04b \ 86 tst_psMinimize04b_F32 \ 87 tst_psMinimize05 \ 88 tst_psMinimize06 \ 89 tst_psMinimize07 \ 90 tst_psStats00 \ 91 tst_psStats01 \ 92 tst_psStats02 \ 93 tst_psStats03 \ 94 tst_psStats05 \ 95 tst_psStats06 \ 96 tst_psStats07 \ 97 tst_psStats08 \ 98 tst_psStats09 \ 99 tst_psRandom \ 100 tst_psVectorFFT 62 101 63 tests: $(TESTS) 102 64 -
trunk/psLib/test/fileUtils/Makefile.am
r3237 r3275 16 16 AM_CFLAGS = -DUTC_DAT_FILE="\"$(top_srcdir)/share/pslib/tai_utc.dat\"" 17 17 18 check_PROGRAMS = \18 TESTS = \ 19 19 tst_psLookupTable_01 \ 20 20 tst_psFits 21 21 22 check_PROGRAMS = $(TESTS) 23 22 24 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 23 TESTS = \24 tst_psLookupTable_01 \25 tst_psFits26 25 tests: $(TESTS) 27 26 -
trunk/psLib/test/image/Makefile.am
r3246 r3275 15 15 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) 16 16 17 check_PROGRAMS = \17 TESTS = \ 18 18 tst_psImage \ 19 19 tst_psImageFFT \ … … 29 29 tst_psImageInterpolate 30 30 31 check_PROGRAMS =$(TESTS) 32 31 33 check_DATA = \ 32 34 fBiOut.fits \ … … 36 38 37 39 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 38 TESTS = \ 39 tst_psImage \ 40 tst_psImageFFT \ 41 tst_psImageManip \ 42 tst_psImageStats00 \ 43 tst_psImageStats01 \ 44 tst_psImageStats02 \ 45 tst_psImageStats03 \ 46 tst_psImageStats04 \ 47 tst_psImageExtraction \ 48 tst_psImageConvolve \ 49 tst_psImageIO \ 50 tst_psImageInterpolate 40 51 41 tests: $(TESTS) 52 42 -
trunk/psLib/test/sysUtils/Makefile.am
r3237 r3275 15 15 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) 16 16 17 check_PROGRAMS = \17 TESTS = \ 18 18 tst_psAbort \ 19 19 tst_psMemory \ … … 24 24 tst_psConfigure 25 25 26 check_PROGRAMS =$(TESTS) 27 26 28 TESTS_ENVIRONMENT = perl $(top_srcdir)/test/runTest -verified=$(srcdir)/verified 27 TESTS = \ 28 tst_psAbort \ 29 tst_psMemory \ 30 tst_psError \ 31 tst_psLogMsg \ 32 tst_psStringCopy \ 33 tst_psTrace \ 34 tst_psConfigure 29 35 30 tests: $(TESTS) 36 31
Note:
See TracChangeset
for help on using the changeset viewer.
