Changeset 8195 for trunk/ppStats
- Timestamp:
- Aug 5, 2006, 3:53:08 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppStats/src/ppStatsLoop.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStats/src/ppStatsLoop.c
r7931 r8195 69 69 getMetadata(fpaResults, fpa->concepts, conceptsIter); 70 70 } 71 72 71 psArray *chips = fpa->chips; // Array of component chips 73 72 for (long i = 0; i < chips->n; i++) { … … 86 85 87 86 if (psListLength(data->headers) > 0 && chip->hdu) { 88 pmChipReadHeader(chip, data->inFile); 87 if (!pmChipReadHeader(chip, data->inFile)) { 88 continue; 89 } 89 90 pmHDU *hdu = chip->hdu; // HDU for headers 90 91 getMetadata(chipResults, hdu->header, headersIter); 91 92 } 92 93 if (psListLength(data->concepts) > 0) { 93 pmChipReadHeader(chip, data->inFile); 94 if (!pmChipReadHeader(chip, data->inFile)) { 95 continue; 96 } 94 97 pmConceptsReadChip(chip, PM_CONCEPT_SOURCE_ALL, false, false, config->database); 95 98 getMetadata(chipResults, chip->concepts, conceptsIter); … … 112 115 113 116 if (psListLength(data->headers) > 0 && cell->hdu) { 114 pmCellReadHeader(cell, data->inFile); 117 if (!pmCellReadHeader(cell, data->inFile)) { 118 continue; 119 } 115 120 pmHDU *hdu = cell->hdu; // HDU for headers 116 121 getMetadata(cellResults, hdu->header, headersIter); 117 122 } 118 123 if (psListLength(data->concepts) > 0) { 119 pmCellReadHeader(cell, data->inFile); 124 if (!pmCellReadHeader(cell, data->inFile)) { 125 continue; 126 } 120 127 pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_ALL, false, config->database); 121 128 getMetadata(cellResults, cell->concepts, conceptsIter);
Note:
See TracChangeset
for help on using the changeset viewer.
