Source code for RsFsw.Implementations.Applications.K30_NoiseFigure
from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class K30_NoiseFigureCls:
"""K30_NoiseFigure commands group definition. 292 total commands, 13 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("k30_NoiseFigure", core, parent)
@property
def layout(self):
"""layout commands group. 7 Sub-classes, 0 commands."""
if not hasattr(self, '_layout'):
from .Layout import LayoutCls
self._layout = LayoutCls(self._core, self._cmd_group)
return self._layout
@property
def trace(self):
"""trace commands group. 1 Sub-classes, 1 commands."""
if not hasattr(self, '_trace'):
from .Trace import TraceCls
self._trace = TraceCls(self._core, self._cmd_group)
return self._trace
@property
def calculate(self):
"""calculate commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_calculate'):
from .Calculate import CalculateCls
self._calculate = CalculateCls(self._core, self._cmd_group)
return self._calculate
@property
def source(self):
"""source commands group. 6 Sub-classes, 0 commands."""
if not hasattr(self, '_source'):
from .Source import SourceCls
self._source = SourceCls(self._core, self._cmd_group)
return self._source
@property
def sense(self):
"""sense commands group. 7 Sub-classes, 0 commands."""
if not hasattr(self, '_sense'):
from .Sense import SenseCls
self._sense = SenseCls(self._core, self._cmd_group)
return self._sense
@property
def output(self):
"""output commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_output'):
from .Output import OutputCls
self._output = OutputCls(self._core, self._cmd_group)
return self._output
@property
def display(self):
"""display commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_display'):
from .Display import DisplayCls
self._display = DisplayCls(self._core, self._cmd_group)
return self._display
@property
def formatPy(self):
"""formatPy commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_formatPy'):
from .FormatPy import FormatPyCls
self._formatPy = FormatPyCls(self._core, self._cmd_group)
return self._formatPy
@property
def initiate(self):
"""initiate commands group. 2 Sub-classes, 0 commands."""
if not hasattr(self, '_initiate'):
from .Initiate import InitiateCls
self._initiate = InitiateCls(self._core, self._cmd_group)
return self._initiate
@property
def inputPy(self):
"""inputPy commands group. 8 Sub-classes, 0 commands."""
if not hasattr(self, '_inputPy'):
from .InputPy import InputPyCls
self._inputPy = InputPyCls(self._core, self._cmd_group)
return self._inputPy
@property
def massMemory(self):
"""massMemory commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_massMemory'):
from .MassMemory import MassMemoryCls
self._massMemory = MassMemoryCls(self._core, self._cmd_group)
return self._massMemory
@property
def system(self):
"""system commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_system'):
from .System import SystemCls
self._system = SystemCls(self._core, self._cmd_group)
return self._system
@property
def trigger(self):
"""trigger commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_trigger'):
from .Trigger import TriggerCls
self._trigger = TriggerCls(self._core, self._cmd_group)
return self._trigger
def clone(self) -> 'K30_NoiseFigureCls':
"""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 = K30_NoiseFigureCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group