diff options
Diffstat (limited to 'libcrystfel/src/geometry.c')
-rw-r--r-- | libcrystfel/src/geometry.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |