Changeset 9270
- Timestamp:
- Oct 4, 2006, 3:17:18 PM (20 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 35 edited
-
psphot.c (modified) (1 diff)
-
psphot.h (modified) (2 diffs)
-
psphotApResid.c (modified) (1 diff)
-
psphotArguments.c (modified) (1 diff)
-
psphotBasicDeblend.c (modified) (1 diff)
-
psphotBlendFit.c (modified) (1 diff)
-
psphotChoosePSF.c (modified) (1 diff)
-
psphotCleanup.c (modified) (1 diff)
-
psphotEnsemblePSF.c (modified) (1 diff)
-
psphotEvalFLT.c (modified) (1 diff)
-
psphotEvalPSF.c (modified) (1 diff)
-
psphotFakeSources.c (modified) (1 diff)
-
psphotFindPeaks.c (modified) (1 diff)
-
psphotFitSet.c (modified) (1 diff)
-
psphotGrowthCurve.c (modified) (1 diff)
-
psphotImageMedian.c (modified) (1 diff)
-
psphotMagnitudes.c (modified) (1 diff)
-
psphotMaskReadout.c (modified) (1 diff)
-
psphotModelGroupInit.c (modified) (1 diff)
-
psphotModelTest.c (modified) (1 diff)
-
psphotOutput.c (modified) (1 diff)
-
psphotParseCamera.c (modified) (1 diff)
-
psphotRadiusChecks.c (modified) (1 diff)
-
psphotReadout.c (modified) (1 diff)
-
psphotReplaceUnfit.c (modified) (1 diff)
-
psphotRoughClass.c (modified) (1 diff)
-
psphotSkyReplace.c (modified) (1 diff)
-
psphotSortBySN.c (modified) (1 diff)
-
psphotSourceFits.c (modified) (1 diff)
-
psphotSourceFreePixels.c (modified) (1 diff)
-
psphotSourceStats.c (modified) (1 diff)
-
psphotTest.c (modified) (1 diff)
-
psphotTestArguments.c (modified) (1 diff)
-
psphotVersion.c (modified) (1 diff)
-
psphotWeightBias.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphot.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphot.h
r8512 r9270 1 # ifdef HAVE_CONFIG_H 2 # include <config.h> 3 # endif 4 1 5 # include <stdio.h> 2 6 # include <strings.h> // for strcasecmp … … 5 9 # include <psmodules.h> 6 10 7 # include "psphotErrorCodes.h"11 # include "psphotErrorCodes.h" 8 12 9 13 # define PSPHOT_RECIPE "PSPHOT" -
trunk/psphot/src/psphotApResid.c
r9269 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 static char DEFAULT_OPTION[] = "SKYBIAS"; -
trunk/psphot/src/psphotArguments.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 # include <glob.h> -
trunk/psphot/src/psphotBasicDeblend.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotBlendFit.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotChoosePSF.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotCleanup.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotEnsemblePSF.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 bool pmSourceChisq (pmModel *model, psImage *image, psImage *mask, psImage *weight); -
trunk/psphot/src/psphotEvalFLT.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotEvalPSF.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotFakeSources.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotFindPeaks.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotFitSet.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotGrowthCurve.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotImageMedian.c
r8881 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotMagnitudes.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotMaskReadout.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotModelGroupInit.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotModelTest.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 static char DEFAULT_MODE[] = "EXT"; -
trunk/psphot/src/psphotOutput.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotParseCamera.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotRadiusChecks.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 # define RADIUS_TYPE float -
trunk/psphot/src/psphotReadout.c
r9269 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotReplaceUnfit.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotRoughClass.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotSkyReplace.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotSortBySN.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotSourceFits.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotSourceFreePixels.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotSourceStats.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotTest.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotTestArguments.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 static int usage (); -
trunk/psphot/src/psphotVersion.c
r9269 r9270 1 # include "psphot.h"1 # include "psphot.h" 2 2 3 const char * 4 psphotCVSName(void) 5 { 3 const char *psphotCVSName(void) { 6 4 static char *name = "$Name: not supported by cvs2svn $"; 7 8 5 return(name); 9 6 } -
trunk/psphot/src/psphotWeightBias.c
r8780 r9270 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2
Note:
See TracChangeset
for help on using the changeset viewer.
