[docs]classStreamCls:"""Stream commands group definition. 3 total commands, 2 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("stream",core,parent)@propertydeflistPy(self):"""listPy commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_listPy'):from.ListPyimportListPyClsself._listPy=ListPyCls(self._core,self._cmd_group)returnself._listPy@propertydefauto(self):"""auto commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_auto'):from.AutoimportAutoClsself._auto=AutoCls(self._core,self._cmd_group)returnself._auto
[docs]defset(self,channel:str)->None:"""SCPI: MMEMory:LOAD:IQ:STReam \n Snippet: driver.applications.k18AmplifierEt.massMemory.load.iq.stream.set(channel = 'abc') \n Only available for files that contain more than one data stream from multiple channels: selects the data stream to be used as input for the currently selected channel. Automatic mode (method RsFsw.MassMemory.Load.Iq.Stream.Auto.set) is set to OFF. \n :param channel: String containing the channel name. """param=Conversions.value_to_quoted_str(channel)self._core.io.write(f'MMEMory:LOAD:IQ:STReam {param}')
[docs]defget(self)->str:"""SCPI: MMEMory:LOAD:IQ:STReam \n Snippet: value: str = driver.applications.k18AmplifierEt.massMemory.load.iq.stream.get() \n Only available for files that contain more than one data stream from multiple channels: selects the data stream to be used as input for the currently selected channel. Automatic mode (method RsFsw.MassMemory.Load.Iq.Stream.Auto.set) is set to OFF. \n :return: channel: String containing the channel name."""response=self._core.io.query_str(f'MMEMory:LOAD:IQ:STReam?')returntrim_str_response(response)
defclone(self)->'StreamCls':"""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=StreamCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group