aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-09-06 16:23:39 +0200
committerThomas White <taw@physics.org>2018-09-06 16:23:39 +0200
commita2c10f7a5ab6929e3ca6a633df32f85d74d9fb4b (patch)
tree78baf88abeac6e30a7c00c09e74b4ec8a16b6b4d /src
parent6bd3df7ee39b8a8ba46e9709d74d96051a27ca6f (diff)
Don't forget to multiple the deltaCChalf values by 100
Diffstat (limited to 'src')
-rw-r--r--src/rejection.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}