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

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 StartCls: """Start commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("start", core, parent)
[docs] def fetch(self, segment=repcap.Segment.Default) -> int: """SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:PMONitor:ARRay:STARt \n Snippet: value: int = driver.lteMeas.multiEval.listPy.segment.pmonitor.array.start.fetch(segment = repcap.Segment.Default) \n Returns the offset of the first power monitor result for segment <no> within 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. A returned <Start> value n indicates that the result for the first subframe of the segment is the (n+1) th result in the power result list over all segments. \n Suppressed linked return values: reliability \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: start: Offset of the first power monitor result""" 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:STARt?', suppressed) return Conversions.str_to_int(response)