diff options
author | Thomas White <taw@physics.org> | 2019-10-24 15:29:42 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-10-24 15:29:42 +0200 |
commit | 2dfc662ba054de3f7725bc6b2eafb85606931000 (patch) | |
tree | 0aa91d1c6d8a8eba36c1faadab01972fd280236d /libcrystfel/src/geometry.c | |
parent | 43147db0b3c5232068f0cec70008fa217fa97476 (diff) |
polarisation_correction: Use symmetric indices
Diffstat (limited to 'libcrystfel/src/geometry.c')
-rw-r--r-- | libcrystfel/src/geometry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/geometry.c b/libcrystfel/src/geometry.c index 3d6cd699..5230c642 100644 --- a/libcrystfel/src/geometry.c +++ b/libcrystfel/src/geometry.c @@ -1048,7 +1048,7 @@ void polarisation_correction(RefList *list, UnitCell *cell, signed int h, k, l; const double P = p.fraction; /* degree of polarisation */ - get_indices(refl, &h, &k, &l); + get_symmetric_indices(refl, &h, &k, &l); xl = h*asx + k*bsx + l*csx; yl = h*asy + k*bsy + l*csy; |