Source code for RsCmwWcdmaMeas.Implementations.MultiEval_.ListPy_.CdPower

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CdPower: """CdPower commands group definition. 30 total commands, 10 Sub-groups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("cdPower", core, parent) @property def dpcch(self): """dpcch commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_dpcch'): from .CdPower_.Dpcch import Dpcch self._dpcch = Dpcch(self._core, self._base) return self._dpcch @property def dpdch(self): """dpdch commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_dpdch'): from .CdPower_.Dpdch import Dpdch self._dpdch = Dpdch(self._core, self._base) return self._dpdch @property def hsdpcch(self): """hsdpcch commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_hsdpcch'): from .CdPower_.Hsdpcch import Hsdpcch self._hsdpcch = Hsdpcch(self._core, self._base) return self._hsdpcch @property def edpcch(self): """edpcch commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_edpcch'): from .CdPower_.Edpcch import Edpcch self._edpcch = Edpcch(self._core, self._base) return self._edpcch @property def edpdch(self): """edpdch commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_edpdch'): from .CdPower_.Edpdch import Edpdch self._edpdch = Edpdch(self._core, self._base) return self._edpdch @property def standardDev(self): """standardDev commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_standardDev'): from .CdPower_.StandardDev import StandardDev self._standardDev = StandardDev(self._core, self._base) return self._standardDev @property def maximum(self): """maximum commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_maximum'): from .CdPower_.Maximum import Maximum self._maximum = Maximum(self._core, self._base) return self._maximum @property def minimum(self): """minimum commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_minimum'): from .CdPower_.Minimum import Minimum self._minimum = Minimum(self._core, self._base) return self._minimum @property def average(self): """average commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_average'): from .CdPower_.Average import Average self._average = Average(self._core, self._base) return self._average @property def current(self): """current commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_current'): from .CdPower_.Current import Current self._current = Current(self._core, self._base) return self._current def clone(self) -> 'CdPower': """Clones the group by creating new object from it and its whole existing sub-groups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = CdPower(self._core, self._base.parent) self._base.synchronize_repcaps(new_group) return new_group