IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 28, 2008, 3:06:02 PM (18 years ago)
Author:
jhoblitt
Message:

require ippdb 1.1.31
remove warpInputExp table
remove warptool -runone & -addinputexp modes
add -cam_id & -magiced options to warptool -definerun

File:
1 edited

Legend:

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

    r16242 r16733  
    6565    PS_ASSERT_PTR_NON_NULL(config, false);
    6666
     67    // depend on the f-keys to make sure we have a valid cam_id
    6768    if (!warpRunInsert(config->dbh,
    6869        0,          // ID
     70        cam_id,
    6971        "warp",     // mode
    7072        "run",      // state
     
    7476        tess_id,
    7577        end_stage,
    76         NULL        // registered
     78        NULL,       // registered
     79        false       // magiced
    7780    )) {
    7881        psError(PS_ERR_UNKNOWN, false, "database error");
     
    8083    }
    8184
    82     psS64 warp_id = psDBLastInsertID(config->dbh);
    83 
    84     // depend on the f-keys to make sure we have a valid cam_id
    85     if (!warpInputExpInsert(config->dbh,
    86         warp_id,
    87         cam_id,
    88         false       // magiced
    89     )) {
    90         psError(PS_ERR_UNKNOWN, false, "database error");
    91         return false;
    92     }
    93 
    9485    return true;
    9586}
Note: See TracChangeset for help on using the changeset viewer.