IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9043


Ignore:
Timestamp:
Sep 28, 2006, 3:09:51 PM (20 years ago)
Author:
jhoblitt
Message:

change -adddetrunsummary -reject -> -accept

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

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

    r8986 r9043  
    37633763    }
    37643764    // optional
    3765     bool reject = psMetadataLookupBool(&status, config->args, "-reject");
    3766     if (!status) {
    3767         psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -reject");
     3765    bool accept = psMetadataLookupBool(&status, config->args, "-accept");
     3766    if (!status) {
     3767        psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -accept");
    37683768        return NULL;
    37693769    }
     
    37753775            bg_stdev,
    37763776            bg_mean_stdev,
    3777             !reject
     3777            accept
    37783778        );
    37793779}
  • trunk/ippTools/src/dettoolConfig.c

    r8987 r9043  
    398398    psMetadataAddF64(adddetrunsummaryArgs, PS_LIST_TAIL, "-bg_mean_stdev",  0,
    399399        "define exposue background mean stdev", NAN);
    400     psMetadataAddBool(adddetrunsummaryArgs, PS_LIST_TAIL, "-reject",  0,
    401         "declare that this detrun iteration is not a master", false);
     400    psMetadataAddBool(adddetrunsummaryArgs, PS_LIST_TAIL, "-accept",  0,
     401        "declare that this detrun iteration is accepted as a master", false);
    402402
    403403    // -updatedetrun
Note: See TracChangeset for help on using the changeset viewer.