IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 25, 2009, 1:49:09 PM (17 years ago)
Author:
bills
Message:

changed the columns magicked from TINYINT to BIGINT
store magic_ds_id of the magicDSRun that was used for destreaking

File:
1 edited

Legend:

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

    r24487 r24552  
    163163            end_stage,
    164164            registered,
    165             false       // magicked
     165            0       // magicked
    166166    );
    167167    if (!warpRun) {
     
    980980    PXOPT_LOOKUP_STR(hostname, config->args, "-hostname", false, false);
    981981    PXOPT_LOOKUP_F32(good_frac, config->args, "-good_frac", false, false);
    982     PXOPT_LOOKUP_BOOL(magicked, config->args, "-magicked", false);
     982    PXOPT_LOOKUP_S64(magicked, config->args, "-magicked", false, false);
    983983
    984984    // default values
     
    10841084            return false;
    10851085        }
    1086         psS32 magicked = psMetadataLookupS64(&status, row, "magicked");
     1086        psS64 magicked = psMetadataLookupS64(&status, row, "magicked");
    10871087        if (!status) {
    10881088            psError(PS_ERR_UNKNOWN, false, "failed to look up value for magicked");
Note: See TracChangeset for help on using the changeset viewer.