diff options
author | Thomas White <taw@bitwiz.org.uk> | 2012-02-04 11:44:30 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:45 +0100 |
commit | fa25676e861138218327c74f331b661f3c0186cd (patch) | |
tree | 4a1c0f079a09c268ed8b4257c2917651b2cffc1c /libcrystfel/src/reax.c | |
parent | a30f5a755fa3f31b32bd6c9e081ea8905f3086d1 (diff) |
Use absolute peak height as FoM, not height above mean (for ReAx)
Diffstat (limited to 'libcrystfel/src/reax.c')
-rw-r--r-- | libcrystfel/src/reax.c | 2 |
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); |