Changeset 7771
- Timestamp:
- Jun 30, 2006, 2:07:26 PM (20 years ago)
- Location:
- trunk/ppImage/src
- Files:
-
- 1 added
- 5 edited
-
Makefile.am (modified) (2 diffs)
-
ppImage.h (modified) (1 diff)
-
ppImageAddstar.c (added)
-
ppImageLoop.c (modified) (1 diff)
-
ppImageOptions.c (modified) (1 diff)
-
ppImageOptions.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/Makefile.am
r7738 r7771 21 21 ppImageMosaic.c \ 22 22 ppImagePhotom.c \ 23 ppImageAstrom.c 23 ppImageAstrom.c \ 24 ppImageAddstar.c 24 25 25 26 ppFocus_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSPHOT_CFLAGS) $(PSASTRO_CFLAGS) $(ppImage_CFLAGS) … … 40 41 ppImageMosaic.c \ 41 42 ppImagePhotom.c \ 42 ppImageAstrom.c 43 ppImageAstrom.c \ 44 ppImageAddstar.c 43 45 44 46 ppTest_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(ppImage_CFLAGS) -
trunk/ppImage/src/ppImage.h
r7749 r7771 39 39 bool ppImagePhotom (pmConfig *config, pmFPAview *view); 40 40 bool ppImageAstrom (pmConfig *config); 41 bool ppImageAddstar (pmConfig *config); 41 42 42 43 bool ppImageMosaicChip (pmConfig *config, const pmFPAview *view, char *outFile, char *inFile); -
trunk/ppImage/src/ppImageLoop.c
r7738 r7771 58 58 // we perform astrometry on all chips after sources have been detected 59 59 if (options->doAstromChip || options->doAstromMosaic) ppImageAstrom (config); 60 if (options->doAddstar) ppImageAddstar (config); 60 61 61 62 if (!pmFPAfileIOChecks (config, view, PM_FPA_AFTER)) return false; -
trunk/ppImage/src/ppImageOptions.c
r7621 r7771 188 188 } 189 189 190 options->doAddstar = psMetadataLookupBool(NULL, recipe, "ADDSTAR"); 191 if (options->doAddstar && !(options->doAstromChip || options->doAstromMosaic)) { 192 psLogMsg(__func__, PS_LOG_ERROR, "Invalid Phase2 Options: cannot Addstar without Astrometry"); 193 exit(EXIT_FAILURE); 194 } 195 190 196 return options; 191 197 } -
trunk/ppImage/src/ppImageOptions.h
r7621 r7771 14 14 bool doAstromChip; // per-chip Astrometry 15 15 bool doAstromMosaic; // full-mosaic Astrometry 16 bool doAddstar; // add results to object database? 16 17 17 18 bool doOverscan; // Overscan subtraction
Note:
See TracChangeset
for help on using the changeset viewer.
