aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-09-02 22:52:45 +0200
committerThomas White <taw@physics.org>2018-09-02 22:52:45 +0200
commit4f1950b8799ed98a82f45d84a7c6ef287fbfbc5c (patch)
tree445aad8b3c233320d021f13da1f090d64d6bd5dd /src
parentea7115f694da034319bf3a643fc335336b1d3512 (diff)
DeltaCChalf all on one line
Diffstat (limited to 'src')
-rw-r--r--src/rejection.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rejection.c b/src/rejection.c
index eca55f2f..fbe631ab 100644
--- a/src/rejection.c
+++ b/src/rejection.c
@@ -218,11 +218,11 @@ static void check_deltacchalf(Crystal **crystals, int n, RefList *full)
//RefList *template = full;
cchalf = calculate_cchalf(template, full, NULL, NULL);
cchalfi = calculate_cchalf(template, full, crystals[i], &nref);
- STATUS("Frame %i:\n", i);
- STATUS(" With = %f\n", cchalf*100.0);
- STATUS("Without = %f\n", cchalfi*100.0);
- STATUS("Delta = %f\n", cchalf - cchalfi);
- STATUS("nref = %i\n", nref);
+ STATUS("Frame %i:", i);
+ STATUS(" With = %f ", cchalf*100.0);
+ STATUS("Without = %f", cchalfi*100.0);
+ STATUS(" Delta = %f ", cchalf - cchalfi);
+ STATUS("(nref = %i)\n", nref);
}
}