From d1041353afa497193ff78b417ca859f273dfbdee Mon Sep 17 00:00:00 2001 From: Xiaoqiang Wang Date: Tue, 12 May 2026 10:27:52 +0200 Subject: [PATCH] re-order profileMove axes --- 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')