aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/datatemplate.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-09-12 16:11:42 +0200
committerThomas White <taw@physics.org>2023-09-12 16:50:50 +0200
commite84f8c67fbeca8d82633287032f8cb2a828f1b1a (patch)
tree60438cb9cf6996dc0ca962595a5e42edf25ded50 /libcrystfel/src/datatemplate.c
parent7a0e9f2bdab4d09b759ce66d2a0b91c7160cf53a (diff)
Fix sense of panel rotations
Should always be a right-hand grip rotation around positive axis direction.
Diffstat (limited to 'libcrystfel/src/datatemplate.c')
-rw-r--r--libcrystfel/src/datatemplate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libcrystfel/src/datatemplate.c b/libcrystfel/src/datatemplate.c
index cbec604f..36c0a422 100644
--- a/libcrystfel/src/datatemplate.c
+++ b/libcrystfel/src/datatemplate.c
@@ -2222,16 +2222,16 @@ static int rotate_all_panels(DataTemplate *dtempl,
switch ( axis )
{
case 'x':
- rotate2d(&cnz_px, &p->cny, cz, cy, ang);
- rotate2d(&p->fsz, &p->fsy, 0, 0, ang);
- rotate2d(&p->ssz, &p->ssy, 0, 0, ang);
+ rotate2d(&p->cny, &cnz_px, cy, cz, ang);
+ rotate2d(&p->fsy, &p->fsz, 0, 0, ang);
+ rotate2d(&p->ssy, &p->ssz, 0, 0, ang);
p->cnz_offset = cnz_px * p->pixel_pitch;
break;
case 'y':
- rotate2d(&p->cnx, &cnz_px, cx, cz, ang);
- rotate2d(&p->fsx, &p->fsz, 0, 0, ang);
- rotate2d(&p->ssx, &p->ssz, 0, 0, ang);
+ rotate2d(&cnz_px, &p->cnx, cz, cx, ang);
+ rotate2d(&p->fsz, &p->fsx, 0, 0, ang);
+ rotate2d(&p->ssz, &p->ssx, 0, 0, ang);
p->cnz_offset = cnz_px * p->pixel_pitch;
break;