Source code for RsFsw.Implementations.Calculate.Limit.AcPower.Alternate.Result.Relative

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.StructBase import StructBase
from .......Internal.ArgStruct import ArgStruct
from ....... import enums
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class RelativeCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("relative", core, parent)

	# noinspection PyTypeChecker
[docs] class GetStruct(StructBase): """ Response structure. Fields: \n - 1 Upper_Limit: enums.CheckResult: No parameter help available - 2 Lower_Limit: enums.CheckResult: No parameter help available """ __meta_args_list = [ ArgStruct.scalar_enum('Upper_Limit', enums.CheckResult), ArgStruct.scalar_enum('Lower_Limit', enums.CheckResult)] def __init__(self): StructBase.__init__(self, self) self.Upper_Limit: enums.CheckResult = None self.Lower_Limit: enums.CheckResult = None
[docs] def get(self, window=repcap.Window.Default, limitIx=repcap.LimitIx.Default, channel=repcap.Channel.Default) -> GetStruct: """ ``CALCulate<n>:LIMit<li>:ACPower:ALTernate<ch>:RESult:RELative`` \n Snippet: ``value: GetStruct = driver.calculate.limit.acPower.alternate.result.relative.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default, channel = repcap.Channel.Default)`` \n Queries the relative limit check results for the alternate channels (MC ACLR measurements) . Prerequisites for this command \n - Select relative limit check mode ACLR: method ``RsFsw.calculate.limit.acPower.pmode.set()`` . :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :param limitIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Limit') :param channel: optional repeated capability selector. Default value: Ch1 (settable in the interface 'Alternate') :return: structure: for return value, see the help for GetStruct structure arguments. """ window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) limitIx_cmd_val = self._cmd_group.get_repcap_cmd_value(limitIx, repcap.LimitIx) channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel) return self._core.io.query_struct(f'CALCulate{window_cmd_val}:LIMit{limitIx_cmd_val}:ACPower:ALTernate{channel_cmd_val}:RESult:RELative?', self.__class__.GetStruct())