Changeset 24797
- Timestamp:
- Jul 14, 2009, 6:39:45 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/ppMerge/src/ppMergeLoop.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppMerge/src/ppMergeLoop.c
r24782 r24797 204 204 } 205 205 206 int rows = psMetadataLookupS32(NULL, config->arguments, "ROWS"); // Number of rows to read per chunk 207 if (!rows && nThreads) { 208 psError(PS_ERR_UNKNOWN, false, "Invalid combination of threads > 0 and ROWS == 0 (ie, multiple threads working on the full array...)"); 209 goto ERROR; 210 } 211 206 212 ppMergeFileGroup *fileGroup = NULL; 207 213 psArray *fileGroups = psArrayAlloc(nThreads + 1); … … 213 219 pmFPAfile *input = pmFPAfileSelectSingle(config->files, "PPMERGE.INPUT", j); 214 220 pmCell *inCell = pmFPAviewThisCell(view, input->fpa); ///< Input cell 215 readouts->data[j] = pmReadoutAlloc(inCell); 221 pmReadout *readout = pmReadoutAlloc(inCell); 222 readout->process = true; // until proven otherwise, attempt to process this readout 223 readouts->data[j] = readout; 216 224 } 217 225
Note:
See TracChangeset
for help on using the changeset viewer.
