From 13116e93b01faee7826b5ba95a1dbf5fc3d64b45 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 8 Feb 2013 15:52:19 -0800 Subject: Small tweaks --- src/im-sandbox.c | 9 ++++----- src/indexamajig.c | 3 ++- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/im-sandbox.c b/src/im-sandbox.c index f14d5a11..17dc3dc6 100644 --- a/src/im-sandbox.c +++ b/src/im-sandbox.c @@ -955,11 +955,10 @@ void create_sandbox(struct index_args *iargs, int n_proc, char *prefix, tNow = get_monotonic_seconds(); if ( tNow >= sb->t_last_stats+STATS_EVERY_N_SECONDS ) { - STATUS("%i images processed so far, " - "%i had at least one indexable crystal." - "%i crystals found so far." - "%i images processed since the last message\n", - sb->n_processed, sb->n_hadcrystals, + STATUS("%4i indexable out of %4i processed, " + "%4i crystals so far. " + "%4i images processed since the last message.\n", + sb->n_hadcrystals, sb->n_processed, sb->n_crystals, sb->n_processed - sb->n_processed_last_stats); diff --git a/src/indexamajig.c b/src/indexamajig.c index d36b2811..97fb1743 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -98,7 +98,7 @@ static void show_help(const char *s) " Default: /processing/hitfinder/peakinfo\n" "\n\n" "For more control over the process, you might need:\n\n" -" --tolerance= Set the tolerances for cell reduction.\n" +" --tolerance= Set the tolerances for cell comparison.\n" " Default: 5,5,5,1.5.\n" " --filter-cm Perform common-mode noise subtraction on images\n" " before proceeding. Intensities will be extracted\n" @@ -515,6 +515,7 @@ int main(int argc, char *argv[]) return 1; } free(pdb); + STATUS("This is what I understood your unit cell to be:\n"); cell_print(cell); } else { STATUS("No unit cell given.\n"); -- cgit v1.2.3