diff options
author | Thomas White <taw@physics.org> | 2013-07-04 14:32:35 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-07-04 14:32:35 +0200 |
commit | df89b0c4fe2ab0111d052a88ab141623da46f988 (patch) | |
tree | 354a2f5b8164327265d4f23dcc8f1ba664a12c74 | |
parent | 5143ea6b985eb83e55ad950c675f86a98d281277 (diff) |
process_hkl: Fix sigma calculation (again)
Bessel's correction isn't needed here. Or, at least it hasn't been used in the past.
-rw-r--r-- | src/process_hkl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index 730fa14d..b41b88bc 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -345,7 +345,6 @@ static int merge_all(Stream *st, RefList *model, RefList *reference, } var = get_temp2(refl) / get_temp1(refl); - var *= (double)red/(red-1); set_esd_intensity(refl, sqrt(var)/sqrt(red)); } |