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

    r18679 r18975  
    519519
    520520    psMetadata *where = psMetadataAlloc();
    521     PXOPT_COPY_S64(config->args, where,  "-diff_id", "diff_id", "==");
    522     PXOPT_COPY_STR(config->args, where, "-skycell_id", "skycell_id", "==");
    523     PXOPT_COPY_STR(config->args, where, "-tess_id", "tess_id", "==");
     521    PXOPT_COPY_S64(config->args, where,  "-diff_id", "diffSkyfile.diff_id", "==");
     522    PXOPT_COPY_STR(config->args, where, "-skycell_id", "diffSkyfile.skycell_id", "==");
     523    PXOPT_COPY_STR(config->args, where, "-tess_id", "diffSkyfile.tess_id", "==");
     524    PXOPT_COPY_STR(config->args, where, "-exp_id", "rawExp.exp_id", "==");
    524525
    525526    PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
     
    533534
    534535    if (psListLength(where->list)) {
    535         psString whereClause = psDBGenerateWhereConditionSQL(where, "diffSkyfile");
     536        psString whereClause = psDBGenerateWhereConditionSQL(where, NULL);
    536537        psStringAppend(&query, " AND %s", whereClause);
    537538        psFree(whereClause);
Note: See TracChangeset for help on using the changeset viewer.