Source code for RsCmwLteMeas.Implementations.MultiEval.ListPy.Segment.SeMask.Dallocation

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class DallocationCls: """Dallocation commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("dallocation", core, parent) # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Reliability: int: decimal 'Reliability indicator' - Seg_Reliability: int: decimal Reliability indicator for the segment - Nr_Res_Blocks: int: decimal Number of allocated resource blocks - Offset_Res_Blocks: int: decimal Offset of the first allocated resource block from the edge of the allocated UL transmission bandwidth""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_int('Seg_Reliability'), ArgStruct.scalar_int('Nr_Res_Blocks'), ArgStruct.scalar_int('Offset_Res_Blocks')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Seg_Reliability: int = None self.Nr_Res_Blocks: int = None self.Offset_Res_Blocks: int = None
[docs] def fetch(self, segment=repcap.Segment.Default) -> FetchStruct: """SCPI: FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:SEMask:DALLocation \n Snippet: value: FetchStruct = driver.multiEval.listPy.segment.seMask.dallocation.fetch(segment = repcap.Segment.Default) \n Return the detected allocation for segment <no> in list mode. The result is determined from the last measured slot of the statistical length. The individual measurements provide the same result when measuring the same slot. However different statistical lengths can be defined for the measurements so that the measured slots and returned results can differ. \n :param segment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: structure: for return value, see the help for FetchStruct structure arguments.""" segment_cmd_val = self._cmd_group.get_repcap_cmd_value(segment, repcap.Segment) return self._core.io.query_struct(f'FETCh:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent{segment_cmd_val}:SEMask:DALLocation?', self.__class__.FetchStruct())