Source code for RsCMPX_LteMeas.Implementations.Configure.LteMeas.MultiEval.RbAllocation

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class RbAllocationCls: """RbAllocation commands group definition. 10 total commands, 3 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("rbAllocation", core, parent) @property def nrb(self): """nrb commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_nrb'): from .Nrb import NrbCls self._nrb = NrbCls(self._core, self._cmd_group) return self._nrb @property def mcluster(self): """mcluster commands group. 2 Sub-classes, 1 commands.""" if not hasattr(self, '_mcluster'): from .Mcluster import MclusterCls self._mcluster = MclusterCls(self._core, self._cmd_group) return self._mcluster @property def orb(self): """orb commands group. 0 Sub-classes, 3 commands.""" if not hasattr(self, '_orb'): from .Orb import OrbCls self._orb = OrbCls(self._core, self._cmd_group) return self._orb
[docs] def get_auto(self) -> bool: """SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:RBALlocation:AUTO \n Snippet: value: bool = driver.configure.lteMeas.multiEval.rbAllocation.get_auto() \n Enables or disables the automatic detection of the RB configuration. \n :return: auto: OFF: manual definition ON: automatic detection """ response = self._core.io.query_str('CONFigure:LTE:MEASurement<Instance>:MEValuation:RBALlocation:AUTO?') return Conversions.str_to_bool(response)
[docs] def set_auto(self, auto: bool) -> None: """SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:RBALlocation:AUTO \n Snippet: driver.configure.lteMeas.multiEval.rbAllocation.set_auto(auto = False) \n Enables or disables the automatic detection of the RB configuration. \n :param auto: OFF: manual definition ON: automatic detection """ param = Conversions.bool_to_str(auto) self._core.io.write(f'CONFigure:LTE:MEASurement<Instance>:MEValuation:RBALlocation:AUTO {param}')
def clone(self) -> 'RbAllocationCls': """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 = RbAllocationCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group