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/warptool.c

    r18889 r18975  
    910910
    911911    psMetadata *where = psMetadataAlloc();
    912     PXOPT_COPY_S64(config->args, where, "-warp_id",    "warp_id", "==");
    913     PXOPT_COPY_STR(config->args, where, "-skycell_id", "skycell_id", "==");
    914     PXOPT_COPY_STR(config->args, where, "-tess_id",    "tess_id", "==");
    915     PXOPT_COPY_S64(config->args, where, "-exp_id",     "exp_id", "==");
    916     PXOPT_COPY_S64(config->args, where, "-fake_id",    "fake_id", "==");
     912    PXOPT_COPY_S64(config->args, where, "-warp_id",    "warpSkyfile.warp_id", "==");
     913    PXOPT_COPY_STR(config->args, where, "-skycell_id", "warpSkyfile.skycell_id", "==");
     914    PXOPT_COPY_STR(config->args, where, "-tess_id",    "warpSkyfile.tess_id", "==");
     915    PXOPT_COPY_S64(config->args, where, "-exp_id",     "rawExp.exp_id", "==");
     916    PXOPT_COPY_S64(config->args, where, "-fake_id",    "fakeRun.fake_id", "==");
    917917
    918918    PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
     
    927927
    928928    if (psListLength(where->list)) {
    929         psString whereClause = psDBGenerateWhereConditionSQL(where, "warpSkyfile");
     929        psString whereClause = psDBGenerateWhereConditionSQL(where, NULL);
    930930        psStringAppend(&query, " AND %s", whereClause);
    931931        psFree(whereClause);
Note: See TracChangeset for help on using the changeset viewer.