Changeset 6713 for branches/rel10_ifa/psModules/src/astrom/pmFPARead.c
- Timestamp:
- Mar 27, 2006, 4:16:26 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/rel10_ifa/psModules/src/astrom/pmFPARead.c
r6671 r6713 8 8 #include "pmConcepts.h" 9 9 #include "psRegionIsBad.h" 10 #include "pmHDUUtils.h" 10 11 11 12 ////////////////////////////////////////////////////////////////////////////////////////////////////////////// … … 107 108 } 108 109 110 pmCellSetDataStatus (cell, true); 109 111 return true; 110 112 } … … 124 126 if (success) { 125 127 pmConceptsReadChip(chip, PM_CONCEPT_SOURCE_HEADER, false, NULL); 128 // XXX probably could just use chip->data_exists 129 pmChipSetDataStatus (chip, true); 126 130 } 127 131 … … 379 383 for (int chipNum = 0; chipNum < chips->n; chipNum++) { 380 384 pmChip *chip = chips->data[chipNum]; // The current chip of interest 381 if (chip->process && !chip-> exists) {385 if (chip->process && !chip->data_exists) { 382 386 if (chip->hdu) { 383 387 hdu = chip->hdu; … … 386 390 for (int cellNum = 0; cellNum < cells->n; cellNum++) { 387 391 pmCell *cell = cells->data[cellNum]; // The current cell of interest 388 if (cell->process && !cell-> exists) {392 if (cell->process && !cell->data_exists) { 389 393 if (cell->hdu) { 390 394 hdu = cell->hdu; … … 517 521 for (int chipNum = 0; chipNum < chips->n; chipNum++) { 518 522 pmChip *chip = chips->data[chipNum]; // The current chip of interest 519 if (chip->process && !chip-> exists) {523 if (chip->process && !chip->data_exists) { 520 524 if (chip->hdu) { 521 525 hdu = chip->hdu; … … 524 528 for (int cellNum = 0; cellNum < cells->n; cellNum++) { 525 529 pmCell *cell = cells->data[cellNum]; // The current cell of interest 526 if (cell->process && !cell-> exists) {530 if (cell->process && !cell->data_exists) { 527 531 if (cell->hdu) { 528 532 hdu = cell->hdu;
Note:
See TracChangeset
for help on using the changeset viewer.
