From 402b3870e3e1bceb974ad5a402c5e5e898f4c87e Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 2 Mar 2018 17:28:07 +0100 Subject: Use old scaling code --- src/partialator.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/partialator.c b/src/partialator.c index 5fbccd6a..21b02266 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -1325,6 +1325,8 @@ int main(int argc, char *argv[]) /* Create reference data set if we don't already have one */ if ( reference == NULL ) { + STATUS("Initial scaling...\n"); + scale_all(crystals, n_crystals, nthreads); full = merge_intensities(crystals, n_crystals, nthreads, min_measurements, push_res, 1); } else { @@ -1332,7 +1334,7 @@ int main(int argc, char *argv[]) } /* Scale everything to the reference */ - STATUS("Initial scaling...\n"); + STATUS("Initial scaling to reference...\n"); if ( !no_scale ) { scale_all_to_reference(crystals, n_crystals, full, nthreads); } @@ -1360,6 +1362,7 @@ int main(int argc, char *argv[]) /* Create new reference if needed */ if ( reference == NULL ) { reflist_free(full); + scale_all(crystals, n_crystals, nthreads); full = merge_intensities(crystals, n_crystals, nthreads, min_measurements, push_res, 1); @@ -1404,6 +1407,7 @@ int main(int argc, char *argv[]) STATUS("Final merge...\n"); if ( reference == NULL ) { reflist_free(full); + scale_all(crystals, n_crystals, nthreads); full = merge_intensities(crystals, n_crystals, nthreads, min_measurements, push_res, 1); -- cgit v1.2.3