[docs]classTraceCls:"""Trace commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("trace",core,parent)
[docs]defset(self,trace:float,window=repcap.Window.Default,deltaMarker=repcap.DeltaMarker.Default)->None:"""SCPI: CALCulate<n>:DELTamarker<m>:TRACe \n Snippet: driver.applications.k18AmplifierEt.calculate.deltaMarker.trace.set(trace = 1.0, window = repcap.Window.Default, deltaMarker = repcap.DeltaMarker.Default) \n Selects the trace a delta marker is positioned on. Note that the corresponding trace must have a trace mode other than 'Blank'. If necessary, the command activates the marker first. \n :param trace: Trace number the marker is assigned to. :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :param deltaMarker: optional repeated capability selector. Default value: Nr1 (settable in the interface 'DeltaMarker') """param=Conversions.decimal_value_to_str(trace)window_cmd_val=self._cmd_group.get_repcap_cmd_value(window,repcap.Window)deltaMarker_cmd_val=self._cmd_group.get_repcap_cmd_value(deltaMarker,repcap.DeltaMarker)self._core.io.write(f'CALCulate{window_cmd_val}:DELTamarker{deltaMarker_cmd_val}:TRACe {param}')
[docs]defget(self,window=repcap.Window.Default,deltaMarker=repcap.DeltaMarker.Default)->float:"""SCPI: CALCulate<n>:DELTamarker<m>:TRACe \n Snippet: value: float = driver.applications.k18AmplifierEt.calculate.deltaMarker.trace.get(window = repcap.Window.Default, deltaMarker = repcap.DeltaMarker.Default) \n Selects the trace a delta marker is positioned on. Note that the corresponding trace must have a trace mode other than 'Blank'. If necessary, the command activates the marker first. \n :param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate') :param deltaMarker: optional repeated capability selector. Default value: Nr1 (settable in the interface 'DeltaMarker') :return: trace: Trace number the marker is assigned to."""window_cmd_val=self._cmd_group.get_repcap_cmd_value(window,repcap.Window)deltaMarker_cmd_val=self._cmd_group.get_repcap_cmd_value(deltaMarker,repcap.DeltaMarker)response=self._core.io.query_str(f'CALCulate{window_cmd_val}:DELTamarker{deltaMarker_cmd_val}:TRACe?')returnConversions.str_to_float(response)