diff options
author | Thomas White <taw@physics.org> | 2018-01-23 15:52:08 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 17:12:42 +0100 |
commit | 369f57970e5ddabca790da45379592b1e18f3b2a (patch) | |
tree | af94f06546f741ca728ccbeb8d579e40a04e06fd | |
parent | 9c39baa5285e816bf90a1094cbfa3f00b257e473 (diff) |
Add some extra messages
-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 d3b20890..45098aee 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -1204,6 +1204,7 @@ int main(int argc, char *argv[]) close_stream(st); /* Fill in image pointers */ + STATUS("Initial partiality calculation...\n"); for ( i=0; i<n_images; i++ ) { int j; for ( j=0; j<images[i].n_crystals; j++ ) { @@ -1223,7 +1224,7 @@ int main(int argc, char *argv[]) if (csplit != NULL) check_csplit(crystals, n_crystals, csplit); /* Make a first pass at cutting out crap */ - STATUS("Checking patterns.\n"); + STATUS("Early rejection...\n"); //early_rejection(crystals, n_crystals); /* Create reference data set if we don't already have one */ @@ -1235,6 +1236,7 @@ int main(int argc, char *argv[]) } /* Scale everything to the reference */ + STATUS("Initial scaling...\n"); if ( !no_scale ) { scale_all_to_reference(crystals, n_crystals, full, nthreads); } |