Source code for RsCMPX_NrFr2Meas.Implementations.Configure.NrMmwMeas.Cc.Allocation.Ctype

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class CtypeCls: """Ctype commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ctype", core, parent)
[docs] def set(self, channel: enums.ChannelTypeA, carrierComponent=repcap.CarrierComponent.Default, allocationMore=repcap.AllocationMore.Default) -> None: """SCPI: CONFigure:NRMMw:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:CTYPe \n Snippet: driver.configure.nrMmwMeas.cc.allocation.ctype.set(channel = enums.ChannelTypeA.PUCCh, carrierComponent = repcap.CarrierComponent.Default, allocationMore = repcap.AllocationMore.Default) \n Selects the type of channel to be measured, for carrier <no>, allocation <a>. \n :param channel: No help available :param carrierComponent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cc') :param allocationMore: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Allocation') """ param = Conversions.enum_scalar_to_str(channel, enums.ChannelTypeA) carrierComponent_cmd_val = self._cmd_group.get_repcap_cmd_value(carrierComponent, repcap.CarrierComponent) allocationMore_cmd_val = self._cmd_group.get_repcap_cmd_value(allocationMore, repcap.AllocationMore) self._core.io.write(f'CONFigure:NRMMw:MEASurement<Instance>:CC{carrierComponent_cmd_val}:ALLocation{allocationMore_cmd_val}:CTYPe {param}')
# noinspection PyTypeChecker
[docs] def get(self, carrierComponent=repcap.CarrierComponent.Default, allocationMore=repcap.AllocationMore.Default) -> enums.ChannelTypeA: """SCPI: CONFigure:NRMMw:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:CTYPe \n Snippet: value: enums.ChannelTypeA = driver.configure.nrMmwMeas.cc.allocation.ctype.get(carrierComponent = repcap.CarrierComponent.Default, allocationMore = repcap.AllocationMore.Default) \n Selects the type of channel to be measured, for carrier <no>, allocation <a>. \n :param carrierComponent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cc') :param allocationMore: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Allocation') :return: channel: No help available""" carrierComponent_cmd_val = self._cmd_group.get_repcap_cmd_value(carrierComponent, repcap.CarrierComponent) allocationMore_cmd_val = self._cmd_group.get_repcap_cmd_value(allocationMore, repcap.AllocationMore) response = self._core.io.query_str(f'CONFigure:NRMMw:MEASurement<Instance>:CC{carrierComponent_cmd_val}:ALLocation{allocationMore_cmd_val}:CTYPe?') return Conversions.str_to_scalar_enum(response, enums.ChannelTypeA)