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 .........Internal.ArgSingleList import ArgSingleList
from .........Internal.ArgSingle import ArgSingle
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TofDeviationCls:
"""TofDeviation commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("tofDeviation", core, parent)
[docs] def set(self, enable: bool, upper: float) -> None:
"""SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:TONes:DCS:TOFDeviation \n
Snippet: driver.configure.afRf.measurement.multiEval.limit.tones.dcs.tofDeviation.set(enable = False, upper = 1.0) \n
No command help available \n
:param enable: No help available
:param upper: No help available
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('enable', enable, DataType.Boolean), ArgSingle('upper', upper, DataType.Float))
self._core.io.write(f'CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:TONes:DCS:TOFDeviation {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class TofDeviationStruct(StructBase):
"""Response structure. Fields: \n
- Enable: bool: No parameter help available
- Upper: float: No parameter help available"""
__meta_args_list = [
ArgStruct.scalar_bool('Enable'),
ArgStruct.scalar_float('Upper')]
def __init__(self):
StructBase.__init__(self, self)
self.Enable: bool = None
self.Upper: float = None
[docs] def get(self) -> TofDeviationStruct:
"""SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:TONes:DCS:TOFDeviation \n
Snippet: value: TofDeviationStruct = driver.configure.afRf.measurement.multiEval.limit.tones.dcs.tofDeviation.get() \n
No command help available \n
:return: structure: for return value, see the help for TofDeviationStruct structure arguments."""
return self._core.io.query_struct(f'CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:TONes:DCS:TOFDeviation?', self.__class__.TofDeviationStruct())