From 74d6e64dd7b826230cd8d87f3396f964eba8e6ed Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 28 Jul 2026 16:32:25 -0300 Subject: [PATCH 1/4] BUG (BPMSSIGNALS): fix tune device `enable` methods --- apsuite/commisslib/meas_bpms_signals.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apsuite/commisslib/meas_bpms_signals.py b/apsuite/commisslib/meas_bpms_signals.py index f98c324a..238265e9 100644 --- a/apsuite/commisslib/meas_bpms_signals.py +++ b/apsuite/commisslib/meas_bpms_signals.py @@ -279,8 +279,10 @@ def get_data(self): data["trig_delay_raw"] = self.devices["trigbpm"].delay_raw data["switching_mode"] = bpm0.switching_mode_str data["switching_frequency"] = fbpms.get_switching_frequency(rf_freq) - data["tunex_enable"] = tune.enablex - data["tuney_enable"] = tune.enabley + data["tunex_acq_enable"] = tune.acquisition_enabledx + data["tuney_acq_enable"] = tune.acquisition_enabledy + data["tunex_exc_enable"] = tune.excitation_enabledx + data["tuney_exc_enable"] = tune.excitation_enabledy return data @staticmethod From 420c54d85db6236144525c491d75ab45a2f9070f Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 28 Jul 2026 16:33:03 -0300 Subject: [PATCH 2/4] BUG (MEASTOUSHK): fix tune device `enable` methods --- apsuite/commisslib/meas_touschek_lifetime.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apsuite/commisslib/meas_touschek_lifetime.py b/apsuite/commisslib/meas_touschek_lifetime.py index efb45e6b..4345cf74 100644 --- a/apsuite/commisslib/meas_touschek_lifetime.py +++ b/apsuite/commisslib/meas_touschek_lifetime.py @@ -752,8 +752,8 @@ def _do_measure(self): tune = self.devices['tune'] bpm = self.devices[parms.bpm_name] bpm.cmd_sync_tbt() # Sync TbT BPM acquisition - excx0 = tune.enablex - excy0 = tune.enabley + excx0 = tune.excitation_enabledx + excy0 = tune.excitation_enabledy # Ensures that tune excitation is off before measurement. tune.cmd_disablex() tune.cmd_disabley() From 5b11818746ce3ce493feb41b1bdaeb233c0346e2 Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 28 Jul 2026 16:33:42 -0300 Subject: [PATCH 3/4] BUG (TURNOFFCORRS): fix tune device `enable` methods --- apsuite/commisslib/turnoff_correctors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apsuite/commisslib/turnoff_correctors.py b/apsuite/commisslib/turnoff_correctors.py index 0e0b08ab..a0f9b145 100644 --- a/apsuite/commisslib/turnoff_correctors.py +++ b/apsuite/commisslib/turnoff_correctors.py @@ -276,7 +276,7 @@ def _do_process(self): """ tune, tunecorr = self.devices['tune'], self.devices['tunecorr'] sofb, prms = self.devices['sofb'], self.params - excx0, excy0 = tune.enablex, tune.enabley + excx0, excy0 = tune.excitation_enabledx, tune.excitation_enabledy if not excx0: tune.cmd_enablex() _time.sleep(prms.wait_tunecorr) From 0dd48129a313e57301c1e3170494b2053a946020 Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 28 Jul 2026 16:43:17 -0300 Subject: [PATCH 4/4] update version to 2.61.1 --- apsuite/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apsuite/VERSION b/apsuite/VERSION index 26c01449..6679a604 100644 --- a/apsuite/VERSION +++ b/apsuite/VERSION @@ -1 +1 @@ -2.61.0 +2.61.1