IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 16, 2010, 10:53:58 PM (16 years ago)
Author:
bills
Message:

In difftool -definewarpwarp add the option -input_comment -template_comment and remove the option -comment

File:
1 edited

Legend:

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

    r29134 r29169  
    16451645    PXOPT_COPY_F32(config->args,   selectWhere, "-sun_angle_min",      "inputRawExp.sun_angle",      ">=");
    16461646    PXOPT_COPY_F32(config->args,   selectWhere, "-sun_angle_max",      "inputRawExp.sun_angle",      "<");
    1647     PXOPT_COPY_STR(config->args,   selectWhere, "-comment",            "inputRawExp.comment",        "LIKE");
     1647    PXOPT_COPY_STR(config->args,   selectWhere, "-input_comment",      "inputRawExp.comment",        "LIKE");
     1648    PXOPT_COPY_STR(config->args,   selectWhere, "-template_comment",   "templateRawExp.comment",     "LIKE");
    16481649
    16491650    // Haversine formula for great circle distance
     
    16761677
    16771678    PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false);
     1679    PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false);
    16781680    PXOPT_LOOKUP_BOOL(pretend, config->args, "-pretend", false);
    16791681
     
    18351837    long numGood = 0;                   // Number of good rows added
    18361838    for (long i = 0; i < results->n; i++) {
     1839        if (limit && numGood >= limit) {
     1840            break;
     1841        }
    18371842        psMetadata *row = results->data[i]; // Result row from query
    18381843
Note: See TracChangeset for help on using the changeset viewer.