from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ExternalCls:
"""
| Commands in total: 3
| Subgroups: 1
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("external", core, parent)
@property
def synchronize(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_synchronize'):
from .Synchronize import SynchronizeCls
self._synchronize = SynchronizeCls(self._core, self._cmd_group)
return self._synchronize
[docs]
def get_delay(self) -> float:
"""
``[SOURce<HW>]:BB:MCCW:TRIGger:[EXTernal]:DELay`` \n
Snippet: ``value: float = driver.source.bb.mccw.trigger.external.get_delay()`` \n
Specifies the trigger delay in samples. Maximum trigger delay and trigger inhibit values depend on the installed options.
See 'To set delay and inhibit values'.
:return: delay: float Range: 0 to 2147483647, Unit: samples E.g. 0 to 2147483647 samples (R&S SMW-B10)
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:MCCW:TRIGger:EXTernal:DELay?')
return Conversions.str_to_float(response)
[docs]
def get_inhibit(self) -> int:
"""
``[SOURce<HW>]:BB:MCCW:TRIGger:[EXTernal]:INHibit`` \n
Snippet: ``value: int = driver.source.bb.mccw.trigger.external.get_inhibit()`` \n
Specifies the number of samples, by which a restart is inhibited following an external trigger event. Maximum trigger
delay and trigger inhibit values depend on the installed options. See 'To set delay and inhibit values'.
:return: inhibit: integer Range: 0 to 21.47 * (clock frequency) , Unit: sample E.g. 0 to 2147483647 samples (R&S SMW-B10)
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:MCCW:TRIGger:EXTernal:INHibit?')
return Conversions.str_to_int(response)
def clone(self) -> 'ExternalCls':
"""
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 = ExternalCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group