aboutsummaryrefslogtreecommitdiff
path: root/src/index.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-03-22 15:43:00 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:20 +0100
commit254d6459a53e12b39af6015e681925a70ff46393 (patch)
tree3c1bb1427d366a96a66ba15839c3e3b22a92c714 /src/index.c
parente397d27fbbfdc93449ed729fe48eda4f40f020e4 (diff)
indexamajig: Reduce verbosity a lot
Diffstat (limited to 'src/index.c')
-rw-r--r--src/index.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/index.c b/src/index.c
index 317c9200..0459540d 100644
--- a/src/index.c
+++ b/src/index.c
@@ -140,16 +140,13 @@ void index_pattern(struct image *image, UnitCell *cell, IndexingMethod *indm,
case INDEXING_NONE :
return;
case INDEXING_DIRAX :
- STATUS("Running DirAx...\n");
run_dirax(image);
break;
case INDEXING_MOSFLM :
- STATUS("Running MOSFLM...\n");
run_mosflm(image, cell);
break;
}
if ( image->ncells == 0 ) {
- STATUS("No candidate cells found.\n");
n++;
continue;
}
@@ -200,7 +197,6 @@ void index_pattern(struct image *image, UnitCell *cell, IndexingMethod *indm,
/* Sanity check */
if ( !config_insane &&
!peak_sanity_check(image, new_cell, 0, 0.1) ) {
- STATUS("Failed peak sanity check.\n");
cell_free(new_cell);
continue;
}