From a2c10f7a5ab6929e3ca6a633df32f85d74d9fb4b Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 6 Sep 2018 16:23:39 +0200 Subject: Don't forget to multiple the deltaCChalf values by 100 --- src/rejection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rejection.c') diff --git a/src/rejection.c b/src/rejection.c index 5a82a940..01ed2cf0 100644 --- a/src/rejection.c +++ b/src/rejection.c @@ -221,7 +221,7 @@ static void check_deltacchalf(Crystal **crystals, int n, RefList *full) STATUS("Frame %i:", i); STATUS(" With = %f ", cchalf*100.0); STATUS("Without = %f", cchalfi*100.0); - STATUS(" Delta = %f ", cchalf - cchalfi); + STATUS(" Delta = %f ", (cchalf - cchalfi)*100.0); STATUS("(nref = %i)\n", nref); } } -- cgit v1.2.3