diff options
author | Thomas White <taw@physics.org> | 2018-09-06 16:23:39 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-09-06 16:23:39 +0200 |
commit | a2c10f7a5ab6929e3ca6a633df32f85d74d9fb4b (patch) | |
tree | 78baf88abeac6e30a7c00c09e74b4ec8a16b6b4d /src/rejection.c | |
parent | 6bd3df7ee39b8a8ba46e9709d74d96051a27ca6f (diff) |
Don't forget to multiple the deltaCChalf values by 100
Diffstat (limited to 'src/rejection.c')
-rw-r--r-- | src/rejection.c | 2 |
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); } } |