Source code for RsCMPX_Base.Implementations.Calibration.Base

from typing import List

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.Types import DataType
from ....Internal.StructBase import StructBase
from ....Internal.ArgStruct import ArgStruct
from .... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class BaseCls: """Base commands group definition. 10 total commands, 3 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("base", core, parent) @property def latest(self): """latest commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_latest'): from .Latest import LatestCls self._latest = LatestCls(self._core, self._cmd_group) return self._latest @property def ipcr(self): """ipcr commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_ipcr'): from .Ipcr import IpcrCls self._ipcr = IpcrCls(self._core, self._cmd_group) return self._ipcr @property def ipc(self): """ipc commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_ipc'): from .Ipc import IpcCls self._ipc = IpcCls(self._core, self._cmd_group) return self._ipc # noinspection PyTypeChecker
[docs] class AllStruct(StructBase): # From ReadStructDefinition CmdPropertyTemplate.xml """Structure for reading output parameters. Fields: \n - Date: List[str]: No parameter help available - Time: List[str]: No parameter help available - Type_Py: List[enums.Type]: No parameter help available""" __meta_args_list = [ ArgStruct('Date', DataType.StringList, None, False, True, 1), ArgStruct('Time', DataType.StringList, None, False, True, 1), ArgStruct('Type_Py', DataType.EnumList, enums.Type, False, True, 1)] def __init__(self): StructBase.__init__(self, self) self.Date: List[str] = None self.Time: List[str] = None self.Type_Py: List[enums.Type] = None
[docs] def get_all(self) -> AllStruct: """SCPI: CALibration:BASE:ALL \n Snippet: value: AllStruct = driver.calibration.base.get_all() \n No command help available \n :return: structure: for return value, see the help for AllStruct structure arguments. """ return self._core.io.query_struct('CALibration:BASE:ALL?', self.__class__.AllStruct())
# noinspection PyTypeChecker
[docs] class AcFileStruct(StructBase): # From ReadStructDefinition CmdPropertyTemplate.xml """Structure for reading output parameters. Fields: \n - Type_Py: str: No parameter help available - Date: str: No parameter help available""" __meta_args_list = [ ArgStruct.scalar_str('Type_Py'), ArgStruct.scalar_str('Date')] def __init__(self): StructBase.__init__(self, self) self.Type_Py: str = None self.Date: str = None
[docs] def get_ac_file(self) -> AcFileStruct: """SCPI: CALibration:BASE:ACFile \n Snippet: value: AcFileStruct = driver.calibration.base.get_ac_file() \n No command help available \n :return: structure: for return value, see the help for AcFileStruct structure arguments. """ return self._core.io.query_struct('CALibration:BASE:ACFile?', self.__class__.AcFileStruct())
def clone(self) -> 'BaseCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = BaseCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group