Changeset 7583 for trunk/psastro/src/psastroDataLoad.c
- Timestamp:
- Jun 15, 2006, 3:05:44 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psastro/src/psastroDataLoad.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastroDataLoad.c
r7014 r7583 34 34 35 35 // files associated with the science image 36 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);36 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 37 37 38 38 while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) { 39 39 psTrace (__func__, 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 40 40 if (!chip->process || !chip->file_exists) { continue; } 41 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);41 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 42 42 43 43 while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) { 44 44 psTrace (__func__, 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process); 45 45 if (!cell->process || !cell->file_exists) { continue; } 46 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);46 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 47 47 48 48 // process each of the readouts 49 49 while ((readout = pmFPAviewNextReadout (view, input->fpa, 1)) != NULL) { 50 pmFPAfileIOChecks (config ->files, view, PM_FPA_BEFORE);50 pmFPAfileIOChecks (config, view, PM_FPA_BEFORE); 51 51 if (! readout->data_exists) { continue; } 52 52 53 53 psastroConvert (readout, recipe); 54 54 55 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);55 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 56 56 } 57 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);57 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 58 58 } 59 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);59 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 60 60 } 61 pmFPAfileIOChecks (config ->files, view, PM_FPA_AFTER);61 pmFPAfileIOChecks (config, view, PM_FPA_AFTER); 62 62 psFree (view); 63 63 return true;
Note:
See TracChangeset
for help on using the changeset viewer.
