Source code for RsFsw.Implementations.Applications.K149_Uwb.Fetch.Summary.Xcorr.Mlobe

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MlobeCls: """Mlobe commands group definition. 16 total commands, 3 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("mlobe", core, parent) @property def minimum(self): """minimum commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_minimum'): from .Minimum import MinimumCls self._minimum = MinimumCls(self._core, self._cmd_group) return self._minimum @property def peak(self): """peak commands group. 3 Sub-classes, 1 commands.""" if not hasattr(self, '_peak'): from .Peak import PeakCls self._peak = PeakCls(self._core, self._cmd_group) return self._peak @property def width(self): """width commands group. 4 Sub-classes, 1 commands.""" if not hasattr(self, '_width'): from .Width import WidthCls self._width = WidthCls(self._core, self._cmd_group) return self._width def clone(self) -> 'MlobeCls': """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 = MlobeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group