Changeset 7531 for trunk/ppImage/src/ppImageLoop.c
- Timestamp:
- Jun 12, 2006, 4:49:23 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageLoop.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageLoop.c
r7522 r7531 20 20 21 21 while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) { 22 psLogMsg ("p sphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);22 psLogMsg ("ppImageLoop", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 23 23 if (!chip->process || !chip->file_exists) { continue; } 24 24 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE); 25 25 26 26 while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) { 27 psLogMsg ("p sphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);27 psLogMsg ("ppImageLoop", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process); 28 28 if (!cell->process || !cell->file_exists) { continue; } 29 29 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE); … … 48 48 49 49 // we perform photometry on the readouts of this chip in the output 50 ppImagePhotom (config, view);50 if (options->doPhotom) ppImagePhotom (config, view); 51 51 52 52 pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER); … … 62 62 } 63 63 64 // ppImageAstrom (config); 64 // we perform astrometry on all chips after sources have been detected 65 if (options->doAstrom) ppImageAstrom (config); 65 66 66 67 // ppImageFPAMosaic (config, view);
Note:
See TracChangeset
for help on using the changeset viewer.
