from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GainCls:
"""Gain commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("gain", core, parent)
[docs] def get_post(self) -> float:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:SHAPing:GAIN:POST \n
Snippet: value: float = driver.source.iq.output.analog.envelope.shaping.gain.get_post() \n
Sets a post-gain. \n
:return: post_gain: float Range: -3 to 20
"""
response = self._core.io.query_str('SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:SHAPing:GAIN:POST?')
return Conversions.str_to_float(response)
[docs] def set_post(self, post_gain: float) -> None:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:SHAPing:GAIN:POST \n
Snippet: driver.source.iq.output.analog.envelope.shaping.gain.set_post(post_gain = 1.0) \n
Sets a post-gain. \n
:param post_gain: float Range: -3 to 20
"""
param = Conversions.decimal_value_to_str(post_gain)
self._core.io.write(f'SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:SHAPing:GAIN:POST {param}')
[docs] def get_pre(self) -> float:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:SHAPing:GAIN:PRE \n
Snippet: value: float = driver.source.iq.output.analog.envelope.shaping.gain.get_pre() \n
Sets a post-gain. \n
:return: pre_gain: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:SHAPing:GAIN:PRE?')
return Conversions.str_to_float(response)
[docs] def set_pre(self, pre_gain: float) -> None:
"""SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:ENVelope:SHAPing:GAIN:PRE \n
Snippet: driver.source.iq.output.analog.envelope.shaping.gain.set_pre(pre_gain = 1.0) \n
Sets a post-gain. \n
:param pre_gain: float Range: -3 to 20
"""
param = Conversions.decimal_value_to_str(pre_gain)
self._core.io.write(f'SOURce<HwInstance>:IQ:OUTPut:ANALog:ENVelope:SHAPing:GAIN:PRE {param}')