from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
from ..... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class SweepCls:
"""Sweep commands group definition. 55 total commands, 6 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("sweep", core, parent)
@property
def color(self):
"""color commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_color'):
from .Color import ColorCls
self._color = ColorCls(self._core, self._cmd_group)
return self._color
@property
def data(self):
"""data commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_data'):
from .Data import DataCls
self._data = DataCls(self._core, self._cmd_group)
return self._data
@property
def feed(self):
"""feed commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_feed'):
from .Feed import FeedCls
self._feed = FeedCls(self._core, self._cmd_group)
return self._feed
@property
def measurement(self):
"""measurement commands group. 7 Sub-classes, 0 commands."""
if not hasattr(self, '_measurement'):
from .Measurement import MeasurementCls
self._measurement = MeasurementCls(self._core, self._cmd_group)
return self._measurement
@property
def pulse(self):
"""pulse commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_pulse'):
from .Pulse import PulseCls
self._pulse = PulseCls(self._core, self._cmd_group)
return self._pulse
@property
def state(self):
"""state commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_state'):
from .State import StateCls
self._state = StateCls(self._core, self._cmd_group)
return self._state
[docs]
def copy(self, copy: enums.MeasRespTraceCopyDest, trace=repcap.Trace.Default) -> None:
"""SCPI: TRACe<CH>:[POWer]:SWEep:COPY \n
Snippet: driver.trace.power.sweep.copy(copy = enums.MeasRespTraceCopyDest.REFerence, trace = repcap.Trace.Default) \n
Stores the selected trace data as reference trace. \n
:param copy: REFerence
:param trace: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trace')
"""
param = Conversions.enum_scalar_to_str(copy, enums.MeasRespTraceCopyDest)
trace_cmd_val = self._cmd_group.get_repcap_cmd_value(trace, repcap.Trace)
self._core.io.write(f'TRACe{trace_cmd_val}:POWer:SWEep:COPY {param}')
def clone(self) -> 'SweepCls':
"""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 = SweepCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group