Source code for RsSmw.Implementations.Source.Pulm.Trigger

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums


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

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

	@property
	def external(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_external'):
			from .External import ExternalCls
			self._external = ExternalCls(self._core, self._cmd_group)
		return self._external

	# noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.PulsTrigMode: """ ``[SOURce<HW>]:PULM:TRIGger:MODE`` \n Snippet: ``value: enums.PulsTrigMode = driver.source.pulm.trigger.get_mode()`` \n Selects a trigger mode - auto, external, external single or external gated - for generating the modulation signal. :return: mode: AUTO | EXTernal | EGATe | ESINgle """ response = self._core.io.query_str('SOURce<HwInstance>:PULM:TRIGger:MODE?') return Conversions.str_to_scalar_enum(response, enums.PulsTrigMode)
[docs] def set_mode(self, mode: enums.PulsTrigMode) -> None: """ ``[SOURce<HW>]:PULM:TRIGger:MODE`` \n Snippet: ``driver.source.pulm.trigger.set_mode(mode = enums.PulsTrigMode.AUTO)`` \n Selects a trigger mode - auto, external, external single or external gated - for generating the modulation signal. :param mode: AUTO | EXTernal | EGATe | ESINgle """ param = Conversions.enum_scalar_to_str(mode, enums.PulsTrigMode) self._core.io.write(f'SOURce<HwInstance>:PULM:TRIGger:MODE {param}')
def clone(self) -> 'TriggerCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = TriggerCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group