diff options
author | Thomas White <taw@physics.org> | 2013-03-21 16:24:39 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-04-17 17:33:49 +0200 |
commit | 79ff2b85e3ef35fefe088bffbf50bfd195e7363d (patch) | |
tree | 0db6033d38e3c9fa859124373d3b39ef1611ae8e | |
parent | 74970d1f8fc6476d6f5719beaa26cfbc843f8ada (diff) |
Show number of scalable observations
-rw-r--r-- | src/partialator.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/partialator.c b/src/partialator.c index bdacd62b..58025b96 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -554,6 +554,7 @@ int main(int argc, char *argv[]) display_progress(n_images, n_crystals); } while ( 1 ); + fprintf(stderr, "\n"); close_stream(st); @@ -576,9 +577,10 @@ int main(int argc, char *argv[]) } } + STATUS("%i scalable observations.\n", nobs); /* Make initial estimates */ - STATUS("\nPerforming initial scaling.\n"); + STATUS("Performing initial scaling.\n"); if ( noscale ) STATUS("Scale factors fixed at 1.\n"); full = scale_intensities(crystals, n_crystals, reference, nthreads, noscale, pmodel); |