aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/predict-refine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/predict-refine.c b/src/predict-refine.c
index 996509e9..a1f65691 100644
--- a/src/predict-refine.c
+++ b/src/predict-refine.c
@@ -247,7 +247,7 @@ static int pair_peaks(struct image *image, Crystal *cr,
get_detector_pos(refl, &fs, &ss);
pd = pow(fs - rps[i].peak->fs, 2.0)
+ pow(ss - rps[i].peak->ss, 2.0);
- if ( pd > 100.0 * 100.0 ) {
+ if ( pd > 10.0 * 10.0 ) {
//STATUS("rejecting %i %i %i because %f %f -> %f %f\n",
// h, k, l, fs, ss, rps[i].peak->fs, rps[i].peak->ss);
continue;