Changeset 9043
- Timestamp:
- Sep 28, 2006, 3:09:51 PM (20 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 2 edited
-
dettool.c (modified) (2 diffs)
-
dettoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r8986 r9043 3763 3763 } 3764 3764 // 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"); 3768 3768 return NULL; 3769 3769 } … … 3775 3775 bg_stdev, 3776 3776 bg_mean_stdev, 3777 !reject3777 accept 3778 3778 ); 3779 3779 } -
trunk/ippTools/src/dettoolConfig.c
r8987 r9043 398 398 psMetadataAddF64(adddetrunsummaryArgs, PS_LIST_TAIL, "-bg_mean_stdev", 0, 399 399 "define exposue background mean stdev", NAN); 400 psMetadataAddBool(adddetrunsummaryArgs, PS_LIST_TAIL, "- reject", 0,401 "declare that this detrun iteration is nota master", false);400 psMetadataAddBool(adddetrunsummaryArgs, PS_LIST_TAIL, "-accept", 0, 401 "declare that this detrun iteration is accepted as a master", false); 402 402 403 403 // -updatedetrun
Note:
See TracChangeset
for help on using the changeset viewer.
