From cdcf4935311d2620b3034e47d28b541f3179d525 Mon Sep 17 00:00:00 2001 From: Teresia Olsson Date: Mon, 11 May 2026 15:00:55 +0200 Subject: [PATCH 1/5] Update imports for magnets. --- pyaml/{configuration => magnet}/csvcurve.py | 0 pyaml/{configuration => magnet}/csvmatrix.py | 0 pyaml/{configuration => magnet}/curve.py | 0 pyaml/{configuration => magnet}/inline_curve.py | 0 pyaml/{configuration => magnet}/inline_matrix.py | 0 pyaml/magnet/linear_cfm_model.py | 4 ++-- pyaml/magnet/linear_model.py | 2 +- pyaml/magnet/linear_serialized_model.py | 8 ++++---- pyaml/{configuration => magnet}/matrix.py | 0 pyaml/magnet/spline_model.py | 2 +- 10 files changed, 8 insertions(+), 8 deletions(-) rename pyaml/{configuration => magnet}/csvcurve.py (100%) rename pyaml/{configuration => magnet}/csvmatrix.py (100%) rename pyaml/{configuration => magnet}/curve.py (100%) rename pyaml/{configuration => magnet}/inline_curve.py (100%) rename pyaml/{configuration => magnet}/inline_matrix.py (100%) rename pyaml/{configuration => magnet}/matrix.py (100%) diff --git a/pyaml/configuration/csvcurve.py b/pyaml/magnet/csvcurve.py similarity index 100% rename from pyaml/configuration/csvcurve.py rename to pyaml/magnet/csvcurve.py diff --git a/pyaml/configuration/csvmatrix.py b/pyaml/magnet/csvmatrix.py similarity index 100% rename from pyaml/configuration/csvmatrix.py rename to pyaml/magnet/csvmatrix.py diff --git a/pyaml/configuration/curve.py b/pyaml/magnet/curve.py similarity index 100% rename from pyaml/configuration/curve.py rename to pyaml/magnet/curve.py diff --git a/pyaml/configuration/inline_curve.py b/pyaml/magnet/inline_curve.py similarity index 100% rename from pyaml/configuration/inline_curve.py rename to pyaml/magnet/inline_curve.py diff --git a/pyaml/configuration/inline_matrix.py b/pyaml/magnet/inline_matrix.py similarity index 100% rename from pyaml/configuration/inline_matrix.py rename to pyaml/magnet/inline_matrix.py diff --git a/pyaml/magnet/linear_cfm_model.py b/pyaml/magnet/linear_cfm_model.py index c1795c12..e50be293 100644 --- a/pyaml/magnet/linear_cfm_model.py +++ b/pyaml/magnet/linear_cfm_model.py @@ -3,9 +3,9 @@ from ..common.element import __pyaml_repr__ from ..common.exception import PyAMLException -from ..configuration.curve import Curve -from ..configuration.matrix import Matrix from ..control.deviceaccess import DeviceAccess +from .curve import Curve +from .matrix import Matrix from .model import MagnetModel # Define the main class name for this module diff --git a/pyaml/magnet/linear_model.py b/pyaml/magnet/linear_model.py index ac9b57e0..7a45418b 100644 --- a/pyaml/magnet/linear_model.py +++ b/pyaml/magnet/linear_model.py @@ -2,8 +2,8 @@ from pydantic import BaseModel, ConfigDict from ..common.element import __pyaml_repr__ -from ..configuration.curve import Curve from ..control.deviceaccess import DeviceAccess +from .curve import Curve from .model import MagnetModel # Define the main class name for this module diff --git a/pyaml/magnet/linear_serialized_model.py b/pyaml/magnet/linear_serialized_model.py index 6e6be33e..be622ad6 100644 --- a/pyaml/magnet/linear_serialized_model.py +++ b/pyaml/magnet/linear_serialized_model.py @@ -3,13 +3,13 @@ from ..common.element import __pyaml_repr__ from ..common.exception import PyAMLException -from ..configuration.curve import Curve -from ..configuration.inline_curve import ConfigModel as InlineCurveModel -from ..configuration.inline_curve import InlineCurve -from ..configuration.matrix import Matrix from ..control.deviceaccess import DeviceAccess +from .curve import Curve +from .inline_curve import ConfigModel as InlineCurveModel +from .inline_curve import InlineCurve from .linear_model import ConfigModel as LinearConfigModel from .linear_model import LinearMagnetModel +from .matrix import Matrix from .model import MagnetModel # Define the main class name for this module diff --git a/pyaml/configuration/matrix.py b/pyaml/magnet/matrix.py similarity index 100% rename from pyaml/configuration/matrix.py rename to pyaml/magnet/matrix.py diff --git a/pyaml/magnet/spline_model.py b/pyaml/magnet/spline_model.py index bc6d20d3..522e23a4 100644 --- a/pyaml/magnet/spline_model.py +++ b/pyaml/magnet/spline_model.py @@ -3,8 +3,8 @@ from scipy.interpolate import make_smoothing_spline from ..common.element import __pyaml_repr__ -from ..configuration.curve import Curve from ..control.deviceaccess import DeviceAccess +from .curve import Curve from .model import MagnetModel # Define the main class name for this module From 9ed207feb4c778fe27dd00be6b3db3bb5b1413af Mon Sep 17 00:00:00 2001 From: Teresia Olsson Date: Mon, 11 May 2026 15:02:07 +0200 Subject: [PATCH 2/5] Update import in example. --- examples/ESRF_tune_example/esrf_tune_example_no_yaml.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py b/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py index 0296b04f..ac53b91a 100644 --- a/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py +++ b/examples/ESRF_tune_example/esrf_tune_example_no_yaml.py @@ -22,10 +22,10 @@ from pyaml.arrays.magnet import ConfigModel as MagnetArrayConfigModel from pyaml.arrays.magnet import Magnet from pyaml.configuration import set_root_folder -from pyaml.configuration.csvcurve import ConfigModel as CSVCureveConfig -from pyaml.configuration.csvcurve import CSVCurve from pyaml.lattice.simulator import ConfigModel as SimulatorConfigModel from pyaml.lattice.simulator import Simulator +from pyaml.magnet.csvcurve import ConfigModel as CSVCureveConfig +from pyaml.magnet.csvcurve import CSVCurve from pyaml.magnet.linear_model import ( ConfigModel as LinearMagnetModelConfig, ) From de002017f0304051b9be39d5e01aa7717e37ad99 Mon Sep 17 00:00:00 2001 From: Teresia Olsson Date: Mon, 11 May 2026 15:03:15 +0200 Subject: [PATCH 3/5] Update imports in tests. --- tests/config/EBSNames.yaml | 12 +- tests/config/EBSOrbit.yaml | 772 +++++++++--------- tests/config/EBSTune-patterns.yaml | 248 +++--- tests/config/EBSTune-range.yaml | 248 +++--- tests/config/EBSTune.yaml | 248 +++--- tests/config/EBSTuneOATango.yaml | 248 +++--- .../sr/magnet_models/SH1AC01-range.yaml | 8 +- tests/config/sr/magnet_models/SH1AC01.yaml | 8 +- tests/config/sr/magnet_models/SH1AC02.yaml | 8 +- tests/config/sr/magnet_models/quadcurve.json | 2 +- tests/config/sr/magnet_models/quadcurve.yaml | 2 +- tests/config/sr_serialized_magnets.yaml | 10 +- ...ith_tango_powersupply_mocking_behaviour.py | 2 +- tests/test_curve.py | 4 +- 14 files changed, 910 insertions(+), 910 deletions(-) diff --git a/tests/config/EBSNames.yaml b/tests/config/EBSNames.yaml index c359cecb..cf85b756 100644 --- a/tests/config/EBSNames.yaml +++ b/tests/config/EBSNames.yaml @@ -19,7 +19,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -34,7 +34,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -49,7 +49,7 @@ devices: calibration_factor: 0.996841 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -64,7 +64,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -79,7 +79,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -94,7 +94,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: diff --git a/tests/config/EBSOrbit.yaml b/tests/config/EBSOrbit.yaml index e7242328..94b4a0b5 100644 --- a/tests/config/EBSOrbit.yaml +++ b/tests/config/EBSOrbit.yaml @@ -109,16 +109,16 @@ devices: pseudo_factors: [1.0,-1.0,-1.0,-1.0] units: [rad,rad,m-1,m-2] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_sq_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_sext_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SHI_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -220,14 +220,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -323,14 +323,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -354,14 +354,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -457,14 +457,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -560,14 +560,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -591,14 +591,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -694,14 +694,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -797,14 +797,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -828,14 +828,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -931,14 +931,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1034,14 +1034,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1065,14 +1065,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1168,14 +1168,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1271,14 +1271,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1302,14 +1302,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1405,14 +1405,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1508,14 +1508,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1539,14 +1539,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1642,14 +1642,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1745,14 +1745,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1776,14 +1776,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1879,14 +1879,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -1982,14 +1982,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2013,14 +2013,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2116,14 +2116,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2219,14 +2219,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2250,14 +2250,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2353,14 +2353,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2456,14 +2456,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2487,14 +2487,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2590,14 +2590,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2693,14 +2693,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2724,14 +2724,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2827,14 +2827,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2930,14 +2930,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -2961,14 +2961,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3064,14 +3064,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3167,14 +3167,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3198,14 +3198,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3301,14 +3301,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3404,14 +3404,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3435,14 +3435,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3538,14 +3538,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3641,14 +3641,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3672,14 +3672,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3775,14 +3775,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3878,14 +3878,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -3909,14 +3909,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4012,14 +4012,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4115,14 +4115,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4146,14 +4146,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4249,14 +4249,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4352,14 +4352,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4383,14 +4383,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4486,14 +4486,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4589,14 +4589,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4620,14 +4620,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4723,14 +4723,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4826,14 +4826,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4857,14 +4857,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -4960,14 +4960,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5063,14 +5063,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5094,14 +5094,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5197,14 +5197,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5300,14 +5300,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5331,14 +5331,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5434,14 +5434,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5537,14 +5537,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5568,14 +5568,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5671,14 +5671,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5774,14 +5774,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5805,14 +5805,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -5908,14 +5908,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6011,14 +6011,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6042,14 +6042,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6145,14 +6145,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6248,14 +6248,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6279,14 +6279,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6382,14 +6382,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6485,14 +6485,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6516,14 +6516,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6619,14 +6619,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6722,14 +6722,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6753,14 +6753,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6856,14 +6856,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6959,14 +6959,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -6990,14 +6990,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7093,14 +7093,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7196,14 +7196,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7227,14 +7227,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7330,14 +7330,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7433,14 +7433,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7464,14 +7464,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7567,14 +7567,14 @@ devices: units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH2_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute @@ -7671,16 +7671,16 @@ devices: pseudo_factors: [1.0,-1.0,-1.0,-1.0] units: [rad,rad,m-1,m-2] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_sq_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SHI_sext_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SHI_matrix.csv powerconverters: - type: tango.pyaml.attribute diff --git a/tests/config/EBSTune-patterns.yaml b/tests/config/EBSTune-patterns.yaml index cc8fde6a..70781b6f 100644 --- a/tests/config/EBSTune-patterns.yaml +++ b/tests/config/EBSTune-patterns.yaml @@ -35,7 +35,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -49,7 +49,7 @@ devices: calibration_factor: 0.996841 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -63,7 +63,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -77,7 +77,7 @@ devices: calibration_factor: 1.0003 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -91,7 +91,7 @@ devices: calibration_factor: 0.997615 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -105,7 +105,7 @@ devices: calibration_factor: 0.998152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -119,7 +119,7 @@ devices: calibration_factor: 1.00262 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -133,7 +133,7 @@ devices: calibration_factor: 1.00319 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -147,7 +147,7 @@ devices: calibration_factor: 0.996180929 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -161,7 +161,7 @@ devices: calibration_factor: 1.00206 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -175,7 +175,7 @@ devices: calibration_factor: 0.999285 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -189,7 +189,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -203,7 +203,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -217,7 +217,7 @@ devices: calibration_factor: 0.999225 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -231,7 +231,7 @@ devices: calibration_factor: 0.998033 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -245,7 +245,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -259,7 +259,7 @@ devices: calibration_factor: 1.0023 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -273,7 +273,7 @@ devices: calibration_factor: 1.00337 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -287,7 +287,7 @@ devices: calibration_factor: 1.00403 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -301,7 +301,7 @@ devices: calibration_factor: 1.00182 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -315,7 +315,7 @@ devices: calibration_factor: 0.998303 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -329,7 +329,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -343,7 +343,7 @@ devices: calibration_factor: 0.994098 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -357,7 +357,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -371,7 +371,7 @@ devices: calibration_factor: 0.99884 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -385,7 +385,7 @@ devices: calibration_factor: 1.0079 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -399,7 +399,7 @@ devices: calibration_factor: 0.999523 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -413,7 +413,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -427,7 +427,7 @@ devices: calibration_factor: 0.999854 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -441,7 +441,7 @@ devices: calibration_factor: 0.99845 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -455,7 +455,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -469,7 +469,7 @@ devices: calibration_factor: 1.00095 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -483,7 +483,7 @@ devices: calibration_factor: 0.996753 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -497,7 +497,7 @@ devices: calibration_factor: 1.00334 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -511,7 +511,7 @@ devices: calibration_factor: 0.997707 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -525,7 +525,7 @@ devices: calibration_factor: 1.00152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -539,7 +539,7 @@ devices: calibration_factor: 0.998124 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -553,7 +553,7 @@ devices: calibration_factor: 0.996662 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -567,7 +567,7 @@ devices: calibration_factor: 1.0017 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -581,7 +581,7 @@ devices: calibration_factor: 0.999642 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -595,7 +595,7 @@ devices: calibration_factor: 1.00042 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -609,7 +609,7 @@ devices: calibration_factor: 1.00471 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -623,7 +623,7 @@ devices: calibration_factor: 1.00393 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -637,7 +637,7 @@ devices: calibration_factor: 0.992906 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -651,7 +651,7 @@ devices: calibration_factor: 1.00268 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -665,7 +665,7 @@ devices: calibration_factor: 1.00248 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -679,7 +679,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -693,7 +693,7 @@ devices: calibration_factor: 0.998030791 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -707,7 +707,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -721,7 +721,7 @@ devices: calibration_factor: 0.995052 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -735,7 +735,7 @@ devices: calibration_factor: 1.00155 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -749,7 +749,7 @@ devices: calibration_factor: 0.998271 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -763,7 +763,7 @@ devices: calibration_factor: 0.999702 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -777,7 +777,7 @@ devices: calibration_factor: 0.998005 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -791,7 +791,7 @@ devices: calibration_factor: 0.999463 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -805,7 +805,7 @@ devices: calibration_factor: 0.997794 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -819,7 +819,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -833,7 +833,7 @@ devices: calibration_factor: 1.00504 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -847,7 +847,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -861,7 +861,7 @@ devices: calibration_factor: 1.0037 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -875,7 +875,7 @@ devices: calibration_factor: 1.00093 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -889,7 +889,7 @@ devices: calibration_factor: 1.0025 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -903,7 +903,7 @@ devices: calibration_factor: 0.999305341 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -917,7 +917,7 @@ devices: calibration_factor: 0.997452918 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -931,7 +931,7 @@ devices: calibration_factor: 0.997993208 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -945,7 +945,7 @@ devices: calibration_factor: 1.006031322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -959,7 +959,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -973,7 +973,7 @@ devices: calibration_factor: 1.002327856 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -987,7 +987,7 @@ devices: calibration_factor: 1.000154369 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1001,7 +1001,7 @@ devices: calibration_factor: 1.009580478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1015,7 +1015,7 @@ devices: calibration_factor: 1.00447669 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1029,7 +1029,7 @@ devices: calibration_factor: 1.0015563 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1043,7 +1043,7 @@ devices: calibration_factor: 0.997221365 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1057,7 +1057,7 @@ devices: calibration_factor: 1.005954167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1071,7 +1071,7 @@ devices: calibration_factor: 1.006725723 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1085,7 +1085,7 @@ devices: calibration_factor: 0.994535144 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1099,7 +1099,7 @@ devices: calibration_factor: 0.999550256 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1113,7 +1113,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1127,7 +1127,7 @@ devices: calibration_factor: 1.000321811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1141,7 +1141,7 @@ devices: calibration_factor: 1.006715036 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1155,7 +1155,7 @@ devices: calibration_factor: 1.0036395 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1169,7 +1169,7 @@ devices: calibration_factor: 0.997684471 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1183,7 +1183,7 @@ devices: calibration_factor: 1.000385922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1197,7 +1197,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1211,7 +1211,7 @@ devices: calibration_factor: 0.998392922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1225,7 +1225,7 @@ devices: calibration_factor: 0.999318789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1239,7 +1239,7 @@ devices: calibration_factor: 0.996926967 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1253,7 +1253,7 @@ devices: calibration_factor: 1.000849027 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1267,7 +1267,7 @@ devices: calibration_factor: 1.003392444 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1281,7 +1281,7 @@ devices: calibration_factor: 1.001312133 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1295,7 +1295,7 @@ devices: calibration_factor: 1.005402902 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1309,7 +1309,7 @@ devices: calibration_factor: 0.995846789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1323,7 +1323,7 @@ devices: calibration_factor: 1.005877011 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1337,7 +1337,7 @@ devices: calibration_factor: 1.001016211 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1351,7 +1351,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1365,7 +1365,7 @@ devices: calibration_factor: 1.007265811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1379,7 +1379,7 @@ devices: calibration_factor: 0.998238611 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1393,7 +1393,7 @@ devices: calibration_factor: 0.998161456 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1407,7 +1407,7 @@ devices: calibration_factor: 1.004642522 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1421,7 +1421,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1435,7 +1435,7 @@ devices: calibration_factor: 1.001942078 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1449,7 +1449,7 @@ devices: calibration_factor: 0.999087322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1463,7 +1463,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1477,7 +1477,7 @@ devices: calibration_factor: 1.001698055 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1491,7 +1491,7 @@ devices: calibration_factor: 0.999704567 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1505,7 +1505,7 @@ devices: calibration_factor: 0.999164478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1519,7 +1519,7 @@ devices: calibration_factor: 1.000694659 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1533,7 +1533,7 @@ devices: calibration_factor: 0.99945971 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1547,7 +1547,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1561,7 +1561,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1575,7 +1575,7 @@ devices: calibration_factor: 0.997838839 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1589,7 +1589,7 @@ devices: calibration_factor: 1.003318926 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1603,7 +1603,7 @@ devices: calibration_factor: 1.004179589 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1617,7 +1617,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1631,7 +1631,7 @@ devices: calibration_factor: 0.9987787 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1645,7 +1645,7 @@ devices: calibration_factor: 1.004411056 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1659,7 +1659,7 @@ devices: calibration_factor: 1.0029451 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1673,7 +1673,7 @@ devices: calibration_factor: 1.009426167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1687,7 +1687,7 @@ devices: calibration_factor: 1.0050283 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1701,7 +1701,7 @@ devices: calibration_factor: 0.998533498 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1715,7 +1715,7 @@ devices: calibration_factor: 1.003485189 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1729,7 +1729,7 @@ devices: calibration_factor: 1.001389318 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1743,7 +1743,7 @@ devices: calibration_factor: 1.006108478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1757,7 +1757,7 @@ devices: calibration_factor: 1.002096389 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: diff --git a/tests/config/EBSTune-range.yaml b/tests/config/EBSTune-range.yaml index 3f22f132..3b7f8524 100644 --- a/tests/config/EBSTune-range.yaml +++ b/tests/config/EBSTune-range.yaml @@ -25,7 +25,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -39,7 +39,7 @@ devices: calibration_factor: 0.996841 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -54,7 +54,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -68,7 +68,7 @@ devices: calibration_factor: 1.0003 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -82,7 +82,7 @@ devices: calibration_factor: 0.997615 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -96,7 +96,7 @@ devices: calibration_factor: 0.998152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -110,7 +110,7 @@ devices: calibration_factor: 1.00262 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -124,7 +124,7 @@ devices: calibration_factor: 1.00319 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -138,7 +138,7 @@ devices: calibration_factor: 0.996180929 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -152,7 +152,7 @@ devices: calibration_factor: 1.00206 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -166,7 +166,7 @@ devices: calibration_factor: 0.999285 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -180,7 +180,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -194,7 +194,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -208,7 +208,7 @@ devices: calibration_factor: 0.999225 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -222,7 +222,7 @@ devices: calibration_factor: 0.998033 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -236,7 +236,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -250,7 +250,7 @@ devices: calibration_factor: 1.0023 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -264,7 +264,7 @@ devices: calibration_factor: 1.00337 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -278,7 +278,7 @@ devices: calibration_factor: 1.00403 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -292,7 +292,7 @@ devices: calibration_factor: 1.00182 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -306,7 +306,7 @@ devices: calibration_factor: 0.998303 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -320,7 +320,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -334,7 +334,7 @@ devices: calibration_factor: 0.994098 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -348,7 +348,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -362,7 +362,7 @@ devices: calibration_factor: 0.99884 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -376,7 +376,7 @@ devices: calibration_factor: 1.0079 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -390,7 +390,7 @@ devices: calibration_factor: 0.999523 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -404,7 +404,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -418,7 +418,7 @@ devices: calibration_factor: 0.999854 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -432,7 +432,7 @@ devices: calibration_factor: 0.99845 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -446,7 +446,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -460,7 +460,7 @@ devices: calibration_factor: 1.00095 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -474,7 +474,7 @@ devices: calibration_factor: 0.996753 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -488,7 +488,7 @@ devices: calibration_factor: 1.00334 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -502,7 +502,7 @@ devices: calibration_factor: 0.997707 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -516,7 +516,7 @@ devices: calibration_factor: 1.00152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -530,7 +530,7 @@ devices: calibration_factor: 0.998124 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -544,7 +544,7 @@ devices: calibration_factor: 0.996662 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -558,7 +558,7 @@ devices: calibration_factor: 1.0017 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -572,7 +572,7 @@ devices: calibration_factor: 0.999642 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -586,7 +586,7 @@ devices: calibration_factor: 1.00042 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -600,7 +600,7 @@ devices: calibration_factor: 1.00471 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -614,7 +614,7 @@ devices: calibration_factor: 1.00393 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -628,7 +628,7 @@ devices: calibration_factor: 0.992906 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -642,7 +642,7 @@ devices: calibration_factor: 1.00268 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -656,7 +656,7 @@ devices: calibration_factor: 1.00248 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -670,7 +670,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -684,7 +684,7 @@ devices: calibration_factor: 0.998030791 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -698,7 +698,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -712,7 +712,7 @@ devices: calibration_factor: 0.995052 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -726,7 +726,7 @@ devices: calibration_factor: 1.00155 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -740,7 +740,7 @@ devices: calibration_factor: 0.998271 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -754,7 +754,7 @@ devices: calibration_factor: 0.999702 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -768,7 +768,7 @@ devices: calibration_factor: 0.998005 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -782,7 +782,7 @@ devices: calibration_factor: 0.999463 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -796,7 +796,7 @@ devices: calibration_factor: 0.997794 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -810,7 +810,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -824,7 +824,7 @@ devices: calibration_factor: 1.00504 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -838,7 +838,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -852,7 +852,7 @@ devices: calibration_factor: 1.0037 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -866,7 +866,7 @@ devices: calibration_factor: 1.00093 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -880,7 +880,7 @@ devices: calibration_factor: 1.0025 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -894,7 +894,7 @@ devices: calibration_factor: 0.999305341 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -908,7 +908,7 @@ devices: calibration_factor: 0.997452918 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -922,7 +922,7 @@ devices: calibration_factor: 0.997993208 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -936,7 +936,7 @@ devices: calibration_factor: 1.006031322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -950,7 +950,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -964,7 +964,7 @@ devices: calibration_factor: 1.002327856 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -978,7 +978,7 @@ devices: calibration_factor: 1.000154369 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -992,7 +992,7 @@ devices: calibration_factor: 1.009580478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1006,7 +1006,7 @@ devices: calibration_factor: 1.00447669 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1020,7 +1020,7 @@ devices: calibration_factor: 1.0015563 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1034,7 +1034,7 @@ devices: calibration_factor: 0.997221365 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1048,7 +1048,7 @@ devices: calibration_factor: 1.005954167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1062,7 +1062,7 @@ devices: calibration_factor: 1.006725723 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1076,7 +1076,7 @@ devices: calibration_factor: 0.994535144 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1090,7 +1090,7 @@ devices: calibration_factor: 0.999550256 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1104,7 +1104,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1118,7 +1118,7 @@ devices: calibration_factor: 1.000321811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1132,7 +1132,7 @@ devices: calibration_factor: 1.006715036 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1146,7 +1146,7 @@ devices: calibration_factor: 1.0036395 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1160,7 +1160,7 @@ devices: calibration_factor: 0.997684471 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1174,7 +1174,7 @@ devices: calibration_factor: 1.000385922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1188,7 +1188,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1202,7 +1202,7 @@ devices: calibration_factor: 0.998392922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1216,7 +1216,7 @@ devices: calibration_factor: 0.999318789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1230,7 +1230,7 @@ devices: calibration_factor: 0.996926967 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1244,7 +1244,7 @@ devices: calibration_factor: 1.000849027 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1258,7 +1258,7 @@ devices: calibration_factor: 1.003392444 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1272,7 +1272,7 @@ devices: calibration_factor: 1.001312133 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1286,7 +1286,7 @@ devices: calibration_factor: 1.005402902 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1300,7 +1300,7 @@ devices: calibration_factor: 0.995846789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1314,7 +1314,7 @@ devices: calibration_factor: 1.005877011 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1328,7 +1328,7 @@ devices: calibration_factor: 1.001016211 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1342,7 +1342,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1356,7 +1356,7 @@ devices: calibration_factor: 1.007265811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1370,7 +1370,7 @@ devices: calibration_factor: 0.998238611 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1384,7 +1384,7 @@ devices: calibration_factor: 0.998161456 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1398,7 +1398,7 @@ devices: calibration_factor: 1.004642522 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1412,7 +1412,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1426,7 +1426,7 @@ devices: calibration_factor: 1.001942078 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1440,7 +1440,7 @@ devices: calibration_factor: 0.999087322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1454,7 +1454,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1468,7 +1468,7 @@ devices: calibration_factor: 1.001698055 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1482,7 +1482,7 @@ devices: calibration_factor: 0.999704567 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1496,7 +1496,7 @@ devices: calibration_factor: 0.999164478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1510,7 +1510,7 @@ devices: calibration_factor: 1.000694659 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1524,7 +1524,7 @@ devices: calibration_factor: 0.99945971 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1538,7 +1538,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1552,7 +1552,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1566,7 +1566,7 @@ devices: calibration_factor: 0.997838839 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1580,7 +1580,7 @@ devices: calibration_factor: 1.003318926 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1594,7 +1594,7 @@ devices: calibration_factor: 1.004179589 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1608,7 +1608,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1622,7 +1622,7 @@ devices: calibration_factor: 0.9987787 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1636,7 +1636,7 @@ devices: calibration_factor: 1.004411056 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1650,7 +1650,7 @@ devices: calibration_factor: 1.0029451 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1664,7 +1664,7 @@ devices: calibration_factor: 1.009426167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1678,7 +1678,7 @@ devices: calibration_factor: 1.0050283 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1692,7 +1692,7 @@ devices: calibration_factor: 0.998533498 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1706,7 +1706,7 @@ devices: calibration_factor: 1.003485189 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1720,7 +1720,7 @@ devices: calibration_factor: 1.001389318 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1734,7 +1734,7 @@ devices: calibration_factor: 1.006108478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1748,7 +1748,7 @@ devices: calibration_factor: 1.002096389 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: diff --git a/tests/config/EBSTune.yaml b/tests/config/EBSTune.yaml index a631c34d..d23fbfb1 100644 --- a/tests/config/EBSTune.yaml +++ b/tests/config/EBSTune.yaml @@ -28,7 +28,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -42,7 +42,7 @@ devices: calibration_factor: 0.996841 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -56,7 +56,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -70,7 +70,7 @@ devices: calibration_factor: 1.0003 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -84,7 +84,7 @@ devices: calibration_factor: 0.997615 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -98,7 +98,7 @@ devices: calibration_factor: 0.998152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -112,7 +112,7 @@ devices: calibration_factor: 1.00262 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -126,7 +126,7 @@ devices: calibration_factor: 1.00319 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -140,7 +140,7 @@ devices: calibration_factor: 0.996180929 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -154,7 +154,7 @@ devices: calibration_factor: 1.00206 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -168,7 +168,7 @@ devices: calibration_factor: 0.999285 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -182,7 +182,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -196,7 +196,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -210,7 +210,7 @@ devices: calibration_factor: 0.999225 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -224,7 +224,7 @@ devices: calibration_factor: 0.998033 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -238,7 +238,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -252,7 +252,7 @@ devices: calibration_factor: 1.0023 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -266,7 +266,7 @@ devices: calibration_factor: 1.00337 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -280,7 +280,7 @@ devices: calibration_factor: 1.00403 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -294,7 +294,7 @@ devices: calibration_factor: 1.00182 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -308,7 +308,7 @@ devices: calibration_factor: 0.998303 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -322,7 +322,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -336,7 +336,7 @@ devices: calibration_factor: 0.994098 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -350,7 +350,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -364,7 +364,7 @@ devices: calibration_factor: 0.99884 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -378,7 +378,7 @@ devices: calibration_factor: 1.0079 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -392,7 +392,7 @@ devices: calibration_factor: 0.999523 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -406,7 +406,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -420,7 +420,7 @@ devices: calibration_factor: 0.999854 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -434,7 +434,7 @@ devices: calibration_factor: 0.99845 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -448,7 +448,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -462,7 +462,7 @@ devices: calibration_factor: 1.00095 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -476,7 +476,7 @@ devices: calibration_factor: 0.996753 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -490,7 +490,7 @@ devices: calibration_factor: 1.00334 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -504,7 +504,7 @@ devices: calibration_factor: 0.997707 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -518,7 +518,7 @@ devices: calibration_factor: 1.00152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -532,7 +532,7 @@ devices: calibration_factor: 0.998124 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -546,7 +546,7 @@ devices: calibration_factor: 0.996662 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -560,7 +560,7 @@ devices: calibration_factor: 1.0017 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -574,7 +574,7 @@ devices: calibration_factor: 0.999642 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -588,7 +588,7 @@ devices: calibration_factor: 1.00042 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -602,7 +602,7 @@ devices: calibration_factor: 1.00471 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -616,7 +616,7 @@ devices: calibration_factor: 1.00393 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -630,7 +630,7 @@ devices: calibration_factor: 0.992906 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -644,7 +644,7 @@ devices: calibration_factor: 1.00268 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -658,7 +658,7 @@ devices: calibration_factor: 1.00248 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -672,7 +672,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -686,7 +686,7 @@ devices: calibration_factor: 0.998030791 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -700,7 +700,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -714,7 +714,7 @@ devices: calibration_factor: 0.995052 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -728,7 +728,7 @@ devices: calibration_factor: 1.00155 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -742,7 +742,7 @@ devices: calibration_factor: 0.998271 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -756,7 +756,7 @@ devices: calibration_factor: 0.999702 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -770,7 +770,7 @@ devices: calibration_factor: 0.998005 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -784,7 +784,7 @@ devices: calibration_factor: 0.999463 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -798,7 +798,7 @@ devices: calibration_factor: 0.997794 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -812,7 +812,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -826,7 +826,7 @@ devices: calibration_factor: 1.00504 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -840,7 +840,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -854,7 +854,7 @@ devices: calibration_factor: 1.0037 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -868,7 +868,7 @@ devices: calibration_factor: 1.00093 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -882,7 +882,7 @@ devices: calibration_factor: 1.0025 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -896,7 +896,7 @@ devices: calibration_factor: 0.999305341 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -910,7 +910,7 @@ devices: calibration_factor: 0.997452918 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -924,7 +924,7 @@ devices: calibration_factor: 0.997993208 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -938,7 +938,7 @@ devices: calibration_factor: 1.006031322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -952,7 +952,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -966,7 +966,7 @@ devices: calibration_factor: 1.002327856 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -980,7 +980,7 @@ devices: calibration_factor: 1.000154369 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -994,7 +994,7 @@ devices: calibration_factor: 1.009580478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1008,7 +1008,7 @@ devices: calibration_factor: 1.00447669 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1022,7 +1022,7 @@ devices: calibration_factor: 1.0015563 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1036,7 +1036,7 @@ devices: calibration_factor: 0.997221365 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1050,7 +1050,7 @@ devices: calibration_factor: 1.005954167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1064,7 +1064,7 @@ devices: calibration_factor: 1.006725723 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1078,7 +1078,7 @@ devices: calibration_factor: 0.994535144 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1092,7 +1092,7 @@ devices: calibration_factor: 0.999550256 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1106,7 +1106,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1120,7 +1120,7 @@ devices: calibration_factor: 1.000321811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1134,7 +1134,7 @@ devices: calibration_factor: 1.006715036 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1148,7 +1148,7 @@ devices: calibration_factor: 1.0036395 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1162,7 +1162,7 @@ devices: calibration_factor: 0.997684471 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1176,7 +1176,7 @@ devices: calibration_factor: 1.000385922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1190,7 +1190,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1204,7 +1204,7 @@ devices: calibration_factor: 0.998392922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1218,7 +1218,7 @@ devices: calibration_factor: 0.999318789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1232,7 +1232,7 @@ devices: calibration_factor: 0.996926967 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1246,7 +1246,7 @@ devices: calibration_factor: 1.000849027 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1260,7 +1260,7 @@ devices: calibration_factor: 1.003392444 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1274,7 +1274,7 @@ devices: calibration_factor: 1.001312133 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1288,7 +1288,7 @@ devices: calibration_factor: 1.005402902 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1302,7 +1302,7 @@ devices: calibration_factor: 0.995846789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1316,7 +1316,7 @@ devices: calibration_factor: 1.005877011 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1330,7 +1330,7 @@ devices: calibration_factor: 1.001016211 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1344,7 +1344,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1358,7 +1358,7 @@ devices: calibration_factor: 1.007265811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1372,7 +1372,7 @@ devices: calibration_factor: 0.998238611 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1386,7 +1386,7 @@ devices: calibration_factor: 0.998161456 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1400,7 +1400,7 @@ devices: calibration_factor: 1.004642522 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1414,7 +1414,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1428,7 +1428,7 @@ devices: calibration_factor: 1.001942078 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1442,7 +1442,7 @@ devices: calibration_factor: 0.999087322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1456,7 +1456,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1470,7 +1470,7 @@ devices: calibration_factor: 1.001698055 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1484,7 +1484,7 @@ devices: calibration_factor: 0.999704567 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1498,7 +1498,7 @@ devices: calibration_factor: 0.999164478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1512,7 +1512,7 @@ devices: calibration_factor: 1.000694659 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1526,7 +1526,7 @@ devices: calibration_factor: 0.99945971 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1540,7 +1540,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1554,7 +1554,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1568,7 +1568,7 @@ devices: calibration_factor: 0.997838839 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1582,7 +1582,7 @@ devices: calibration_factor: 1.003318926 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1596,7 +1596,7 @@ devices: calibration_factor: 1.004179589 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1610,7 +1610,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1624,7 +1624,7 @@ devices: calibration_factor: 0.9987787 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1638,7 +1638,7 @@ devices: calibration_factor: 1.004411056 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1652,7 +1652,7 @@ devices: calibration_factor: 1.0029451 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1666,7 +1666,7 @@ devices: calibration_factor: 1.009426167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1680,7 +1680,7 @@ devices: calibration_factor: 1.0050283 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1694,7 +1694,7 @@ devices: calibration_factor: 0.998533498 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1708,7 +1708,7 @@ devices: calibration_factor: 1.003485189 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1722,7 +1722,7 @@ devices: calibration_factor: 1.001389318 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1736,7 +1736,7 @@ devices: calibration_factor: 1.006108478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1750,7 +1750,7 @@ devices: calibration_factor: 1.002096389 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: diff --git a/tests/config/EBSTuneOATango.yaml b/tests/config/EBSTuneOATango.yaml index adb7be83..dae87e8d 100644 --- a/tests/config/EBSTuneOATango.yaml +++ b/tests/config/EBSTuneOATango.yaml @@ -147,7 +147,7 @@ devices: calibration_factor: 1.00054 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -162,7 +162,7 @@ devices: calibration_factor: 0.996841 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -177,7 +177,7 @@ devices: calibration_factor: 1.00191 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -192,7 +192,7 @@ devices: calibration_factor: 1.0003 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -207,7 +207,7 @@ devices: calibration_factor: 0.997615 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -222,7 +222,7 @@ devices: calibration_factor: 0.998152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -237,7 +237,7 @@ devices: calibration_factor: 1.00262 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -252,7 +252,7 @@ devices: calibration_factor: 1.00319 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -267,7 +267,7 @@ devices: calibration_factor: 0.996180929 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -282,7 +282,7 @@ devices: calibration_factor: 1.00206 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -297,7 +297,7 @@ devices: calibration_factor: 0.999285 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -312,7 +312,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -327,7 +327,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -342,7 +342,7 @@ devices: calibration_factor: 0.999225 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -357,7 +357,7 @@ devices: calibration_factor: 0.998033 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -372,7 +372,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -387,7 +387,7 @@ devices: calibration_factor: 1.0023 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -402,7 +402,7 @@ devices: calibration_factor: 1.00337 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -417,7 +417,7 @@ devices: calibration_factor: 1.00403 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -432,7 +432,7 @@ devices: calibration_factor: 1.00182 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -447,7 +447,7 @@ devices: calibration_factor: 0.998303 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -462,7 +462,7 @@ devices: calibration_factor: 0.998748 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -477,7 +477,7 @@ devices: calibration_factor: 0.994098 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -492,7 +492,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -507,7 +507,7 @@ devices: calibration_factor: 0.99884 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -522,7 +522,7 @@ devices: calibration_factor: 1.0079 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -537,7 +537,7 @@ devices: calibration_factor: 0.999523 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -552,7 +552,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -567,7 +567,7 @@ devices: calibration_factor: 0.999854 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -582,7 +582,7 @@ devices: calibration_factor: 0.99845 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -597,7 +597,7 @@ devices: calibration_factor: 1 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -612,7 +612,7 @@ devices: calibration_factor: 1.00095 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -627,7 +627,7 @@ devices: calibration_factor: 0.996753 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -642,7 +642,7 @@ devices: calibration_factor: 1.00334 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -657,7 +657,7 @@ devices: calibration_factor: 0.997707 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -672,7 +672,7 @@ devices: calibration_factor: 1.00152 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -687,7 +687,7 @@ devices: calibration_factor: 0.998124 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -702,7 +702,7 @@ devices: calibration_factor: 0.996662 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -717,7 +717,7 @@ devices: calibration_factor: 1.0017 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -732,7 +732,7 @@ devices: calibration_factor: 0.999642 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -747,7 +747,7 @@ devices: calibration_factor: 1.00042 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -762,7 +762,7 @@ devices: calibration_factor: 1.00471 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -777,7 +777,7 @@ devices: calibration_factor: 1.00393 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -792,7 +792,7 @@ devices: calibration_factor: 0.992906 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -807,7 +807,7 @@ devices: calibration_factor: 1.00268 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -822,7 +822,7 @@ devices: calibration_factor: 1.00248 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -837,7 +837,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -852,7 +852,7 @@ devices: calibration_factor: 0.998030791 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -867,7 +867,7 @@ devices: calibration_factor: 1.00232 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -882,7 +882,7 @@ devices: calibration_factor: 0.995052 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -897,7 +897,7 @@ devices: calibration_factor: 1.00155 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -912,7 +912,7 @@ devices: calibration_factor: 0.998271 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -927,7 +927,7 @@ devices: calibration_factor: 0.999702 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -942,7 +942,7 @@ devices: calibration_factor: 0.998005 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -957,7 +957,7 @@ devices: calibration_factor: 0.999463 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -972,7 +972,7 @@ devices: calibration_factor: 0.997794 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -987,7 +987,7 @@ devices: calibration_factor: 1.00203 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1002,7 +1002,7 @@ devices: calibration_factor: 1.00504 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1017,7 +1017,7 @@ devices: calibration_factor: 0.998212 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1032,7 +1032,7 @@ devices: calibration_factor: 1.0037 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1047,7 +1047,7 @@ devices: calibration_factor: 1.00093 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1062,7 +1062,7 @@ devices: calibration_factor: 1.0025 crosstalk: 1.0 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv unit: 1/m powerconverter: @@ -1077,7 +1077,7 @@ devices: calibration_factor: 0.999305341 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1092,7 +1092,7 @@ devices: calibration_factor: 0.997452918 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1107,7 +1107,7 @@ devices: calibration_factor: 0.997993208 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1122,7 +1122,7 @@ devices: calibration_factor: 1.006031322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1137,7 +1137,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1152,7 +1152,7 @@ devices: calibration_factor: 1.002327856 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1167,7 +1167,7 @@ devices: calibration_factor: 1.000154369 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1182,7 +1182,7 @@ devices: calibration_factor: 1.009580478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1197,7 +1197,7 @@ devices: calibration_factor: 1.00447669 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1212,7 +1212,7 @@ devices: calibration_factor: 1.0015563 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1227,7 +1227,7 @@ devices: calibration_factor: 0.997221365 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1242,7 +1242,7 @@ devices: calibration_factor: 1.005954167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1257,7 +1257,7 @@ devices: calibration_factor: 1.006725723 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1272,7 +1272,7 @@ devices: calibration_factor: 0.994535144 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1287,7 +1287,7 @@ devices: calibration_factor: 0.999550256 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1302,7 +1302,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1317,7 +1317,7 @@ devices: calibration_factor: 1.000321811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1332,7 +1332,7 @@ devices: calibration_factor: 1.006715036 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1347,7 +1347,7 @@ devices: calibration_factor: 1.0036395 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1362,7 +1362,7 @@ devices: calibration_factor: 0.997684471 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1377,7 +1377,7 @@ devices: calibration_factor: 1.000385922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1392,7 +1392,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1407,7 +1407,7 @@ devices: calibration_factor: 0.998392922 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1422,7 +1422,7 @@ devices: calibration_factor: 0.999318789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1437,7 +1437,7 @@ devices: calibration_factor: 0.996926967 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1452,7 +1452,7 @@ devices: calibration_factor: 1.000849027 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1467,7 +1467,7 @@ devices: calibration_factor: 1.003392444 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1482,7 +1482,7 @@ devices: calibration_factor: 1.001312133 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1497,7 +1497,7 @@ devices: calibration_factor: 1.005402902 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1512,7 +1512,7 @@ devices: calibration_factor: 0.995846789 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1527,7 +1527,7 @@ devices: calibration_factor: 1.005877011 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1542,7 +1542,7 @@ devices: calibration_factor: 1.001016211 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1557,7 +1557,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1572,7 +1572,7 @@ devices: calibration_factor: 1.007265811 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1587,7 +1587,7 @@ devices: calibration_factor: 0.998238611 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1602,7 +1602,7 @@ devices: calibration_factor: 0.998161456 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1617,7 +1617,7 @@ devices: calibration_factor: 1.004642522 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1632,7 +1632,7 @@ devices: calibration_factor: 1.001479145 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1647,7 +1647,7 @@ devices: calibration_factor: 1.001942078 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1662,7 +1662,7 @@ devices: calibration_factor: 0.999087322 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1677,7 +1677,7 @@ devices: calibration_factor: 0.998547233 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1692,7 +1692,7 @@ devices: calibration_factor: 1.001698055 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1707,7 +1707,7 @@ devices: calibration_factor: 0.999704567 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1722,7 +1722,7 @@ devices: calibration_factor: 0.999164478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1737,7 +1737,7 @@ devices: calibration_factor: 1.000694659 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1752,7 +1752,7 @@ devices: calibration_factor: 0.99945971 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1767,7 +1767,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1782,7 +1782,7 @@ devices: calibration_factor: 0.999922816 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1797,7 +1797,7 @@ devices: calibration_factor: 0.997838839 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1812,7 +1812,7 @@ devices: calibration_factor: 1.003318926 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1827,7 +1827,7 @@ devices: calibration_factor: 1.004179589 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1842,7 +1842,7 @@ devices: calibration_factor: 0.999010167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1857,7 +1857,7 @@ devices: calibration_factor: 0.9987787 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1872,7 +1872,7 @@ devices: calibration_factor: 1.004411056 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1887,7 +1887,7 @@ devices: calibration_factor: 1.0029451 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1902,7 +1902,7 @@ devices: calibration_factor: 1.009426167 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1917,7 +1917,7 @@ devices: calibration_factor: 1.0050283 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1932,7 +1932,7 @@ devices: calibration_factor: 0.998533498 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1947,7 +1947,7 @@ devices: calibration_factor: 1.003485189 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1962,7 +1962,7 @@ devices: calibration_factor: 1.001389318 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1977,7 +1977,7 @@ devices: calibration_factor: 1.006108478 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: @@ -1992,7 +1992,7 @@ devices: calibration_factor: 1.002096389 crosstalk: 0.99912 curve: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv unit: 1/m powerconverter: diff --git a/tests/config/sr/magnet_models/SH1AC01-range.yaml b/tests/config/sr/magnet_models/SH1AC01-range.yaml index 2c96a3b8..c2a2ace7 100644 --- a/tests/config/sr/magnet_models/SH1AC01-range.yaml +++ b/tests/config/sr/magnet_models/SH1AC01-range.yaml @@ -3,14 +3,14 @@ units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute diff --git a/tests/config/sr/magnet_models/SH1AC01.yaml b/tests/config/sr/magnet_models/SH1AC01.yaml index d8eb8fa4..8bebeed4 100644 --- a/tests/config/sr/magnet_models/SH1AC01.yaml +++ b/tests/config/sr/magnet_models/SH1AC01.yaml @@ -3,14 +3,14 @@ units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute diff --git a/tests/config/sr/magnet_models/SH1AC02.yaml b/tests/config/sr/magnet_models/SH1AC02.yaml index 5c0664b6..e498240f 100644 --- a/tests/config/sr/magnet_models/SH1AC02.yaml +++ b/tests/config/sr/magnet_models/SH1AC02.yaml @@ -3,14 +3,14 @@ units: [rad,rad,m-1] pseudo_factors: [1.0,-1.0,-1.0] curves: - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_h_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_v_strength.csv - - type: pyaml.configuration.csvcurve + - type: pyaml.magnet.csvcurve file: sr/magnet_models/SH1_SH3_sq_strength.csv matrix: - type: pyaml.configuration.csvmatrix + type: pyaml.magnet.csvmatrix file: sr/magnet_models/SH_matrix.csv powerconverters: - type: tango.pyaml.attribute diff --git a/tests/config/sr/magnet_models/quadcurve.json b/tests/config/sr/magnet_models/quadcurve.json index 9920711b..f4d18196 100644 --- a/tests/config/sr/magnet_models/quadcurve.json +++ b/tests/config/sr/magnet_models/quadcurve.json @@ -1,4 +1,4 @@ { - "type": "pyaml.configuration.csvcurve", + "type": "pyaml.magnet.csvcurve", "file": "sr/magnet_models/QF1_strength.csv" } diff --git a/tests/config/sr/magnet_models/quadcurve.yaml b/tests/config/sr/magnet_models/quadcurve.yaml index a536a9f6..26718455 100644 --- a/tests/config/sr/magnet_models/quadcurve.yaml +++ b/tests/config/sr/magnet_models/quadcurve.yaml @@ -1,2 +1,2 @@ -type: pyaml.configuration.csvcurve +type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv diff --git a/tests/config/sr_serialized_magnets.yaml b/tests/config/sr_serialized_magnets.yaml index 19058d3e..21a643c7 100644 --- a/tests/config/sr_serialized_magnets.yaml +++ b/tests/config/sr_serialized_magnets.yaml @@ -33,7 +33,7 @@ devices: calibration_offsets: 0.0 unit: m-1 curves: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/serialized_strength.csv powerconverter: type: tango.pyaml.attribute @@ -80,7 +80,7 @@ devices: calibration_offsets: 0.0 unit: m-1 curves: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv powerconverter: type: tango.pyaml.attribute @@ -127,7 +127,7 @@ devices: calibration_offsets: 0.0 unit: m-1 curves: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QF1_strength.csv powerconverter: type: tango.pyaml.attribute @@ -174,7 +174,7 @@ devices: calibration_offsets: 0.0 unit: m-1 curves: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv powerconverter: type: tango.pyaml.attribute @@ -221,7 +221,7 @@ devices: calibration_offsets: 0.0 unit: m-1 curves: - type: pyaml.configuration.csvcurve + type: pyaml.magnet.csvcurve file: sr/magnet_models/QD2_strength.csv powerconverter: type: tango.pyaml.attribute diff --git a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py index c336b183..e0c37a51 100644 --- a/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py +++ b/tests/dummy_cs/tango-pyaml/tango/pyaml/attribute_with_tango_powersupply_mocking_behaviour.py @@ -5,9 +5,9 @@ from scipy.constants import speed_of_light from pyaml.configuration import get_root_folder -from pyaml.configuration.curve import Curve from pyaml.control.deviceaccess import DeviceAccess from pyaml.control.readback_value import Value +from pyaml.magnet.curve import Curve PYAMLCLASS: str = "AttributeWithTangoMockingBehaviour" diff --git a/tests/test_curve.py b/tests/test_curve.py index 39cf6693..3df0b014 100644 --- a/tests/test_curve.py +++ b/tests/test_curve.py @@ -1,8 +1,8 @@ import numpy as np from pyaml.configuration import set_root_folder -from pyaml.configuration.csvcurve import ConfigModel, CSVCurve -from pyaml.configuration.curve import Curve +from pyaml.magnet.csvcurve import ConfigModel, CSVCurve +from pyaml.magnet.curve import Curve def curve_test(file: str, current: float, strength: float): From 0a76c454e475a81d42dbd42de3e0443daad2bc87 Mon Sep 17 00:00:00 2001 From: Teresia Olsson Date: Mon, 11 May 2026 15:11:05 +0200 Subject: [PATCH 4/5] Update imports in docs. --- pyaml/apidoc/gen_api.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pyaml/apidoc/gen_api.py b/pyaml/apidoc/gen_api.py index 98ca11b5..da1b2dba 100644 --- a/pyaml/apidoc/gen_api.py +++ b/pyaml/apidoc/gen_api.py @@ -31,15 +31,15 @@ "pyaml.common.element", "pyaml.common.element_holder", "pyaml.common.exception", - "pyaml.configuration.csvcurve", - "pyaml.configuration.csvmatrix", - "pyaml.configuration.curve", - "pyaml.configuration.factory", - "pyaml.configuration.fileloader", - "pyaml.configuration.inline_curve", - "pyaml.configuration.inline_matrix", - "pyaml.configuration.manager", - "pyaml.configuration.matrix", + "pyaml.magnet.csvcurve", + "pyaml.magnet.csvmatrix", + "pyaml.magnet.curve", + "pyaml.magnet.factory", + "pyaml.magnet.fileloader", + "pyaml.magnet.inline_curve", + "pyaml.magnet.inline_matrix", + "pyaml.magnet.manager", + "pyaml.magnet.matrix", "pyaml.control.abstract_impl", "pyaml.control.controlsystem", "pyaml.control.deviceaccess", @@ -126,7 +126,7 @@ def generate_selective_module(m): if m in ["pyaml.arrays.element_array"]: # Include special members for operator overloading file.write(" :special-members: __add__, __and__, __or__, __sub__ \n") - if m in ["pyaml.yellow_pages", "pyaml.configuration.manager"]: + if m in ["pyaml.yellow_pages", "pyaml.magnet.manager"]: # Include special members for exploratory overloading file.write(" :special-members: __dir__, __getattr__, __getitem__, __repr__, __str__ \n") file.write(" :exclude-members: model_config\n") From 5f7bb022b18f5b6acf4e5b265ce44837376b794a Mon Sep 17 00:00:00 2001 From: Teresia Olsson Date: Mon, 11 May 2026 15:14:27 +0200 Subject: [PATCH 5/5] Restore imports in docs that was changed by mistake. --- pyaml/apidoc/gen_api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyaml/apidoc/gen_api.py b/pyaml/apidoc/gen_api.py index da1b2dba..ee1b0460 100644 --- a/pyaml/apidoc/gen_api.py +++ b/pyaml/apidoc/gen_api.py @@ -34,11 +34,11 @@ "pyaml.magnet.csvcurve", "pyaml.magnet.csvmatrix", "pyaml.magnet.curve", - "pyaml.magnet.factory", - "pyaml.magnet.fileloader", + "pyaml.configuration.factory", + "pyaml.configuration.fileloader", "pyaml.magnet.inline_curve", "pyaml.magnet.inline_matrix", - "pyaml.magnet.manager", + "pyaml.configuration.manager", "pyaml.magnet.matrix", "pyaml.control.abstract_impl", "pyaml.control.controlsystem",