diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-04-10 18:22:21 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-04-10 18:22:21 +0100 |
commit | b925bc42dd86073b06dc5f8146ad1babc27741ef (patch) | |
tree | 6263940b4b899b47267361fb640f6773fa5e320e /src/get_hkl.c | |
parent | d554760847b4beb9ee5e8e187168971e15239e38 (diff) |
process_hkl: Minimum ten counts before writing a reflection
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 1b69199f..ae279a8e 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -230,7 +230,7 @@ int main(int argc, char *argv[]) } - write_reflections(output, counts, ideal_ref, config_za, mol->cell); + write_reflections(output, counts, ideal_ref, config_za, mol->cell, 1); return 0; } |