Changeset 7582 for trunk/psphot/src/psphotImageLoop.c
- Timestamp:
- Jun 15, 2006, 3:04:39 PM (20 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psphotImageLoop.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src
- Property svn:ignore
-
old new 8 8 psphot 9 9 psphotTest 10 errorCodes.c11 10 psphot.loT 12 11 psphotErrorCodes.h
-
- Property svn:ignore
-
trunk/psphot/src/psphotImageLoop.c
r7345 r7582 18 18 19 19 // files associated with the science image 20 if (!pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE)) {20 if (!pmFPAfileIOChecks (config, view, PM_FPA_BEFORE)) { 21 21 psFree(view); 22 22 return false; … … 25 25 psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 26 26 if (! chip->process || ! chip->file_exists) { continue; } 27 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);27 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 28 28 29 29 while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) { 30 30 psLogMsg ("psphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process); 31 31 if (! cell->process || ! cell->file_exists) { continue; } 32 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);32 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 33 33 34 34 // process each of the readouts 35 35 while ((readout = pmFPAviewNextReadout (view, input->fpa, 1)) != NULL) { 36 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);36 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 37 37 if (! readout->data_exists) { continue; } 38 38 … … 40 40 psphotReadout (config, view); 41 41 42 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);42 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 43 43 } 44 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);44 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 45 45 } 46 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);46 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 47 47 } 48 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);48 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 49 49 50 50 psFree (view);
Note:
See TracChangeset
for help on using the changeset viewer.
