IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2008, 12:37:49 PM (18 years ago)
Author:
bills
Message:

In the modes for difftool, stacktool, and warptool that print out results
of runs include the exp_id and camera and also allow (or fix bugs in)
selecting by exp_id

File:
1 edited

Legend:

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

    r18772 r18975  
    690690
    691691    psMetadata *where = psMetadataAlloc();
    692     PXOPT_COPY_S64(config->args, where, "-warp_id", "warp_id", "==");
    693     PXOPT_COPY_S64(config->args, where, "-stack_id", "stack_id", "==");
     692    PXOPT_COPY_S64(config->args, where, "-warp_id", "warpRun.warp_id", "==");
     693    PXOPT_COPY_S64(config->args, where, "-stack_id", "stackSumSkyfile.stack_id", "==");
     694    PXOPT_COPY_S64(config->args, where, "-exp_id", "rawExp.exp_id", "==");
    694695
    695696    PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
     
    703704
    704705    if (psListLength(where->list)) {
    705         psString whereClause = psDBGenerateWhereConditionSQL(where, "stackSumSkyfile");
     706        psString whereClause = psDBGenerateWhereConditionSQL(where, NULL);
    706707        psStringAppend(&query, " AND %s", whereClause);
    707708        psFree(whereClause);
Note: See TracChangeset for help on using the changeset viewer.