Source code for RsCMPX_LteMeas.Implementations.LteMeas.MultiEval.ListPy.Segment.Pmonitor.Array.Length

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........Internal.ArgSingleSuppressed import ArgSingleSuppressed
from ........Internal.Types import DataType
from ........ import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class LengthCls: """Length commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("length", core, parent)
[docs] def fetch(self, segment=repcap.Segment.Default) -> int: """SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:PMONitor:ARRay:LENGth \n Snippet: value: int = driver.lteMeas.multiEval.listPy.segment.pmonitor.array.length.fetch(segment = repcap.Segment.Default) \n Returns the number of power monitor results for segment <no> contained in a result list for all measured segments. Such a result list is, for example, returned by the command method RsCMPX_LteMeas.LteMeas.MultiEval.ListPy.Pmonitor.Rms.fetch. \n Suppressed linked return values: reliability \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: length: Number of power monitor results""" segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) suppressed = ArgSingleSuppressed(0, DataType.Integer, False, 1, 'Reliability') response = self._core.io.query_str_suppressed(f'FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent{segment_cmd_val}:PMONitor:ARRay:LENGth?', suppressed) return Conversions.str_to_int(response)