Changeset 24909 for trunk/ppMerge/src/ppMergeScaleZero.c
- Timestamp:
- Jul 22, 2009, 10:51:12 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/ppMerge/src/ppMergeScaleZero.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppMerge/src/ppMergeScaleZero.c
r24782 r24909 67 67 pmChip *chip; ///< Chip of interest 68 68 while ((chip = pmFPAviewNextChip(view, fpa, 1))) { 69 if (!chip->file_exists) {70 continue;71 }69 if (!chip->process || !chip->file_exists) { 70 continue; 71 } 72 72 if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) { 73 73 goto ERROR; … … 76 76 pmCell *cell; ///< Cell of interest 77 77 while ((cell = pmFPAviewNextCell(view, fpa, 1))) { 78 if (!cell->file_exists) {79 continue;80 }78 if (!cell->process || !cell->file_exists) { 79 continue; 80 } 81 81 if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) { 82 82 goto ERROR; … … 89 89 // skip cells with video data 90 90 if (cell->readouts->n > 1) { 91 // psError(PS_ERR_BAD_PARAMETER_VALUE, true, "File %d chip %d cell %d contains more than one readout (%ld)", i, view->chip, view->cell, cell->readouts->n);92 // goto ERROR;91 // psError(PS_ERR_BAD_PARAMETER_VALUE, true, "File %d chip %d cell %d contains more than one readout (%ld)", i, view->chip, view->cell, cell->readouts->n); 92 // goto ERROR; 93 93 psWarning("File %d chip %d cell %d contains more than one readout (%ld), skipping", i, view->chip, view->cell, cell->readouts->n); 94 94 continue;
Note:
See TracChangeset
for help on using the changeset viewer.
