IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27575


Ignore:
Timestamp:
Apr 1, 2010, 6:59:06 PM (16 years ago)
Author:
Paul Price
Message:

Previous wasn't the right answer --- data_exists is never true.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppViz/src/ppCoord/ppCoordLoop.c

    r27573 r27575  
    7373    pmChip *chip;                       // Chip from FPA
    7474    while ((chip = pmFPAviewNextChip(view, astromFile->fpa, 1))) {
    75         if (!chip->process || !chip->file_exists || !chip->data_exists) {
     75        if (!chip->process || !chip->file_exists) {
    7676            continue;
    7777        }
     
    9999        if (bilevelAstrometry) {
    100100            if (!pmAstromReadBilevelChip (chip, hdu->header)) {
    101                 psError(psErrorCodeLast(), false, "Unable to read bilevel chip astrometry for input FPA.");
    102                 psFree(view);
    103                 return false;
     101                psWarning("Unable to read bilevel chip astrometry for chip %s.", chipName);
     102                if (!pmFPAfileIOChecks(config, view, PM_FPA_AFTER)) {
     103                    psError(psErrorCodeLast(), false, "Error saving data to files.");
     104                    return false;
     105                }
     106                continue;
    104107            }
    105108        } else {
Note: See TracChangeset for help on using the changeset viewer.