Changeset 25027 for branches/pap/ppMerge/src/ppMergeScaleZero.c
- Timestamp:
- Aug 7, 2009, 4:08:25 PM (17 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppMerge/src/ppMergeScaleZero.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/ppMerge/src/ppMergeScaleZero.c
r23463 r25027 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; … … 87 87 } 88 88 89 // skip cells with video data 89 90 if (cell->readouts->n > 1) { 90 psError(PS_ERR_BAD_PARAMETER_VALUE, true, 91 "File %d chip %d cell %d contains more than one readout (%ld)", 92 i, view->chip, view->cell, cell->readouts->n);93 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 psWarning("File %d chip %d cell %d contains more than one readout (%ld), skipping", i, view->chip, view->cell, cell->readouts->n); 94 continue; 94 95 } 95 96 pmReadout *readout = cell->readouts->data[0]; ///< Readout of interest
Note:
See TracChangeset
for help on using the changeset viewer.
