from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CompensationCls:
"""Compensation commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("compensation", core, parent)
@property
def adroop(self):
"""adroop commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_adroop'):
from .Adroop import AdroopCls
self._adroop = AdroopCls(self._core, self._cmd_group)
return self._adroop
@property
def freqError(self):
"""freqError commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_freqError'):
from .FreqError import FreqErrorCls
self._freqError = FreqErrorCls(self._core, self._cmd_group)
return self._freqError
@property
def iqOffset(self):
"""iqOffset commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_iqOffset'):
from .IqOffset import IqOffsetCls
self._iqOffset = IqOffsetCls(self._core, self._cmd_group)
return self._iqOffset
@property
def iqImbalance(self):
"""iqImbalance commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_iqImbalance'):
from .IqImbalance import IqImbalanceCls
self._iqImbalance = IqImbalanceCls(self._core, self._cmd_group)
return self._iqImbalance
@property
def symbolRate(self):
"""symbolRate commands group. 1 Sub-classes, 0 commands."""
if not hasattr(self, '_symbolRate'):
from .SymbolRate import SymbolRateCls
self._symbolRate = SymbolRateCls(self._core, self._cmd_group)
return self._symbolRate
def clone(self) -> 'CompensationCls':
"""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 = CompensationCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group