Source code for RsFsw.Implementations.Calculate.Marker.Function.Power.Standard.Save

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from .......Internal.Utilities import trim_str_response
from ....... import repcap


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

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

[docs] def set(self, standard: str, window=repcap.Window.Default, marker=repcap.Marker.Default, subBlock=repcap.SubBlock.Default) -> None: """ ``CALCulate<n>:MARKer<m>:FUNCtion:POWer<sb>:STANdard:SAVE`` \n Snippet: ``driver.calculate.marker.function.power.standard.save.set(standard = 'abc', window = repcap.Window.Default, marker = repcap.Marker.Default, subBlock = repcap.SubBlock.Default)`` \n Saves the current ACLR measurement configuration as a new ACLR standard. The measurement configuration for power measurements consists of weighting filter, channel bandwidth and spacing, resolution and video bandwidth, detector and sweep time. :param standard: String containing the file name. The file format is xml. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :param marker: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Marker') :param subBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Power') """ param = Conversions.value_to_quoted_str(standard) window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) marker_cmd_val = self._cmd_group.get_repcap_cmd_value(marker, repcap.Marker) subBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(subBlock, repcap.SubBlock) self._core.io.write(f'CALCulate{window_cmd_val}:MARKer{marker_cmd_val}:FUNCtion:POWer{subBlock_cmd_val}:STANdard:SAVE {param}')
[docs] def get(self, window=repcap.Window.Default, marker=repcap.Marker.Default, subBlock=repcap.SubBlock.Default) -> str: """ ``CALCulate<n>:MARKer<m>:FUNCtion:POWer<sb>:STANdard:SAVE`` \n Snippet: ``value: str = driver.calculate.marker.function.power.standard.save.get(window = repcap.Window.Default, marker = repcap.Marker.Default, subBlock = repcap.SubBlock.Default)`` \n Saves the current ACLR measurement configuration as a new ACLR standard. The measurement configuration for power measurements consists of weighting filter, channel bandwidth and spacing, resolution and video bandwidth, detector and sweep time. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :param marker: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Marker') :param subBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Power') :return: standard: String containing the file name. The file format is xml. """ window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window) marker_cmd_val = self._cmd_group.get_repcap_cmd_value(marker, repcap.Marker) subBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(subBlock, repcap.SubBlock) response = self._core.io.query_str(f'CALCulate{window_cmd_val}:MARKer{marker_cmd_val}:FUNCtion:POWer{subBlock_cmd_val}:STANdard:SAVE?') return trim_str_response(response)