From 5f6653857145dec343a2115300a4dcf8b76434da Mon Sep 17 00:00:00 2001 From: gac-x04sa Date: Thu, 24 Apr 2025 09:30:00 +0200 Subject: [PATCH] XPS motors re-ordered --- addams_bec/devices/profileMove.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/addams_bec/devices/profileMove.py b/addams_bec/devices/profileMove.py index 1cf588c..2fd6a0f 100644 --- a/addams_bec/devices/profileMove.py +++ b/addams_bec/devices/profileMove.py @@ -143,11 +143,11 @@ class ProfileMoveAxisXPS(ProfileMoveAxis): class ProfileMoveXPSX04SA(ProfileMoveControllerXPS): - alp = Cpt(ProfileMoveAxisXPS, '', motor='1') - delta = Cpt(ProfileMoveAxisXPS, '', motor='2') - gam = Cpt(ProfileMoveAxisXPS, '', motor='3') - ov = Cpt(ProfileMoveAxisXPS, '', motor='4') - xv = Cpt(ProfileMoveAxisXPS, '', motor='5') - phi = Cpt(ProfileMoveAxisXPS, '', motor='6') - oh = Cpt(ProfileMoveAxisXPS, '', motor='7') - nu = Cpt(ProfileMoveAxisXPS, '', motor='8') + ov = Cpt(ProfileMoveAxisXPS, '', motor='1') + xv = Cpt(ProfileMoveAxisXPS, '', motor='2') + oh = Cpt(ProfileMoveAxisXPS, '', motor='3') + phi = Cpt(ProfileMoveAxisXPS, '', motor='4') + nu = Cpt(ProfileMoveAxisXPS, '', motor='5') + alp = Cpt(ProfileMoveAxisXPS, '', motor='6') + gam = Cpt(ProfileMoveAxisXPS, '', motor='7') + delta = Cpt(ProfileMoveAxisXPS, '', motor='8')