from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class RefMeasCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("refMeas", core, parent)
[docs]
def set(self, once: enums.EventOnce) -> None:
"""
``CONFigure:REFMeas`` \n
Snippet: ``driver.applications.k40PhaseNoise.configure.refMeas.set(once = enums.EventOnce.ONCE)`` \n
Initiates a reference measurement that determines the inherent phase noise of the FSW.
:param once: ONCE
"""
param = Conversions.enum_scalar_to_str(once, enums.EventOnce)
self._core.io.write(f'CONFigure:REFMeas {param}')