Changeset 8780 for trunk/psphot
- Timestamp:
- Sep 8, 2006, 4:24:45 PM (20 years ago)
- Location:
- trunk/psphot
- Files:
-
- 37 edited
-
autogen.sh (modified) (3 diffs)
-
configure.ac (modified) (2 diffs)
-
src/psphot.c (modified) (1 diff)
-
src/psphotApResid.c (modified) (1 diff)
-
src/psphotArguments.c (modified) (1 diff)
-
src/psphotBasicDeblend.c (modified) (1 diff)
-
src/psphotBlendFit.c (modified) (1 diff)
-
src/psphotChoosePSF.c (modified) (1 diff)
-
src/psphotCleanup.c (modified) (1 diff)
-
src/psphotEnsemblePSF.c (modified) (1 diff)
-
src/psphotEvalFLT.c (modified) (1 diff)
-
src/psphotEvalPSF.c (modified) (1 diff)
-
src/psphotFakeSources.c (modified) (1 diff)
-
src/psphotFindPeaks.c (modified) (1 diff)
-
src/psphotFitSet.c (modified) (1 diff)
-
src/psphotGrowthCurve.c (modified) (1 diff)
-
src/psphotImageLoop.c (modified) (1 diff)
-
src/psphotImageMedian.c (modified) (1 diff)
-
src/psphotMagnitudes.c (modified) (1 diff)
-
src/psphotMaskReadout.c (modified) (1 diff)
-
src/psphotModelGroupInit.c (modified) (1 diff)
-
src/psphotModelTest.c (modified) (1 diff)
-
src/psphotOutput.c (modified) (1 diff)
-
src/psphotParseCamera.c (modified) (1 diff)
-
src/psphotRadiusChecks.c (modified) (1 diff)
-
src/psphotReadout.c (modified) (1 diff)
-
src/psphotReplaceUnfit.c (modified) (1 diff)
-
src/psphotRoughClass.c (modified) (1 diff)
-
src/psphotSkyReplace.c (modified) (1 diff)
-
src/psphotSortBySN.c (modified) (1 diff)
-
src/psphotSourceFits.c (modified) (1 diff)
-
src/psphotSourceFreePixels.c (modified) (1 diff)
-
src/psphotSourceStats.c (modified) (1 diff)
-
src/psphotTest.c (modified) (1 diff)
-
src/psphotTestArguments.c (modified) (1 diff)
-
src/psphotVersion.c (modified) (1 diff)
-
src/psphotWeightBias.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/autogen.sh
r6147 r8780 17 17 LIBTOOLIZE=libtoolize 18 18 ACLOCAL=aclocal 19 #AUTOHEADER=autoheader19 AUTOHEADER=autoheader 20 20 AUTOMAKE=automake 21 21 AUTOCONF=autoconf … … 37 37 } 38 38 39 #($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || {40 #echo41 #echo "You must have $AUTOHEADER installed to compile $PROJECT."42 #echo "Download the appropriate package for your distribution,"43 #echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"44 #DIE=145 #}39 ($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 || { 40 echo 41 echo "You must have $AUTOHEADER installed to compile $PROJECT." 42 echo "Download the appropriate package for your distribution," 43 echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/" 44 DIE=1 45 } 46 46 47 47 ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { … … 77 77 $LIBTOOLIZE --copy --force || echo "$LIBTOOlIZE failed" 78 78 $ACLOCAL || echo "$ACLOCAL failed" 79 #$AUTOHEADER || echo "$AUTOHEADER failed"79 $AUTOHEADER || echo "$AUTOHEADER failed" 80 80 $AUTOMAKE --add-missing --force-missing --copy || echo "$AUTOMAKE failed" 81 81 $AUTOCONF || echo "$AUTOCONF failed" -
trunk/psphot/configure.ac
r8671 r8780 6 6 7 7 AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2]) 8 dnl AM_CONFIG_HEADER([config.h])8 AM_CONFIG_HEADER([src/config.h]) 9 9 AM_MAINTAINER_MODE 10 10 … … 14 14 AC_PROG_INSTALL 15 15 AC_PROG_LIBTOOL 16 17 dnl enable largefile supports 18 AC_SYS_LARGEFILE 16 19 17 20 dnl handle debug building -
trunk/psphot/src/psphot.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotApResid.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 static char DEFAULT_OPTION[] = "SKYBIAS"; -
trunk/psphot/src/psphotArguments.c
r7908 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 # include <glob.h> -
trunk/psphot/src/psphotBasicDeblend.c
r7758 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotBlendFit.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotChoosePSF.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotCleanup.c
r7521 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotEnsemblePSF.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 bool pmSourceChisq (pmModel *model, psImage *image, psImage *mask, psImage *weight); -
trunk/psphot/src/psphotEvalFLT.c
r6715 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotEvalPSF.c
r6862 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotFakeSources.c
r6900 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotFindPeaks.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotFitSet.c
r6950 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotGrowthCurve.c
r6919 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotImageLoop.c
r7582 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotImageMedian.c
r7941 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotMagnitudes.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotMaskReadout.c
r6900 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotModelGroupInit.c
r7505 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotModelTest.c
r8776 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 static char DEFAULT_MODE[] = "EXT"; -
trunk/psphot/src/psphotOutput.c
r7328 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotParseCamera.c
r7907 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotRadiusChecks.c
r6862 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 # define RADIUS_TYPE float -
trunk/psphot/src/psphotReadout.c
r8475 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotReplaceUnfit.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotRoughClass.c
r8437 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotSkyReplace.c
r6851 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotSortBySN.c
r5672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotSourceFits.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotSourceFreePixels.c
r7638 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotSourceStats.c
r8672 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotTest.c
r6900 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 -
trunk/psphot/src/psphotTestArguments.c
r6117 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6 static int usage (); -
trunk/psphot/src/psphotVersion.c
r8512 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include "psphot.h" 2 6 -
trunk/psphot/src/psphotWeightBias.c
r6900 r8780 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 # include "psphot.h" 2 6
Note:
See TracChangeset
for help on using the changeset viewer.
