Source code for rsmxo.Implementations.Mtest.Automask.Values.Bottom

from typing import List

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from ..... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class BottomCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("bottom", core, parent)

[docs] def get(self, maskTest=repcap.MaskTest.Default) -> List[float]: """ ``MTESt<*>:AUTomask:VALues:BOTTom`` \n Snippet: ``value: List[float] = driver.mtest.automask.values.bottom.get(maskTest = repcap.MaskTest.Default)`` \n Returns the points of the lower mask limit. :param maskTest: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mtest') :return: low_msk_pts: Comma-separated list of values """ maskTest_cmd_val = self._cmd_group.get_repcap_cmd_value(maskTest, repcap.MaskTest) response = self._core.io.query_bin_or_ascii_float_list(f'MTESt{maskTest_cmd_val}:AUTomask:VALues:BOTTom?') return response