from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class HopDetectionCls:
"""HopDetection commands group definition. 77 total commands, 14 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("hopDetection", core, parent)
@property
def compensation(self):
"""compensation commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_compensation'):
from .Compensation import CompensationCls
self._compensation = CompensationCls(self._core, self._cmd_group)
return self._compensation
@property
def pcoherent(self):
"""pcoherent commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_pcoherent'):
from .Pcoherent import PcoherentCls
self._pcoherent = PcoherentCls(self._core, self._cmd_group)
return self._pcoherent
@property
def fmTolerance(self):
"""fmTolerance commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_fmTolerance'):
from .FmTolerance import FmToleranceCls
self._fmTolerance = FmToleranceCls(self._core, self._cmd_group)
return self._fmTolerance
@property
def pmTolerance(self):
"""pmTolerance commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_pmTolerance'):
from .PmTolerance import PmToleranceCls
self._pmTolerance = PmToleranceCls(self._core, self._cmd_group)
return self._pmTolerance
@property
def frequency(self):
"""frequency commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_frequency'):
from .Frequency import FrequencyCls
self._frequency = FrequencyCls(self._core, self._cmd_group)
return self._frequency
@property
def fdeviation(self):
"""fdeviation commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_fdeviation'):
from .Fdeviation import FdeviationCls
self._fdeviation = FdeviationCls(self._core, self._cmd_group)
return self._fdeviation
@property
def pdeviation(self):
"""pdeviation commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_pdeviation'):
from .Pdeviation import PdeviationCls
self._pdeviation = PdeviationCls(self._core, self._cmd_group)
return self._pdeviation
@property
def total(self):
"""total commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_total'):
from .Total import TotalCls
self._total = TotalCls(self._core, self._cmd_group)
return self._total
@property
def pnoise(self):
"""pnoise commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_pnoise'):
from .Pnoise import PnoiseCls
self._pnoise = PnoiseCls(self._core, self._cmd_group)
return self._pnoise
@property
def power(self):
"""power commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_power'):
from .Power import PowerCls
self._power = PowerCls(self._core, self._cmd_group)
return self._power
@property
def dwell(self):
"""dwell commands group. 3 Sub-classes, 0 commands."""
if not hasattr(self, '_dwell'):
from .Dwell import DwellCls
self._dwell = DwellCls(self._core, self._cmd_group)
return self._dwell
@property
def states(self):
"""states commands group. 4 Sub-classes, 0 commands."""
if not hasattr(self, '_states'):
from .States import StatesCls
self._states = StatesCls(self._core, self._cmd_group)
return self._states
@property
def selected(self):
"""selected commands group. 0 Sub-classes, 1 commands."""
if not hasattr(self, '_selected'):
from .Selected import SelectedCls
self._selected = SelectedCls(self._core, self._cmd_group)
return self._selected
@property
def table(self):
"""table commands group. 10 Sub-classes, 0 commands."""
if not hasattr(self, '_table'):
from .Table import TableCls
self._table = TableCls(self._core, self._cmd_group)
return self._table
def clone(self) -> 'HopDetectionCls':
"""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 = HopDetectionCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group