IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17136


Ignore:
Timestamp:
Mar 25, 2008, 10:33:51 AM (18 years ago)
Author:
Paul Price
Message:

Need to check to move on if there is no file associated with the particular part of the FPA.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_080320/ppMerge/src/ppMergeScaleZero.c

    r17083 r17136  
    6868        pmChip *chip;                   // Chip of interest
    6969        while ((chip = pmFPAviewNextChip(view, fpa, 1))) {
     70            if (!chip->file_exists) {
     71                continue;
     72            }
    7073            if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    7174                goto ERROR;
     
    7679            pmCell *cell;               // Cell of interest
    7780            while ((cell = pmFPAviewNextCell(view, fpa, 1))) {
     81                if (!cell->file_exists) {
     82                    continue;
     83                }
    7884                if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    7985                    goto ERROR;
Note: See TracChangeset for help on using the changeset viewer.