Source code for RsCMPX_NrFr1Meas.Implementations.NrSubMeas.MultiEval.Trace

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class TraceCls: """Trace commands group definition. 52 total commands, 5 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("trace", core, parent) @property def cc(self): """cc commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_cc'): from .Cc import CcCls self._cc = CcCls(self._core, self._cmd_group) return self._cc @property def seMask(self): """seMask commands group. 2 Sub-classes, 0 commands.""" if not hasattr(self, '_seMask'): from .SeMask import SeMaskCls self._seMask = SeMaskCls(self._core, self._cmd_group) return self._seMask @property def aclr(self): """aclr commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_aclr'): from .Aclr import AclrCls self._aclr = AclrCls(self._core, self._cmd_group) return self._aclr @property def pmonitor(self): """pmonitor commands group. 1 Sub-classes, 2 commands.""" if not hasattr(self, '_pmonitor'): from .Pmonitor import PmonitorCls self._pmonitor = PmonitorCls(self._core, self._cmd_group) return self._pmonitor @property def layer(self): """layer commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_layer'): from .Layer import LayerCls self._layer = LayerCls(self._core, self._cmd_group) return self._layer def clone(self) -> 'TraceCls': """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 = TraceCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group