IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24908


Ignore:
Timestamp:
Jul 22, 2009, 10:50:53 PM (17 years ago)
Author:
eugene
Message:

add options to limit processing to single chips and cells

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeLoop.c

    r24837 r24908  
    152152    pmChip *outChip;                    ///< Chip of interest
    153153    while ((outChip = pmFPAviewNextChip(view, outFPA, 1))) {
     154        if (!outChip->process || !outChip->file_exists) {
     155            continue;
     156        }
    154157        if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    155158            goto ERROR;
     
    161164
    162165        while ((outCell = pmFPAviewNextCell(view, outFPA, 1))) {
     166            if (!outCell->process || !outCell->file_exists) {
     167                continue;
     168            }
    163169            if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    164170                goto ERROR;
Note: See TracChangeset for help on using the changeset viewer.