diff options
author | Thomas White <taw@physics.org> | 2012-12-05 16:28:50 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-12-05 16:28:50 +0100 |
commit | f588d275c68ceb92a4f23655bf69f14f3bec06c4 (patch) | |
tree | 97d334b64f9a09ca5f8b48c2ef5ebceb4cd0b889 /src | |
parent | ad8bcbffa09525fd7818f25eb3622dd6e7667a9b (diff) |
process_hkl: Add --min-measurements
Diffstat (limited to 'src')
-rw-r--r-- | src/process_hkl.c | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index 8048cf45..cf690e9b 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -74,6 +74,8 @@ static void show_help(const char *s) " --reference=<file> Compare against intensities from <file> when\n" " scaling. \n" " --no-polarisation Disable polarisation correction.\n" +" --min-measurements=<n> Require at least <n> measurements before a\n" +" reflection appears in the output. Default: 2\n" ); } @@ -264,7 +266,7 @@ static void merge_all(FILE *fh, RefList *model, RefList *reference, int n_total_patterns, double *hist_vals, signed int hist_h, signed int hist_k, signed int hist_l, - int *hist_i, int config_nopolar) + int *hist_i, int config_nopolar, int min_measurements) { int rval; int n_patterns = 0; @@ -323,7 +325,7 @@ static void merge_all(FILE *fh, RefList *model, RefList *reference, int red; red = get_redundancy(refl); - if ( red == 1 ) { + if ( red < min_measurements ) { set_redundancy(refl, 0); continue; } @@ -365,6 +367,8 @@ int main(int argc, char *argv[]) int space_for_hist = 0; char *histo_params = NULL; int config_nopolar = 0; + char *rval; + int min_measurements = 2; /* Long options */ const struct option longopts[] = { @@ -382,6 +386,7 @@ int main(int argc, char *argv[]) {"symmetry", 1, NULL, 'y'}, {"histogram", 1, NULL, 'g'}, {"hist-parameters", 1, NULL, 'z'}, + {"min-measurements", 1, NULL, 2}, {0, 0, NULL, 0} }; @@ -423,6 +428,15 @@ int main(int argc, char *argv[]) histo_params = strdup(optarg); break; + case 2 : + errno = 0; + min_measurements = strtod(optarg, &rval); + if ( *rval != '\0' ) { + ERROR("Invalid value for --min-measurements.\n"); + return 1; + } + break; + case 0 : break; @@ -514,7 +528,7 @@ int main(int argc, char *argv[]) hist_i = 0; merge_all(fh, model, NULL, config_startafter, config_stopafter, sym, n_total_patterns, hist_vals, hist_h, hist_k, hist_l, - &hist_i, config_nopolar); + &hist_i, config_nopolar, min_measurements); if ( ferror(fh) ) { ERROR("Stream read error.\n"); return 1; @@ -538,7 +552,7 @@ int main(int argc, char *argv[]) config_startafter, config_stopafter, sym, n_total_patterns, hist_vals, hist_h, hist_k, hist_l, &hist_i, - config_nopolar); + config_nopolar, min_measurements); if ( ferror(fh) ) { ERROR("Stream read error.\n"); |