aboutsummaryrefslogtreecommitdiff
path: root/src/peaks.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-10-15 17:33:34 +0200
committerThomas White <taw@physics.org>2012-02-22 15:27:03 +0100
commitbf7e534369f9eeff914317163e090b90884e3bbf (patch)
treeb30afe0618c2724557dc4cf7601cae3f4748e98e /src/peaks.c
parent17a2f23b0d4471d7fc881da32b7bff150e1af30d (diff)
Set sanity level low (to a working value)
Diffstat (limited to 'src/peaks.c')
-rw-r--r--src/peaks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peaks.c b/src/peaks.c
index e9a10ab7..0cf7c232 100644
--- a/src/peaks.c
+++ b/src/peaks.c
@@ -652,7 +652,7 @@ int peak_sanity_check(struct image *image, UnitCell *cell,
STATUS("Sanity factor: %f / %f = %f\n", (float)n_sane, (float)n_feat,
(float)n_sane / (float)n_feat);
- if ( (float)n_sane / (float)n_feat < 0.8 ) return 0;
+ if ( (float)n_sane / (float)n_feat < 0.1 ) return 0;
return 1;
}