diff options
author | Thomas White <taw@physics.org> | 2013-02-08 15:52:19 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-08 15:52:19 -0800 |
commit | 13116e93b01faee7826b5ba95a1dbf5fc3d64b45 (patch) | |
tree | b861e0a2aa50b122485dcd511f90b0caac3316f3 /src | |
parent | d8ff3bdfcc020ec296d2ad81209fce744343ad57 (diff) |
Small tweaks
Diffstat (limited to 'src')
-rw-r--r-- | src/im-sandbox.c | 9 | ||||
-rw-r--r-- | src/indexamajig.c | 3 |
2 files changed, 6 insertions, 6 deletions
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=<tol> Set the tolerances for cell reduction.\n" +" --tolerance=<tol> 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"); |