Source code for rsmxo.Implementations.Measurement.Eye.Absolute.Stop

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


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

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

[docs] def set(self, absolute_stop: float, measIndex=repcap.MeasIndex.Default) -> None: """ ``MEASurement<*>:EYE:ABSolute:STOP`` \n Snippet: ``driver.measurement.eye.absolute.stop.set(absolute_stop = 1.0, measIndex = repcap.MeasIndex.Default)`` \n Sets the absolute stop value for the selected algorithm for eye height and eye width measurements. :param absolute_stop: -1E+26 to 1E+26 :param measIndex: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Measurement') """ param = Conversions.decimal_value_to_str(absolute_stop) measIndex_cmd_val = self._cmd_group.get_repcap_cmd_value(measIndex, repcap.MeasIndex) self._core.io.write(f'MEASurement{measIndex_cmd_val}:EYE:ABSolute:STOP {param}')
[docs] def get(self, measIndex=repcap.MeasIndex.Default) -> float: """ ``MEASurement<*>:EYE:ABSolute:STOP`` \n Snippet: ``value: float = driver.measurement.eye.absolute.stop.get(measIndex = repcap.MeasIndex.Default)`` \n Sets the absolute stop value for the selected algorithm for eye height and eye width measurements. :param measIndex: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Measurement') :return: absolute_stop: -1E+26 to 1E+26 """ measIndex_cmd_val = self._cmd_group.get_repcap_cmd_value(measIndex, repcap.MeasIndex) response = self._core.io.query_str(f'MEASurement{measIndex_cmd_val}:EYE:ABSolute:STOP?') return Conversions.str_to_float(response)