Changeset 10855 for trunk/psastro/src/psastro.c
- Timestamp:
- Dec 29, 2006, 8:36:33 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psastro/src/psastro.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastro.c
r10833 r10855 53 53 } 54 54 55 if (!psastroChipAstrom (config, refs)) { 56 psErrorStackPrint(stderr, "failed to perform single chip astrometry\n"); 57 exit (1); 55 bool chipastro = psMetadataLookupBool (NULL, config->arguments, "PSASTRO.CHIP.MODE"); 56 if (chipastro) { 57 if (!psastroChipAstrom (config, refs)) { 58 psErrorStackPrint(stderr, "failed to perform single chip astrometry\n"); 59 exit (1); 60 } 58 61 } 59 62 60 bool mosastro = psMetadataLookupBool (NULL, config->arguments, " MOSAIC.MODE");61 if ( !mosastro) {63 bool mosastro = psMetadataLookupBool (NULL, config->arguments, "PSASTRO.MOSAIC.MODE"); 64 if (mosastro) { 62 65 if (!psastroMosaicAstrom (config, refs)) { 63 66 psErrorStackPrint(stderr, "failed to perform mosaic camera astrometry\n");
Note:
See TracChangeset
for help on using the changeset viewer.
