IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2006, 6:08:56 PM (20 years ago)
Author:
jhoblitt
Message:

merge p0/2 types -> pxMode/pxConfig
add initial p0 support: p0search, p0 tables, p0 funcs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/p2updatePending.c

    r6210 r6261  
    99
    1010    // select all of the exposures which are still pending
    11     psMetadataAddS32 (where, PS_LIST_TAIL, "STATE", 0, "==", P2_MODE_PENDING);
     11    psMetadataAddS32 (where, PS_LIST_TAIL, "STATE", 0, "==", PX_MODE_PENDING);
    1212    psArray *exposures = p2PendingExpSelectRowObjects (config->database, where, MAX_ROWS);
    1313
    1414    // we will now select all of the matching images which are done
    15     psMetadataAddS32 (where, PS_LIST_TAIL, "STATE", PS_META_REPLACE, "==", P2_MODE_DONE);
     15    psMetadataAddS32 (where, PS_LIST_TAIL, "STATE", PS_META_REPLACE, "==", PX_MODE_DONE);
    1616    for (int i = 0; i < exposures->n; i++) {
    1717        p2PendingExpRow *exposure = exposures->data[i];
     
    2727        // frame is complete, set exposure state to done
    2828        // XXX add P2 stats here?
    29 //      exposure->state = P2_MODE_DONE;
     29//      exposure->state = PX_MODE_DONE;
    3030//      p2PendingExposureUpdateRows (config->database, exposure);
    3131    }
Note: See TracChangeset for help on using the changeset viewer.