aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-02-12 19:07:46 -0800
committerThomas White <taw@physics.org>2012-02-22 15:27:14 +0100
commite772472f9b48dfbf27d0bc6cc0bd1849c6f23d73 (patch)
treef23633b0e9694b50ff45bcb384801502945bf4f7
parent5efbe5c2c6559cd3ec9d9ed7f0fb0d070ac2da68 (diff)
Display number of measurements per unique reflection
-rw-r--r--src/partialator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/partialator.c b/src/partialator.c
index 8e79ef1f..309343cb 100644
--- a/src/partialator.c
+++ b/src/partialator.c
@@ -376,6 +376,8 @@ int main(int argc, char *argv[])
fclose(fh);
STATUS("Found %5.2f%% of the expected peaks (missed %i of %i).\n",
100.0 * (double)n_found / n_expected, n_notfound, n_expected);
+ STATUS("Mean measurements per unique reflection: %5.2f\n",
+ (double)n_found / num_items(obs));
cts = new_list_count();