Changeset 7345 for trunk/psphot/src/psphotImageLoop.c
- Timestamp:
- Jun 5, 2006, 11:58:18 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotImageLoop.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotImageLoop.c
r6862 r7345 11 11 pmFPAfile *input = psMetadataLookupPtr (&status, config->files, "PSPHOT.INPUT"); 12 12 if (!status) { 13 psError StackPrint(stderr, "Can't find input data!\n");14 exit(EXIT_FAILURE);13 psError(PS_ERR_IO, false, "Can't find input data!"); 14 return false; 15 15 } 16 16 17 17 pmFPAview *view = pmFPAviewAlloc (0); 18 18 19 19 // files associated with the science image 20 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE); 21 20 if (!pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE)) { 21 psFree(view); 22 return false; 23 } 22 24 while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) { 23 25 psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
Note:
See TracChangeset
for help on using the changeset viewer.
