From 35661ec0fc657891de432fc1108ce14c0b8d4aab Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 19 Oct 2012 15:04:17 -0700 Subject: Don't predict systematically absent reflections D'oh --- libcrystfel/src/geometry.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcrystfel/src/geometry.c b/libcrystfel/src/geometry.c index 091b4fed..60fab488 100644 --- a/libcrystfel/src/geometry.c +++ b/libcrystfel/src/geometry.c @@ -255,6 +255,8 @@ RefList *find_intersections(struct image *image, UnitCell *cell) Reflection *refl; double xl, yl, zl; + if ( forbidden_reflection(cell, h, k, l) ) continue; + /* Get the coordinates of the reciprocal lattice point */ xl = h*asx + k*bsx + l*csx; yl = h*asy + k*bsy + l*csy; -- cgit v1.2.3