aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-07-07 16:51:26 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:53 +0100
commitb3854b29262d2f67eae90c1e54b39b09e49ea66b (patch)
tree2e01dad8daeba92789ee0c9a9bbdd1c22edc21f3 /src/compare_hkl.c
parentc30c05aeeadd8caf0cd887fab0024bf894ae7d65 (diff)
compare_hkl: Use minimisation to determine the right scale factor
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index b2b40da1..f87a7b88 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -142,9 +142,9 @@ int main(int argc, char *argv[])
}
STATUS("%i,%i reflections: %i in common\n", nc1, nc2, ncom);
R2 = stat_r2(ref1, c1, ref2, c2, &scale);
- STATUS("R2 = %5.4f %% (scale=%5.2f)\n", R2*100.0, scale);
+ STATUS("R2 = %5.4f %% (scale=%5.2e)\n", R2*100.0, scale);
Rmerge = stat_rmerge(ref1, c1, ref2, c2, &scale);
- STATUS("Rmerge = %5.4f %% (scale=%5.2f)\n", Rmerge*100.0, scale);
+ STATUS("Rmerge = %5.4f %% (scale=%5.2e)\n", Rmerge*100.0, scale);
if ( outfile != NULL ) {
write_reflections(outfile, NULL, out, NULL, 1, cell, 1);