Changeset 6862 for trunk/psphot/src/psphotImageLoop.c
- Timestamp:
- Apr 14, 2006, 11:58:44 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotImageLoop.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotImageLoop.c
r6727 r6862 2 2 3 3 // XXX where do we load optional mask and weight input images? 4 5 4 bool psphotImageLoop (pmConfig *config) { 6 5 … … 23 22 while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) { 24 23 psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 25 if (! chip->process) { continue; } 26 if (! chip->file_exists) { continue; } 24 if (! chip->process || ! chip->file_exists) { continue; } 27 25 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE); 28 26 29 27 while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) { 30 28 psLogMsg ("psphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process); 31 if (! cell->process) { continue; } 32 if (! cell->file_exists) { continue; } 29 if (! cell->process || ! cell->file_exists) { continue; } 33 30 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE); 34 31 … … 63 60 // PSPHOT.PSF : sample PSF images 64 61 65 66 /**67 68 filename | pmFPAfile | pmFPA | pmFPAview69 chip00.f | PSPHOT.IN | input | view70 chip01.f | PSPHOT.IN | input | view71 chip02.f | PSPHOT.IN | input | view72 chip03.f | PSPHOT.IN | input | view73 74 out00.f | PSPHOT.OUT | input | view75 out01.f | PSPHOT.OUT | input | view76 out02.f | PSPHOT.OUT | input | view77 out03.f | PSPHOT.OUT | input | view78 79 obj00.f | PSPHOT.OBJ | input | view80 obj01.f | PSPHOT.OBJ | input | view81 obj02.f | PSPHOT.OBJ | input | view82 obj03.f | PSPHOT.OBJ | input | view83 84 bin00.f | PSPHOT.BIN | binned | view85 bin01.f | PSPHOT.BIN | binned | view86 bin02.f | PSPHOT.BIN | binned | view87 bin03.f | PSPHOT.BIN | binned | view88 89 mosaic.f | PSPHOT.MOS | mosaic | view90 91 **/
Note:
See TracChangeset
for help on using the changeset viewer.
