quantify_scheduler.instrument_coordinator.utility
Utility functions for the instrument coordinator and components.
Module Contents
Functions
|
Searches for a settable parameter of an instrument when it is in a nested |
|
Sets the value of a QCoDeS parameter only if it is different from the value in |
Attributes
- search_settable_param(instrument: qcodes.instrument.base.InstrumentBase, nested_parameter_name: str) qcodes.instrument.Parameter [source]
Searches for a settable parameter of an instrument when it is in a nested hierarchical form such as instrument.submodule_1.channel_1.parameter
- Parameters
instrument – The root QCoDeS instrument where the parameter resides.
nested_parameter_name – Hierarchical nested parameter name.
- Return type
Parameter
- lazy_set(instrument: qcodes.instrument.base.InstrumentBase, parameter_name: str, val: Any) None [source]
Sets the value of a QCoDeS parameter only if it is different from the value in cache.
- Parameters
instrument – The QCoDeS instrument to set the parameter on.
parameter_name – Name of the parameter to set.
val – Value to set it to. If the value is None this always gets set, due to it being the same as the initial value of the cache.