aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-02-04 11:44:30 -0800
committerThomas White <taw@physics.org>2012-02-22 15:27:45 +0100
commitfa25676e861138218327c74f331b661f3c0186cd (patch)
tree4a1c0f079a09c268ed8b4257c2917651b2cffc1c /libcrystfel
parenta30f5a755fa3f31b32bd6c9e081ea8905f3086d1 (diff)
Use absolute peak height as FoM, not height above mean (for ReAx)
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/reax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/reax.c b/libcrystfel/src/reax.c
index ea8f143a..90d4e59d 100644
--- a/libcrystfel/src/reax.c
+++ b/libcrystfel/src/reax.c
@@ -249,7 +249,7 @@ static double check_dir(struct dvec *dir, ImageFeatureList *flist,
double fom;
- fom = (peak-mean)/sd;
+ fom = peak;
add_candidate(&s->search[i], dir, fom, peak_mod);