Source code for RsCma.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. 4 total commands, 1 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 # noinspection PyTypeChecker
[docs] class AllStruct(StructBase): # From ReadStructDefinition CmdPropertyTemplate.xml """Structure for reading output parameters. Fields: \n - Date: List[str]: Date of the calibration as string - Time: List[str]: Time of the calibration as string - Type_Py: List[enums.CalibType]: FSCorrection | CALibration | OGCal Type of the calibration FSCorrection Correction performed in factory or service CALibration Verification in the factory OGCal Verification by the service (outgoing calibration)""" __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.CalibType, 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.CalibType] = None
[docs] def get_all(self) -> AllStruct: """SCPI: CALibration:BASE:ALL \n Snippet: value: AllStruct = driver.calibration.base.get_all() \n Queries the stored calibration information. A comma-separated list is returned, containing three parameters per calibration, as described below. \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: Name of the correction file as string - Date: str: Creation date as string""" __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 Query name and creation date of the currently active RF path correction file. Possible result: 'Factory Default', '2016-09-28' \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