IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25492


Ignore:
Timestamp:
Sep 22, 2009, 8:05:54 PM (17 years ago)
Author:
bills
Message:

make "re_place" the default

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

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

    r25465 r25492  
    106106    PXOPT_LOOKUP_STR(workdir, config->args, "-workdir", false, false);
    107107    PXOPT_LOOKUP_STR(recoveryroot, config->args, "-recoveryroot", false, false);
    108     PXOPT_LOOKUP_BOOL(re_place, config->args, "-replace", false);
     108    PXOPT_LOOKUP_BOOL(noreplace, config->args, "-noreplace", false);
    109109    PXOPT_LOOKUP_STR(set_label, config->args, "-set_label", false, false);
    110110    PXOPT_LOOKUP_BOOL(rerun, config->args, "-rerun", false);
     
    269269                outroot,
    270270                recoveryroot,
    271                 re_place,
     271                noreplace ? 0 :1,
    272272                0); // remove
    273273
  • trunk/ippTools/src/magicdstoolConfig.c

    r25465 r25492  
    5252    psMetadataAddStr(definebyqueryArgs, PS_LIST_TAIL, "-workdir",     0, "define workdir", NULL);
    5353    psMetadataAddStr(definebyqueryArgs, PS_LIST_TAIL, "-recoveryroot", 0, "define recovery directory", NULL);
    54     psMetadataAddBool(definebyqueryArgs, PS_LIST_TAIL, "-replace", 0, "replace input files with the destreaked versions", false);
     54    psMetadataAddBool(definebyqueryArgs, PS_LIST_TAIL, "-noreplace", 0, "do not replace input files with the destreaked versions", false);
    5555    psMetadataAddStr(definebyqueryArgs, PS_LIST_TAIL, "-set_label",    0, "define label", NULL);
    5656
     
    7575    psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-outroot", 0, "define output directory (required)", NULL);
    7676    psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-recoveryroot", 0, "define recovery directory", NULL);
    77     psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-replace", 0, "use the simple output format", false);
    78     psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-remove", 0, "use the simple output format", false);
     77    psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-noreplace", 0, "do not replace the input wit with the destreaked versions", false);
     78//    psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-remove", 0, "use the simple output format", false);
    7979    psMetadataAddStr(definerunArgs, PS_LIST_TAIL, "-label", 0, "define label", NULL);
    8080    psMetadataAddBool(definerunArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false);
Note: See TracChangeset for help on using the changeset viewer.