from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RtciCls:
"""Rtci commands group definition. 25 total commands, 3 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("rtci", core, parent)
@property
def wave(self):
"""wave commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_wave'):
from .Wave import WaveCls
self._wave = WaveCls(self._core, self._cmd_group)
return self._wave
@property
def wlist(self):
"""wlist commands group. 1 Sub-classes, 1 commands."""
if not hasattr(self, '_wlist'):
from .Wlist import WlistCls
self._wlist = WlistCls(self._core, self._cmd_group)
return self._wlist
@property
def sequencer(self):
"""sequencer commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_sequencer'):
from .Sequencer import SequencerCls
self._sequencer = SequencerCls(self._core, self._cmd_group)
return self._sequencer
# noinspection PyTypeChecker
# noinspection PyTypeChecker
[docs] def get_pdw_rate(self) -> enums.ExtSeqPdwRateMode:
"""SCPI: [SOURce<HW>]:BB:ESEQuencer:RTCI:PDWRate \n
Snippet: value: enums.ExtSeqPdwRateMode = driver.source.bb.esequencer.rtci.get_pdw_rate() \n
No command help available \n
:return: rate_mode: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ESEQuencer:RTCI:PDWRate?')
return Conversions.str_to_scalar_enum(response, enums.ExtSeqPdwRateMode)
[docs] def set_pdw_rate(self, rate_mode: enums.ExtSeqPdwRateMode) -> None:
"""SCPI: [SOURce<HW>]:BB:ESEQuencer:RTCI:PDWRate \n
Snippet: driver.source.bb.esequencer.rtci.set_pdw_rate(rate_mode = enums.ExtSeqPdwRateMode.HSPeed) \n
No command help available \n
:param rate_mode: No help available
"""
param = Conversions.enum_scalar_to_str(rate_mode, enums.ExtSeqPdwRateMode)
self._core.io.write(f'SOURce<HwInstance>:BB:ESEQuencer:RTCI:PDWRate {param}')
def clone(self) -> 'RtciCls':
"""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 = RtciCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group