Source code for RsFswp.Implementations.Applications.K40_PhaseNoise

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class K40_PhaseNoiseCls: """K40_PhaseNoise commands group definition. 37 total commands, 6 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("k40_PhaseNoise", core, parent) @property def layout(self): """layout commands group. 4 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 calculate(self): """calculate commands group. 5 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 fetch(self): """fetch commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_fetch'): from .Fetch import FetchCls self._fetch = FetchCls(self._core, self._cmd_group) return self._fetch @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 sense(self): """sense commands group. 1 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 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 def clone(self) -> 'K40_PhaseNoiseCls': """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 = K40_PhaseNoiseCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group