diff --git a/_modules/qcodes/instrument/parameter.html b/_modules/qcodes/instrument/parameter.html index 67e868fefbb..3e804953cde 100644 --- a/_modules/qcodes/instrument/parameter.html +++ b/_modules/qcodes/instrument/parameter.html @@ -679,8 +679,11 @@
# Deprecated
@property
def full_name(self):
- warnings.warn('Attribute `full_name` is deprecated, please use '
- 'str(parameter)')
+# This can fully be replaced by str(parameter) in the future we
+# may want to deprecate this but the current dataset makes heavy use
+# of it in more complicated ways so keep it for now.
+# warnings.warn('Attribute `full_name` is deprecated, please use '
+# 'str(parameter)')
return str(self)
def set_validator(self, vals):
diff --git a/_modules/qcodes/instrument_drivers/Harvard/Decadac.html b/_modules/qcodes/instrument_drivers/Harvard/Decadac.html
index 0f78be82cc5..61665f22c4f 100644
--- a/_modules/qcodes/instrument_drivers/Harvard/Decadac.html
+++ b/_modules/qcodes/instrument_drivers/Harvard/Decadac.html
@@ -165,7 +165,7 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
from time import time
from functools import partial
-from qcodes import VisaInstrument, InstrumentChannel, ChannelList, ManualParameter
+from qcodes import VisaInstrument, InstrumentChannel, ChannelList
from qcodes.utils import validators as vals
@@ -364,9 +364,9 @@ Source code for qcodes.instrument_drivers.Harvard.Decadac
# Manual parameters to control whether DAC channels should ramp to voltages or jump
self._ramp_val = vals.Numbers(0, 10)
- self.add_parameter("enable_ramp", parameter_class=ManualParameter, initial_value=False,
+ self.add_parameter("enable_ramp", get_cmd=None, set_cmd=None, initial_value=False,
vals=vals.Bool())
- self.add_parameter("ramp_rate", parameter_class=ManualParameter, initial_value=0.1,
+ self.add_parameter("ramp_rate", get_cmd=None, set_cmd=None, initial_value=0.1,
vals=self._ramp_val, unit="V/s")
# Add ramp function to the list of functions
diff --git a/_modules/qcodes/instrument_drivers/QDev/QDac.html b/_modules/qcodes/instrument_drivers/QDev/QDac.html
index f2550f1d424..faf564d3a37 100644
--- a/_modules/qcodes/instrument_drivers/QDev/QDac.html
+++ b/_modules/qcodes/instrument_drivers/QDev/QDac.html
@@ -175,7 +175,6 @@ Source code for qcodes.instrument_drivers.QDev.QDac
from operator import xor
from collections import OrderedDict
-from qcodes.instrument.parameter import ManualParameter
from qcodes.instrument.visa import VisaInstrument
from qcodes.utils import validators as vals
@@ -294,13 +293,13 @@ Source code for qcodes.instrument_drivers.QDev.QDac
self.add_parameter(name='ch{:02}_sync_delay'.format(i),
label='Channel {} sync pulse delay'.format(i),
unit='s',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0)
self.add_parameter(name='ch{:02}_sync_duration'.format(i),
label='Channel {} sync pulse duration'.format(i),
unit='s',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0.01)
for board in range(6):
@@ -323,7 +322,7 @@ Source code for qcodes.instrument_drivers.QDev.QDac
self.add_parameter(name='fast_voltage_set',
label='fast voltage set',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Bool(),
initial_value=False,
docstring=""""Toggles if DC voltage set should unset any ramp attached to this channel.
diff --git a/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html b/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html
index 199aec4b839..7213c7e8b2d 100644
--- a/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html
+++ b/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html
@@ -177,7 +177,6 @@ Source code for qcodes.instrument_drivers.QDev.QDac_channels
from qcodes.instrument.channel import InstrumentChannel, ChannelList
from qcodes.instrument.channel import MultiChannelInstrumentParameter
-from qcodes.instrument.parameter import ManualParameter
from qcodes.instrument.visa import VisaInstrument
from qcodes.utils import validators as vals
@@ -258,14 +257,14 @@ Source code for qcodes.instrument_drivers.QDev.QDac_channels
self.add_parameter(name='sync_delay',
label='Channel {} sync pulse delay'.format(channum),
unit='s',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0
)
self.add_parameter(name='sync_duration',
label='Channel {} sync pulse duration'.format(channum),
unit='s',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0.01
)
@@ -411,7 +410,7 @@ Source code for qcodes.instrument_drivers.QDev.QDac_channels
self.add_parameter(name='fast_voltage_set',
label='fast voltage set',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Bool(),
initial_value=False,
docstring=""""Deprecated with no functionality""")
diff --git a/_modules/qcodes/instrument_drivers/QuTech/IVVI.html b/_modules/qcodes/instrument_drivers/QuTech/IVVI.html
index 97291cfdf7e..c9dbda8865a 100644
--- a/_modules/qcodes/instrument_drivers/QuTech/IVVI.html
+++ b/_modules/qcodes/instrument_drivers/QuTech/IVVI.html
@@ -171,7 +171,6 @@ Source code for qcodes.instrument_drivers.QuTech.IVVI
import threading
from qcodes import VisaInstrument, validators as vals
-from qcodes.instrument.parameter import ManualParameter
from qcodes.utils.validators import Bool, Numbers
@@ -245,7 +244,7 @@ Source code for qcodes.instrument_drivers.QuTech.IVVI
get_cmd=self._get_version)
self.add_parameter('check_setpoints',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=False,
label='Check setpoints',
vals=Bool(),
@@ -255,7 +254,7 @@ Source code for qcodes.instrument_drivers.QuTech.IVVI
# Time to wait before sending a set DAC command to the IVVI
self.add_parameter('dac_set_sleep',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0.05,
label='DAC set sleep',
unit='s',
@@ -267,7 +266,7 @@ Source code for qcodes.instrument_drivers.QuTech.IVVI
# Minimum time to wait before the read buffer contains data
self.add_parameter('dac_read_buffer_sleep',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=0.025,
label='DAC read buffer sleep',
unit='s',
@@ -676,7 +675,7 @@ Source code for qcodes.instrument_drivers.QuTech.IVVI
function prevents that.
Args:
- param (StandardParameter): a dac of the IVVI instrument
+ param (Parameter): a dac of the IVVI instrument
"""
if not isinstance(param._vals, Numbers):
raise Exception('Only the Numbers validator is supported.')
diff --git a/_modules/qcodes/instrument_drivers/Spectrum/M4i.html b/_modules/qcodes/instrument_drivers/Spectrum/M4i.html
index 1d8d4dacf49..a125a1765d4 100644
--- a/_modules/qcodes/instrument_drivers/Spectrum/M4i.html
+++ b/_modules/qcodes/instrument_drivers/Spectrum/M4i.html
@@ -182,7 +182,6 @@ Source code for qcodes.instrument_drivers.Spectrum.M4i
from functools import partial
from qcodes.utils.validators import Enum, Numbers, Anything
from qcodes.instrument.base import Instrument
-from qcodes.instrument.parameter import ManualParameter
try:
import pyspcm
except ImportError:
@@ -248,7 +247,7 @@ Source code for qcodes.instrument_drivers.Spectrum.M4i
# add parameters for getting
self.add_parameter('card_id',
label='card id',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=cardid,
vals=Anything(),
docstring='The card ID')
diff --git a/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html b/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html
index 74adaf18310..feac465ffd5 100644
--- a/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html
+++ b/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html
@@ -175,7 +175,6 @@ Source code for qcodes.instrument_drivers.ZI.ZIUHFLI
download and installation instructions.
''')
-from qcodes.instrument.parameter import ManualParameter
from qcodes.instrument.parameter import MultiParameter
from qcodes.instrument.base import Instrument
from qcodes.utils import validators as vals
@@ -961,7 +960,7 @@ Source code for qcodes.instrument_drivers.ZI.ZIUHFLI
unit='V')
self.add_parameter('signal_output{}_ampdef'.format(sigout),
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value='Vpk',
label="Signal output amplitude's definition",
unit='V',
@@ -1249,7 +1248,7 @@ Source code for qcodes.instrument_drivers.ZI.ZIUHFLI
label='Sweep timeout',
unit='s',
initial_value=600,
- parameter_class=ManualParameter)
+ get_cmd=None, set_cmd=None)
########################################
# THE SWEEP ITSELF
diff --git a/_modules/qcodes/instrument_drivers/devices.html b/_modules/qcodes/instrument_drivers/devices.html
index 4ceac2e3185..3062499c8f2 100644
--- a/_modules/qcodes/instrument_drivers/devices.html
+++ b/_modules/qcodes/instrument_drivers/devices.html
@@ -165,7 +165,7 @@
Source code for qcodes.instrument_drivers.devices
from typing import Union
-from qcodes import Parameter, StandardParameter, Instrument
+from qcodes import Parameter, Instrument
[docs]class VoltageDivider(Parameter):
@@ -209,7 +209,7 @@ Source code for qcodes.instrument_drivers.devices
"""
def __init__(self,
- v1: StandardParameter,
+ v1: Parameter,
division_value: Union[int, float],
name: str=None,
label: str=None,
diff --git a/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html b/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html
index f4099b66de6..2aadc60a69e 100644
--- a/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html
+++ b/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html
@@ -165,7 +165,6 @@
Source code for qcodes.instrument_drivers.ithaco.Ithaco_1211
from qcodes import Instrument
from qcodes.instrument.parameter import MultiParameter
-from qcodes.instrument.parameter import ManualParameter
from qcodes.utils.validators import Enum, Bool
@@ -230,39 +229,39 @@ Source code for qcodes.instrument_drivers.ithaco.Ithaco_1211
super().__init__(name, **kwargs)
self.add_parameter('sens',
- parameter_class=ManualParameter,
initial_value=1e-8,
label='Sensitivity',
unit='A/V',
+ get_cmd=None, set_cmd=None,
vals=Enum(1e-11, 1e-10, 1e-09, 1e-08, 1e-07,
1e-06, 1e-05, 1e-4, 1e-3))
self.add_parameter('invert',
- parameter_class=ManualParameter,
initial_value=True,
label='Inverted output',
+ get_cmd=None, set_cmd=None,
vals=Bool())
self.add_parameter('sens_factor',
- parameter_class=ManualParameter,
initial_value=1,
label='Sensitivity factor',
unit=None,
+ get_cmd=None, set_cmd=None,
vals=Enum(0.1, 1, 10))
self.add_parameter('suppression',
- parameter_class=ManualParameter,
initial_value=1e-7,
label='Suppression',
unit='A',
+ get_cmd=None, set_cmd=None,
vals=Enum(1e-10, 1e-09, 1e-08, 1e-07, 1e-06,
1e-05, 1e-4, 1e-3))
self.add_parameter('risetime',
- parameter_class=ManualParameter,
initial_value=0.3,
label='Rise Time',
unit='msec',
+ get_cmd=None, set_cmd=None,
vals=Enum(0.01, 0.03, 0.1, 0.3, 1, 3, 10, 30,
100, 300, 1000))
diff --git a/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html b/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html
index 527ac81d524..fd2723d5fa1 100644
--- a/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html
+++ b/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html
@@ -168,7 +168,7 @@ Source code for qcodes.instrument_drivers.oxford.mercuryiPS
import time
import numpy as np
-from qcodes import IPInstrument, MultiParameter, ManualParameter
+from qcodes import IPInstrument, MultiParameter
from qcodes.utils.validators import Enum, Bool
[docs]class MercuryiPSArray(MultiParameter):
@@ -245,7 +245,7 @@ Source code for qcodes.instrument_drivers.oxford.mercuryiPS
self.add_parameter('hold_after_set',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=Bool(),
initial_value=False,
docstring='Should the driver block while waiting for the Magnet power supply '
diff --git a/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html b/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html
index 93971aae00d..762b5670f5d 100644
--- a/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html
+++ b/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html
@@ -169,7 +169,6 @@ Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B
import logging
from qcodes import Instrument, validators as vals
-from qcodes.instrument.parameter import ManualParameter
[docs]class SignalHound_USB_SA124B(Instrument):
@@ -233,28 +232,28 @@ Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B
label='Frequency ',
unit='Hz',
initial_value=5e9,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers())
self.add_parameter('span',
label='Span ',
unit='Hz',
initial_value=.25e6,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers())
self.add_parameter('power',
label='Power ',
unit='dBm',
initial_value=0,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers(max_value=20))
self.add_parameter('ref_lvl',
label='Reference power ',
unit='dBm',
initial_value=0,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers(max_value=20))
self.add_parameter('external_reference',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=False,
vals=vals.Bool())
self.add_parameter('device_type',
@@ -262,37 +261,37 @@ Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B
self.add_parameter('device_mode',
initial_value='sweeping',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Anything())
self.add_parameter('acquisition_mode',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value='average',
vals=vals.Enum('average', 'min-max'))
self.add_parameter('scale',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value='log-scale',
vals=vals.Enum('log-scale', 'lin-scale',
'log-full-scale', 'lin-full-scale'))
self.add_parameter('running',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=False,
vals=vals.Bool())
self.add_parameter('decimation',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=1,
vals=vals.Ints(1, 8))
self.add_parameter('bandwidth',
label='Bandwidth',
unit='Hz',
initial_value=0,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers())
# rbw Resolution bandwidth in Hz. RBW can be arbitrary.
self.add_parameter('rbw',
label='Resolution Bandwidth',
unit='Hz',
initial_value=1e3,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers())
# vbw Video bandwidth in Hz. VBW must be less than or equal to RBW.
# VBW can be arbitrary. For best performance use RBW as the VBW.
@@ -300,7 +299,7 @@ Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B
label='Video Bandwidth',
unit='Hz',
initial_value=1e3,
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers())
self.openDevice()
diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html b/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html
index 26e2c4e1cbb..3cdc48dfb3c 100644
--- a/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html
+++ b/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html
@@ -168,7 +168,6 @@ Source code for qcodes.instrument_drivers.stanford_research.SIM928
import numpy as np
import time
-from qcodes.instrument.parameter import ManualParameter
from qcodes.instrument.visa import VisaInstrument
from qcodes.utils import validators as vals
@@ -225,12 +224,12 @@ Source code for qcodes.instrument_drivers.stanford_research.SIM928
label="Step size when changing the voltage "
"smoothly on module "
"{}".format(module_name),
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers(0, 20), initial_value=0.005)
self.add_parameter('smooth_timestep', unit='s',
label="Delay between sending the write commands"
"when changing the voltage smoothly",
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
vals=vals.Numbers(0, 1), initial_value=0.05)
super().connect_message()
diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR560.html b/_modules/qcodes/instrument_drivers/stanford_research/SR560.html
index 0f53f54344d..e46276d6166 100644
--- a/_modules/qcodes/instrument_drivers/stanford_research/SR560.html
+++ b/_modules/qcodes/instrument_drivers/stanford_research/SR560.html
@@ -164,7 +164,6 @@
Source code for qcodes.instrument_drivers.stanford_research.SR560
from qcodes import Instrument
-from qcodes.instrument.parameter import ManualParameter
from qcodes.instrument.parameter import MultiParameter
from qcodes.utils.validators import Bool, Enum
@@ -248,27 +247,27 @@ Source code for qcodes.instrument_drivers.stanford_research.SR560
10000, 20000, 50000]
self.add_parameter('cutoff_lo',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value='DC',
label='High pass',
unit='Hz',
vals=Enum(*cutoffs))
self.add_parameter('cutoff_hi',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=1e6,
label='Low pass',
unit='Hz',
vals=Enum(*cutoffs))
self.add_parameter('invert',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=True,
label='Inverted output',
vals=Bool())
self.add_parameter('gain',
- parameter_class=ManualParameter,
+ get_cmd=None, set_cmd=None,
initial_value=10,
label='Gain',
unit=None,
diff --git a/api/generated/qcodes.instrument_drivers.QuTech.html b/api/generated/qcodes.instrument_drivers.QuTech.html
index 90adf423669..ab96132b7f0 100644
--- a/api/generated/qcodes.instrument_drivers.QuTech.html
+++ b/api/generated/qcodes.instrument_drivers.QuTech.html
@@ -282,7 +282,7 @@ Submodules
-Parameters: param (StandardParameter) – a dac of the IVVI instrument
+Parameters: param (Parameter) – a dac of the IVVI instrument
diff --git a/api/generated/qcodes.instrument_drivers.html b/api/generated/qcodes.instrument_drivers.html
index ab232f1e941..9476317fe10 100644
--- a/api/generated/qcodes.instrument_drivers.html
+++ b/api/generated/qcodes.instrument_drivers.html
@@ -379,7 +379,7 @@ Submodulesqcodes.instrument_drivers.devices module¶
-
-class
qcodes.instrument_drivers.devices.
VoltageDivider
(v1: qcodes.instrument.parameter.StandardParameter, division_value: typing.Union[int, float], name: str = None, label: str = None, instrument: typing.Union[NoneType, qcodes.instrument.base.Instrument] = None) → None[source]¶
+class qcodes.instrument_drivers.devices.
VoltageDivider
(v1: qcodes.instrument.parameter.Parameter, division_value: typing.Union[int, float], name: str = None, label: str = None, instrument: typing.Union[NoneType, qcodes.instrument.base.Instrument] = None) → None[source]¶
Bases: qcodes.instrument.parameter.Parameter
Resitive voltage divider
To be used when you use a physical voltage divider to set or get a voltage.
diff --git a/searchindex.js b/searchindex.js
index 5865e3e6930..95700fff6f1 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Metadata","_notebooks/Metadata with instruments","_notebooks/Parameters","_notebooks/Qcodes location-format example","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with AMI430","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","api/generated/qcodes.ArrayParameter","api/generated/qcodes.BreakIf","api/generated/qcodes.ChannelList","api/generated/qcodes.CombinedParameter","api/generated/qcodes.Config","api/generated/qcodes.DataArray","api/generated/qcodes.DataSet","api/generated/qcodes.DiskIO","api/generated/qcodes.FormatLocation","api/generated/qcodes.Formatter","api/generated/qcodes.Function","api/generated/qcodes.GNUPlotFormat","api/generated/qcodes.IPInstrument","api/generated/qcodes.Instrument","api/generated/qcodes.InstrumentChannel","api/generated/qcodes.Loop","api/generated/qcodes.ManualParameter","api/generated/qcodes.MultiParameter","api/generated/qcodes.Parameter","api/generated/qcodes.StandardParameter","api/generated/qcodes.SweepFixedValues","api/generated/qcodes.SweepValues","api/generated/qcodes.Task","api/generated/qcodes.VisaInstrument","api/generated/qcodes.Wait","api/generated/qcodes.combine","api/generated/qcodes.instrument_drivers","api/generated/qcodes.instrument_drivers.Advantech","api/generated/qcodes.instrument_drivers.AlazarTech","api/generated/qcodes.instrument_drivers.HP","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.Lakeshore","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Metadata.rst","_notebooks/Metadata with instruments.rst","_notebooks/Parameters.rst","_notebooks/Qcodes location-format example.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with AMI430.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.rst","api/generated/qcodes.ArrayParameter.rst","api/generated/qcodes.BreakIf.rst","api/generated/qcodes.ChannelList.rst","api/generated/qcodes.CombinedParameter.rst","api/generated/qcodes.Config.rst","api/generated/qcodes.DataArray.rst","api/generated/qcodes.DataSet.rst","api/generated/qcodes.DiskIO.rst","api/generated/qcodes.FormatLocation.rst","api/generated/qcodes.Formatter.rst","api/generated/qcodes.Function.rst","api/generated/qcodes.GNUPlotFormat.rst","api/generated/qcodes.IPInstrument.rst","api/generated/qcodes.Instrument.rst","api/generated/qcodes.InstrumentChannel.rst","api/generated/qcodes.Loop.rst","api/generated/qcodes.ManualParameter.rst","api/generated/qcodes.MultiParameter.rst","api/generated/qcodes.Parameter.rst","api/generated/qcodes.StandardParameter.rst","api/generated/qcodes.SweepFixedValues.rst","api/generated/qcodes.SweepValues.rst","api/generated/qcodes.Task.rst","api/generated/qcodes.VisaInstrument.rst","api/generated/qcodes.Wait.rst","api/generated/qcodes.combine.rst","api/generated/qcodes.instrument_drivers.rst","api/generated/qcodes.instrument_drivers.Advantech.rst","api/generated/qcodes.instrument_drivers.AlazarTech.rst","api/generated/qcodes.instrument_drivers.HP.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.rst","api/generated/qcodes.instrument_drivers.Lakeshore.rst","api/generated/qcodes.instrument_drivers.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[31,1,1,""]},"qcodes.BreakIf":{__init__:[32,1,1,""]},"qcodes.ChannelList":{__init__:[33,1,1,""]},"qcodes.CombinedParameter":{__init__:[34,1,1,""]},"qcodes.Config":{__init__:[35,1,1,""],config_file_name:[35,2,1,""],current_config:[35,2,1,""],current_config_path:[35,2,1,""],current_schema:[35,2,1,""],cwd_file_name:[35,2,1,""],default_file_name:[35,2,1,""],env_file_name:[35,2,1,""],home_file_name:[35,2,1,""],schema_cwd_file_name:[35,2,1,""],schema_default_file_name:[35,2,1,""],schema_env_file_name:[35,2,1,""],schema_file_name:[35,2,1,""],schema_home_file_name:[35,2,1,""]},"qcodes.DataArray":{__init__:[36,1,1,""]},"qcodes.DataSet":{__init__:[37,1,1,""],background_functions:[37,2,1,""]},"qcodes.DiskIO":{__init__:[38,1,1,""]},"qcodes.FormatLocation":{__init__:[39,1,1,""]},"qcodes.Formatter":{__init__:[40,1,1,""]},"qcodes.Function":{__init__:[41,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[42,1,1,""]},"qcodes.IPInstrument":{__init__:[43,1,1,""]},"qcodes.Instrument":{__init__:[44,1,1,""],functions:[44,2,1,""],name:[44,2,1,""],parameters:[44,2,1,""],submodules:[44,2,1,""]},"qcodes.InstrumentChannel":{__init__:[45,1,1,""],functions:[45,2,1,""],name:[45,2,1,""],parameters:[45,2,1,""]},"qcodes.Loop":{__init__:[46,1,1,""]},"qcodes.ManualParameter":{__init__:[47,1,1,""]},"qcodes.MultiParameter":{__init__:[48,1,1,""]},"qcodes.Parameter":{__init__:[49,1,1,""]},"qcodes.StandardParameter":{__init__:[50,1,1,""]},"qcodes.SweepFixedValues":{__init__:[51,1,1,""]},"qcodes.SweepValues":{__init__:[52,1,1,""]},"qcodes.Task":{__init__:[53,1,1,""]},"qcodes.VisaInstrument":{__init__:[54,1,1,""],visa_handle:[54,2,1,""]},"qcodes.Wait":{__init__:[55,1,1,""]},"qcodes.instrument_drivers":{Advantech:[58,4,0,"-"],AlazarTech:[59,4,0,"-"],HP:[60,4,0,"-"],Harvard:[61,4,0,"-"],Keysight:[62,4,0,"-"],Lakeshore:[63,4,0,"-"],QDev:[64,4,0,"-"],QuTech:[65,4,0,"-"],Spectrum:[66,4,0,"-"],ZI:[68,4,0,"-"],agilent:[69,4,0,"-"],american_magnetics:[70,4,0,"-"],devices:[57,4,0,"-"],ithaco:[71,4,0,"-"],oxford:[72,4,0,"-"],rigol:[73,4,0,"-"],rohde_schwarz:[74,4,0,"-"],signal_hound:[75,4,0,"-"],stanford_research:[76,4,0,"-"],tektronix:[77,4,0,"-"],test:[57,4,0,"-"],weinschel:[78,4,0,"-"],yokogawa:[79,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[58,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[58,0,1,""],DAQNaviException:[58,5,1,""],DAQNaviWarning:[58,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[58,2,1,""],check:[58,1,1,""],close:[58,1,1,""],get_idn:[58,1,1,""],port_count:[58,1,1,""],read_pin:[58,1,1,""],read_port:[58,1,1,""],write_pin:[58,1,1,""],write_port:[58,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[59,4,0,"-"],ATS:[59,4,0,"-"],ATS_acquisition_controllers:[59,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[59,0,1,""],AlazarParameter:[59,0,1,""],AlazarTech_ATS:[59,0,1,""],Buffer:[59,0,1,""],TrivialDictionary:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[59,2,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[59,1,1,""],channels:[59,2,1,""],clear_buffers:[59,1,1,""],config:[59,1,1,""],dll_path:[59,2,1,""],find_boards:[59,6,1,""],get_board_info:[59,6,1,""],get_idn:[59,1,1,""],get_sample_rate:[59,1,1,""],signal_to_volt:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[59,1,1,""],free_mem:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[59,1,1,""],fit:[59,1,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""],update_acquisitionkwargs:[59,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[60,4,0,"-"],HP_83650A:[60,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[60,0,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[60,0,1,""],parsestr:[60,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[60,1,1,""],print_modstatus:[60,1,1,""],reset:[60,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[61,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[61,5,1,""],DacChannel:[61,0,1,""],DacReader:[61,0,1,""],DacSlot:[61,0,1,""],Decadac:[61,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{__repr__:[61,1,1,""],_ramp_state:[61,2,1,""],_ramp_time:[61,2,1,""],connect_message:[61,1,1,""],get_idn:[61,1,1,""],ramp_all:[61,1,1,""],set_all:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[62,4,0,"-"],Keysight_33500B_channels:[62,4,0,"-"],Keysight_34465A:[62,4,0,"-"],M3201A:[62,4,0,"-"],M3300A:[62,4,0,"-"],test_suite:[62,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[62,0,1,""],Keysight_33500B_Channels:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[62,0,1,""],Keysight_34465A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[62,1,1,""],prepare:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[62,2,1,""],flush_error_queue:[62,1,1,""],model:[62,2,1,""],ranges:[62,2,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[62,0,1,""],M3300A_DIG:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[62,0,1,""],TestKeysight_M3300A:[62,0,1,""],TestSD_Module:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_chassis_and_slot:[62,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[63,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[63,0,1,""],SensorChannel:[63,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[64,4,0,"-"],QDac_channels:[64,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[64,0,1,""],QDacChannel:[64,0,1,""],QDacMultiChannelParameter:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[64,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[65,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[65,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[65,2,1,""],Halfrange:[65,2,1,""],adjust_parameter_validator:[65,1,1,""],ask:[65,1,1,""],get_all:[65,1,1,""],get_idn:[65,1,1,""],get_pol_dac:[65,1,1,""],read:[65,1,1,""],round_dac:[65,1,1,""],set_dacs_zero:[65,1,1,""],set_pol_dacrack:[65,1,1,""],write:[65,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[66,4,0,"-"],py_header:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[66,0,1,""],szTypeToName:[66,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{active_channels:[66,1,1,""],blockavg_hardware_trigger_acquisition:[66,1,1,""],close:[66,1,1,""],convert_to_voltage:[66,1,1,""],gated_trigger_acquisition:[66,1,1,""],get_card_memory:[66,1,1,""],get_card_type:[66,1,1,""],get_error_info32bit:[66,1,1,""],get_idn:[66,1,1,""],get_max_sample_rate:[66,1,1,""],initialize_channels:[66,1,1,""],multiple_trigger_acquisition:[66,1,1,""],reset:[66,1,1,""],set_channel_OR_trigger_settings:[66,1,1,""],set_channel_settings:[66,1,1,""],set_ext0_OR_trigger_settings:[66,1,1,""],single_software_trigger_acquisition:[66,1,1,""],single_trigger_acquisition:[66,1,1,""]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[67,4,0,"-"],spcerr:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[67,3,1,""],GIGA_B:[67,3,1,""],KILO:[67,3,1,""],KILO_B:[67,3,1,""],MEGA:[67,3,1,""],MEGA_B:[67,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[68,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[68,0,1,""],Sweep:[68,0,1,""],ZIUHFLI:[68,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[68,1,1,""],names:[68,2,1,""],prepare_scope:[68,1,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[68,1,1,""],get:[68,1,1,""],names:[68,2,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[68,7,1,""],add_signal_to_sweeper:[68,1,1,""],close:[68,1,1,""],print_sweeper_settings:[68,1,1,""],remove_signal_from_sweeper:[68,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[69,4,0,"-"],E8267C:[69,4,0,"-"],E8527D:[69,4,0,"-"],HP33210A:[69,4,0,"-"],test_suite:[69,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[69,1,1,""],display_clear:[69,1,1,""],init_measurement:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[69,7,1,""],rad_to_deg:[69,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[69,1,1,""],off:[69,1,1,""],on:[69,1,1,""],parse_on_off:[69,1,1,""],rad_to_deg:[69,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[69,2,1,""],setUpClass:[69,6,1,""],test_firmware_version:[69,1,1,""],test_frequency:[69,1,1,""],test_on_off:[69,1,1,""],test_phase:[69,1,1,""],test_power:[69,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[70,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[70,0,1,""],AMI430_3D:[70,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[70,2,1,""],mocker_class:[70,2,1,""],set_field:[70,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{get_mocker_messages:[70,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[57,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[57,1,1,""],get_instrument_value:[57,1,1,""],set:[57,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[71,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[71,0,1,""],Ithaco_1211:[71,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[71,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[72,4,0,"-"],IPS120:[72,4,0,"-"],kelvinox:[72,4,0,"-"],mercuryiPS:[72,4,0,"-"],triton:[72,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[72,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],set_remote_status:[72,1,1,""],set_to_fast:[72,1,1,""],set_to_slow:[72,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[72,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[72,1,1,""],examine:[72,1,1,""],get_all:[72,1,1,""],get_changed:[72,1,1,""],get_idn:[72,1,1,""],heater_off:[72,1,1,""],heater_on:[72,1,1,""],hold:[72,1,1,""],identify:[72,1,1,""],leave_persistent_mode:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],run_to_field:[72,1,1,""],run_to_field_wait:[72,1,1,""],set_persistent:[72,1,1,""],to_setpoint:[72,1,1,""],to_zero:[72,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[72,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],identify:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],rotate_Nvalve:[72,1,1,""],set_mix_chamber_heater_mode:[72,1,1,""],set_mix_chamber_heater_power_range:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[72,0,1,""],MercuryiPSArray:[72,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[72,1,1,""],rtos:[72,1,1,""],to_zero:[72,1,1,""],write:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[72,1,1,""],set:[72,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[72,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[72,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[73,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[73,0,1,""],clean_string:[73,3,1,""],is_number:[73,3,1,""],parse_multiple_outputs:[73,3,1,""],parse_single_output:[73,3,1,""],parse_string_output:[73,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[74,4,0,"-"],SMR40:[74,4,0,"-"],ZNB20:[74,4,0,"-"],ZNB:[74,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[74,1,1,""],on:[74,1,1,""],parse_on_off:[74,1,1,""],set_pulsemod_source:[74,1,1,""],set_pulsemod_state:[74,1,1,""],set_status:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[74,1,1,""],do_get_power:[74,1,1,""],do_get_pulse_delay:[74,1,1,""],do_get_status:[74,1,1,""],do_get_status_of_ALC:[74,1,1,""],do_get_status_of_modulation:[74,1,1,""],do_set_frequency:[74,1,1,""],do_set_power:[74,1,1,""],do_set_pulse_delay:[74,1,1,""],do_set_status:[74,1,1,""],do_set_status_of_ALC:[74,1,1,""],do_set_status_of_modulation:[74,1,1,""],get_all:[74,1,1,""],off:[74,1,1,""],off_modulation:[74,1,1,""],on:[74,1,1,""],on_modulation:[74,1,1,""],reset:[74,1,1,""],set_ext_trig:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[74,0,1,""],FrequencySweepMagPhase:[74,0,1,""],ZNB:[74,0,1,""],ZNBChannel:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[74,1,1,""],clear_channels:[74,1,1,""],display_grid:[74,1,1,""],initialise:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNBChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[75,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[75,0,1,""],constants:[75,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[75,1,1,""],abort:[75,1,1,""],check_for_error:[75,1,1,""],closeDevice:[75,1,1,""],configure:[75,1,1,""],default_server_name:[75,6,1,""],dll_path:[75,2,1,""],get_power_at_freq:[75,1,1,""],get_spectrum:[75,1,1,""],initialisation:[75,1,1,""],openDevice:[75,1,1,""],prepare_for_measurement:[75,1,1,""],preset:[75,1,1,""],saStatus:[75,2,1,""],saStatus_inverted:[75,2,1,""],safe_reload:[75,1,1,""],sweep:[75,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[75,2,1,""],TG_THRU_0DB:[75,2,1,""],TG_THRU_20DB:[75,2,1,""],sa124_MAX_FREQ:[75,2,1,""],sa124_MIN_FREQ:[75,2,1,""],sa44_MAX_FREQ:[75,2,1,""],sa44_MIN_FREQ:[75,2,1,""],saDeviceTypeNone:[75,2,1,""],saDeviceTypeSA124A:[75,2,1,""],saDeviceTypeSA124B:[75,2,1,""],saDeviceTypeSA44:[75,2,1,""],saDeviceTypeSA44B:[75,2,1,""],sa_AUDIO:[75,2,1,""],sa_AUDIO_AM:[75,2,1,""],sa_AUDIO_CW:[75,2,1,""],sa_AUDIO_FM:[75,2,1,""],sa_AUDIO_LSB:[75,2,1,""],sa_AUDIO_USB:[75,2,1,""],sa_AUTO_ATTEN:[75,2,1,""],sa_AUTO_GAIN:[75,2,1,""],sa_AVERAGE:[75,2,1,""],sa_BYPASS:[75,2,1,""],sa_IDLE:[75,2,1,""],sa_IQ:[75,2,1,""],sa_IQ_SAMPLE_RATE:[75,2,1,""],sa_LIN_FULL_SCALE:[75,2,1,""],sa_LIN_SCALE:[75,2,1,""],sa_LOG_FULL_SCALE:[75,2,1,""],sa_LOG_SCALE:[75,2,1,""],sa_LOG_UNITS:[75,2,1,""],sa_MAX_ATTEN:[75,2,1,""],sa_MAX_GAIN:[75,2,1,""],sa_MAX_IQ_DECIMATION:[75,2,1,""],sa_MAX_RBW:[75,2,1,""],sa_MAX_REF:[75,2,1,""],sa_MAX_RT_RBW:[75,2,1,""],sa_MIN_IQ_BANDWIDTH:[75,2,1,""],sa_MIN_MAX:[75,2,1,""],sa_MIN_RBW:[75,2,1,""],sa_MIN_RT_RBW:[75,2,1,""],sa_MIN_SPAN:[75,2,1,""],sa_POWER_UNITS:[75,2,1,""],sa_REAL_TIME:[75,2,1,""],sa_SWEEPING:[75,2,1,""],sa_TG_SWEEP:[75,2,1,""],sa_VOLT_UNITS:[75,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[76,4,0,"-"],SIM928:[76,4,0,"-"],SR560:[76,4,0,"-"],SR830:[76,4,0,"-"],SR865:[76,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[76,1,1,""],byte_to_bits:[76,7,1,""],check_module_errors:[76,1,1,""],find_modules:[76,1,1,""],get_module_idn:[76,1,1,""],get_module_status:[76,1,1,""],get_voltage:[76,1,1,""],reset_module:[76,1,1,""],set_smooth:[76,1,1,""],set_voltage:[76,1,1,""],write_module:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[76,0,1,""],VoltageParameter:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[76,0,1,""],SR830:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[76,1,1,""],prepare_buffer_readout:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[76,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[77,4,0,"-"],AWG5200:[77,4,0,"-"],AWG520:[77,4,0,"-"],AWGFileParser:[77,4,0,"-"],Keithley_2000:[77,4,0,"-"],Keithley_2400:[77,4,0,"-"],Keithley_2600:[77,4,0,"-"],Keithley_2600_channels:[77,4,0,"-"],Keithley_2700:[77,4,0,"-"],TPS2012:[77,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[77,0,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[77,2,1,""],AWG_FILE_FORMAT_HEAD:[77,2,1,""],all_channels_off:[77,1,1,""],all_channels_on:[77,1,1,""],change_folder:[77,1,1,""],clear_message_queue:[77,1,1,""],create_and_goto_dir:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_event:[77,1,1,""],force_trigger:[77,1,1,""],force_trigger_event:[77,1,1,""],generate_awg_file:[77,1,1,""],generate_channel_cfg:[77,1,1,""],generate_sequence_cfg:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_error:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_sq_mode:[77,1,1,""],get_sqel_loopcnt:[77,1,1,""],get_sqel_trigger_wait:[77,1,1,""],get_sqel_waveform:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],is_awg_ready:[77,1,1,""],load_awg_file:[77,1,1,""],make_and_save_awg_file:[77,1,1,""],make_send_and_load_awg_file:[77,1,1,""],newlinestripper:[77,1,1,""],pack_waveform:[77,1,1,""],run:[77,1,1,""],send_DC_pulse:[77,1,1,""],send_awg_file:[77,1,1,""],send_waveform_to_list:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_sqel_event_jump_target_index:[77,1,1,""],set_sqel_event_jump_type:[77,1,1,""],set_sqel_event_target_index:[77,1,1,""],set_sqel_goto_state:[77,1,1,""],set_sqel_goto_target_index:[77,1,1,""],set_sqel_loopcnt:[77,1,1,""],set_sqel_loopcnt_to_inf:[77,1,1,""],set_sqel_trigger_wait:[77,1,1,""],set_sqel_waveform:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[77,1,1,""],clear_waveforms:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_logicjump:[77,1,1,""],force_trigger:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_jumpmode:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],load_and_set_sequence:[77,1,1,""],make_directory:[77,1,1,""],resend_waveform:[77,1,1,""],return_self:[77,1,1,""],send_pattern:[77,1,1,""],send_sequence2:[77,1,1,""],send_sequence:[77,1,1,""],send_waveform:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_jumpmode:[77,1,1,""],set_sequence:[77,1,1,""],set_setup_filename:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[77,0,1,""],parse_output_bool:[77,3,1,""],parse_output_string:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""],write:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[77,0,1,""],Keithley_2600:[77,0,1,""],LuaSweepParameter:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[77,1,1,""],reset:[77,1,1,""],snapshot_base:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get:[77,1,1,""],prepareSweep:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[77,0,1,""],bool_to_str:[77,3,1,""],parsebool:[77,3,1,""],parseint:[77,3,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[77,1,1,""],reset:[77,1,1,""],set_defaults:[77,1,1,""],set_mode:[77,1,1,""],set_mode_volt_dc:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[77,0,1,""],TPS2012:[77,0,1,""],TPS2012Channel:[77,0,1,""],TraceNotReady:[77,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[77,1,1,""],get:[77,1,1,""],prepare_curvedata:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[77,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[57,0,1,""],test_instrument:[57,3,1,""],test_instruments:[57,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[57,2,1,""],setUpClass:[57,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[78,4,0,"-"],test_suite:[78,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[78,2,1,""],test_attenuation:[78,1,1,""],test_firmware_version:[78,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[79,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[79,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[79,1,1,""]},"qcodes.measure":{Measure:[81,0,1,""]},"qcodes.measure.Measure":{__init__:[81,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[83,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[83,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[84,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[84,1,1,""]},"qcodes.station":{Station:[85,0,1,""]},"qcodes.station.Station":{"default":[85,2,1,""],__init__:[85,1,1,""],delegate_attr_dicts:[85,2,1,""]},"qcodes.utils":{command:[86,4,0,"-"],deferred_operations:[87,4,0,"-"],helpers:[88,4,0,"-"],metadata:[89,4,0,"-"],validators:[90,4,0,"-"]},qcodes:{ArrayParameter:[31,0,1,""],BreakIf:[32,0,1,""],ChannelList:[33,0,1,""],CombinedParameter:[34,0,1,""],Config:[35,0,1,""],DataArray:[36,0,1,""],DataSet:[37,0,1,""],DiskIO:[38,0,1,""],FormatLocation:[39,0,1,""],Formatter:[40,0,1,""],Function:[41,0,1,""],GNUPlotFormat:[42,0,1,""],IPInstrument:[43,0,1,""],Instrument:[44,0,1,""],InstrumentChannel:[45,0,1,""],Loop:[46,0,1,""],ManualParameter:[47,0,1,""],MultiParameter:[48,0,1,""],Parameter:[49,0,1,""],StandardParameter:[50,0,1,""],SweepFixedValues:[51,0,1,""],SweepValues:[52,0,1,""],Task:[53,0,1,""],VisaInstrument:[54,0,1,""],Wait:[55,0,1,""],combine:[56,3,1,""],instrument_drivers:[57,4,0,"-"],load_data:[80,3,1,""],new_data:[82,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","function","Python function"],"4":["py","module","Python module"],"5":["py","exception","Python exception"],"6":["py","classmethod","Python class method"],"7":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:exception","6":"py:classmethod","7":"py:staticmethod"},terms:{"00000e":21,"001_":21,"001_13":39,"001_unicorn_2016":9,"002_rainbow_2016":9,"00370000e":20,"005_rainbow_2016":9,"006_":27,"007_":27,"007_testsweep_14":10,"008_2d_test_14":10,"009_testsweep_15":14,"009_unicorn_2050":9,"01084000e":20,"010_mockloop_hdf5_test_15":4,"011_":30,"011_mockloop_hdf5_test_15":4,"012_":30,"013_":15,"013_n_1000_setget_11":13,"014_n_1000_setget_11":13,"015_n_1000_setget_11":13,"016_n_1000_setget_11":13,"016_test_missing_attr_15":4,"01763000e":20,"017_mockparabola_run_15":4,"017_n_1000_setget_11":13,"018_mockparabola_run_15":4,"018_n_1000_setget_11":13,"018_testsweep_12":11,"019_n_1000_setget_11":13,"019_testsweep_12":11,"020_n_1000_setget_11":13,"020_testsweep_12":11,"021_testsweep_12":11,"025_":14,"026_":14,"027_":14,"028_":14,"029_":14,"02s":26,"030_":14,"031_":14,"032_":14,"033_":14,"034_":14,"035_":14,"036_":14,"03d":28,"06s":11,"073_":26,"076_":26,"076_n_100_setget_16":12,"077_":26,"077_n_100_setget_16":12,"078_":26,"078_n_100_setget_16":12,"079_":26,"079_n_100_setget_16":12,"07s":14,"080_":26,"080_n_100_setget_16":12,"081_n_100_setget_16":12,"082_n_100_setget_16":12,"083_":26,"083_n_100_setget_16":12,"0848e":7,"084_":[12,26],"085_":[12,26],"086_":[12,26],"087_":[12,26],"088_":[12,26],"089_":[12,26],"090_":[12,26],"091_":12,"092_n_1000_setget_16":12,"093_n_1000_setget_16":12,"094_n_1000_setget_16":12,"095_n_1000_setget_16":12,"096_n_1000_setget_16":12,"097_n_1000_setget_16":12,"098_n_1000_setget_16":12,"0994e":21,"099_n_1000_setget_16":12,"09s":21,"0x1c10ee73a58":14,"0x212e0582320":30,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":20,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":110,"0x7fd834e99ea0":0,"0x818a908":16,"0x8d11978":7,"100_":12,"100e":12,"100e3":26,"100e6":62,"100x100":11,"101_":12,"102_":12,"103_":12,"104_":12,"105_":12,"106_":12,"107_":12,"108_n_100_setget_16":12,"109_n_100_setget_16":12,"10e":[27,30],"10e6":[16,30],"10mhz":75,"10v":49,"110_n_100_setget_16":12,"111_n_100_setget_16":12,"112_n_100_setget_16":12,"113_n_100_setget_16":12,"114_n_100_setget_16":12,"115_n_100_setget_16":12,"116_":12,"117_":12,"118_":12,"119_":12,"11s":22,"1206e":21,"120_":12,"121_":12,"122_":12,"123_":12,"124_":12,"125_":12,"126_":12,"127_":12,"128_":12,"129_":12,"130_":12,"131_":12,"132_":12,"133_":12,"134_":12,"135_":12,"136_":12,"137_":12,"138_":12,"139_":12,"13_testsweep":0,"13_testsweep_002":0,"140_":12,"141_":12,"142_":12,"143_":12,"144_":12,"145_":12,"146_":12,"147_":12,"148_":12,"149_":12,"14s":13,"150_":12,"151_":12,"152_":12,"153_":12,"154_":12,"155_":12,"156_":12,"157_":12,"158_":12,"159_":12,"15_rainbow_test":39,"15s":[12,26],"160_":12,"161_":12,"16243e":7,"162_":12,"163_":12,"164_":12,"165_":12,"166_":12,"167_":12,"168_":12,"169_":12,"16_13":9,"16s":[15,26],"170_":12,"171_":12,"172_":12,"173_":12,"174_":12,"175_":12,"176_":12,"177_":12,"178_":12,"179_":12,"180_":12,"181_":12,"182_":12,"183_":12,"184_":12,"185_":12,"186_":12,"187_":12,"188_":12,"189_":12,"190_":12,"191_":12,"192_":12,"193_":12,"194_":12,"195_":12,"196_":12,"197_n_1000_setget_16":12,"198_n_1000_setget_16":12,"199_n_1000_setget_16":12,"1b1536e1a2e4":30,"1ct":27,"1e3":[22,30],"1e6":[26,30],"1ms":106,"20000000e":28,"200_n_1000_setget_16":12,"200e3":26,"200uw":72,"2012b":[27,77],"201_n_1000_setget_16":12,"202_n_1000_setget_16":12,"203_n_1000_setget_16":12,"204_n_1000_setget_16":12,"205_":12,"206_":12,"207_":12,"208_":12,"209_":12,"20e":30,"20ma":58,"20mw":72,"20uw":72,"210_":12,"211_":12,"212_":12,"250khz":75,"25e":[25,27],"25gb":16,"2614b":[7,12,21,77],"27041e":7,"28539f77dfd3":2,"2d_test":10,"2e3":22,"2min":26,"2mw":72,"2uw":72,"30_alazartest":16,"33500b":[62,97,106],"33522b":22,"34400a":106,"34401a":7,"34410a":7,"34411a":106,"34460a":62,"34461a":62,"34465a":[14,62,97,99,106],"34470a":62,"348s":4,"352161306002045e":23,"36s":26,"3x2":8,"42637000e":20,"4271e":7,"44s":27,"44xx":[66,96],"4634e":7,"4port":26,"50e":[22,27],"52608e":24,"541_13":9,"54972e":21,"56s":26,"57s":17,"5e9":26,"60s":17,"62s":17,"69014000e":20,"6955e":21,"6a5acd":28,"6e6":26,"8133a":[60,97],"83650a":97,"844e846b99a2":14,"93s":11,"94851000e":20,"95535000e":20,"96216000e":20,"98941000e":20,"99618000e":20,"9e3":26,"\u03bca":[24,25],"\u03bcv":6,"abstract":113,"boolean":[65,77,99,110],"break":[3,10,32,76,77,101,102],"byte":[59,65,76,77],"case":[2,3,8,16,28,30,41,46,49,57,59,84,102,109,113,114],"char":64,"class":[1,4,8,9,18,20,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,83,84,85,86,87,88,89,90,102,105,106,114],"default":[1,2,3,5,8,10,24,25,26,31,35,36,37,39,41,42,43,46,48,49,54,57,59,61,62,64,65,71,72,74,76,77,80,82,83,84,85,94,95,100,102,105,112],"enum":[2,3,18,20,30,49,77,105,110],"export":72,"final":[10,14,16,21,28,30,40,41,49,109,113],"float":[3,13,37,41,49,51,57,61,65,66,68,70,72,73,74,76,77,82,84,99],"function":[0,1,6,7,8,9,10,14,16,17,20,21,27,28,32,34,37,44,45,49,51,53,56,58,59,62,65,66,68,69,72,73,74,75,76,77,78,79,87,88,90,99,100,102,105,106,108,113,114],"goto":[28,77],"import":[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,77,99,102,106,110,113,114],"int":[1,8,13,14,28,30,31,36,41,43,48,49,51,57,61,62,64,65,66,68,72,74,76,77,105],"long":[26,31,48,49,77,102],"m\u00e6lkeb\u00f8tt":7,"new":[1,2,3,8,10,16,21,30,36,39,40,41,42,77,80,82,84,101,108,109,110,113,114],"null":[58,110],"public":[91,102,109],"return":[0,1,3,5,8,10,13,14,17,18,21,24,25,26,28,30,31,32,33,39,41,48,49,51,57,58,59,61,62,64,65,66,68,71,72,73,74,75,76,77,80,81,82,105,113,114],"short":[36,113],"static":[43,44,54,68,69,76],"super":[3,8,62,114],"switch":[11,26,30,70,72,77,110,113],"true":[2,3,6,7,14,18,19,20,24,25,26,30,31,33,36,42,43,48,49,54,61,62,64,65,66,70,74,75,76,77,83,85,110,113],"try":[0,2,3,10,13,14,17,18,22,24,26,49,102,113],"var":42,"while":[1,10,18,20,27,58,77,113],AND:77,ATS:[16,57],Adding:102,And:[3,8,26,30,110,114],Are:[82,113],Axes:1,BUS:[13,22],BUT:102,But:[0,2,3,26,30,55,105],Doing:26,For:[1,2,3,5,8,10,17,22,26,27,28,30,31,39,42,48,49,54,58,59,61,66,68,77,83,102,107,109,110,113,114],Has:3,IPS:[72,106],Its:[110,113],NOT:[30,39,57,68,102],Not:[2,31,48,58,85,102,110],ONE:102,One:[1,2,30,68,108,113,114],POS:[14,22,65],PRs:102,SRS:97,THE:[30,106],THERE:106,TPS:[27,97,98],That:[3,51,52,77,114],The:[0,1,2,3,5,11,12,13,14,15,16,17,19,21,22,24,25,26,27,28,30,31,33,34,36,39,41,42,43,46,48,49,51,53,54,56,57,58,59,61,62,64,65,66,68,72,75,76,77,79,83,84,102,104,106,109,110,113,114],Then:[15,26,28,30,102,109,114],There:[1,3,10,19,21,27,28,62,102,105,110],These:[24,25,42,59,75,106,113],Tis:62,Use:[31,37,48,49,59,77,102,108,110],Used:73,Useful:49,Uses:39,Using:[106,112],Will:[36,48,110],With:[17,26,113],_10:26,_11:[26,30],_13:15,_14:21,_15:14,_16:[12,27],__call__:[14,39],__class__:[0,6,7,10,16],__del__:59,__doc__:[30,31,41,48,49],__enter__:[18,20],__exit__:[18,20],__getattr__:[33,64],__init__:[3,8,18,20,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,61,81,83,84,85,114],__iter__:[51,52],__name__:30,__next__:52,__repr__:61,_alazar:59,_assigned_fg:14,_ats_dll:3,_attenu:57,_bdaqctrl:58,_call:14,_channel:3,_check_for_error:18,_check_respons:18,_coil_const:17,_count:8,_current_r:17,_current_ramp_limit:17,_error_queu:18,_expect_error:18,_get:114,_get_cmd:72,_get_temp_channel:29,_handl:3,_indic:8,_instrument:[3,14,18],_instrument_list:114,_measured_param:3,_mode:77,_poll:18,_ramp_stat:61,_ramp_tim:61,_raw:3,_read_cmd:72,_recv:72,_response_queu:18,_return_handl:14,_run_loop:14,_run_wrapp:14,_save_v:[3,31,48],_scale_param:8,_send:72,_set:114,_set_async:114,_set_both:114,_setget:[12,13],_step:76,_syncoutput:14,_t0:61,_trace:26,_val:8,_win32:58,_write_cmd:72,_write_respons:64,a118e754f9e:18,abil:[74,95],abl:[17,62,113,114],abort:[13,75],abort_measur:13,about:[3,16,18,25,26,30,77,102,105,107,108,110,114],abov:[1,26,28,58,77,113],abs:[17,32],absolut:[30,38,77,102],accept:[3,37,38,40,41,42,53,72,113],acces:[10,28],access:[1,33,58],accommod:77,accompani:102,accord:[3,77,109],accordingli:14,account:[49,57,61,102],accur:40,achiev:28,acknowledg:43,acquir:[3,12,14,15,16,21,26,30,59,66,68,106,113],acquisiion:59,acquisit:[13,16,26,30,59,66,68,75,102,106,113],acquisition_conrol:59,acquisition_control:[16,59],acquisition_controller_acquisit:16,acquisitioncontrol:59,acquisiton:[16,59],acquist:59,across:[24,25,113],act:[3,36,49,57],action:[1,3,5,6,8,14,18,29,32,36,46,77,81,85,91,105,106,108,113,114],action_indic:[6,14,36],activ:[1,6,66,72,74,105,109],active_channel:66,active_children:9,active_loop:6,activeloop:[6,46,105],actual:[1,3,11,17,57,59,65,102,113],acut:0,adapt:[51,52],adaptivesweep:[52,105],adawpt:52,add:[1,2,3,4,6,9,10,13,14,15,21,26,27,30,37,39,43,44,54,64,65,68,69,74,75,76,77,79,82,83,84,85,95,96,99,102,105,110],add_arrai:[36,37,82],add_channel:[26,74],add_compon:[4,21,85],add_funct:[3,44,45,102],add_paramet:[3,10,44,45,102,113,114],add_signal_to_sweep:[30,68],add_submodul:44,add_subplot:28,added:[1,17,26,31,36,37,68,77,82,83,84,85,102,113],adding:[1,9,30,106],addit:[1,3,28,43,44,49,54,71,72,76,108,110,113],addition:[1,30,66,68],address:[3,7,17,23,25,29,33,43,54,60,61,62,63,64,65,69,70,72,73,74,76,77,78,79,102,113],adjust:[17,26,65,113],adjust_parameter_valid:65,adopt:108,adriaan:75,advanc:49,advantag:1,advantech:[57,97],advantech_pcie_1751:58,aeroflex:[3,78],affect:[30,38,68,102],after:[1,6,10,14,42,46,49,53,59,66,72,77,95,102,110,113],again:[6,16,113],against:105,aggeg:0,aggreag:0,aggreg:[34,56,106,114],agi:[7,11,18,20],agil:[7,20,22,57,97,102,106],agilent1:[7,18,20],agilent2:[7,18,20],agilent_2:7,agilent_34400a:[7,11,18,20,57],agilent_34401a:69,agilent_34410a:69,agilent_34411a:69,agilent_e8527d:[69,102],agilent_hp33210a:69,agilent_volt:11,agreement:21,agument:32,ahead:[30,51,52],aid:113,aim:1,airbnb:102,aka:102,akin:113,ala:108,alazar1:16,alazar:[3,16,59,97],alazar_driv:59,alazar_nam:[16,59],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,59],alazarstartcaptur:59,alazartech:[3,16,57],alazartech_at:[3,16,59],alazartech_ats9870:[3,16,59],alazartest:16,alex:102,alexcjohnson:102,alia:[69,70,78],all:[1,2,3,8,9,10,12,16,19,21,24,25,26,28,30,31,33,34,36,39,40,41,42,44,45,48,49,51,54,56,57,58,59,61,64,68,69,72,73,74,75,76,77,84,85,100,102,105,106,108,109,110,113,114],all_channels_off:77,all_channels_on:77,alloc:[16,59],alloc_buff:[16,59],allocated_buff:[16,59],allow:[1,3,17,24,25,33,43,49,51,52,54,68,72,76,77,82,102,113],almost:113,alon:[17,36],along:[1,17,31,48,49,75,83,84,102,105,113],alongsid:8,alpha:[28,65],alreadi:[31,36,40,48],also:[1,2,3,6,10,16,17,26,27,28,32,36,38,40,42,49,51,55,59,61,66,71,72,76,77,82,99,102,105,108,109,110,113],altern:28,although:[3,28,68,102,109],alwai:[1,2,5,10,15,27,30,42,48,61,64,68,76,77,102,113],always_nest:42,amen:102,american:[17,70],american_magnet:[17,57],ami430:[57,97,100,106],ami430_2d:70,ami430_3d:[17,70],ammet:113,amodel:[6,9],among:[39,114],amp:[3,17,21,71,76],amper:70,amplifi:[3,10,71,76],amplitud:[6,8,9,15,24,25,30,59,74,77,114],anaconda3:[14,18],anaconda:[108,109],analog:64,analog_amplitude_n:77,analog_direct_output_n:77,analog_filter_n:77,analog_high_n:77,analog_low_n:77,analog_method_n:77,analog_offset_n:77,analys:74,analysi:[102,113],analyz:108,angl:17,angle_deg:69,angle_rad:69,ani:[0,2,3,8,9,10,16,17,18,20,23,24,25,26,28,31,34,36,38,39,40,41,42,43,46,48,49,51,52,53,54,56,59,61,68,76,77,81,85,102,105,108,113,114],anoth:[3,8,10,11,28,39,51,108,113],answer:[61,65],anyth:[10,13,19,77,105],anywai:8,ap_tim:13,apertur:[11,13],api:[1,68,91,93,108,110,113],api_level:68,apparatu:105,appear:[62,77],append:[17,18,28,36,51,114],appli:[17,19,24,25,37,41,49,77],appropri:[1,59,113],approv:102,arang:3,arbitrari:[41,42,48,69,73,77,105,108],architectur:[3,108,114],arctan:28,arg:[1,2,3,14,18,31,41,48,49,51,53,62,64,72,83,84,114],arg_count:14,arg_pars:41,argument:[0,1,5,9,10,14,32,36,37,40,41,48,53,70,105],around:[26,28,36,75,102,113],arrai:[0,1,4,6,8,10,11,12,13,14,15,16,20,21,26,27,28,30,31,36,37,40,48,59,66,68,73,74,76,77,81,82,84,95,105,106,113,114],array_count:8,array_id:[0,1,4,6,8,10,11,12,13,14,15,16,21,26,27,30,36,40,114],arraycount:8,arraygett:5,arraymeasur:62,arrayparamet:[3,12,62,74,76,77,91,106],arriv:113,arrow:109,ask:[3,13,18,29,30,61,65,72,76,77,102,113],ask_modul:76,ask_raw:3,asopc:59,asopc_typ:[16,59],asrl10:23,asrl1:27,asrl2:54,asrl4:[11,72],asrl6:[14,24,25],asrl7:13,asrl:65,asrln:61,assert:[17,76,77],assertalmostequ:62,assign:[14,24,25,64,77,102],associ:113,assum:[3,26,28,52,64,109,113],assumpt:[30,77],async:112,asynchron:10,atob:72,ats9870:[3,16,57],ats_acquisition_control:[16,57],ats_contr:16,ats_inst:16,ats_onwork:106,atsapi:[3,59],atsdriv:16,attach:[1,33,37,44,45,46,57,62,64,76,77],attempt:61,attent:[102,106],attenu:[3,24,25,78],attn:3,attribut:[1,30,36,37,40,68,85,102,113],author:102,auto:[30,39],autom:108,automat:[1,3,8,26,30,39,58,64,74,96,100,102,108,110],autorang:14,autoreload:2,autoscal:26,aux_in1:15,aux_in2:15,aux_in3:15,aux_in4:15,aux_out1:15,aux_out2:15,aux_out3:15,aux_out4:15,auxiliari:102,avail:[1,3,22,28,30,57,58,62,64,69,74,77,91,93,108,113],avanc:112,averag:[26,30,59,66,75,77],averageandraw:[5,6,9],averagegett:[6,9],avg:[26,75],avoid:[13,17],awar:102,awg1:28,awg5014:[57,96,98,106],awg5200:[57,100],awg520:57,awg:[10,62,77,106],awg_fil:77,awg_file_format_channel:77,awg_file_format_head:77,awgfil:28,awgfilepars:[28,57],awgfilepath:77,ax1:28,ax2:28,ax3:28,ax4:28,axes:[1,23,26,72],axes_api:1,axi:[1,17,26,30,31,36,42,48,49,68,113],axs:30,babi:114,back:[3,10,17,26,28,52,61,72,77,102,108,109,110,113,114],backend:[1,54],background:[6,18,20,113],background_color:83,background_funct:37,backslash:102,backward:38,bad:2,bandwidth:[16,26,30,68],bar:[102,110],bare:[43,51],base0:114,base1:114,base2:114,base:[1,8,12,14,17,33,36,37,38,39,40,44,45,52,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,83,102,106,110,113,114],base_loc:[2,6,38],baseplot:83,baseserv:114,basi:48,basic:[3,27,42,59,65,108],basicconfig:14,baud:[61,76],bdaqctrl:58,bear:102,becam:6,becaus:[1,2,3,27,36,37,40,58,59,62,102,109,113,114],becom:[16,28,72,105,113],been:[3,8,17,27,28,49,68,75,77,113,114],beep:3,befor:[2,3,10,11,14,15,17,26,27,30,39,43,46,49,53,57,58,59,65,68,72,77,102,110,113],beforehand:57,begin:6,begin_tim:61,behav:102,behavior:[6,9,16,18,20,23,102,113],behaviour:[21,49,68],behind:30,being:[2,10,16,28,36,75,77],belong:[31,48,49,74],below:[1,2,3,10,12,28,102,105,106],ben:17,benchmark:[11,100],best:[3,102],beta:[3,27,59,62,69,72,74,75,76,77],better:[3,13,41,100,102,113],between:[1,3,22,37,40,43,49,51,68,77,82,83,84],beyond:77,bid:58,bidirect:[3,49],binari:[12,58,77],binascii:27,bind:30,biodaq:58,bip:65,bit:[13,58,59,76,77],bitlevel0:66,bitlevel1:66,bits_per_sampl:[16,59],black:83,blame:[24,25,77],blank:[42,102],blind:10,block:[10,18,42,65,66,114],blockavg_hardware_trigger_acquisit:66,board:[3,16,24,25,59],board_id:[3,16,59],board_kind:[16,59],bodi:102,boilerpl:[3,41],bold:105,bool:[3,31,33,36,43,48,49,61,62,64,65,66,70,71,74,76,77,82,85],bool_to_str:77,born:102,bot:[98,99],both:[1,3,8,11,26,30,38,62,74,76,77,102,105,108,109,113,114],bottom:[65,109],bound:[10,113],bracket:102,branch:102,breakif:[10,91,113],breviti:3,brittl:113,broader:108,broken:[2,49],brows:[109,114],buf:59,buffer:[16,58,59,66,76,98,106],buffer_acq_mod:15,buffer_list:3,buffer_npt:15,buffer_paus:15,buffer_reset:15,buffer_sr:15,buffer_start:15,buffer_timeout:[16,59],buffer_trig_mod:15,buffers_per_acquisit:[16,59],bug:103,build:[28,30,68,77,96,97,102,109,113],build_sweep:[30,68],built:[1,8,30],builtin:41,bunch:30,burden:113,burst:106,busi:58,button:[77,102],bwlimit1:16,bwlimit2:16,bwlimit:[16,59],bwmode:30,byref:14,byte_to_bit:76,byte_to_value_dict:[3,59],c_amp_in:[3,71],c_set:8,cabl:[77,113],calc:66,calc_set_point:77,calcul:[17,68,105,113],calibr:[57,59],call:[2,3,8,9,14,17,18,21,26,27,28,30,31,34,36,37,39,40,41,43,48,49,53,54,56,58,59,61,64,65,68,75,76,77,79,82,102,113],call_by_str:14,call_by_str_parsed_out:14,call_cmd:[3,41],callabl:[10,18,32,34,37,39,46,49,53,55,56,82,98,113],callsig:28,came:59,camp1:20,camp:[7,20],can:[0,1,2,3,8,9,13,15,17,21,22,24,25,26,28,30,31,32,35,36,37,39,41,42,46,48,49,51,52,55,58,59,61,62,65,66,68,72,73,74,77,81,82,83,84,85,102,105,106,107,108,110,113,114],cancel:[24,77],cannot:[4,17,26,31,48,58,76,77,113],canva:1,capabl:[19,105,108,113],capit:102,captur:[10,26,59],card:[3,16,58,59,62,66,97],cardid:66,care:[2,3],cartesian:[17,113],cartesian_measur:17,cast:[13,28,41],caus:[24,25,66,76],caution:[77,106],caveat:113,cdll:3,cell:28,center:[26,75],certain:[10,17,30,59,72],cesr:76,cffi:58,ch01:25,ch01_i:24,ch01_irang:24,ch01_slope:[14,24],ch01_sync:14,ch01_sync_delai:14,ch01_sync_dur:14,ch01_v:[13,14,24],ch01_vrang:24,ch02:[24,25],ch02_slope:24,ch02_sync:24,ch02_v:[14,24],ch0_offset:19,ch0_voltag:19,ch1:[10,77],ch1_amplitud:22,ch1_amplitude_unit:22,ch1_burst_mod:22,ch1_burst_ncycl:22,ch1_burst_phas:22,ch1_burst_polar:22,ch1_burst_stat:22,ch1_curvedata:27,ch1_databuff:15,ch1_displai:15,ch1_frequenc:22,ch1_function_typ:22,ch1_offset:22,ch1_output:22,ch1_posit:27,ch1_ramp_symmetri:22,ch1_ratio:15,ch1_scale:27,ch1_state:27,ch1_trigger_count:22,ch1_trigger_delai:22,ch1_trigger_slop:22,ch1_trigger_sourc:22,ch1_trigger_tim:22,ch1_voltag:19,ch2:[10,27,77],ch2_curvedata:27,ch2_databuff:15,ch2_displai:15,ch2_offset:28,ch2_posit:27,ch2_ratio:15,ch2_scale:27,ch2_state:27,ch3_state:28,ch41_v:11,ch42_v:11,cha0:57,chain:113,chan0:[6,9,57],chan0_set:6,chan1:[6,9,30,32],chan1_set:6,chan2:[6,9,30],chan:64,chan_alia:29,chan_go:14,chan_list:33,chan_reset_1:14,chan_reset_2:14,chan_reset_3:14,chan_typ:33,chanc:59,chandata:30,chang:[1,3,10,16,19,24,25,27,30,31,35,38,48,49,65,68,76,77,101,102,106,108,109,110,113],change_autozero:77,change_displai:77,change_fold:77,channel2:66,channel:[3,6,7,10,11,15,16,18,19,20,21,27,28,33,44,45,54,58,59,61,62,63,64,65,66,68,72,74,76,77,98,99,105,106,107,113],channel_0:66,channel_1:66,channel_a:59,channel_cfg:77,channel_rang:[16,59],channel_range1:16,channel_range2:16,channel_select:[16,59],channel_skew_n:77,channel_state_n:77,channelbuff:76,channelis:[21,64,77],channelist:33,channellist:[64,91],channum:[62,64],charact:[31,42,43,48,49,54,72,102],characterist:113,chassi:62,check:[3,17,55,58,72,74,76,83,84,102,107,111,113,114],check_error:14,check_for_error:75,check_module_error:76,check_schema:2,checklist:102,chime:102,chnum:28,choic:[26,59],choos:[28,65,68,74,77,113],chore:102,chosen:68,chx:10,clariti:3,classic:13,classmethod:[57,59,62,69,75],clean:[73,77,95,102],clean_str:73,cleanup:[40,100],clear:[14,15,26,27,28,54,62,76,77],clear_buff:59,clear_channel:[26,74],clear_error:69,clear_message_queu:[27,28,77],clear_waveform:77,clearli:102,clever:103,cli:108,click:[1,109],clim:1,clip:113,clock:[3,16,59,77],clock_edg:[16,59],clock_edge_ris:16,clock_frequ:62,clock_sourc:[3,16,59,77],clone:102,close:[1,4,11,17,19,21,24,25,26,27,28,29,30,58,66,68,72,100,102],close_ev:1,close_fil:40,closedevic:75,cls:2,cmd:[3,14,61,64,76,77],cmd_str:14,code:[1,3,30,41,49,60,61,66,69,76,85,103,108,113],codebas:108,coil:[17,70],coil_const:[17,70],col:74,cold:72,collect:[8,51,59,105,108,113],colloqui:77,colon:[72,102],color:[1,28,30,83],colorbar:[1,36],column:[1,42,113],com2:54,com:[66,69,78,102,104,106,109],combin:[34,37,42,49,75,80,82,91,99,105,106,112,113],combined_set:0,combinedparamet:[0,91],come:[42,102,113],comma:[72,77],command:[1,3,12,13,14,16,27,28,30,41,49,58,61,64,65,66,69,72,74,76,77,91,102,105,108,113],comment:[3,42,58,102],commit:[59,107,108],common:[3,72,74,77,105,113],commonli:[69,74,77],commun:[3,17,43,54,59,61,65,72,76,105,107,113],communc:17,compani:3,compar:[11,26,102],compat:[46,53,68,77,108,113],compatibil:77,compens:[66,77],complain:[10,113],complet:[1,14,28,36,37,58,66,77,113,114],complex:[3,26,49,74,102,113],compliant:102,complic:[41,113],compon:[7,48,59,85,108,113],composit:[14,113],comprehens:[102,106],comput:[1,21,68,72,102,109,113],con:97,concaten:[64,102],concept:114,conclus:13,concurr:113,conda:109,condit:[3,10,32,49,58,72,77,113],config:[3,16,59,77,91,99,102,106,112],config_file_nam:35,configur:[16,30,35,58,59,75,77,94,106,108,112,113],conflict:[58,113],confusingli:114,connect:[3,11,12,13,14,15,16,17,18,21,22,24,25,26,27,28,30,54,59,61,62,68,72,76,77,85,105,113],connect_messag:[3,61,62,64],consequ:113,consid:[10,21,77,102],consist:[10,24,25,26,65,75,77,81,102,113],consol:66,consolid:108,constant:[5,10,17,30,65,68,70,75],construct:[5,26,32,36,43,49,114],constructor:[3,31,36,48,83,84],consult:113,cont_meas_off:26,cont_meas_on:26,conta:68,contact:100,contain:[3,5,6,10,21,26,28,33,36,37,39,42,58,59,61,64,68,69,72,74,76,77,85,102,105,110,113,114],content:[36,106],context:113,contian:59,contin:77,contini:26,continu:[28,30,46,77,85,102],contrast:102,contribut:[3,103,107],contributor:102,control:[2,3,9,16,18,19,20,21,23,24,25,26,28,30,59,61,63,65,70,72,74,77,97,108,110,113,114],controlthermometri:72,conveni:[77,85,113],convent:3,convers:[77,102],convert:[3,17,36,38,59,64,66,72,76,77,113],convert_to_voltag:66,coordin:17,copi:[2,18,36,51,65,68,113],core:[0,1,6,7,9,14,15,16,18,20,23,26,27,29,30,102,106,107,108,110],corner:[9,16,18,20,23],correct:[1,3,17,19,28,30,40,76,99],correctli:17,correspond:[1,3,11,15,19,21,28,42,59,61,68,74,76,77],cosmet:[95,96],cost:65,could:[3,9,14,28,102,113],count:[8,14,41,58,64,77,114],counter:[9,10,39,58],coupl:[3,16,30,59,66,77],coupling1:16,coupling2:16,cours:[102,113],cov:102,cover:[102,114],coverag:[102,108],coveragerc:102,cpld:59,cpld_version:[16,59],cpu:26,crash:[59,108],creat:[1,4,7,8,9,10,16,18,20,21,33,36,40,46,48,49,51,57,59,61,62,68,69,72,77,78,81,82,105,106,109,110,113,114],create_and_goto_dir:77,creation:[10,114],creator:102,critic:[2,110],cryo:97,ctwrapper:14,ctype:3,cumbersom:64,curernt:114,curr:[3,7,12,20,21,71,76],current:[2,3,6,7,12,17,20,21,24,25,26,27,28,30,35,37,38,39,58,62,64,68,70,71,72,76,77,79,80,82,85,102,110,113,114],current_config:[2,35],current_config_path:35,current_field:17,current_r:[17,70],current_ramp_limit:[17,70],current_schema:[2,35],current_target:17,current_to_field:17,current_valu:14,currentparamet:[3,7,20,71],curv:[12,77,106],custom:[8,35,38,106],customawgfil:77,customis:64,cutoff_hi:76,cutoff_lo:76,cwd:35,cwd_file_nam:[2,35],cycl:[7,16,18,20,21,22,62,113],cylindirc:17,cylindr:17,cylindrical_measur:17,d_bdaq_c_interfac:58,dac1:5,dac2:5,dac3:5,dac:[5,10,57,61,65,99],dac_ch1_set:10,dac_ch2_set:10,dac_commands_v_13:64,dac_delai:65,dac_max_delai:65,dac_step:65,dacchannel:61,dacexcept:61,dacnam:65,dacread:61,dacslot:61,dai:102,dancer:102,daq:30,daqnavi:58,daqnaviexcept:58,daqnaviwarn:58,dark:83,dat:42,data1:26,data2:[4,9,27],data:[0,1,2,3,5,6,8,11,12,13,14,15,16,18,20,21,26,27,30,36,37,38,39,40,42,46,48,49,58,59,64,65,66,68,74,77,80,82,83,84,91,99,102,105,106,108,113,114],data_arrai:6,data_buff:14,data_l:4,data_set:[2,4,6,10,14,40,77,94],data_v:49,dataarrai:[0,1,6,8,20,31,37,40,48,82,91,105,113],dataflow:59,dataformat:106,dataformatt:102,datamanag:[105,113],datamin:113,datamod:[0,6,8,9,11,16,20,30,114],datapoint:77,datasav:106,dataserv:[9,37,105,113],dataset:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,20,21,26,27,30,36,39,40,42,48,62,77,80,81,82,91,105,112,114],date:[9,10,39,59],datetim:39,daunt:102,dbm:[26,74],dc_channel_numb:77,dc_output_level_n:77,ddl:58,deacadac:61,deadlin:18,dealt:113,debug:[2,4,27,30,110,113,114],debugmod:14,deca:19,decadac:[57,98,100,106],decadec:61,decid:[2,113,114],decim:[16,59],declar:58,decod:3,decoupl:102,decreas:11,deem:68,deeper:18,def:[0,1,2,3,8,10,13,14,17,18,20,72,114],default_current_ramp_limit:70,default_figs:1,default_file_nam:35,default_fmt:110,default_formatt:[37,80,82],default_io:[37,80,82],default_parameter_nam:100,default_server_nam:75,defaulttestload:4,defer:32,deferred_oper:91,defin:[0,2,3,9,26,28,30,31,41,48,62,71,72,76,77,102,105,106,110,113,114],definit:[9,30,41,113],deg:15,deg_to_rad:69,degre:[22,30,49],del:3,delai:[0,1,6,10,14,16,17,25,30,46,49,50,52,55,65,74,113,114],delay_in_points_n:77,delay_in_time_n:77,deleg:36,delegate_attr_dict:85,delet:[3,77,102],delete_all_waveforms_from_list:[28,77],demand:113,demo:106,demod1:[30,68],demod1_harmon:30,demod1_ord:30,demod1_phaseshift:30,demod1_sampler:30,demod1_signalin:30,demod1_sinc:30,demod1_stream:30,demod1_timeconst:30,demod1_trigg:30,demod:30,demodul:[68,106],demodulation_acquisitioncontrol:[16,59],demodulation_frequ:[16,59],demonstr:[3,8],denot:[31,42,48,82],depend:[1,16,24,25,30,42,74,93,100,102,109,113],deploi:[12,77],deprec:[3,36,77,96],deprecationwarn:77,deriv:105,descipt:35,describ:[2,3,8,10,31,46,48,68,102,110,113],descript:[2,36,77,102,110,113],descriptor:65,design:[69,77,78,113],desir:[10,17,76],desktop:14,destruct:113,detail:[1,102,113],detect:99,determin:[40,84],dev2235:30,dev:[2,12,13],develop:[62,68,103,107,108],devic:[54,58,62,65,68,72,74,77,97,113],device_clear:54,device_descript:58,device_id:68,dft:[16,59],dg4000:57,dg4062:73,dg4102:73,dg4162:73,dg4202:73,diagon:105,dict:[31,35,36,39,40,43,44,45,48,49,54,61,72,76,77,79,82,98,113],dictionari:[3,28,59,76,77,85,110,113],did:[3,9,11,109],didact:10,diff:77,differ:[1,3,8,21,26,31,37,48,68,74,77,102,105,108,113,114],differenti:36,difficult:102,difficulti:102,dig:[30,62,99],digit:[3,10,58,62,64,66,77,97],digital_amplitude_n:77,digital_high_n:77,digital_low_n:77,digital_method_n:77,digital_offset_n:77,dilut:72,dim:30,dimens:[8,31,36,42,48,113],dimension:[1,36,37,72],dio:58,dir:[2,77],direct:[31,48,62,75,102],directli:[1,3,5,8,17,24,25,28,30,37,46,72,77,106,113],directori:[2,3,37,38,77,80,82,102,109,110],disabl:[16,33,37],disadvantag:113,disambigu:9,disappear:113,disc:77,disconnect:113,discov:57,discret:113,discuss:[102,107],disk:[37,38,40,77,82,113],diskio:[6,37,39,80,82,91,105],displai:[0,1,2,6,7,9,11,13,14,15,16,18,20,23,26,27,29,30,74,77],display_clear:[11,13,14,69,77],display_grid:[26,74],display_norm:77,display_settext:21,display_sij_split:26,display_single_window:26,display_text:[7,11,13],display_text_2:7,dissip:113,distribut:108,div:27,dived:57,divid:[49,57,97,98],divider_r:77,divis:[27,57],division_valu:57,divsion:57,dll:[58,59,75,106,113],dll_path:[3,59,75],dma:58,dmm:[10,11,13,14,69,99,100],dmm_data_buff:14,dmm_volt:13,dmm_voltag:10,do_acquisit:59,do_get_frequ:74,do_get_pow:74,do_get_pulse_delai:74,do_get_statu:74,do_get_status_of_alc:74,do_get_status_of_modul:74,do_set_frequ:74,do_set_pow:74,do_set_pulse_delai:74,do_set_statu:74,do_set_status_of_alc:74,do_set_status_of_modul:74,doc:[2,6,65,102,106,109],docstr:[3,8,31,41,48,49,77,102],document:[1,17,31,41,48,49,59,77,94,95,97,102,108,113],doe:[1,10,17,23,26,30,36,39,42,46,54,57,58,62,65,69,72,74,76,77,78,102,113],doesn:[3,8,9,28,36,58,62,66,77,102],dofastsweep:[12,21,77],doing:[16,26,102,113],domain:[30,72],domin:108,don:[1,3,27,40,51,52,61,62,64,77,102,113,114],done:[1,6,10,28,30,72,95,109,113,114],dot:[2,102,110],doubl:[39,77],doubt:[30,102],down:[17,21,28,102],download:[30,106,109],dramat:113,drive:6,driver:[5,8,10,15,17,21,24,25,26,27,28,30,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,95,96,97,98,99,100,102,108,112,113],driver_vers:[16,59],drivertestcas:[57,62,69,78],due:[3,6,24,25,30,61,113,114],dummi:[5,10,16,81,106,114],dummy_set:16,dummyinstru:[5,10],dump:[7,59],duplic:[3,77],dur:30,durat:[25,30],dure:[1,14,49,51,55,59,62,66,77,93,113,114],dut:26,dynam:[24,25,58,106],e1cb66:28,e8267:69,e8267c:[57,97],e8527d:[57,102],each:[0,1,3,4,6,8,10,11,12,13,14,15,16,18,19,20,21,22,24,25,26,27,28,30,31,36,37,40,41,42,43,46,48,49,51,58,59,61,64,65,68,69,76,77,78,83,84,85,102,105,108,113,114],eachot:114,earli:27,easi:[5,16,102,105,108,109],easier:[68,100,102,113],easiest:2,easili:[1,9,10,77,108],echo:61,edg:[16,27],edit:75,editor:102,ee82e:28,effect:[59,77,110],effort:3,eight:[24,25],either:[1,3,21,24,25,30,40,58,62,70,73,77,84,113],elaps:[14,18,20],electron:[3,108],elem1m1ch1:77,elem1m1ch2:77,elem1m2ch1:77,elem1m2ch2:77,elem2m1ch1:77,elem2m1ch2:77,elem2m2ch1:77,elem2m2ch2:77,element:[1,28,77,84,110,113],element_no:77,elemnum:28,elif:18,elnum:28,elpi:102,els:[2,14,19,26,58,77,102],elsewher:85,emac:102,email:107,embed:[1,109],emit:65,emoji:102,empti:[2,8,10,18,28,61],enabl:[16,30,49,66],enable_channel:66,enable_record_head:[16,59],encapsul:113,enco:14,encod:[3,14,41,49,58],encount:58,encourag:[3,30,102],end:[3,39,51,54,58,59,74,77,102,108,113],endpoint:[11,77],engin:16,enough:[10,58,72,102,105],ensur:[27,75,76,102,113],ensure_ascii:7,enter:[31,48,113],entir:[15,16,22,76,85,113],entri:[2,40,46,48,77,91],entrypoint:93,enumer:[3,30],env:[2,14,35,109,110],env_file_nam:[2,35],enviro:109,environ:[2,108,109,110],equal:110,equitim:76,equival:[8,77,108],err:75,error:[0,2,3,4,14,17,18,24,36,46,49,58,59,62,65,66,76,77,99,106,110,114],error_cod:65,errorcod:58,errormsg:58,errorreg:66,errorvalu:66,esr:76,essenti:[10,69,76],establish:17,etc:[1,3,8,19,21,26,31,36,41,48,102,113],ethernet:[3,43,77],etr_5v:16,eumer:52,evalu:53,even:[8,13,17,24,25,38,40,49,51,52,54,64,66,77,102,113],event:[28,30,58,61,76,77,106],event_input_imped:77,event_input_polar:77,event_input_threshold:77,everi:[1,3,34,37,46,56,59,68,107,113,114],everybodi:[102,107],everyon:102,everyth:[28,30,39,91,102],exactli:[5,14,102],examin:72,exampl:[0,1,2,6,8,31,32,36,39,48,49,52,54,59,62,66,77,97,102,105,108,109,111,114],exce:102,exceed:[28,58],except:[2,3,14,17,58,61,76,77,86],exec_funct:14,exec_str:14,execut:[10,14,30,41,53,57,58,62,66,68,69,74,77,78,105,108,113],executor:114,exemplifi:30,exept:30,exercis:102,exis:26,exist:[3,10,26,28,39,40,52,58,66,77,80,82,102,108,113],exit:77,exit_kei:77,expand:103,expect:[2,3,14,18,30,31,40,46,48,58,64,66,76,77,102,114],experi:[9,10,35,106,108,109,113],experiment:[108,113],expir:14,explain:[102,110],explicit:[28,49,51],explicitli:[31,36,48,102,113],explor:[10,77],expos:[64,110],express:[49,113],ext:[14,22],ext_trigg:15,extend:[28,42,51,74],extens:[42,77],extern:[16,22,66,74,75,77],external_add_n:77,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:77,external_startcaptur:[16,59],external_trigger_coupl:[16,59],external_trigger_rang:[16,59],extra:[8,13,31,48,49,102,113],extra_schema_path:2,extract:72,extrem:113,f008:72,fact:102,factor:[3,7,24,25,30],factori:77,fail:[2,100,102,113],falcon:102,fall:77,fals:[2,6,7,8,14,18,19,20,24,25,26,30,36,37,43,44,49,50,60,61,62,64,65,66,69,70,73,74,76,77,82,110,113],faq:112,fast:[64,72,77,106,113],faster:[26,28,100,102],fastest:28,fastsweep:21,feasibl:108,feat:102,featur:[1,3,19,75,97,98,99,100,103,108],feed:[3,71,76],feedback:[52,113],feel:102,fetch:[7,13,72],few:[22,26,41,68,102,107],fewer:[24,25],ff4500:28,ff8c00:28,fft:68,field:[17,31,41,42,48,49,70,72,108,114],field_limit:[17,70],field_measur:17,field_target:17,field_target_cartesian:17,field_target_cylindr:17,field_target_spher:17,field_valu:72,field_vector:17,fieldvector:17,fifo:16,fifo_only_stream:[16,59],fig:[1,17,26,28,30],figsiz:[1,10,83,84],figur:[1,14,28,30,84,102,109,113],figure_api:1,file:[2,4,9,10,35,37,39,40,42,58,65,72,77,80,82,102,106,112,113],file_path:77,filen:35,filenam:[28,77],filepath:28,filestructur:77,fill:[8,10,15,46,77,113],filter:[30,68],filter_slop:15,filw:77,find:[18,39,59,102,107,110],find_board:[16,59],find_modul:76,findal:72,finder:10,fine:[65,113],finish:[1,6,12,13,26,30,59,95,113],finit:[24,25,64,65],fire:[24,25],firmwar:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,98],first:[1,2,6,8,10,13,14,17,22,26,28,31,36,42,48,49,53,70,77,83,84,102,113,114],first_delai:14,fit:[28,59,102],five:75,fix:[17,30,36,41,51,72,98,99,100,101,102,113,114],fixabl:102,flag:[24,25,65,75],flake8:102,flavor:113,flexibl:[105,108],flow:[24,25],flush:[22,76,77],flush_error_queu:[22,62],fmt:[2,9,10,39],fmt_counter:39,fmt_date:39,fmt_time:39,fname:77,focus:102,folder:[3,38,42,77],follow:[1,3,5,10,11,17,22,28,49,61,77,102,109,110,113,114],foo:[102,110,114],footer:102,forc:[6,9,16,18,20,23,26,28,77],force_ev:77,force_logicjump:77,force_reload:77,force_trigg:[27,77],force_trigger_ev:77,foreground:[100,113],foreground_color:83,foreign:58,fork:102,form:[3,12,41,59,72,74],format:[3,10,11,12,13,14,17,21,24,25,26,28,30,37,39,41,42,58,74,77,80,82,106,108,113],formatloc:[2,9,10,82,91,105],formatt:[4,6,37,80,82,91,97,105,110,113],former:[12,13],formerli:[3,78],forward:[16,38,59],foul:28,found:[3,26,28,30,40,53,58,65,77,102,106],four:[19,58,61,73],fourier:59,framework:[102,108,113],free_mem:59,freedom:49,freeli:113,freq:[26,75],frequenc:[10,15,26,30,59,62,74,75,77,114],frequency_set:26,frequencysweep:74,frequencysweepmagphas:74,frequent:102,fridg:[72,108],friendli:68,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,31,36,37,39,40,41,42,46,48,49,58,59,62,64,65,66,68,69,71,72,74,76,77,80,81,84,85,99,102,104,105,106,108,113,114],fron:7,front:[30,77],frontend:110,full:[0,2,22,24,30,37,42,77,80,82,108],full_nam:[0,36],full_trac:26,fulli:[26,30,102],fullrang:65,fun:64,func:[3,14,53],func_nam:18,fundament:113,further:[73,105,108],furthermor:[1,17,68],futur:[3,77,102,114],gain:[71,76],garbag:59,gate:[6,9,10,22,32,61,105,113,114],gate_frequ:114,gate_frequency_set:114,gated_trigger_acquisit:66,gather:9,gather_paramet:9,gave:28,gcc:58,gee:30,gener:[3,10,17,22,27,28,37,39,51,58,60,62,68,69,73,74,75,76,77,78,97,102,105,106,108,109,113],generate_awg_fil:77,generate_channel_cfg:77,generate_sequence_cfg:77,get:[0,2,3,4,5,6,8,9,10,11,14,16,17,18,19,20,21,23,24,25,27,29,30,31,36,40,48,49,57,59,62,64,65,68,71,72,74,76,77,85,102,106,110,113,114],get_al:[65,72,74,77],get_board_info:59,get_card_memori:66,get_card_typ:66,get_chang:72,get_cmd:[3,10,49,50,59,72,114],get_compon:17,get_current_folder_nam:77,get_data_set:[0,1,10,11,12,13,14],get_error:77,get_error_info32bit:66,get_filenam:77,get_folder_cont:77,get_funct:59,get_idn:[3,16,58,59,61,65,66,71,72,76,77],get_instrument_valu:57,get_jumpmod:77,get_latest:[27,30,31,32,48,49],get_max_sample_r:66,get_mocker_messag:70,get_module_idn:76,get_module_statu:76,get_pars:[3,49,50],get_pol_dac:65,get_power_at_freq:75,get_processed_data:[16,59],get_sample_r:59,get_spectrum:75,get_sq_mod:77,get_sqel_loopcnt:77,get_sqel_trigger_wait:77,get_sqel_waveform:77,get_stat:77,get_voltag:76,getattr:3,getcwd:28,getdoubl:30,getlogg:[4,27,28,30],gettabl:[3,8,31,48,49,71,76,81,105,113],getter:[14,105],getx:114,giga:67,giga_b:67,gimm:22,git:[6,18,106,108],github:[102,104,105,106,108,109],giulio:102,giulioungaretti:102,give:[1,8,10,17,46,61,77,102,113],given:[0,1,17,24,25,33,43,58,59,61,73,102,113,114],global:[3,9,19,26,106],gmbh:66,gnuplot:[42,108],gnuplot_format:[4,6],gnuplotformat:[4,6,37,80,82,91,105,113],goal:102,going:[3,5,65],good:[2,3,10,27,30,74,102],googl:[6,102],got:[13,102],goto_root:77,goto_st:[28,77],goto_to_index_no:77,gotten:[22,24,25,28,113],gpib0:[7,15,18,20],gpib:[3,77,79],gradual:19,grai:83,graph:[10,31,48,49],graphicswindow:83,great:102,greatest:113,green:109,grid:[26,74],group:[1,44,58,74,102,108,113],grow:107,gs200:[57,96],guarante:2,gui:[1,2,14,20,30,102,108,110],guid:[1,59,102,107,109],guidelin:102,h5fmt:4,h5py:109,hack:[102,110],had:[9,28,58],half:30,halfrang:65,halt:55,halt_bg:16,han:28,hand:28,handl:[3,8,31,36,37,41,48,58,59,64,65,66,83,100,105,106],handle_buff:59,handle_clos:1,handler:4,hang:102,happen:[3,24,25,28,36,53,113],happi:102,hard:[77,102],harder:[102,113],hardwar:[3,17,24,25,28,61,65,66,74,77,102,105,113],harmon:15,harvard:[19,57],has:[1,3,4,6,8,10,15,17,19,21,22,24,25,27,28,30,31,36,42,48,49,58,59,68,70,76,77,102,110,113,114],hasattr:[14,18],hasn:[3,58],have:[1,2,3,5,8,9,10,17,21,24,25,26,27,28,30,31,36,40,42,48,49,52,57,58,59,61,62,65,68,69,71,75,76,77,78,84,102,105,107,108,109,113,114],haz:95,hdf5:[4,97,113],hdf5_format:4,hdf5format:4,head:77,header:[16,22,58,102],heater:72,heater_off:72,heater_on:72,heatmap:[83,84],height:[83,84],helium:[72,100],help:[2,3,28,30,31,37,40,41,43,48,49,54,77,102,108,113],helper:[2,4,28,68,91,110],henc:61,here:[1,3,6,8,9,15,16,21,24,25,26,30,36,64,68,72,76,81,102,109,113],hesit:102,hewlett:[7,60],hierarchi:103,high:[10,66,77,102,113],higher:[17,110,113],highest:[39,113],highlevel:14,hislip0:13,histori:[77,102],hkey_current_usersoftwareoxford:72,hold:[3,13,15,21,23,30,72,77,105,113,114],hold_repetition_r:77,holdoff:30,home:[2,35,102,110],home_file_nam:[2,35],horisont:[27,30],horizont:27,horizontal_scal:27,host:[24,25],hotfix:102,hound:75,how:[2,5,8,10,17,26,28,30,31,40,42,46,48,49,51,52,83,102,104,105,106,107,113,114],howev:[17,26,62,102],hp33210a:57,hp8133a:57,hp_83650a:57,htm:65,html:[1,54],http:[1,54,65,66,102,104,106,109],human:[10,59,96],i3d:17,iPS:97,icon:109,id1:42,id2:42,id3:42,idea:[3,10,74,102,107],ideal:102,ident:[3,8,21,68,77,114],identifi:[31,37,40,42,44,48,49,61,72,76],idl:[29,77],idn:[3,4,6,7,10,15,16,21,29,61,64,65,72],idn_param:61,idr:72,iff:77,igh:72,ignor:[26,31,48,53,59,77],ignore_kwarg:14,igor:108,illustr:1,ilm200:57,ilm:[72,100],imaginari:26,imm:[13,22],immedi:[10,11,22,24,25,33,38,59,68,85,102,113],impact:113,imped:[10,16,30,59],impedance1:16,impedance2:16,imper:102,implememnt:85,implement:[9,16,17,40,43,51,52,58,59,68,72,74,75,77],implicit:102,implicitli:113,importlib:4,impos:113,improv:[101,102],imprrov:98,inc:[7,12,17,21],inch:84,includ:[3,8,11,31,39,48,49,51,54,58,66,69,76,77,81,83,84,102,105,107,108,113,114],inclus:77,inconsist:113,inconsistensi:77,inconsit:27,incorrect:102,incorrectli:59,increas:[8,17,102],increment:[42,49,99,113],ind:30,inde:[17,102],indend:30,indent:[7,102],independ:[40,113],index0:8,index1:8,index:[1,8,64,65,77,84,113],indic:[0,1,17,36,66,77,113,114],individu:[1,17,26,33,37,51,70],inf:[14,22,24,25],infer:36,infin:77,infinit:[28,77],info:[2,3,6,14,20,23,30,39,59,77,107,110],inform:[10,16,31,39,43,48,49,54,59,66,75,77,83,100,102,108,110,113],inherit:[14,59,74,77],inifit:[24,25],init:61,init_measur:[13,14,69],init_s_param:[26,74],initi:[1,3,10,36,37,40,57,58,72,77,80,82,108,113],initial_valu:[1,3,8,47,49],initialis:[14,74,75,77,79,106],initialize_channel:66,initialz:65,inner:[0,1,8,36,42,113],input:[2,3,14,17,18,28,41,49,57,58,65,72,76,77,102,105,106,113],input_config:15,input_coupl:15,input_path:66,input_rang:66,input_shield:15,insert:[3,39,110],insid:[3,8,11,31,33,37,46,48,77,80,82,102,108,109,113],inspect:[2,17],inst0:[3,11,12,14,21,22,26,28,74],instal:[30,54,58,62,68,76,93,100,102,104,108],instanc:[1,2,3,10,31,37,41,48,49,57,59,61,62,68,69,71,76,77,78,113],instant:58,instantan:[24,25],instanti:[3,16,21,30,37,64,70,102,106,113],instdict:28,instead:[0,1,3,10,36,114],institut:3,instr:[3,7,11,12,13,14,15,18,20,21,22,23,24,25,26,27,28,61,72,74],instruct:[17,108,109],instrument:[0,6,8,11,12,14,15,16,17,18,20,21,22,24,25,26,28,29,30,31,33,36,41,43,45,47,48,49,50,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,91,98,100,102,103,106,108,112],instrument_cod:49,instrument_driv:[3,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,102],instrument_i:70,instrument_mock:[4,5,10],instrument_nam:[10,16,36],instrument_testcas:57,instrument_x:70,instrument_z:70,instrumentchannel:[33,61,62,63,64,74,77,91],instrumentrefparamet:98,instrumentserv:[113,114],instrumentstriton:72,insuffici:113,integ:[3,8,31,36,39,48,58,76,77,84,110,113],integr:[1,7,18,20,21,75,102,113],integration_tim:7,intellig:[72,113],intend:[17,31,48,52,113],inter:65,inter_delai:49,interact:[1,3,76,102,106,109,113],interdepend:113,interest:[30,102,113],interfac:[3,30,58,68,77,106,113],interleav:[16,66,77],interleave_adj_amplitud:77,interleave_adj_phas:77,interleave_sampl:[16,59],intermedi:102,intern:[15,17,22,30,36,49,59,62,68,76,77],internal_clock:[3,16],internal_trigger_r:77,interpret:[3,4,9,10,21,113],interrupt:[58,111],interv:[83,84],introduct:112,inv:22,invert:[3,7,20,71,76],invit:102,invok:[3,30],involv:[106,108,113],io_manag:[37,80,82,113],iomanag:105,ion:30,ipinstru:[3,70,72,91,105],ips120:[57,100],ipython:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,108],iq_arrai:8,iqarrai:8,irang:[25,64],irrespect:[24,25,77],irrevers:113,is_awg_readi:77,is_numb:73,is_setpoint:[6,36],is_typ:2,isobu:72,issu:[17,77,95,96,99,102,105],issue_warning_on:14,ital:105,item:[8,29,31,39,48,51,64],iter:[33,51,52,105],iter_error:2,ithaco1:7,ithaco:[3,7,57,106],ithaco_1211:[3,7,20,57],its:[1,3,8,10,11,19,24,25,28,30,36,41,49,58,59,76,77,81,84,102,105,109,113,114],itself:[33,39,49,59,77,102,113],iv_sweep:[12,21],ivert:7,ivvi:[57,97,99,100],javascript:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,102],jhn:26,job:[113,114],johnson:102,join:[2,28,102,107],jorgenschaef:102,json:[2,6,7,26,31,43,44,48,49,54,76,77,97,108,110,113],json_config:2,jsonschema:2,jtar_index_no:77,jtar_stat:77,jump:[10,19,28,77],jump_log:77,jump_tim:77,jump_to:[28,77],jumplog:77,junk:9,jupyt:[1,10,108,109,111],just:[0,3,5,6,9,10,11,13,21,27,28,30,41,42,55,61,65,102,105,109,112,113,114],k2600:3,k2600a:3,keep:[17,40,59,61,98,102,108,110,113],kei:[1,3,9,28,37,51,59,76,77,82,85,110,113],keightlei:98,keith:[7,12,18,20,21,96],keith_smua_curr:12,keith_smua_iv_sweep:12,keith_smua_volt_set:12,keithlei:[7,12,77,97,106],keithley1:[7,18,20],keithley2:[7,18,20],keithley_2000:57,keithley_2400:57,keithley_2600:[3,7,12,18,20,21,57],keithley_2600_channel:[12,21,57],keithley_2614b:[3,77],keithley_2700:57,keithley_smua:21,keithley_smua_iv_sweep:21,keithley_smub:21,keithleychannel:77,kelvinox:[57,100],kept:110,kernel:[110,111],keysight:[10,57,97,98,99,100,106],keysight_33500b:[10,22,57],keysight_33500b_channel:57,keysight_34465a:[11,13,14,57],keysight_m3201a:62,keysight_volt:11,keysightchannel:62,keyword:[39,41,53],khz:[26,27],kilo:67,kilo_b:67,kind:[0,30,77,114],knob:[3,113],know:[10,51,52,102,107,114],known:[3,36,78],kwarg:[1,2,3,8,14,16,18,41,43,44,45,47,49,50,52,53,54,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,114],lab:[30,68,108],label1:42,label2:42,label3:42,label:[0,1,3,6,7,8,10,16,28,30,31,34,36,39,42,48,49,56,57,59,77,102,113,114],lack:61,lakeshor:57,lambda:[5,10,17,59],languag:42,larg:[6,28,49,77,102],larger:49,last:[1,2,6,14,18,30,49,59,64,68,77,102,113],last_saved_index:40,latenc:[10,11],later:[3,30,31,37,38,39,48,82,85,102,113,114],latest:[59,109,113],latest_cal_d:[16,59],latter:[12,13,84],launch:[68,109],lazi:106,lcardtyp:66,lead:[72,102],leak:59,learn:[30,108],least:[30,102,105,113],leav:[31,43,48,77],leave_persistent_mod:72,left:[1,109],legacy_mp:[2,110],legend:26,len:[13,14,30,58,77,114],length:[8,11,22,28,30,48,58,68,77,81,113,114],less:[30,49,102,113],lest:28,let:[1,17,21,26,36,102,110,114],letter:102,leve:3,level0:66,level1:66,level:[2,3,10,14,16,36,42,66,72,76,77,100,102,110,113,114],levelnam:4,levelv:3,lib:[2,14,18,99],librari:[14,28,58,62,102,109,110],life:[62,102],like:[3,9,10,17,26,28,30,31,36,40,41,48,51,52,59,62,69,72,74,77,102,105,108,110,113],limit:[1,3,16,17,24,25,27,58,70,102,113,114],limiti:[7,21],limitv:[7,21],lin:[30,75],linalg:17,line2d:[14,30],line:[5,7,10,14,18,20,21,30,42,62,83,84,102,107,108],linear:[0,26,74,114],linearli:[30,105],liner:102,link:[36,52,58,59,105],linkag:103,linspac:[0,13,28,114],linux:109,list:[1,4,8,10,12,13,16,25,33,34,37,39,41,44,51,56,58,59,62,64,65,66,68,72,74,76,77,82,85,91,93,95,97,102,105,106,113,114],list_of_dataset:4,list_of_mixed_typ:4,listcomp:14,liter:102,littl:[102,113],live:[1,80,104,106,109,113,114],load:[2,3,8,28,35,40,58,75,77,80,95,106,108,110,114],load_and_set_sequ:77,load_awg_fil:77,load_data:[10,37,91],load_ext:2,loaded_data:10,loadlibrari:3,loadtestsfromtestcas:4,loc:39,loc_fmt:9,loc_provid:[2,9,10,39],loc_provider_junk:9,loc_record:[9,82],local:[0,8,11,12,13,28,30,31,37,41,43,48,49,54,61,62,72,77,79,102,108,113,114],locat:[0,1,2,4,6,8,11,12,13,14,15,16,18,20,21,24,25,26,27,30,37,38,39,40,62,77,80,82,106,110,113,114],location_provid:[2,10,39,82,105],lock:[10,30,33,65,72,76],lockin:[3,15,71,76],lockin_ch1_databuff:15,log:[2,4,5,14,27,28,30,68,75,108,110,114],logger:[4,27,28],logic:[44,77,102],logic_jump:77,loglevel:[2,110],logo:95,lograng:51,logview:102,longer:[26,39,42,46],look:[5,10,24,25,27,30,39,54,59,102,110,113,114],loop:[0,1,6,8,9,12,13,14,16,18,20,26,27,31,32,36,37,40,42,48,49,53,55,59,77,81,85,91,95,105,106,112,114],loop_indic:14,loop_result:8,loop_writing_test_2d_skewed_parabola:4,loop_writing_test_2d_x_set:4,loop_writing_test_2d_y_set:4,loop_writing_test_skewed_parabola:4,loop_writing_test_x_set:4,loopcount:77,lose:13,lost:58,lot:[3,17,36,77,102],loudli:10,love:[102,107],low:[3,10,14,26,30,77,113,114],lower:[36,113],lowest:[39,76],lua:[12,21,77],luasweepparamet:77,m1s:[28,77],m2cmd_card_reset:66,m2s:[28,77],m3201a:57,m3300a:[57,97],m3300a_awg:62,m3300a_dig:62,m4i:[57,96,97,99],mac:[6,9,16,18,20,23],machin:[12,77,102],made:[2,30,62,68,110],magic:28,magnet:[17,70,72,97,100,106,108,114],magnitud:[17,26,74,113],magnitur:26,mai:[3,10,19,21,24,25,26,27,28,30,32,37,40,41,51,52,77,83,84,93,102,105,110,113],mail:107,main:[1,77,113],mainfram:76,mainli:10,maintain:[3,71,76,102,103,107,113],majorana:110,make:[3,5,8,9,10,11,12,15,16,17,18,20,21,23,24,25,30,36,41,42,46,59,64,65,72,76,77,102,105,106,108,109,113],make_and_save_awg_fil:[28,77],make_directori:77,make_send_and_load_awg_fil:[28,77],manag:[3,18,37,39,40,72,76,82,113],mandatori:[15,77,102],mani:[1,8,30,36,37,42,51,52,59,62,99,102,113],manner:28,manual:[17,21,26,30,65,69,71,72,74,76,77,106,108,113,114],manualparamet:[0,1,3,8,10,16,91,114],map:[3,13,41,49,59,76,84,113],mark:[76,113],marker1:77,marker1_amplitude_n:77,marker1_high_n:77,marker1_low_n:77,marker1_method_n:77,marker1_offset_n:77,marker1_skew_n:77,marker2:77,marker2_amplitude_n:77,marker2_high_n:77,marker2_low_n:77,marker2_method_n:77,marker2_offset_n:77,marker2_skew_n:77,marker:[28,77],mashup:95,mass:77,master:[102,106,109],match:[28,30,39,41,42,48,49,58,72,74,76,77,113],math:17,matlab:1,matplot:[0,2,10,15,16,21,26,27,91,98,106],matplotlib:[0,2,4,5,9,11,12,14,15,16,17,18,19,20,23,26,27,28,29,30,84,106,109,110],matter:[28,102],maunual:2,max:[22,42,49,65,66,75],max_delai:50,max_sampl:[16,59],max_status_ag:64,max_subplot_column:1,max_val:61,max_val_ag:[49,50],max_work:114,maxim:[24,25,77],maximum:[17,49,61,65,70,75,110,113],mayb:[36,46,102],mea:15,mean:[2,3,8,12,13,17,26,30,46,49,77,102,110,113,114],meaning:3,meaningless:102,meant:[41,68],meassur:26,measur:[0,1,3,4,6,8,9,11,12,13,14,15,16,17,18,20,21,26,27,31,36,37,42,46,48,49,52,53,57,62,68,71,74,76,85,91,99,106,112],measured_param:[3,71,76],measured_v:1,measured_val_2:1,measured_valu:52,measurerange_i:[12,21],measurerange_v:21,mechan:65,media:77,mega:67,mega_b:67,member:108,memori:[37,58,59,66,77,82,110,113],memory_s:[16,59],memrori:28,memsiz:66,mention:102,mercuri:[97,106],mercuryip:[23,57],mercuryipsarrai:72,merg:102,merger:3,merlin:6,messag:[4,14,22,27,28,61,62,64,65,66,76,77],message_len:65,messagebas:14,messur:26,met:[49,93],meta:[5,30,108,112,113],meta_fil:7,meta_serv:114,meta_server_nam:114,metadat:[44,52],metadata:[3,10,20,31,36,40,43,44,48,49,54,57,76,91,97,106,108,113],metadata_fil:42,meter:[3,6,9,10,21,72,77,100],method:[1,2,3,8,9,10,12,13,17,24,25,28,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,59,62,64,68,69,72,77,78,81,83,84,85,102,113,114],methodnam:[57,62,69,78],mhz:[26,30],might:[19,21,59,102,113],millisecond:76,mimic:105,mimick:113,min:[22,65],min_val:61,min_valu:8,mind:59,mini:42,minim:30,minimum:[49,61],minu:110,mirror:113,misc:91,misinterpret:28,mismatch:58,miss:[102,114],mistak:102,mix:[3,4,102],mock:[5,17,102],mockami430:70,mocker_class:70,mockgat:[6,9],mockinstru:105,mockmet:[6,9],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,9],mode:[0,3,6,7,8,11,12,13,16,17,19,21,30,37,58,59,64,66,68,72,74,75,77,79,106,113,114],model:[3,6,7,9,10,12,16,20,21,59,62,63,70,72,73,74,76,77,102,105,110,113],model_336:57,modif:110,modifi:[1,25,49,51,68,102],modified_rang:40,modul:[2,3,10,14,18,30,93,102,110],modular:[108,113],mohm:12,moment:[62,77],monitor:[9,46,55,85,105,108,113],more:[1,6,10,24,25,26,28,30,37,41,42,49,59,62,66,68,77,94,99,102,105,106,108,109,113],most:[1,2,3,8,14,18,19,26,30,48,49,59,62,69,74,77,102,105,109,113],mostli:[30,105],motiv:102,move:[3,9,17,72,77],mpl_connect:1,msec:[3,7],msg:72,mua:24,much:[26,40,74,102,113],multi:[10,64,94,113],multichan_paramclass:33,multichannelinstrumentparamet:[33,64],multilin:102,multimet:[77,97],multiparamet:[3,26,68,71,72,74,76,91,97,106],multipl:[0,1,8,25,30,33,41,48,49,65,66,69,74,77,106,113,114],multiple_trigger_acquisit:66,multipli:[49,113],multiprocess:[3,18,94,97,108,114],multityp:105,must:[3,8,10,27,28,30,31,36,39,42,43,48,51,52,59,61,62,66,68,76,77,82,102,105,110,113,114],mv_rang:66,mvpp:27,my47004267:7,my48002016:11,my54505281:13,my54505388:[11,14],my57800256:22,my_experi:109,mycount:8,myget:10,myinstrument:114,myset:10,myvector:114,myvector_set:114,n48280:15,naiv:12,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,39,41,42,43,44,45,47,48,49,50,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,85,102,105,109,110,113,114],name_to_delet:3,namespac:[9,91,110],nan:10,nataliejpg:79,nativ:[10,76],navg:75,navig:109,nbagg:[4,5,9,16,18,19,20,23,26,27,28,29],nbi:[102,107],ndarrai:[31,36,48,77,113],nearli:3,necessari:[16,30,36,52,58,59,68,108,113],necessarili:[31,48,102,105],need:[1,2,3,8,10,17,28,36,59,66,72,77,102,105,106,113,114],neg:[55,65],neither:102,nep:[30,68],nepbw:68,nepbw_to_timeconst:68,nest:[8,10,11,36,46,113],nested_dataset:4,network:[74,113],never:[49,102],new_cmd:3,new_data:[37,91],new_indic:14,new_nam:3,new_valu:14,newlin:42,newlinestripp:77,next:[1,28,31,39,42,48,77,109,113,114],nice:[1,3,9,30,102,109],nick:102,nielsen:107,nix:109,no_instru:114,nobodi:102,node:30,nois:21,noisi:17,non:[17,28,81,102,114],none:[2,3,4,6,7,10,14,15,16,17,18,20,21,23,30,31,33,34,36,37,39,41,42,43,46,47,48,49,50,51,54,56,57,59,60,61,62,64,65,66,70,72,74,75,76,77,80,82,84,85,95,102],nonetyp:[33,57],noofpoint:28,noofseqelem:28,nor:102,norm:[17,22],normal:[12,31,37,38,41,48,49,51,62,77,105,113],notabl:30,notat:[2,51],notch_filt:15,note:[1,2,3,8,10,17,21,24,25,28,30,31,33,37,48,49,51,52,54,61,64,68,71,72,75,76,77,80,82,93,108,110,113,114],notebook:[1,2,11,12,14,15,16,17,21,27,28,30,97,99,106,108,109,110,111],noth:[21,59,61],notic:[1,21,26],now:[0,6,8,9,10,15,17,24,25,26,28,30,31,48,85,97,102,109,110,114],nplc:[7,11,13,14,18,20,21,77,106],nplc_list:62,npt:[16,26,74],nr_averag:66,nr_bytes_written:14,nrep:[28,77],num:[6,12,13,14,51,84],num_chan:64,num_channel:77,num_port:26,number:[0,1,3,7,8,9,10,11,13,14,18,20,24,25,26,28,30,39,42,43,46,48,49,51,54,57,58,59,61,62,64,65,66,68,72,73,74,76,77,102,105,110,113,114],number_format:42,number_of_channel:59,number_of_paramet:114,numdac:65,numer:[42,113],numpi:[0,3,4,8,9,11,12,13,14,17,18,20,23,24,25,27,28,29,30,31,36,48,68,76,77,99,113,114],numpoint:77,numval:[13,14],object:[0,1,2,6,7,9,10,14,15,16,18,20,23,26,27,29,30,31,33,36,38,40,41,46,48,49,51,52,59,61,64,75,80,82,85,102,103,110,113,114],obsolet:28,obtain:[1,49,59],obviou:46,occasion:40,occupi:[39,77],occur:[1,17,58,61,65,66,76,110,113],oct:15,oem:77,off:[3,7,11,13,14,19,21,22,24,25,26,27,30,41,64,69,72,74,77],off_modul:74,offer:[0,1,114],offload:113,offset:[16,17,19,27,30,77],often:[1,5,37,102,105],ohm:[16,30],old:[15,21,26,27,98],oldest:22,oldn:30,omit:[31,48,49,72],on_modul:74,onboard:21,onc:[0,5,8,9,10,36,40,77,102,105,109,113,114],one:[1,2,3,8,9,10,12,15,17,19,21,24,25,26,27,28,30,31,34,36,37,40,41,42,46,48,49,51,56,57,58,59,61,64,65,74,76,77,82,102,105,106,110,113,114],ones:[69,74,77,102],onli:[3,4,8,10,16,17,18,24,25,26,27,28,30,31,36,37,39,41,42,48,49,51,52,58,59,62,64,68,69,71,72,74,76,77,82,102,106,113],onlin:1,onto:[77,113],opc:77,open:[4,7,40,43,54,58,72,84,98,102,108,109,113],opendevic:75,oper:[1,3,14,16,31,32,38,48,51,58,61,77,106,110,113,114],oppos:[3,28],opposit:83,optim:108,option:[2,3,22,28,31,33,34,36,37,39,40,41,43,44,48,49,51,52,54,56,57,62,66,72,76,77,80,82,95,99,102],order:[2,3,10,17,28,30,34,37,41,56,68,70,102,110,113],ordereddict:[0,37],org:[1,54],organ:[102,106],orient:113,origin:[11,57,113],osc:30,oscil:30,oscillator2_freq:30,oscilloscop:[77,106],osx:109,other:[1,2,3,8,24,25,26,28,30,39,40,46,53,55,59,61,71,76,81,83,84,102,108,113],otherclass:3,otherwis:[3,28,36,58,59,61,102,113],our:[26,42,102],out:[0,3,5,8,10,14,17,18,22,24,25,26,27,30,31,32,48,58,59,64,66,72,102,107,108,111,113,114],outer:[1,8,10,36,42,113],output:[3,7,9,12,16,18,19,20,21,23,24,25,26,28,41,46,49,58,61,64,65,66,68,71,73,74,76,77,81,102,106,113],output_interfac:15,output_waveform_name_n:77,outsid:[55,59,65,66,68,77],over:[0,3,10,26,30,33,40,46,51,52,59,75,102,105,113,114],overhead:[13,113],overid:72,overload:[61,76],overrid:[3,37,39,40,64,68,72,77,82],overridden:1,overview:[10,21,66,77,106,110,112],overwrit:[2,18,20,65,77,82,110],overwritten:39,ovsr:76,own:[2,3,10,26,41,58,59,84,102,113],oxford:[23,29,57,97,100],oxfordinstruments_ilm200:72,oxfordinstruments_ips120:72,oxfordinstruments_kelvinox_igh:72,p1_set:0,p_label:3,p_measur:1,p_measure2:1,p_name:3,p_sweep2:1,p_sweep:1,p_unit:3,pack:77,pack_waveform:77,packag:[1,2,14,30,93,102,108,110],packard:[7,60],packed_waveform:77,pad:3,page:[91,93,102,113],pai:102,pair:11,panel:[30,61,77,108],panic:113,par:28,paraemt:57,parallel:72,param:[8,28,29,30,49,59,64,65],param_id:14,param_nam:[36,64],param_out:14,paramet:[1,5,6,7,9,10,12,16,17,19,20,21,24,25,26,28,29,30,31,32,33,34,36,37,38,39,41,42,43,44,45,46,48,51,52,53,54,55,56,57,58,59,61,62,64,65,66,68,69,70,71,72,74,75,76,77,79,80,81,82,83,84,85,91,94,96,99,102,103,106,108,112],parameter_class:3,parameter_nam:95,params_to_skip_upd:[64,74],paramt:[0,56,114],parent:[31,33,41,45,48,49,52,61,62,63,64,74,76,77],parenthes:102,parmet:66,pars:[28,41,73,77],parse_awg_fil:[28,77],parse_multiple_output:73,parse_on_off:[69,74],parse_output_bool:77,parse_output_str:77,parse_single_output:73,parse_string_output:73,parsebool:77,parseint:77,parser:[3,41,76,77],parsestr:[60,77],part:[2,3,9,26,31,39,48,49,66,75,76,97,102,105,106,110,113],partial:[73,114],particular:[3,8,17,28,30,105,113],particularli:[3,41,44,76,113],pass:[1,3,39,41,52,53,57,59,62,66,70,74,79,82,83,84,102,110,113,114],pat:77,patch:102,path:[2,10,28,35,37,38,40,59,72,77,80,82,109,113],pattern:77,paus:17,pci:[3,58],pcie:[58,59,97],pcie_1751:57,pcie_link_spe:[16,59],pcie_link_width:[16,59],pdf:64,pend:77,pep8:102,per:[3,12,13,14,16,21,31,36,48,59,61,64,65,70,77,108,114],percent:[30,68],percentag:72,perf:102,perfom:11,perform:[1,10,11,15,16,17,21,24,25,30,40,49,54,59,65,68,75,77,81,98,100,102,113],perform_safety_check:70,perhap:[14,113,114],period:[37,83,84],persist:[43,70,72],persistent_switch:70,person:102,phase:[8,15,22,26,30,59,68,74,113],phase_delay_input_method_n:77,phase_n:77,phi:17,phi_measur:17,physic:[3,24,25,37,57,61,80,82,85,113],pick:102,pictur:113,piec:[105,113],pillar:113,pin:58,ping:102,pinki:102,pip:[102,108,109],pixel:83,place:[1,2,24,25,62,102,113],plai:10,platform:66,pleas:[21,28,30,64,77,102,107],plese:107,plot:[0,2,14,15,16,17,20,21,22,24,26,27,28,30,36,91,95,98,99,106,109,110,113],plot_1d:10,plotlib:[2,110],plotq:20,plotter:30,plt:[1,9,11,12,14,17,18,20,23,26,27,28,29,30,84],plu:110,plubic:93,plug:[12,62,108],plugin:102,plural:8,point:[10,11,12,13,14,15,17,26,30,34,38,42,46,56,68,72,74,75,77,91,108,113],poitn:77,polar:65,polish:108,poll:[12,15],polyfit:17,poor:19,popul:[36,44,45],port:[17,19,26,29,43,58,61,70,72,75,108],port_count:58,posit:[41,113],possibl:[8,19,26,28,71,72,76,77,110,113],post:102,post_acquir:59,post_delai:49,post_trigg:66,posttrigger_s:66,potenti:[21,37,46,108,113],power:[17,21,26,62,70,72,74,75,97,102,113],power_limit:32,ppi:58,pprint:[6,7],practic:102,pre:[80,106],pre_acquir:59,pre_start_captur:59,preamp:[3,71,76],preamplifi:[3,71,76],prece:68,preced:42,precis:[19,65,68,96],preconfigur:2,predefin:[28,53,76,77,106],prefer:[108,113],prefix:102,preliminari:11,prepar:[12,13,14,30,59,62,68,77,113],prepare_buffer_readout:[15,76],prepare_curvedata:[27,77],prepare_for_measur:75,prepare_scop:[30,68],preparesweep:77,prepend:[36,77],preprocessor:58,prerequisit:106,present:[3,15,71,76,102,113],preservechannelset:77,preset:75,preset_data:36,press:[1,77,111],pretrigger_s:66,pretti:[24,25,64,68],prevent:[3,31,48,49,59,65,77],previou:[1,6,49,61,102],previous:[68,77,113],primari:108,princip:41,print:[0,1,2,3,8,9,10,11,13,14,16,17,18,20,21,23,24,25,28,29,30,61,62,64,66,68,77,114],print_al:60,print_cont:77,print_modstatu:60,print_overview:[24,25,64],print_readable_snapshot:[10,15,21,26],print_sweeper_set:[30,68],printslop:[24,25,64],prior:[57,61],prioriti:[39,113],privat:[59,91],privileg:58,probabl:[41,59,74,102,113],problem:[28,66,102],procedur:[64,113],process:[9,16,59,102,113],produc:[26,113],profit:109,program:[1,59],programm:[59,70,77],programmat:[2,77,108],progress:46,progress_interv:[14,46],project:[3,102],proper:[30,65],properli:[17,77],properti:[2,58,110,113],protect:65,protocol:[16,65,113],provid:[1,2,8,16,24,25,36,39,41,43,49,52,59,62,66,69,78,82,83,84,102,105,106,109,113],proxi:113,psu:72,pts:[15,30],pull:[14,30],pull_from_serv:[6,9,16,20,113],puls:[24,25,28,60,97],purchas:30,purpos:[3,8,113],push:113,push_to_serv:[6,20,113],put:[17,28,42,64,72,77,113,114],pxie:62,py_head:[57,66],pyenv:2,pyplot:[1,9,11,12,14,17,18,20,23,26,27,28,29,30],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,20,22,24,91,98,100,109],pyqtmaxplot:110,pyqtplot:110,pyspcm:66,pytest:102,python3:2,python:[3,10,37,58,59,65,66,72,77,80,82,95,102,108,109,113],pyvisa:[14,54,113],pywin32:100,qcmatplotlib:[0,2,16,91],qcode:[0,1,4,5,6,7,12,13,14,91,93,102,103,104,107,112,113,114],qcodes_colorbar:1,qcodes_config:110,qcodesrc:2,qcodesrc_schema:26,qdac:[11,13,57,97,98,99,100,106],qdac_ch01_v_set:13,qdac_ch02_v_set:14,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[57,106],qdac_setpoint:13,qdacchannel:64,qdacmultichannelparamet:64,qdev:[11,13,14,18,24,25,57,108,110],qtlab:75,qtplot:[0,2,10,14,20,22,24,91,106],qtwork:65,quadratur:8,quantiti:42,quantum:109,queri:[18,24,25,30,64,75,76,77,113],querysweep:75,question:[62,64,102],queue:[18,22,28,61,62,77],quickli:28,quiet:14,quirk:94,quit:[1,32,102,113],quot:42,qutech:57,qutech_controlbox:69,r_offset:15,rack:65,rad_to_deg:69,rainbow:[9,39],rais:[2,3,14,17,18,32,33,49,52,55,57,58,59,62,65,68,69,76,77,78],raiseexc:76,ramiro:75,ramp:[3,10,14,17,19,22,24,25,49,61,70,72,77],ramp_al:61,ramp_rat:[17,61],ramptim:24,ran:4,randint:[5,10],random:[2,5,10,17,28,62],rang:[3,7,8,11,13,14,16,22,24,25,26,28,30,58,59,62,65,66,68,75,77,113,114],range_auto:7,rangei:7,rangev:7,rate:[15,16,17,30,59,61,65,66,70,76],rather:[19,30,62,102,114],ravel:113,raw:[13,65,105,106,108],raw_val:13,raw_valu:49,reach:[17,76,102],read:[3,4,8,10,17,18,20,24,25,27,37,40,41,42,43,54,58,61,64,65,66,71,72,74,76,77,80,82,102,105,106,109,110,113],read_metadata:40,read_one_fil:40,read_pin:58,read_port:58,read_stat:64,readabl:[10,49,59,96,102],reader:10,readi:[8,10,30,77,82,102,109],readili:1,readm:102,readout:[64,66,98],readthedoc:54,real:[3,10,26,62,71,76,102,105,108,113,114],realli:[24,25,36,62,109,113],realtim:[102,108],reappear:102,rear:77,reason:[10,17,102,114],recal:10,receiv:[1,22,61,76],recent:[2,14,18,30,49],recommend:102,reconnect:113,reconsid:21,reconstruct:40,record:[10,16,39,68,77,82,108,113],records_per_buff:[16,59],recycl:59,redirect:[36,96],reduc:41,ref:[27,113],refactor:102,refer:[10,30,36,59,91,102,104,113,114],referenc:[31,48,49,113],reference_clock_frequency_select:77,reference_multiplier_r:77,reference_sourc:[15,77],refernc:75,reflect:74,refriger:72,reg:[29,57,66],regard:[59,113],regardless:102,regist:[66,76,102],registri:72,regular:[3,5,113],reimport:110,reinvent:102,reject:75,rel:[10,26,37,38,80,82,113],relat:[1,113],relationship:113,releas:[40,108],relev:[14,49,59,76,77],reli:[1,3,59],reliabl:[59,113],reload:[4,40,57,113],remain:59,rememb:[13,17,26,27,68],remot:[7,18,23,72,83,113],remoteinstru:[7,113,114],remoteparamet:113,remov:[22,26,30,36,37,65,68,72,74,77,97,99,102,106],remove_signal_from_sweep:68,rep:77,repeat:[33,102,113],repet:77,repetit:[28,77],repetition_r:77,replac:[1,61,99],repo:[2,102],report:[103,108],repositori:[102,106,108],repr:[14,61],reprec:26,repres:[8,42,49,59,62,76,113],represent:[10,58,85,105],reproduc:[102,113],request:[13,17,103,113],requir:[8,10,30,31,41,48,51,52,54,58,68,74,82,100,102,110,113,114],res:18,research:[76,98],resend:77,resend_waveform:77,reserv:15,reset:[3,8,10,12,14,15,26,28,41,42,60,65,66,69,70,73,74,76,77],reset_modul:76,resistor:12,resit:57,resolut:[7,10,65,99],resolv:62,resourc:[14,40,54,58,62,64,76,113],respect:[1,31,48,58,77],respons:[3,18,41,43,49,54,61,64,76],ressourc:77,restart:[66,110],restrict:[76,105],restructur:102,result:[1,4,8,39,59,65,75,77,106,113],ret:14,ret_cod:14,ret_valu:14,retriev:[22,49,77,110],retur:77,return_count:14,return_pars:41,return_self:77,reus:113,revers:[49,51],review:[102,108],revion:61,revok:[24,25],rewrit:113,rewritten:102,rf_off:26,rf_on:26,rho:17,richer:113,rid:36,right:[1,17,28,57,59,76,85],rigol:57,rigol_dg4000:73,rise:[3,7,30],risetim:[3,7,20],robust:3,rohd:[74,106],rohde_schwarz:[26,57],rohdeschwarz_sgs100a:74,rohdeschwarz_smr40:74,rol:75,ron:77,root:[4,37,38,77,80,82],rotate_nvalv:72,rough:103,round:[65,99,113],round_dac:65,routin:[62,64],row:[1,42,74],rrm:30,rs232linkformat:65,rs_sgs100a:74,rs_smb100a:74,rst:[3,41,102],rto:72,rtoz:23,rtype:14,rule:17,run:[0,1,5,6,9,10,11,12,13,14,15,16,17,18,20,22,26,27,30,46,57,58,68,77,95,106,108,110,113,114],run_mod:77,run_stat:77,run_temp:8,run_to_field:72,run_to_field_wait:72,runtest:[57,62,69,78],runtim:[2,110],runtimeerror:30,s11:26,s12:26,s21:26,s22:26,s44:26,sa124_max_freq:75,sa124_min_freq:75,sa44_max_freq:75,sa44_min_freq:75,sa_api:75,sa_audio:75,sa_audio_am:75,sa_audio_cw:75,sa_audio_fm:75,sa_audio_lsb:75,sa_audio_usb:75,sa_auto_atten:75,sa_auto_gain:75,sa_averag:75,sa_bypass:75,sa_idl:75,sa_iq:75,sa_iq_sample_r:75,sa_lin_full_scal:75,sa_lin_scal:75,sa_log_full_scal:75,sa_log_scal:75,sa_log_unit:75,sa_max_atten:75,sa_max_devic:75,sa_max_gain:75,sa_max_iq_decim:75,sa_max_rbw:75,sa_max_ref:75,sa_max_rt_rbw:75,sa_min_iq_bandwidth:75,sa_min_max:75,sa_min_rbw:75,sa_min_rt_rbw:75,sa_min_span:75,sa_power_unit:75,sa_real_tim:75,sa_sweep:75,sa_tg_sweep:75,sa_volt_unit:75,sabandwidthclamp:75,sabandwidtherr:75,sacompressionwarn:75,sadevicenotconfigurederr:75,sadevicenotfounderr:75,sadevicenotidleerr:75,sadevicenotopenerr:75,sadevicetypenon:75,sadevicetypesa124a:75,sadevicetypesa124b:75,sadevicetypesa44:75,sadevicetypesa44b:75,saexternalreferencenotfound:75,safe:[17,65,72,102,113],safe_reload:75,safe_vers:65,safeti:[17,26,62,72],safrequencyrangeerr:75,safti:26,sai:[37,80,82,102,114],said:[36,77],sainterneterr:75,sainvaliddetectorerr:75,sainvaliddeviceerr:75,sainvalidmodeerr:75,sainvalidparametererr:75,sainvalidscaleerr:75,same:[1,3,5,8,11,16,17,34,36,42,48,51,56,58,68,76,77,84,102,113,114],sampl:[13,15,16,30,51,52,57,59,66,113],sample_count:[13,14],sample_r:[16,59],sample_timer_minimum:[13,14],samples_per_buff:59,samples_per_record:[16,59],sampling_r:77,sane:35,sanocorrect:75,sanoerror:75,sanotconfigurederr:75,sanullptrerr:75,saovencolderr:75,saparameterclamp:75,sastatu:75,sastatus_invert:75,satisfi:17,satoomanydeviceserr:75,satrackinggeneratornotfound:75,saunknownerr:75,sausbcommerr:75,save:[0,10,14,28,31,36,37,40,42,48,49,59,77,81,82,95,102,105,106,108,113,114],save_to_cwd:2,save_to_env:2,save_to_hom:[2,110],savvi:108,sawtooth:22,sbench6:66,sca:1,scalar:[5,8,10,31,48,81,113],scale:[8,26,27,30,49,57,75],scale_param:8,scale_set:8,scale_v:8,scan:26,scenario:[62,102],scene:30,scf:1,schema:[2,26,35,110],schema_cwd_file_nam:35,schema_default_file_nam:35,schema_env_file_nam:35,schema_file_nam:35,schema_home_file_nam:35,schouten:65,schwarz:[74,106],scientist:109,scope:[27,68,77,106],scope_average_weight:30,scope_channel1_input:30,scope_channel2_input:30,scope_channel:30,scope_correctly_built:30,scope_dur:30,scope_length:30,scope_measur:27,scope_mod:30,scope_samplingr:30,scope_seg:30,scope_segments_count:30,scope_trig_delai:30,scope_trig_en:30,scope_trig_gating_en:30,scope_trig_gating_sourc:30,scope_trig_holdoffmod:30,scope_trig_holdoffsecond:30,scope_trig_hystabsolut:30,scope_trig_hystmod:30,scope_trig_level:30,scope_trig_refer:30,scope_trig_sign:30,scope_trig_slop:30,scopearrai:77,scopedata:30,scpi:61,screen:[77,109],script:[21,77,106,108,114],sd_awg:62,sd_common:62,sd_dig:62,sd_modul:62,sdk:59,sdk_version:[16,59],seamless:62,search:[39,102,113],sec:77,second:[1,6,8,10,15,22,30,31,36,37,43,46,48,49,54,55,59,61,65,70,72,76,77,82,83,84,107,113,114],section:[107,109],see:[0,1,2,5,9,17,22,24,27,28,39,40,43,49,52,54,59,65,66,74,77,83,102,113,114],seem:[42,66,102],seen:26,seg_siz:66,segm1_ch1:77,segm1_ch2:77,segm2_ch1:77,segm2_ch2:77,segment:[1,30,68,77],select:[16,17,59,68,77,102,109],self:[2,3,8,14,18,20,31,37,40,48,61,62,64,72,75,77,82,85,102,114],semant:108,semi:102,semicolon:72,sen:[3,7,20,71],send:[3,12,13,14,17,43,65,71,76,77,106,107],send_awg_fil:77,send_dc_puls:77,send_pattern:77,send_sequ:77,send_sequence2:77,send_waveform:77,send_waveform_to_list:[28,77],sens:102,sens_factor:[3,7,71],sens_x:20,sensit:[3,7,15,71],sensor:[63,106],sensorchannel:63,sent:[3,12,41,49,72,77,105,113],separ:[8,21,40,42,48,72,85,108,113,114],seper:[61,77],septemb:21,seq:77,seq_elem:28,sequanti:56,sequecn:77,sequenc:[8,28,31,36,46,48,51,61,77,81,84,113],sequence_cfg:77,sequence_length:28,sequence_po:28,sequenti:[30,34,114],seri:[3,69,73,77],serial:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,105],serial_numb:20,serialis:77,serv:3,server:[16,18,23,30,59,68,113,114],server_err:18,server_nam:[4,7,16,23,60,66,114],session:[9,10,14,37,80,82,102],set:[0,1,2,3,4,5,7,8,9,11,14,15,16,17,18,19,20,21,22,23,26,28,34,36,37,40,42,46,49,51,52,56,57,58,59,61,62,64,65,66,68,70,71,72,74,75,76,77,79,80,81,82,105,106,108,110,113,114],set_al:61,set_arrai:36,set_channel_or_trigger_set:66,set_channel_set:66,set_cmd:[1,3,10,49,50,72,114],set_current_folder_nam:77,set_dacs_zero:65,set_default:77,set_delai:10,set_ext0_or_trigger_set:66,set_ext_trig:74,set_field:70,set_funct:59,set_jumpmod:77,set_level:77,set_measur:[6,7,9,18,20],set_mix_chamber_heater_mod:72,set_mix_chamber_heater_power_rang:72,set_mod:77,set_mode_volt_dc:77,set_mp_method:[6,9,16,18,20,23],set_pars:[49,50],set_persist:72,set_point:27,set_pol_dacrack:65,set_pulsemod_sourc:74,set_pulsemod_st:74,set_ramp:19,set_remote_statu:72,set_sequ:77,set_set_point:27,set_setup_filenam:77,set_smooth:76,set_sqel_event_jump_target_index:77,set_sqel_event_jump_typ:77,set_sqel_event_target_index:[28,77],set_sqel_goto_st:77,set_sqel_goto_target_index:[28,77],set_sqel_loopcnt:[28,77],set_sqel_loopcnt_to_inf:[28,77],set_sqel_trigger_wait:[28,77],set_sqel_waveform:[28,77],set_statu:74,set_step:10,set_sweep:74,set_titl:[1,28],set_to_fast:72,set_to_slow:72,set_valu:52,set_voltag:76,set_ylim:28,setboth:114,setbothasync:114,setformatt:4,setlevel:[4,27,28,30],setpoint:[0,1,4,5,6,8,10,11,12,13,14,16,17,26,27,31,36,42,48,62,68,72,74,76,77,81,97,113,114],setpoint_arrai:[31,48],setpoint_label:[8,31,48],setpoint_nam:[8,31,48,68],setpoint_unit:[31,48],settabl:[49,52,105,113],setter:105,settl:[30,102],setup:[26,66,74,85,106,108],setupclass:[57,62,69],setx:114,sever:[62,68,72,102,105,113],sg384:[57,96],sgs100a:57,shadow:2,shape:[0,1,3,4,6,8,10,11,12,13,14,15,16,21,26,27,28,30,31,36,48,62,68,74,84,113,114],share:[19,107],shared_kwarg:114,shell:108,shift:30,ship:[2,30],shortcut:83,shorthand:1,shot:[21,94,102,106],should:[3,10,13,16,17,22,26,27,28,30,31,33,36,37,39,40,41,43,45,46,48,49,51,52,53,57,58,59,61,62,71,72,76,77,85,102,109,113],shouldn:36,show:[1,5,9,10,16,17,18,20,23,24,25,102],show_subprocess_widget:[6,9,16,18,20,23],show_window:83,shown:[1,17],side:[17,28,49,105,109,114],sig:30,sig_gen:102,signadyn:62,signal:[10,27,28,59,66,68,69,74,75,76,77,97,106,113],signal_hound:57,signal_input1:30,signal_input1_ac:30,signal_input1_diff:30,signal_input1_imped:30,signal_input1_rang:30,signal_input1_sc:30,signal_output1:30,signal_output1_ampdef:30,signal_output1_amplitud:30,signal_output1_autorang:30,signal_output1_en:30,signal_output1_imp50:30,signal_output1_offset:30,signal_output1_on:30,signal_output1_rang:30,signal_to_volt:59,signalhound_usb_sa124b:75,signatur:[28,40,58,77],significantli:26,silent:62,sim900:76,sim928:[57,97],sim:76,similar:[1,10,74,77,113],similarli:[25,30,113],simpl:[5,8,10,12,15,16,26,27,32,38,41,55,66,84,102,106,108,113],simpler:102,simplest:113,simpli:[2,30,41,49,77],simplifi:[3,9,61,102],simul:[105,108,112,113],simultan:[15,25,61],simultani:70,sin:[28,73],sinc:[1,3,10,17,30,61,68,72,77,113,114],sine:27,sing:26,singl:[1,8,10,18,20,21,26,31,42,49,51,58,59,61,63,64,66,70,77,81,84,94,102,105,106,113],single_iq:8,single_set:8,single_software_trigger_acquisit:66,single_trigger_acquisit:66,singleiqpair:8,sit:21,site:[1,2,14],situat:[10,42,113],six:[24,25,58],size:[1,6,10,31,37,48,49,59,65,66,76],skewed_parabola:4,skill:102,skip:102,slack:[98,99,100,102,107,108],slash:38,sleep:[3,13,14,15,18,20,23,24,25,27,28,52,55,65],slice:[9,26,51,105],slider:1,slider_demo:1,slightli:[21,96],slope:[14,16,17,22,24,25,64],slot:[19,61,62,76],slot_nam:76,slow:[24,25,72,113],slow_external_clock:3,slower:28,small:[21,24,25,26,30,58,94,102],smaller:[26,76],smart:[72,102],smooth_timestep:76,smoothli:76,smr40:57,smu:3,smua:[12,21,77],smub:[21,77],snap:7,snapshot:[0,3,6,7,10,16,20,31,33,36,43,44,48,49,54,76,77,85,96,99,100,113],snapshot_bas:[64,74,77],snapshot_get:[31,48,49],snapshot_valu:[31,48,49],socket:[43,63],soft:77,softwar:[3,22,30,64,68,77,100,102,106,113],software_revis:20,software_triggered_read:13,solv:102,some:[0,3,10,25,30,31,41,43,48,49,51,61,62,66,76,77,102,106,110,113],somebodi:102,somehow:113,someon:[58,102],someth:[2,9,17,28,30,59,62,64,102,110,113],sometim:[3,8,10,30,42,113],soon:[61,102],sophist:59,sort:[28,42],sort_kei:7,sourc:[3,6,9,10,16,17,21,26,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,102,103,108,109,113],sourcemet:[12,77,97],sourcerange_i:21,sourcerange_v:[12,21],space:[24,25,31,48,49,51,102,105],span:[26,75],spawn:[6,9,16,18,20,23],spc_tm_high:66,spcerr:[57,66],spcm0:66,special:[3,10,31,48,49,102,113],specif:[16,28,37,61,64,65,72,77,102,105,113],specifi:[1,17,22,28,31,40,46,48,57,58,62,65,68,69,75,76,77,78,84,85,102,110,113],specifiedta:77,spectrum:[57,96,97,113],speed:[11,13,26,49,59,113],speedup:99,spheric:17,spherical_measur:17,splat:1,split:[3,13,26,29],spread:107,sqel:77,sql:113,squar:27,squencer:77,sr560:[3,57],sr830:[57,95,98,106],sr865:57,src:[2,4,26],srs_sg384:76,stabl:54,stackoverflow:1,stage:113,stai:[102,114],staircas:10,stale:113,stand:17,standalon:108,standard:[1,3,13,26,49,61,64,76,108],standardparamet:[1,3,6,8,10,16,20,57,65,91,105],stanford:[76,98],stanford_research:[3,15,57],stanford_research_system:15,stanford_sr865:76,start:[0,1,3,6,9,10,11,12,13,14,15,16,20,22,26,30,35,36,37,42,49,51,53,58,59,61,72,74,76,77,80,82,102,106,113],startcaptur:16,startup:[24,25,64],stat:[69,74],state:[3,24,25,28,30,58,61,77,102,105,108,113],statement:[65,102],station1:[18,20],station2:[18,20],station:[4,5,6,7,9,10,11,14,18,20,21,26,30,31,44,46,48,49,76,91,103,113],stationq:108,statu:[3,29,30,59,62,64,65,69,72,74,75,76,77],status:76,statuscod:77,std:[12,13],stderr:4,stdlib:58,stdout:[14,66],step:[1,3,10,11,21,26,46,49,50,51,65,76,77,78,109,114],step_attenu:69,stepper:72,still:[24,25,28,36,102,113],stop:[1,15,22,26,28,30,51,74,77],storag:[77,108,113],store:[0,2,4,33,36,37,40,49,57,59,77,82,85,99,113],str:[3,14,31,33,34,35,36,37,38,39,41,43,44,45,48,49,54,56,57,61,62,64,65,68,71,72,74,76,77,79,80,82],straightforward:[28,113],strang:30,strategi:61,stream:[14,16,30],streamhandl:4,strftime:39,strictli:68,string:[2,3,4,14,18,20,31,33,39,40,41,42,48,49,59,62,65,66,68,70,72,73,74,76,77,82,85,102,105,110,113],strip:[3,42],strive:102,strongli:[1,3,30,102],struct:12,structur:[37,40,59,80,82,105,110,113],struggl:102,stuf:110,stuff:[3,17,72,77,106],stupid:17,subclass:[3,8,31,33,40,41,43,48,49,52,54,59,105],subject:[102,113],sublim:102,sublimelint:102,submit:114,submodul:44,subplot:[17,26,27,30,84,106],subprocess:[9,16,18,20,23],subscrib:68,subsequ:53,subset:26,substitut:3,subtract:30,succes:77,success:49,successfulli:[17,58],succinct:102,suit:[4,62,69,74,78,108],sum:[0,114],summari:106,superclass:3,superconduct:72,suppli:[3,38,40,70,72,97,113],support:[0,1,2,3,4,10,21,22,24,25,26,27,28,30,44,45,52,58,62,68,72,76,77,98,99,102,110,113],suppos:72,suppress:[3,7,20,77],supress:62,sure:[11,15,17,30,72,77,102,105,109],sv2:51,sv3:51,sv4:51,swap:108,sweep:[0,5,6,10,12,13,14,21,26,30,33,34,49,51,52,56,68,72,74,75,77,94,105,106,108,112,113],sweep_val:[0,1,114],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[6,10,46],sweepabl:56,sweepdata:30,sweeper:[68,97,106],sweeper_bw:30,sweeper_bwmod:30,sweeper_ord:30,sweeper_param:30,sweeper_samplecount:30,sweeper_start:30,sweeper_stop:30,sweeper_xmap:30,sweeper_xxx:30,sweepfixedvalu:[91,105],sweepvalu:[46,91,103],swept:[12,114],symmetri:17,sync:[18,20,24,25,27,30,106,113],sync_delai:25,sync_dur:25,sync_filt:15,sync_output:22,sync_sourc:22,synchron:[61,113],syntax:108,synthes:97,sys:[4,14,26],system32:[3,59,75],system:[3,16,31,35,41,48,49,59,72,76,77,85,94,96,110,113],system_id:[3,16,59],sztypetonam:66,t_actual:17,t_set:17,t_start:[11,14],t_stop:[11,14],tab:[30,42,102],tabl:[77,106,110,113],tag:102,tailor:1,take:[0,10,14,25,31,32,33,46,48,49,61,64,66,74,77,98,102,105,108,114],taken:[66,74,77],talent:102,talk:[3,71,76,113,114],target:[17,51,52,59,77],target_curr:17,target_field:17,task:[5,10,14,22,46,55,91,95,102,105,113],tcpip0:[3,11,12,13,14,21,22,26,28,74],tcpip:113,tear:21,tech:108,techniqu:102,technolog:[7,11,13,14,22],tektp:27,tektron:100,tektronix:[3,7,12,18,20,21,57,97,98,106],tektronix_awg5014:[28,77],tektronix_awg5200:77,tektronix_awg520:77,tell:[40,42,55,102,113],temp0_0:[24,25],temp2_1:[24,25],temp5_2:[24,25],temperatur:[63,72,97,106],templat:102,temporari:[37,82],tempx_i:[24,25],tend:3,tens:102,term:[14,102],termin:[3,7,9,12,14,16,18,20,23,42,43,54,64,66,70,72,108,109,113],tesla:[17,70,72],test:[3,5,10,11,13,17,39,43,44,58,61,62,64,65,69,70,73,74,77,78,96,105,106,108,113],test_ami430:17,test_attenu:78,test_awg_fil:28,test_channel_amplitud:62,test_channel_frequ:62,test_channel_offset:62,test_channel_phas:62,test_channel_wave_shap:62,test_chassis_and_slot:62,test_chassis_numb:62,test_clock_frequ:62,test_closed_fil:4,test_dataset_clos:4,test_dataset_finalize_closes_fil:4,test_dataset_flush_after_writ:4,test_dataset_with_missing_attr:4,test_double_closing_gives_warn:4,test_field_vector:17,test_firmware_vers:[69,78],test_frequ:69,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[57,102],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:102,test_metadata_write_read:4,test_on_off:69,test_open_clos:62,test_phas:69,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:69,test_pxi_trigg:62,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:77,test_serial_numb:62,test_slot_numb:62,test_snapshot:102,test_str_to_bool:4,test_suit:57,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:69,testcas:57,testhdf5_format:4,testkeysight_m3201a:62,testkeysight_m3300a:62,testmetadat:102,testsd_modul:62,testsweep:[0,10,11,14,18,20],testweinschel_8320:78,text:[3,14,73,102,105,113],texttestrunn:4,textual:113,tg_thru_0db:75,tg_thru_20db:75,than:[1,3,24,25,26,30,46,49,102,108,113],thank:102,thebrain:102,thei:[2,5,9,10,16,18,20,23,36,37,46,53,59,71,76,77,102,105,110,113],them:[1,2,3,8,9,21,24,25,36,57,70,72,76,77,102,106,110,113,114],theme:83,theoret:113,therebi:22,thermometri:29,theta:17,theta_measur:17,thi:[0,1,2,3,5,6,8,9,10,11,13,14,16,17,18,20,21,23,24,25,26,27,28,30,31,33,36,37,39,40,41,42,43,44,45,46,48,49,52,54,55,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,84,85,91,93,102,103,105,108,109,110,112,113,114],thing:[3,9,10,16,23,41,46,51,52,53,55,62,69,78,102,105,107,109,113,114],think:[102,110,113],third:113,those:[5,8,36,39,41,105,113],though:[1,3,49,51,52,113],thread:[65,113],thread_map:14,threadpoolexecutor:114,three:[1,8,24,25,30,42,51,70,77,113],through:[10,24,25,28,30,36,37,102,109,113,114],thu:[102,113],tick:[1,16],tight_layout:[1,26,28],tim:22,time:[1,3,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,39,40,46,49,51,52,58,61,62,66,68,75,76,77,102,106,108,113,114],time_const:15,timeit:[12,13],timeout:[7,14,15,16,18,21,28,30,43,54,72,76,77],timeout_tick:[16,59],timer:[18,20],timestamp:[108,113],titl:1,tmpfile:[29,72],to_setpoint:72,to_zero:72,toc:10,todo:[3,36,64,65,68,69,76,79,102],togeth:[1,5,28,74,113],toggl:19,tolist:3,too:[3,26,31,48,49,58,74,102],tool:[1,102],top:1,toplevel:99,tortur:102,total:[3,8,26],touch:102,toymodel:[6,9],tps1:27,tps1_scope_measurement_0:27,tps1_scope_measurement_1:27,tps2012:[57,106],tps2012channel:77,tps:27,trace:[1,10,26,27,30,59,66,68,74,83,84],traceback:[2,14,18,20,30,108],tracenotreadi:77,track:[59,61,75,113],trail:102,transer:16,transfer:[28,77],transfer_offset:[16,59],transform:[3,17,41,49,55,59],translat:[3,40,68],transmiss:74,trcl:76,treat:[61,85,113],tree:[106,109],trg:[13,14],trig:[30,77],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:66,trig_slope_posit:16,trig_wait:[28,77],trigger:[3,14,16,22,27,28,30,66,74,77,100,106],trigger_count:13,trigger_delai:[16,59],trigger_engine1:[16,59],trigger_engine2:[16,59],trigger_input_imped:77,trigger_input_polar:77,trigger_input_slop:77,trigger_input_threshold:77,trigger_level1:[16,59],trigger_level2:[16,59],trigger_level:27,trigger_oper:[16,59],trigger_slop:14,trigger_slope1:[16,59],trigger_slope2:[16,59],trigger_sourc:[13,14,27,77],trigger_source1:[16,59],trigger_source2:[16,59],trigger_typ:27,triton1_thermometri:29,triton:[57,97,106],trival:114,trivial:[1,102],trivialdictionari:59,troubleshoot:113,truncat:102,trust:49,truthi:[10,32],ts_start:6,tst:4,tstart:[18,20],tudelft:65,tune:[65,102],tupl:[1,8,28,30,31,33,36,41,48,64,68,77,83,84],turn:[3,13,21,26,30,72,77],turoti:10,tutori:[5,8,106,112],two:[1,3,8,10,12,13,15,21,26,27,28,36,49,64,68,70,75,76,77,102,106,114],txt:65,type:[0,1,2,3,4,6,8,10,11,12,13,14,15,16,18,20,21,26,27,28,30,33,40,41,57,58,59,65,66,68,76,77,99,102,109,110,113,114],typeerror:[14,32,52,77],typic:[36,102,106,113],typo:102,ufh:97,uhf:[68,106],unambigu:3,unassign:[24,25],unavail:58,uncommit:59,uncondit:77,undefin:[22,58],under:77,underli:[105,113],underscor:102,understand:[102,113],undesir:10,undo:77,unfortun:62,unga:[2,4,102,110],ungaretti:102,unicorn:9,unimport:77,union:[33,36,41,49,51,57],uniqu:[36,62],unit:[0,3,6,7,8,10,16,20,24,25,30,31,34,36,48,49,56,59,68,72,76,96,97,102,113,114],unitless:[31,48,49],unittest:[4,57,102],unittest_data:4,unless:[24,25,36,102],unlik:57,unload:77,unlock:[72,74],unnecessari:8,unrecogn:58,unrel:113,unsav:113,unsign:77,until:[3,28,49,72,109,113],unus:82,updat:[1,2,7,10,14,24,25,26,27,30,31,35,48,49,59,64,68,72,74,77,83,84,85,100,105,109,113],update_acquisitionkwarg:[16,59],update_curr:[14,24,25,64],update_display_off:26,update_display_on:26,update_snapshot:85,upfront:[31,48],upgrad:30,upload:[12,28,77],upon:[1,22,24,25,57,76],uppercas:72,ups:17,upsteam:2,upto:77,usag:[8,39,52,62,66,72,77,103,106,112],usb:3,usb_sa124b:57,use:[0,1,2,3,5,8,10,12,26,27,28,30,36,39,41,42,49,51,52,54,55,57,59,62,64,66,69,70,71,72,76,77,78,84,102,105,107,109,110,112,113,114],use_lock:65,use_thread:14,used:[3,8,10,17,19,21,31,33,36,39,41,42,48,49,51,52,57,59,62,64,65,66,68,69,71,72,74,75,76,77,81,85,105,108,113],useful:[1,8,62,102,113],user:[1,2,4,6,14,18,26,28,49,54,58,59,68,76,77,108,109,110,113],usernam:102,userwarn:26,uses:[1,3,8,49,57,58,75,76,105,110,113],using:[1,3,10,17,21,24,25,28,30,35,40,42,54,62,65,66,70,75,77,102,105,108,113],usual:[10,44,45,64,77,113],util:[0,4,14,18,20,62,91,102,114],utility_freq:62,utopia:102,v11:27,v_amp_in:76,v_in:76,v_out:76,v_rang:[24,25],vaild:35,val:[0,3,6,8,10,30,49,50,51,52,59,77,114],val_map:[3,49,50],valid:[0,2,3,8,14,18,20,26,31,35,41,48,49,51,52,65,66,77,81,83,91,97,98,99,102,103,110,113,114],validate_al:41,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,11,12,14,15,16,17,18,20,21,24,25,26,28,30,31,34,35,36,39,41,42,46,48,49,51,52,56,57,58,59,61,62,64,65,68,70,72,74,76,77,105,113,114],valuabl:102,value_round:65,value_typ:2,valueerror:[33,55,57,62,68,69,77,78],valv:72,vari:[10,31,48,113],variabl:[3,42,49,62,77,102,105,106,110,113],variou:[102,105],vbw:75,vector:[17,70,113],vendor:[3,6,7,10,15,16,20,21,59,72,76],ver1:15,verbos:[4,10,57,60,62,64,66,74,77,102],verbose_channel:10,veri:[24,25,59,64,113],verifi:[3,17],vernier:76,versa:[17,21,30],version:[2,3,8,10,27,58,59,61,64,65,69,72,74,75,76,77,95,108,109,114],versu:[77,106],vertic:[27,30],vi_error_rsrc_nfound:113,vi_error_tmo:14,via:[1,3,9,25,30,44,45,63,71,76,77,85,106,113],vibuf:14,vice:[21,30],videobandwidth:75,view:[26,102],vipuint32:14,virtual:[3,70,71,74,76,109,114],virtualivvi:114,vis:17,visa:[3,14,28,49,54,60,61,62,63,64,65,69,72,73,74,76,77,78,79,113],visa_handl:[14,54,61,72],visainstru:[60,61,62,63,64,65,69,72,73,74,76,77,78,79,91,105,106,113],visaioerror:14,visalib:14,visess:14,visibl:[24,25],vision:102,visit:102,visual:108,visualis:28,viuint32:14,viwrit:14,vna:[26,75],vna_:26,vna_paramet:[26,74],vna_s11:26,vna_s11_magnitud:26,vna_s11_phas:26,vna_s11_power_set:26,vna_s11_trac:26,vna_s12_trac:26,vna_s13_trac:26,vna_s14_trac:26,vna_s21_trac:26,vna_s22_trac:26,vna_s23_trac:26,vna_s24_trac:26,vna_s31_trac:26,vna_s32_trac:26,vna_s33_trac:26,vna_s34_trac:26,vna_s41_trac:26,vna_s42_trac:26,vna_s43_trac:26,vna_s44_trac:26,volt:[3,7,10,11,12,13,18,20,21,30,59,61,76,77],volt_0:20,volt_1:20,volt_:76,volt_set:20,voltag:[3,7,8,10,11,12,13,19,21,24,25,49,57,61,62,64,66,71,76,77,79,97,98,105,113],voltage_range_statu:64,voltage_raw:[3,71,76],voltagedict:76,voltagedivid:57,voltageparamet:76,voltmet:[62,113],volunt:102,vpp:22,vrang:[14,24,25,64],vsd:[5,6,9],w8320_1:3,wai:[1,2,3,5,9,10,15,16,28,30,33,49,77,102,113,114],wait:[6,10,13,28,41,46,49,72,77,91,105,109,113,114],wait_trigg:77,wait_valu:77,walk:114,wall:26,want:[0,1,2,3,5,17,19,26,27,30,31,37,48,57,58,59,64,102,103,105,107,110,112,113,114],warn:[2,3,4,17,26,28,46,58,59,65,68,96,110],wav:64,wave:[27,66],waveform:[8,22,62,69,73,77,97,106,113],waveform_nam:77,web:[30,68],week:[102,107],weight:2,weinschel:[3,57],weinschel_8320:[3,57],welcom:[102,107],well:[1,5,30,33,40,61,62,69,72,76,78,102,113],went:17,were:[36,37,49,59,93],wfm001ch1:77,wfm002ch1:77,wfm1ch1:77,wfm1ch2:77,wfm2ch1:77,wfm2ch2:77,wfm:[28,77],wfmname:[28,77],wfname_l:77,wfs1:77,wfs2:77,wfs:77,what:[2,3,9,10,17,24,25,28,30,43,46,48,51,52,54,61,72,77,79,91,102,110,113,114],whatev:[13,59],wheel:102,when:[1,3,6,8,17,21,22,24,25,26,27,28,31,32,33,36,39,48,49,52,53,57,58,59,61,62,64,66,68,69,71,76,77,78,82,102,108,113,114],whenev:[66,76,77,113],where:[3,8,10,24,25,31,37,40,48,51,52,59,61,62,68,71,72,76,77,80,82,83,102,113,114],wherea:13,whether:[19,40,42,43,49,64,70,73,77,102,113],which:[1,2,3,5,8,10,17,26,28,30,31,33,35,36,37,39,40,42,45,46,48,49,51,53,57,58,59,62,64,72,74,76,77,80,82,85,102,105,110,113,114],whish:0,white:[83,102],whitespac:42,who:[102,107],whole:[3,5,8,42,48,71,76,102,105,113],whose:[36,76,85,113,114],why:[30,102],widget:[1,9,16,18,20,23,95],width:[83,84],william:[14,30],williamhpnielsen:[64,76],win32:58,win:2,window:[3,6,9,16,18,20,23,26,59,72,75,77,84,100,109],window_titl:83,windowtitl:20,wish:77,with_bg_task:[1,10,14],within:[1,3,16,33,36,53,55,59,68,102,108,113],without:[17,19,74,99,106,110,113],won:26,wonder:30,word:[106,107],work:[2,3,5,16,23,37,38,66,69,73,74,77,78,80,82,102,108,109,110,113,114],workflow:[106,108],world:[59,102,108],wors:102,would:[1,2,8,9,16,18,20,23,39,62,74,102,107,113],wrap:[8,38,77,113],wrapper:[65,72,74],write:[2,3,13,14,18,22,37,40,41,42,43,54,58,61,64,65,72,76,77,82,102,112,113],write_confirm:43,write_copi:113,write_metadata:40,write_modul:76,write_period:[37,82],write_pin:58,write_port:58,write_raw:14,written:[1,42,59,62,72,77],wrong:[17,61,66,102],x_actn:23,x_fld:23,x_fldc:23,x_length:1,x_offset:15,x_rate:23,x_setpoint:23,x_val:[0,114],xlabel:17,xml:102,xrm:30,xxx:61,y_length:1,y_offset:15,y_val:[0,114],yai:95,yeah:20,year:102,yes:113,yet:[30,40,62,102,113],yield:[46,76],ylabel:17,yokogawa:[57,96],yolo:2,you:[0,1,2,3,5,8,9,10,17,21,26,27,28,30,31,35,36,37,38,40,41,46,48,49,51,52,57,59,64,71,76,77,80,82,84,103,105,106,107,109,110,112,113,114],your:[3,10,35,41,57,71,76,102,106,107,109,110,113,114],yourself:[59,76],yrm:30,yscale:30,z_val:[0,114],zero:[3,17,24,25,28,31,48,49,72,77],ziapinotfoundexcept:30,zip:[14,17],ziuhfli:[30,57],ziuhfli_rrm:30,ziuhfli_sig:30,ziuhfli_xrm:30,ziuhfli_yrm:30,zn20:106,znb20:57,znb4:74,znb8:[26,74,99],znb:[26,57],znbchannel:74,zone:17,zoom:68,zurich:30},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark","Benchmark of Keysight 34465A","QDac and Keysight 34465 sync and buffer","QCoDeS example with SR830","Qcodes example ATS_ONWORK","QCoDeS example with AMI430","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","QCoDeS Example with ZI UHF-LI","qcodes.ArrayParameter","qcodes.BreakIf","qcodes.ChannelList","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.InstrumentChannel","qcodes.Loop","qcodes.ManualParameter","qcodes.MultiParameter","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.Advantech package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.HP package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.Lakeshore package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":12,"33500b":22,"34400a":18,"34411a":11,"34465a":[11,13],"break":[94,95,96,97],"class":[3,91,92,93],"default":110,"function":[3,41,91,92,93],"import":[10,11,12,28],"new":[94,95,96,97,98,99,100,102],"public":93,ATS:59,IPS:23,THE:27,THERE:28,The:10,Using:[2,22,30,110],abort:111,acquir:27,acquisit:[15,27],action:[10,93],adding:3,advantech:58,aggreg:0,agil:[11,18,69],agilent_34400a:69,alazartech:59,all:5,american_magnet:70,ami430:[17,70],arrai:5,arrayparamet:[8,31],async:114,ats9870:59,ats_acquisition_control:59,ats_onwork:16,attent:[24,25],avanc:114,awg5014:[28,77],awg5200:77,awg520:77,awg:28,awgfilepars:77,base:3,basic:[10,21,22,24,25,30,106],benchmark:[12,13,14,26,106],breakif:32,buffer:[14,15],bug:102,burst:22,can:10,caution:30,chang:[2,94,95,96,97],changelog:[94,95,96,97,98,99,100,101],channel:[24,25,26],channellist:33,chat:107,clever:102,code:[102,104],combin:[0,56,114],combinedparamet:34,command:86,commit:102,commun:103,comprehens:1,config:[2,35,93,110],configur:[2,110],content:[10,28,30,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,102],contribut:102,core:2,creat:3,curv:[21,27],custom:[2,3],data:[4,10,93],dataarrai:36,dataformat:4,datasav:4,dataset:[37,113],decadac:[19,61],deferred_oper:87,defin:10,demo:5,demodul:30,develop:102,devic:57,dg4000:73,diskio:38,dll:3,driver:[3,106,114],dummi:4,dynam:3,e8267c:69,e8527d:69,enter:109,error:22,event:1,exampl:[3,4,9,10,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,106,113],experi:2,familiar:102,faq:111,fast:21,featur:102,file:[28,110],fix:[94,95,96,97],format:[9,102],formatloc:39,formatt:40,from:[4,27],gener:4,get:[12,13,28,107,109],git:102,global:10,gnuplotformat:42,gs200:79,guid:[103,112],handl:[1,22],harvard:61,help:107,helper:88,hierarchi:105,hour:107,how:[1,111],hp33210a:69,hp8133a:60,hp_83650a:60,ilm200:72,improv:[94,95,96,97,98,99,100],initialis:[12,28],input:30,instal:109,instanti:[5,10],instrument:[3,4,5,7,10,44,93,105,113,114],instrument_driv:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],instrumentchannel:45,interact:10,interfac:1,introduct:113,involv:3,ipinstru:43,ips120:72,ithaco:[20,71],ithaco_1211:71,ivvi:65,keithlei:21,keithley_2000:77,keithley_2400:77,keithley_2600:77,keithley_2600_channel:77,keithley_2700:77,kelvinox:72,keysight:[11,13,14,22,62],keysight_33500b:62,keysight_33500b_channel:62,keysight_34465a:62,lakeshor:63,lazi:28,linkag:105,list:[15,28],live:10,load:10,load_data:80,locat:[9,10],loop:[4,5,10,11,46,93,113],m3201a:62,m3300a:62,m4i:66,magnet:23,make:28,manual:3,manualparamet:47,matplot:[1,84],matplotlib:1,measur:[5,10,30,81,93,111,113,114],mercuri:23,mercuryip:72,messag:102,meta:114,metadata:[6,7,89],misc:93,mode:[22,28],model_336:63,modul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],more:[3,107,110],multiparamet:[8,48],multipl:10,need:5,new_data:82,note:102,nplc:12,object:105,offic:107,one:11,onli:5,oper:21,organ:3,oscilloscop:27,output:[5,10,30],overview:[24,25,113],oxford:72,packag:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],paramet:[0,3,8,15,49,105,113,114],part:11,pcie_1751:58,phase:108,plan:108,plot:[1,10,83,84,93],pre:13,predefin:26,prerequisit:30,privat:92,project:108,provid:10,pull:102,push:102,py_head:67,pyqtgraph:83,qcmatplotlib:84,qcode:[2,3,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,106,108,109,110,111],qdac:[14,24,25,64],qdac_channel:[25,64],qdev:64,qtplot:[1,83],qutech:65,raw:11,read:11,realli:102,reg:67,remov:3,report:102,request:102,requir:109,respons:113,result:[12,13],rigol:73,rohd:26,rohde_schwarz:74,rough:105,run:[4,28,102,111],save:[2,110],schwarz:26,scope:30,script:12,send:28,sensor:[24,25],set:[10,12,13,24,25,27,30],setup:[11,102],sg384:76,sgs100a:74,shot:14,signal:30,signal_hound:75,sim928:76,simpl:[0,1,3],simul:114,singl:14,smr40:74,softwar:13,some:28,sourc:104,spcerr:67,spectrum:[66,67],sr560:76,sr830:[15,76],sr865:76,standardparamet:50,stanford_research:76,start:[4,109],station:[85,93,105],stuff:14,style:102,submodul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],subpackag:[57,66],subplot:1,summari:13,sweep:[1,11,114],sweeper:30,sweepfixedvalu:51,sweepvalu:[52,105],sync:14,tabl:[10,28,30],task:53,tektronix:[27,28,77],temperatur:[24,25],test:[4,57,102],test_suit:[62,69,78],them:28,time:12,todo:[46,52,66,72,74,75,77,105,110,114],tps2012:[27,77],trigger:13,triton:[29,72],tutori:[10,114],two:11,typic:10,uhf:30,updat:110,usag:[22,24,25,30,102,109,111],usb_sa124b:75,user:112,using:106,util:[86,87,88,89,90,93],valid:[90,105],valu:110,variabl:2,versu:11,via:28,visainstru:[3,54],wait:55,waveform:28,weinschel:78,weinschel_8320:78,without:[5,26],word:30,workflow:10,write:114,yokogawa:79,you:102,your:2,ziuhfli:68,zn20:26,znb20:74,znb:74}})
\ No newline at end of file
+Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Metadata","_notebooks/Metadata with instruments","_notebooks/Parameters","_notebooks/Qcodes location-format example","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with AMI430","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","api/generated/qcodes.ArrayParameter","api/generated/qcodes.BreakIf","api/generated/qcodes.ChannelList","api/generated/qcodes.CombinedParameter","api/generated/qcodes.Config","api/generated/qcodes.DataArray","api/generated/qcodes.DataSet","api/generated/qcodes.DiskIO","api/generated/qcodes.FormatLocation","api/generated/qcodes.Formatter","api/generated/qcodes.Function","api/generated/qcodes.GNUPlotFormat","api/generated/qcodes.IPInstrument","api/generated/qcodes.Instrument","api/generated/qcodes.InstrumentChannel","api/generated/qcodes.Loop","api/generated/qcodes.ManualParameter","api/generated/qcodes.MultiParameter","api/generated/qcodes.Parameter","api/generated/qcodes.StandardParameter","api/generated/qcodes.SweepFixedValues","api/generated/qcodes.SweepValues","api/generated/qcodes.Task","api/generated/qcodes.VisaInstrument","api/generated/qcodes.Wait","api/generated/qcodes.combine","api/generated/qcodes.instrument_drivers","api/generated/qcodes.instrument_drivers.Advantech","api/generated/qcodes.instrument_drivers.AlazarTech","api/generated/qcodes.instrument_drivers.HP","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.Lakeshore","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Metadata.rst","_notebooks/Metadata with instruments.rst","_notebooks/Parameters.rst","_notebooks/Qcodes location-format example.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with AMI430.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.rst","api/generated/qcodes.ArrayParameter.rst","api/generated/qcodes.BreakIf.rst","api/generated/qcodes.ChannelList.rst","api/generated/qcodes.CombinedParameter.rst","api/generated/qcodes.Config.rst","api/generated/qcodes.DataArray.rst","api/generated/qcodes.DataSet.rst","api/generated/qcodes.DiskIO.rst","api/generated/qcodes.FormatLocation.rst","api/generated/qcodes.Formatter.rst","api/generated/qcodes.Function.rst","api/generated/qcodes.GNUPlotFormat.rst","api/generated/qcodes.IPInstrument.rst","api/generated/qcodes.Instrument.rst","api/generated/qcodes.InstrumentChannel.rst","api/generated/qcodes.Loop.rst","api/generated/qcodes.ManualParameter.rst","api/generated/qcodes.MultiParameter.rst","api/generated/qcodes.Parameter.rst","api/generated/qcodes.StandardParameter.rst","api/generated/qcodes.SweepFixedValues.rst","api/generated/qcodes.SweepValues.rst","api/generated/qcodes.Task.rst","api/generated/qcodes.VisaInstrument.rst","api/generated/qcodes.Wait.rst","api/generated/qcodes.combine.rst","api/generated/qcodes.instrument_drivers.rst","api/generated/qcodes.instrument_drivers.Advantech.rst","api/generated/qcodes.instrument_drivers.AlazarTech.rst","api/generated/qcodes.instrument_drivers.HP.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.rst","api/generated/qcodes.instrument_drivers.Lakeshore.rst","api/generated/qcodes.instrument_drivers.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[31,1,1,""]},"qcodes.BreakIf":{__init__:[32,1,1,""]},"qcodes.ChannelList":{__init__:[33,1,1,""]},"qcodes.CombinedParameter":{__init__:[34,1,1,""]},"qcodes.Config":{__init__:[35,1,1,""],config_file_name:[35,2,1,""],current_config:[35,2,1,""],current_config_path:[35,2,1,""],current_schema:[35,2,1,""],cwd_file_name:[35,2,1,""],default_file_name:[35,2,1,""],env_file_name:[35,2,1,""],home_file_name:[35,2,1,""],schema_cwd_file_name:[35,2,1,""],schema_default_file_name:[35,2,1,""],schema_env_file_name:[35,2,1,""],schema_file_name:[35,2,1,""],schema_home_file_name:[35,2,1,""]},"qcodes.DataArray":{__init__:[36,1,1,""]},"qcodes.DataSet":{__init__:[37,1,1,""],background_functions:[37,2,1,""]},"qcodes.DiskIO":{__init__:[38,1,1,""]},"qcodes.FormatLocation":{__init__:[39,1,1,""]},"qcodes.Formatter":{__init__:[40,1,1,""]},"qcodes.Function":{__init__:[41,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[42,1,1,""]},"qcodes.IPInstrument":{__init__:[43,1,1,""]},"qcodes.Instrument":{__init__:[44,1,1,""],functions:[44,2,1,""],name:[44,2,1,""],parameters:[44,2,1,""],submodules:[44,2,1,""]},"qcodes.InstrumentChannel":{__init__:[45,1,1,""],functions:[45,2,1,""],name:[45,2,1,""],parameters:[45,2,1,""]},"qcodes.Loop":{__init__:[46,1,1,""]},"qcodes.ManualParameter":{__init__:[47,1,1,""]},"qcodes.MultiParameter":{__init__:[48,1,1,""]},"qcodes.Parameter":{__init__:[49,1,1,""]},"qcodes.StandardParameter":{__init__:[50,1,1,""]},"qcodes.SweepFixedValues":{__init__:[51,1,1,""]},"qcodes.SweepValues":{__init__:[52,1,1,""]},"qcodes.Task":{__init__:[53,1,1,""]},"qcodes.VisaInstrument":{__init__:[54,1,1,""],visa_handle:[54,2,1,""]},"qcodes.Wait":{__init__:[55,1,1,""]},"qcodes.instrument_drivers":{Advantech:[58,4,0,"-"],AlazarTech:[59,4,0,"-"],HP:[60,4,0,"-"],Harvard:[61,4,0,"-"],Keysight:[62,4,0,"-"],Lakeshore:[63,4,0,"-"],QDev:[64,4,0,"-"],QuTech:[65,4,0,"-"],Spectrum:[66,4,0,"-"],ZI:[68,4,0,"-"],agilent:[69,4,0,"-"],american_magnetics:[70,4,0,"-"],devices:[57,4,0,"-"],ithaco:[71,4,0,"-"],oxford:[72,4,0,"-"],rigol:[73,4,0,"-"],rohde_schwarz:[74,4,0,"-"],signal_hound:[75,4,0,"-"],stanford_research:[76,4,0,"-"],tektronix:[77,4,0,"-"],test:[57,4,0,"-"],weinschel:[78,4,0,"-"],yokogawa:[79,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[58,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[58,0,1,""],DAQNaviException:[58,5,1,""],DAQNaviWarning:[58,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[58,2,1,""],check:[58,1,1,""],close:[58,1,1,""],get_idn:[58,1,1,""],port_count:[58,1,1,""],read_pin:[58,1,1,""],read_port:[58,1,1,""],write_pin:[58,1,1,""],write_port:[58,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[59,4,0,"-"],ATS:[59,4,0,"-"],ATS_acquisition_controllers:[59,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[59,0,1,""],AlazarParameter:[59,0,1,""],AlazarTech_ATS:[59,0,1,""],Buffer:[59,0,1,""],TrivialDictionary:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[59,2,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[59,1,1,""],channels:[59,2,1,""],clear_buffers:[59,1,1,""],config:[59,1,1,""],dll_path:[59,2,1,""],find_boards:[59,6,1,""],get_board_info:[59,6,1,""],get_idn:[59,1,1,""],get_sample_rate:[59,1,1,""],signal_to_volt:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[59,1,1,""],free_mem:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[59,1,1,""],fit:[59,1,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""],update_acquisitionkwargs:[59,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[60,4,0,"-"],HP_83650A:[60,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[60,0,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[60,0,1,""],parsestr:[60,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[60,1,1,""],print_modstatus:[60,1,1,""],reset:[60,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[61,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[61,5,1,""],DacChannel:[61,0,1,""],DacReader:[61,0,1,""],DacSlot:[61,0,1,""],Decadac:[61,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{__repr__:[61,1,1,""],_ramp_state:[61,2,1,""],_ramp_time:[61,2,1,""],connect_message:[61,1,1,""],get_idn:[61,1,1,""],ramp_all:[61,1,1,""],set_all:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[62,4,0,"-"],Keysight_33500B_channels:[62,4,0,"-"],Keysight_34465A:[62,4,0,"-"],M3201A:[62,4,0,"-"],M3300A:[62,4,0,"-"],test_suite:[62,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[62,0,1,""],Keysight_33500B_Channels:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[62,0,1,""],Keysight_34465A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[62,1,1,""],prepare:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[62,2,1,""],flush_error_queue:[62,1,1,""],model:[62,2,1,""],ranges:[62,2,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[62,0,1,""],M3300A_DIG:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[62,0,1,""],TestKeysight_M3300A:[62,0,1,""],TestSD_Module:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_chassis_and_slot:[62,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[63,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[63,0,1,""],SensorChannel:[63,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[64,4,0,"-"],QDac_channels:[64,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[64,0,1,""],QDacChannel:[64,0,1,""],QDacMultiChannelParameter:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[64,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[65,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[65,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[65,2,1,""],Halfrange:[65,2,1,""],adjust_parameter_validator:[65,1,1,""],ask:[65,1,1,""],get_all:[65,1,1,""],get_idn:[65,1,1,""],get_pol_dac:[65,1,1,""],read:[65,1,1,""],round_dac:[65,1,1,""],set_dacs_zero:[65,1,1,""],set_pol_dacrack:[65,1,1,""],write:[65,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[66,4,0,"-"],py_header:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[66,0,1,""],szTypeToName:[66,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{active_channels:[66,1,1,""],blockavg_hardware_trigger_acquisition:[66,1,1,""],close:[66,1,1,""],convert_to_voltage:[66,1,1,""],gated_trigger_acquisition:[66,1,1,""],get_card_memory:[66,1,1,""],get_card_type:[66,1,1,""],get_error_info32bit:[66,1,1,""],get_idn:[66,1,1,""],get_max_sample_rate:[66,1,1,""],initialize_channels:[66,1,1,""],multiple_trigger_acquisition:[66,1,1,""],reset:[66,1,1,""],set_channel_OR_trigger_settings:[66,1,1,""],set_channel_settings:[66,1,1,""],set_ext0_OR_trigger_settings:[66,1,1,""],single_software_trigger_acquisition:[66,1,1,""],single_trigger_acquisition:[66,1,1,""]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[67,4,0,"-"],spcerr:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[67,3,1,""],GIGA_B:[67,3,1,""],KILO:[67,3,1,""],KILO_B:[67,3,1,""],MEGA:[67,3,1,""],MEGA_B:[67,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[68,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[68,0,1,""],Sweep:[68,0,1,""],ZIUHFLI:[68,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[68,1,1,""],names:[68,2,1,""],prepare_scope:[68,1,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[68,1,1,""],get:[68,1,1,""],names:[68,2,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[68,7,1,""],add_signal_to_sweeper:[68,1,1,""],close:[68,1,1,""],print_sweeper_settings:[68,1,1,""],remove_signal_from_sweeper:[68,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[69,4,0,"-"],E8267C:[69,4,0,"-"],E8527D:[69,4,0,"-"],HP33210A:[69,4,0,"-"],test_suite:[69,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[69,1,1,""],display_clear:[69,1,1,""],init_measurement:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[69,7,1,""],rad_to_deg:[69,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[69,1,1,""],off:[69,1,1,""],on:[69,1,1,""],parse_on_off:[69,1,1,""],rad_to_deg:[69,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[69,2,1,""],setUpClass:[69,6,1,""],test_firmware_version:[69,1,1,""],test_frequency:[69,1,1,""],test_on_off:[69,1,1,""],test_phase:[69,1,1,""],test_power:[69,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[70,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[70,0,1,""],AMI430_3D:[70,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[70,2,1,""],mocker_class:[70,2,1,""],set_field:[70,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{get_mocker_messages:[70,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[57,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[57,1,1,""],get_instrument_value:[57,1,1,""],set:[57,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[71,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[71,0,1,""],Ithaco_1211:[71,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[71,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[72,4,0,"-"],IPS120:[72,4,0,"-"],kelvinox:[72,4,0,"-"],mercuryiPS:[72,4,0,"-"],triton:[72,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[72,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],set_remote_status:[72,1,1,""],set_to_fast:[72,1,1,""],set_to_slow:[72,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[72,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[72,1,1,""],examine:[72,1,1,""],get_all:[72,1,1,""],get_changed:[72,1,1,""],get_idn:[72,1,1,""],heater_off:[72,1,1,""],heater_on:[72,1,1,""],hold:[72,1,1,""],identify:[72,1,1,""],leave_persistent_mode:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],run_to_field:[72,1,1,""],run_to_field_wait:[72,1,1,""],set_persistent:[72,1,1,""],to_setpoint:[72,1,1,""],to_zero:[72,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[72,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],identify:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],rotate_Nvalve:[72,1,1,""],set_mix_chamber_heater_mode:[72,1,1,""],set_mix_chamber_heater_power_range:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[72,0,1,""],MercuryiPSArray:[72,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[72,1,1,""],rtos:[72,1,1,""],to_zero:[72,1,1,""],write:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[72,1,1,""],set:[72,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[72,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[72,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[73,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[73,0,1,""],clean_string:[73,3,1,""],is_number:[73,3,1,""],parse_multiple_outputs:[73,3,1,""],parse_single_output:[73,3,1,""],parse_string_output:[73,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[74,4,0,"-"],SMR40:[74,4,0,"-"],ZNB20:[74,4,0,"-"],ZNB:[74,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[74,1,1,""],on:[74,1,1,""],parse_on_off:[74,1,1,""],set_pulsemod_source:[74,1,1,""],set_pulsemod_state:[74,1,1,""],set_status:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[74,1,1,""],do_get_power:[74,1,1,""],do_get_pulse_delay:[74,1,1,""],do_get_status:[74,1,1,""],do_get_status_of_ALC:[74,1,1,""],do_get_status_of_modulation:[74,1,1,""],do_set_frequency:[74,1,1,""],do_set_power:[74,1,1,""],do_set_pulse_delay:[74,1,1,""],do_set_status:[74,1,1,""],do_set_status_of_ALC:[74,1,1,""],do_set_status_of_modulation:[74,1,1,""],get_all:[74,1,1,""],off:[74,1,1,""],off_modulation:[74,1,1,""],on:[74,1,1,""],on_modulation:[74,1,1,""],reset:[74,1,1,""],set_ext_trig:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[74,0,1,""],FrequencySweepMagPhase:[74,0,1,""],ZNB:[74,0,1,""],ZNBChannel:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[74,1,1,""],clear_channels:[74,1,1,""],display_grid:[74,1,1,""],initialise:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNBChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[75,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[75,0,1,""],constants:[75,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[75,1,1,""],abort:[75,1,1,""],check_for_error:[75,1,1,""],closeDevice:[75,1,1,""],configure:[75,1,1,""],default_server_name:[75,6,1,""],dll_path:[75,2,1,""],get_power_at_freq:[75,1,1,""],get_spectrum:[75,1,1,""],initialisation:[75,1,1,""],openDevice:[75,1,1,""],prepare_for_measurement:[75,1,1,""],preset:[75,1,1,""],saStatus:[75,2,1,""],saStatus_inverted:[75,2,1,""],safe_reload:[75,1,1,""],sweep:[75,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[75,2,1,""],TG_THRU_0DB:[75,2,1,""],TG_THRU_20DB:[75,2,1,""],sa124_MAX_FREQ:[75,2,1,""],sa124_MIN_FREQ:[75,2,1,""],sa44_MAX_FREQ:[75,2,1,""],sa44_MIN_FREQ:[75,2,1,""],saDeviceTypeNone:[75,2,1,""],saDeviceTypeSA124A:[75,2,1,""],saDeviceTypeSA124B:[75,2,1,""],saDeviceTypeSA44:[75,2,1,""],saDeviceTypeSA44B:[75,2,1,""],sa_AUDIO:[75,2,1,""],sa_AUDIO_AM:[75,2,1,""],sa_AUDIO_CW:[75,2,1,""],sa_AUDIO_FM:[75,2,1,""],sa_AUDIO_LSB:[75,2,1,""],sa_AUDIO_USB:[75,2,1,""],sa_AUTO_ATTEN:[75,2,1,""],sa_AUTO_GAIN:[75,2,1,""],sa_AVERAGE:[75,2,1,""],sa_BYPASS:[75,2,1,""],sa_IDLE:[75,2,1,""],sa_IQ:[75,2,1,""],sa_IQ_SAMPLE_RATE:[75,2,1,""],sa_LIN_FULL_SCALE:[75,2,1,""],sa_LIN_SCALE:[75,2,1,""],sa_LOG_FULL_SCALE:[75,2,1,""],sa_LOG_SCALE:[75,2,1,""],sa_LOG_UNITS:[75,2,1,""],sa_MAX_ATTEN:[75,2,1,""],sa_MAX_GAIN:[75,2,1,""],sa_MAX_IQ_DECIMATION:[75,2,1,""],sa_MAX_RBW:[75,2,1,""],sa_MAX_REF:[75,2,1,""],sa_MAX_RT_RBW:[75,2,1,""],sa_MIN_IQ_BANDWIDTH:[75,2,1,""],sa_MIN_MAX:[75,2,1,""],sa_MIN_RBW:[75,2,1,""],sa_MIN_RT_RBW:[75,2,1,""],sa_MIN_SPAN:[75,2,1,""],sa_POWER_UNITS:[75,2,1,""],sa_REAL_TIME:[75,2,1,""],sa_SWEEPING:[75,2,1,""],sa_TG_SWEEP:[75,2,1,""],sa_VOLT_UNITS:[75,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[76,4,0,"-"],SIM928:[76,4,0,"-"],SR560:[76,4,0,"-"],SR830:[76,4,0,"-"],SR865:[76,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[76,1,1,""],byte_to_bits:[76,7,1,""],check_module_errors:[76,1,1,""],find_modules:[76,1,1,""],get_module_idn:[76,1,1,""],get_module_status:[76,1,1,""],get_voltage:[76,1,1,""],reset_module:[76,1,1,""],set_smooth:[76,1,1,""],set_voltage:[76,1,1,""],write_module:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[76,0,1,""],VoltageParameter:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[76,0,1,""],SR830:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[76,1,1,""],prepare_buffer_readout:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[76,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[77,4,0,"-"],AWG5200:[77,4,0,"-"],AWG520:[77,4,0,"-"],AWGFileParser:[77,4,0,"-"],Keithley_2000:[77,4,0,"-"],Keithley_2400:[77,4,0,"-"],Keithley_2600:[77,4,0,"-"],Keithley_2600_channels:[77,4,0,"-"],Keithley_2700:[77,4,0,"-"],TPS2012:[77,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[77,0,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[77,2,1,""],AWG_FILE_FORMAT_HEAD:[77,2,1,""],all_channels_off:[77,1,1,""],all_channels_on:[77,1,1,""],change_folder:[77,1,1,""],clear_message_queue:[77,1,1,""],create_and_goto_dir:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_event:[77,1,1,""],force_trigger:[77,1,1,""],force_trigger_event:[77,1,1,""],generate_awg_file:[77,1,1,""],generate_channel_cfg:[77,1,1,""],generate_sequence_cfg:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_error:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_sq_mode:[77,1,1,""],get_sqel_loopcnt:[77,1,1,""],get_sqel_trigger_wait:[77,1,1,""],get_sqel_waveform:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],is_awg_ready:[77,1,1,""],load_awg_file:[77,1,1,""],make_and_save_awg_file:[77,1,1,""],make_send_and_load_awg_file:[77,1,1,""],newlinestripper:[77,1,1,""],pack_waveform:[77,1,1,""],run:[77,1,1,""],send_DC_pulse:[77,1,1,""],send_awg_file:[77,1,1,""],send_waveform_to_list:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_sqel_event_jump_target_index:[77,1,1,""],set_sqel_event_jump_type:[77,1,1,""],set_sqel_event_target_index:[77,1,1,""],set_sqel_goto_state:[77,1,1,""],set_sqel_goto_target_index:[77,1,1,""],set_sqel_loopcnt:[77,1,1,""],set_sqel_loopcnt_to_inf:[77,1,1,""],set_sqel_trigger_wait:[77,1,1,""],set_sqel_waveform:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[77,1,1,""],clear_waveforms:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_logicjump:[77,1,1,""],force_trigger:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_jumpmode:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],load_and_set_sequence:[77,1,1,""],make_directory:[77,1,1,""],resend_waveform:[77,1,1,""],return_self:[77,1,1,""],send_pattern:[77,1,1,""],send_sequence2:[77,1,1,""],send_sequence:[77,1,1,""],send_waveform:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_jumpmode:[77,1,1,""],set_sequence:[77,1,1,""],set_setup_filename:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[77,0,1,""],parse_output_bool:[77,3,1,""],parse_output_string:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""],write:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[77,0,1,""],Keithley_2600:[77,0,1,""],LuaSweepParameter:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[77,1,1,""],reset:[77,1,1,""],snapshot_base:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get:[77,1,1,""],prepareSweep:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[77,0,1,""],bool_to_str:[77,3,1,""],parsebool:[77,3,1,""],parseint:[77,3,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[77,1,1,""],reset:[77,1,1,""],set_defaults:[77,1,1,""],set_mode:[77,1,1,""],set_mode_volt_dc:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[77,0,1,""],TPS2012:[77,0,1,""],TPS2012Channel:[77,0,1,""],TraceNotReady:[77,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[77,1,1,""],get:[77,1,1,""],prepare_curvedata:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[77,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[57,0,1,""],test_instrument:[57,3,1,""],test_instruments:[57,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[57,2,1,""],setUpClass:[57,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[78,4,0,"-"],test_suite:[78,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[78,2,1,""],test_attenuation:[78,1,1,""],test_firmware_version:[78,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[79,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[79,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[79,1,1,""]},"qcodes.measure":{Measure:[81,0,1,""]},"qcodes.measure.Measure":{__init__:[81,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[83,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[83,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[84,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[84,1,1,""]},"qcodes.station":{Station:[85,0,1,""]},"qcodes.station.Station":{"default":[85,2,1,""],__init__:[85,1,1,""],delegate_attr_dicts:[85,2,1,""]},"qcodes.utils":{command:[86,4,0,"-"],deferred_operations:[87,4,0,"-"],helpers:[88,4,0,"-"],metadata:[89,4,0,"-"],validators:[90,4,0,"-"]},qcodes:{ArrayParameter:[31,0,1,""],BreakIf:[32,0,1,""],ChannelList:[33,0,1,""],CombinedParameter:[34,0,1,""],Config:[35,0,1,""],DataArray:[36,0,1,""],DataSet:[37,0,1,""],DiskIO:[38,0,1,""],FormatLocation:[39,0,1,""],Formatter:[40,0,1,""],Function:[41,0,1,""],GNUPlotFormat:[42,0,1,""],IPInstrument:[43,0,1,""],Instrument:[44,0,1,""],InstrumentChannel:[45,0,1,""],Loop:[46,0,1,""],ManualParameter:[47,0,1,""],MultiParameter:[48,0,1,""],Parameter:[49,0,1,""],StandardParameter:[50,0,1,""],SweepFixedValues:[51,0,1,""],SweepValues:[52,0,1,""],Task:[53,0,1,""],VisaInstrument:[54,0,1,""],Wait:[55,0,1,""],combine:[56,3,1,""],instrument_drivers:[57,4,0,"-"],load_data:[80,3,1,""],new_data:[82,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","function","Python function"],"4":["py","module","Python module"],"5":["py","exception","Python exception"],"6":["py","classmethod","Python class method"],"7":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:exception","6":"py:classmethod","7":"py:staticmethod"},terms:{"00000e":21,"001_":21,"001_13":39,"001_unicorn_2016":9,"002_rainbow_2016":9,"00370000e":20,"005_rainbow_2016":9,"006_":27,"007_":27,"007_testsweep_14":10,"008_2d_test_14":10,"009_testsweep_15":14,"009_unicorn_2050":9,"01084000e":20,"010_mockloop_hdf5_test_15":4,"011_":30,"011_mockloop_hdf5_test_15":4,"012_":30,"013_":15,"013_n_1000_setget_11":13,"014_n_1000_setget_11":13,"015_n_1000_setget_11":13,"016_n_1000_setget_11":13,"016_test_missing_attr_15":4,"01763000e":20,"017_mockparabola_run_15":4,"017_n_1000_setget_11":13,"018_mockparabola_run_15":4,"018_n_1000_setget_11":13,"018_testsweep_12":11,"019_n_1000_setget_11":13,"019_testsweep_12":11,"020_n_1000_setget_11":13,"020_testsweep_12":11,"021_testsweep_12":11,"025_":14,"026_":14,"027_":14,"028_":14,"029_":14,"02s":26,"030_":14,"031_":14,"032_":14,"033_":14,"034_":14,"035_":14,"036_":14,"03d":28,"06s":11,"073_":26,"076_":26,"076_n_100_setget_16":12,"077_":26,"077_n_100_setget_16":12,"078_":26,"078_n_100_setget_16":12,"079_":26,"079_n_100_setget_16":12,"07s":14,"080_":26,"080_n_100_setget_16":12,"081_n_100_setget_16":12,"082_n_100_setget_16":12,"083_":26,"083_n_100_setget_16":12,"0848e":7,"084_":[12,26],"085_":[12,26],"086_":[12,26],"087_":[12,26],"088_":[12,26],"089_":[12,26],"090_":[12,26],"091_":12,"092_n_1000_setget_16":12,"093_n_1000_setget_16":12,"094_n_1000_setget_16":12,"095_n_1000_setget_16":12,"096_n_1000_setget_16":12,"097_n_1000_setget_16":12,"098_n_1000_setget_16":12,"0994e":21,"099_n_1000_setget_16":12,"09s":21,"0x1c10ee73a58":14,"0x212e0582320":30,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":20,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":110,"0x7fd834e99ea0":0,"0x818a908":16,"0x8d11978":7,"100_":12,"100e":12,"100e3":26,"100e6":62,"100x100":11,"101_":12,"102_":12,"103_":12,"104_":12,"105_":12,"106_":12,"107_":12,"108_n_100_setget_16":12,"109_n_100_setget_16":12,"10e":[27,30],"10e6":[16,30],"10mhz":75,"10v":49,"110_n_100_setget_16":12,"111_n_100_setget_16":12,"112_n_100_setget_16":12,"113_n_100_setget_16":12,"114_n_100_setget_16":12,"115_n_100_setget_16":12,"116_":12,"117_":12,"118_":12,"119_":12,"11s":22,"1206e":21,"120_":12,"121_":12,"122_":12,"123_":12,"124_":12,"125_":12,"126_":12,"127_":12,"128_":12,"129_":12,"130_":12,"131_":12,"132_":12,"133_":12,"134_":12,"135_":12,"136_":12,"137_":12,"138_":12,"139_":12,"13_testsweep":0,"13_testsweep_002":0,"140_":12,"141_":12,"142_":12,"143_":12,"144_":12,"145_":12,"146_":12,"147_":12,"148_":12,"149_":12,"14s":13,"150_":12,"151_":12,"152_":12,"153_":12,"154_":12,"155_":12,"156_":12,"157_":12,"158_":12,"159_":12,"15_rainbow_test":39,"15s":[12,26],"160_":12,"161_":12,"16243e":7,"162_":12,"163_":12,"164_":12,"165_":12,"166_":12,"167_":12,"168_":12,"169_":12,"16_13":9,"16s":[15,26],"170_":12,"171_":12,"172_":12,"173_":12,"174_":12,"175_":12,"176_":12,"177_":12,"178_":12,"179_":12,"180_":12,"181_":12,"182_":12,"183_":12,"184_":12,"185_":12,"186_":12,"187_":12,"188_":12,"189_":12,"190_":12,"191_":12,"192_":12,"193_":12,"194_":12,"195_":12,"196_":12,"197_n_1000_setget_16":12,"198_n_1000_setget_16":12,"199_n_1000_setget_16":12,"1b1536e1a2e4":30,"1ct":27,"1e3":[22,30],"1e6":[26,30],"1ms":106,"20000000e":28,"200_n_1000_setget_16":12,"200e3":26,"200uw":72,"2012b":[27,77],"201_n_1000_setget_16":12,"202_n_1000_setget_16":12,"203_n_1000_setget_16":12,"204_n_1000_setget_16":12,"205_":12,"206_":12,"207_":12,"208_":12,"209_":12,"20e":30,"20ma":58,"20mw":72,"20uw":72,"210_":12,"211_":12,"212_":12,"250khz":75,"25e":[25,27],"25gb":16,"2614b":[7,12,21,77],"27041e":7,"28539f77dfd3":2,"2d_test":10,"2e3":22,"2min":26,"2mw":72,"2uw":72,"30_alazartest":16,"33500b":[62,97,106],"33522b":22,"34400a":106,"34401a":7,"34410a":7,"34411a":106,"34460a":62,"34461a":62,"34465a":[14,62,97,99,106],"34470a":62,"348s":4,"352161306002045e":23,"36s":26,"3x2":8,"42637000e":20,"4271e":7,"44s":27,"44xx":[66,96],"4634e":7,"4port":26,"50e":[22,27],"52608e":24,"541_13":9,"54972e":21,"56s":26,"57s":17,"5e9":26,"60s":17,"62s":17,"69014000e":20,"6955e":21,"6a5acd":28,"6e6":26,"8133a":[60,97],"83650a":97,"844e846b99a2":14,"93s":11,"94851000e":20,"95535000e":20,"96216000e":20,"98941000e":20,"99618000e":20,"9e3":26,"\u03bca":[24,25],"\u03bcv":6,"abstract":113,"boolean":[65,77,99,110],"break":[3,10,32,76,77,101,102],"byte":[59,65,76,77],"case":[2,3,8,16,28,30,41,46,49,57,59,84,102,109,113,114],"char":64,"class":[1,4,8,9,18,20,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,83,84,85,86,87,88,89,90,102,105,106,114],"default":[1,2,3,5,8,10,24,25,26,31,35,36,37,39,41,42,43,46,48,49,54,57,59,61,62,64,65,71,72,74,76,77,80,82,83,84,85,94,95,100,102,105,112],"enum":[2,3,18,20,30,49,77,105,110],"export":72,"final":[10,14,16,21,28,30,40,41,49,109,113],"float":[3,13,37,41,49,51,57,61,65,66,68,70,72,73,74,76,77,82,84,99],"function":[0,1,6,7,8,9,10,14,16,17,20,21,27,28,32,34,37,44,45,49,51,53,56,58,59,62,65,66,68,69,72,73,74,75,76,77,78,79,87,88,90,99,100,102,105,106,108,113,114],"goto":[28,77],"import":[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,77,99,102,106,110,113,114],"int":[1,8,13,14,28,30,31,36,41,43,48,49,51,57,61,62,64,65,66,68,72,74,76,77,105],"long":[26,31,48,49,77,102],"m\u00e6lkeb\u00f8tt":7,"new":[1,2,3,8,10,16,21,30,36,39,40,41,42,77,80,82,84,101,108,109,110,113,114],"null":[58,110],"public":[91,102,109],"return":[0,1,3,5,8,10,13,14,17,18,21,24,25,26,28,30,31,32,33,39,41,48,49,51,57,58,59,61,62,64,65,66,68,71,72,73,74,75,76,77,80,81,82,105,113,114],"short":[36,113],"static":[43,44,54,68,69,76],"super":[3,8,62,114],"switch":[11,26,30,70,72,77,110,113],"true":[2,3,6,7,14,18,19,20,24,25,26,30,31,33,36,42,43,48,49,54,61,62,64,65,66,70,74,75,76,77,83,85,110,113],"try":[0,2,3,10,13,14,17,18,22,24,26,49,102,113],"var":42,"while":[1,10,18,20,27,58,77,113],AND:77,ATS:[16,57],Adding:102,And:[3,8,26,30,110,114],Are:[82,113],Axes:1,BUS:[13,22],BUT:102,But:[0,2,3,26,30,55,105],Doing:26,For:[1,2,3,5,8,10,17,22,26,27,28,30,31,39,42,48,49,54,58,59,61,66,68,77,83,102,107,109,110,113,114],Has:3,IPS:[72,106],Its:[110,113],NOT:[30,39,57,68,102],Not:[2,31,48,58,85,102,110],ONE:102,One:[1,2,30,68,108,113,114],POS:[14,22,65],PRs:102,SRS:97,THE:[30,106],THERE:106,TPS:[27,97,98],That:[3,51,52,77,114],The:[0,1,2,3,5,11,12,13,14,15,16,17,19,21,22,24,25,26,27,28,30,31,33,34,36,39,41,42,43,46,48,49,51,53,54,56,57,58,59,61,62,64,65,66,68,72,75,76,77,79,83,84,102,104,106,109,110,113,114],Then:[15,26,28,30,102,109,114],There:[1,3,10,19,21,27,28,62,102,105,110],These:[24,25,42,59,75,106,113],Tis:62,Use:[31,37,48,49,59,77,102,108,110],Used:73,Useful:49,Uses:39,Using:[106,112],Will:[36,48,110],With:[17,26,113],_10:26,_11:[26,30],_13:15,_14:21,_15:14,_16:[12,27],__call__:[14,39],__class__:[0,6,7,10,16],__del__:59,__doc__:[30,31,41,48,49],__enter__:[18,20],__exit__:[18,20],__getattr__:[33,64],__init__:[3,8,18,20,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,61,81,83,84,85,114],__iter__:[51,52],__name__:30,__next__:52,__repr__:61,_alazar:59,_assigned_fg:14,_ats_dll:3,_attenu:57,_bdaqctrl:58,_call:14,_channel:3,_check_for_error:18,_check_respons:18,_coil_const:17,_count:8,_current_r:17,_current_ramp_limit:17,_error_queu:18,_expect_error:18,_get:114,_get_cmd:72,_get_temp_channel:29,_handl:3,_indic:8,_instrument:[3,14,18],_instrument_list:114,_measured_param:3,_mode:77,_poll:18,_ramp_stat:61,_ramp_tim:61,_raw:3,_read_cmd:72,_recv:72,_response_queu:18,_return_handl:14,_run_loop:14,_run_wrapp:14,_save_v:[3,31,48],_scale_param:8,_send:72,_set:114,_set_async:114,_set_both:114,_setget:[12,13],_step:76,_syncoutput:14,_t0:61,_trace:26,_val:8,_win32:58,_write_cmd:72,_write_respons:64,a118e754f9e:18,abil:[74,95],abl:[17,62,113,114],abort:[13,75],abort_measur:13,about:[3,16,18,25,26,30,77,102,105,107,108,110,114],abov:[1,26,28,58,77,113],abs:[17,32],absolut:[30,38,77,102],accept:[3,37,38,40,41,42,53,72,113],acces:[10,28],access:[1,33,58],accommod:77,accompani:102,accord:[3,77,109],accordingli:14,account:[49,57,61,102],accur:40,achiev:28,acknowledg:43,acquir:[3,12,14,15,16,21,26,30,59,66,68,106,113],acquisiion:59,acquisit:[13,16,26,30,59,66,68,75,102,106,113],acquisition_conrol:59,acquisition_control:[16,59],acquisition_controller_acquisit:16,acquisitioncontrol:59,acquisiton:[16,59],acquist:59,across:[24,25,113],act:[3,36,49,57],action:[1,3,5,6,8,14,18,29,32,36,46,77,81,85,91,105,106,108,113,114],action_indic:[6,14,36],activ:[1,6,66,72,74,105,109],active_channel:66,active_children:9,active_loop:6,activeloop:[6,46,105],actual:[1,3,11,17,57,59,65,102,113],acut:0,adapt:[51,52],adaptivesweep:[52,105],adawpt:52,add:[1,2,3,4,6,9,10,13,14,15,21,26,27,30,37,39,43,44,54,64,65,68,69,74,75,76,77,79,82,83,84,85,95,96,99,102,105,110],add_arrai:[36,37,82],add_channel:[26,74],add_compon:[4,21,85],add_funct:[3,44,45,102],add_paramet:[3,10,44,45,102,113,114],add_signal_to_sweep:[30,68],add_submodul:44,add_subplot:28,added:[1,17,26,31,36,37,68,77,82,83,84,85,102,113],adding:[1,9,30,106],addit:[1,3,28,43,44,49,54,71,72,76,108,110,113],addition:[1,30,66,68],address:[3,7,17,23,25,29,33,43,54,60,61,62,63,64,65,69,70,72,73,74,76,77,78,79,102,113],adjust:[17,26,65,113],adjust_parameter_valid:65,adopt:108,adriaan:75,advanc:49,advantag:1,advantech:[57,97],advantech_pcie_1751:58,aeroflex:[3,78],affect:[30,38,68,102],after:[1,6,10,14,42,46,49,53,59,66,72,77,95,102,110,113],again:[6,16,113],against:105,aggeg:0,aggreag:0,aggreg:[34,56,106,114],agi:[7,11,18,20],agil:[7,20,22,57,97,102,106],agilent1:[7,18,20],agilent2:[7,18,20],agilent_2:7,agilent_34400a:[7,11,18,20,57],agilent_34401a:69,agilent_34410a:69,agilent_34411a:69,agilent_e8527d:[69,102],agilent_hp33210a:69,agilent_volt:11,agreement:21,agument:32,ahead:[30,51,52],aid:113,aim:1,airbnb:102,aka:102,akin:113,ala:108,alazar1:16,alazar:[3,16,59,97],alazar_driv:59,alazar_nam:[16,59],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,59],alazarstartcaptur:59,alazartech:[3,16,57],alazartech_at:[3,16,59],alazartech_ats9870:[3,16,59],alazartest:16,alex:102,alexcjohnson:102,alia:[69,70,78],all:[1,2,3,8,9,10,12,16,19,21,24,25,26,28,30,31,33,34,36,39,40,41,42,44,45,48,49,51,54,56,57,58,59,61,64,68,69,72,73,74,75,76,77,84,85,100,102,105,106,108,109,110,113,114],all_channels_off:77,all_channels_on:77,alloc:[16,59],alloc_buff:[16,59],allocated_buff:[16,59],allow:[1,3,17,24,25,33,43,49,51,52,54,68,72,76,77,82,102,113],almost:113,alon:[17,36],along:[1,17,31,48,49,75,83,84,102,105,113],alongsid:8,alpha:[28,65],alreadi:[31,36,40,48],also:[1,2,3,6,10,16,17,26,27,28,32,36,38,40,42,49,51,55,59,61,66,71,72,76,77,82,99,102,105,108,109,110,113],altern:28,although:[3,28,68,102,109],alwai:[1,2,5,10,15,27,30,42,48,61,64,68,76,77,102,113],always_nest:42,amen:102,american:[17,70],american_magnet:[17,57],ami430:[57,97,100,106],ami430_2d:70,ami430_3d:[17,70],ammet:113,amodel:[6,9],among:[39,114],amp:[3,17,21,71,76],amper:70,amplifi:[3,10,71,76],amplitud:[6,8,9,15,24,25,30,59,74,77,114],anaconda3:[14,18],anaconda:[108,109],analog:64,analog_amplitude_n:77,analog_direct_output_n:77,analog_filter_n:77,analog_high_n:77,analog_low_n:77,analog_method_n:77,analog_offset_n:77,analys:74,analysi:[102,113],analyz:108,angl:17,angle_deg:69,angle_rad:69,ani:[0,2,3,8,9,10,16,17,18,20,23,24,25,26,28,31,34,36,38,39,40,41,42,43,46,48,49,51,52,53,54,56,59,61,68,76,77,81,85,102,105,108,113,114],anoth:[3,8,10,11,28,39,51,108,113],answer:[61,65],anyth:[10,13,19,77,105],anywai:8,ap_tim:13,apertur:[11,13],api:[1,68,91,93,108,110,113],api_level:68,apparatu:105,appear:[62,77],append:[17,18,28,36,51,114],appli:[17,19,24,25,37,41,49,77],appropri:[1,59,113],approv:102,arang:3,arbitrari:[41,42,48,69,73,77,105,108],architectur:[3,108,114],arctan:28,arg:[1,2,3,14,18,31,41,48,49,51,53,62,64,72,83,84,114],arg_count:14,arg_pars:41,argument:[0,1,5,9,10,14,32,36,37,40,41,48,53,70,105],around:[26,28,36,75,102,113],arrai:[0,1,4,6,8,10,11,12,13,14,15,16,20,21,26,27,28,30,31,36,37,40,48,59,66,68,73,74,76,77,81,82,84,95,105,106,113,114],array_count:8,array_id:[0,1,4,6,8,10,11,12,13,14,15,16,21,26,27,30,36,40,114],arraycount:8,arraygett:5,arraymeasur:62,arrayparamet:[3,12,62,74,76,77,91,106],arriv:113,arrow:109,ask:[3,13,18,29,30,61,65,72,76,77,102,113],ask_modul:76,ask_raw:3,asopc:59,asopc_typ:[16,59],asrl10:23,asrl1:27,asrl2:54,asrl4:[11,72],asrl6:[14,24,25],asrl7:13,asrl:65,asrln:61,assert:[17,76,77],assertalmostequ:62,assign:[14,24,25,64,77,102],associ:113,assum:[3,26,28,52,64,109,113],assumpt:[30,77],async:112,asynchron:10,atob:72,ats9870:[3,16,57],ats_acquisition_control:[16,57],ats_contr:16,ats_inst:16,ats_onwork:106,atsapi:[3,59],atsdriv:16,attach:[1,33,37,44,45,46,57,62,64,76,77],attempt:61,attent:[102,106],attenu:[3,24,25,78],attn:3,attribut:[1,30,36,37,40,68,85,102,113],author:102,auto:[30,39],autom:108,automat:[1,3,8,26,30,39,58,64,74,96,100,102,108,110],autorang:14,autoreload:2,autoscal:26,aux_in1:15,aux_in2:15,aux_in3:15,aux_in4:15,aux_out1:15,aux_out2:15,aux_out3:15,aux_out4:15,auxiliari:102,avail:[1,3,22,28,30,57,58,62,64,69,74,77,91,93,108,113],avanc:112,averag:[26,30,59,66,75,77],averageandraw:[5,6,9],averagegett:[6,9],avg:[26,75],avoid:[13,17],awar:102,awg1:28,awg5014:[57,96,98,106],awg5200:[57,100],awg520:57,awg:[10,62,77,106],awg_fil:77,awg_file_format_channel:77,awg_file_format_head:77,awgfil:28,awgfilepars:[28,57],awgfilepath:77,ax1:28,ax2:28,ax3:28,ax4:28,axes:[1,23,26,72],axes_api:1,axi:[1,17,26,30,31,36,42,48,49,68,113],axs:30,babi:114,back:[3,10,17,26,28,52,61,72,77,102,108,109,110,113,114],backend:[1,54],background:[6,18,20,113],background_color:83,background_funct:37,backslash:102,backward:38,bad:2,bandwidth:[16,26,30,68],bar:[102,110],bare:[43,51],base0:114,base1:114,base2:114,base:[1,8,12,14,17,33,36,37,38,39,40,44,45,52,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,83,102,106,110,113,114],base_loc:[2,6,38],baseplot:83,baseserv:114,basi:48,basic:[3,27,42,59,65,108],basicconfig:14,baud:[61,76],bdaqctrl:58,bear:102,becam:6,becaus:[1,2,3,27,36,37,40,58,59,62,102,109,113,114],becom:[16,28,72,105,113],been:[3,8,17,27,28,49,68,75,77,113,114],beep:3,befor:[2,3,10,11,14,15,17,26,27,30,39,43,46,49,53,57,58,59,65,68,72,77,102,110,113],beforehand:57,begin:6,begin_tim:61,behav:102,behavior:[6,9,16,18,20,23,102,113],behaviour:[21,49,68],behind:30,being:[2,10,16,28,36,75,77],belong:[31,48,49,74],below:[1,2,3,10,12,28,102,105,106],ben:17,benchmark:[11,100],best:[3,102],beta:[3,27,59,62,69,72,74,75,76,77],better:[3,13,41,100,102,113],between:[1,3,22,37,40,43,49,51,68,77,82,83,84],beyond:77,bid:58,bidirect:[3,49],binari:[12,58,77],binascii:27,bind:30,biodaq:58,bip:65,bit:[13,58,59,76,77],bitlevel0:66,bitlevel1:66,bits_per_sampl:[16,59],black:83,blame:[24,25,77],blank:[42,102],blind:10,block:[10,18,42,65,66,114],blockavg_hardware_trigger_acquisit:66,board:[3,16,24,25,59],board_id:[3,16,59],board_kind:[16,59],bodi:102,boilerpl:[3,41],bold:105,bool:[3,31,33,36,43,48,49,61,62,64,65,66,70,71,74,76,77,82,85],bool_to_str:77,born:102,bot:[98,99],both:[1,3,8,11,26,30,38,62,74,76,77,102,105,108,109,113,114],bottom:[65,109],bound:[10,113],bracket:102,branch:102,breakif:[10,91,113],breviti:3,brittl:113,broader:108,broken:[2,49],brows:[109,114],buf:59,buffer:[16,58,59,66,76,98,106],buffer_acq_mod:15,buffer_list:3,buffer_npt:15,buffer_paus:15,buffer_reset:15,buffer_sr:15,buffer_start:15,buffer_timeout:[16,59],buffer_trig_mod:15,buffers_per_acquisit:[16,59],bug:103,build:[28,30,68,77,96,97,102,109,113],build_sweep:[30,68],built:[1,8,30],builtin:41,bunch:30,burden:113,burst:106,busi:58,button:[77,102],bwlimit1:16,bwlimit2:16,bwlimit:[16,59],bwmode:30,byref:14,byte_to_bit:76,byte_to_value_dict:[3,59],c_amp_in:[3,71],c_set:8,cabl:[77,113],calc:66,calc_set_point:77,calcul:[17,68,105,113],calibr:[57,59],call:[2,3,8,9,14,17,18,21,26,27,28,30,31,34,36,37,39,40,41,43,48,49,53,54,56,58,59,61,64,65,68,75,76,77,79,82,102,113],call_by_str:14,call_by_str_parsed_out:14,call_cmd:[3,41],callabl:[10,18,32,34,37,39,46,49,53,55,56,82,98,113],callsig:28,came:59,camp1:20,camp:[7,20],can:[0,1,2,3,8,9,13,15,17,21,22,24,25,26,28,30,31,32,35,36,37,39,41,42,46,48,49,51,52,55,58,59,61,62,65,66,68,72,73,74,77,81,82,83,84,85,102,105,106,107,108,110,113,114],cancel:[24,77],cannot:[4,17,26,31,48,58,76,77,113],canva:1,capabl:[19,105,108,113],capit:102,captur:[10,26,59],card:[3,16,58,59,62,66,97],cardid:66,care:[2,3],cartesian:[17,113],cartesian_measur:17,cast:[13,28,41],caus:[24,25,66,76],caution:[77,106],caveat:113,cdll:3,cell:28,center:[26,75],certain:[10,17,30,59,72],cesr:76,cffi:58,ch01:25,ch01_i:24,ch01_irang:24,ch01_slope:[14,24],ch01_sync:14,ch01_sync_delai:14,ch01_sync_dur:14,ch01_v:[13,14,24],ch01_vrang:24,ch02:[24,25],ch02_slope:24,ch02_sync:24,ch02_v:[14,24],ch0_offset:19,ch0_voltag:19,ch1:[10,77],ch1_amplitud:22,ch1_amplitude_unit:22,ch1_burst_mod:22,ch1_burst_ncycl:22,ch1_burst_phas:22,ch1_burst_polar:22,ch1_burst_stat:22,ch1_curvedata:27,ch1_databuff:15,ch1_displai:15,ch1_frequenc:22,ch1_function_typ:22,ch1_offset:22,ch1_output:22,ch1_posit:27,ch1_ramp_symmetri:22,ch1_ratio:15,ch1_scale:27,ch1_state:27,ch1_trigger_count:22,ch1_trigger_delai:22,ch1_trigger_slop:22,ch1_trigger_sourc:22,ch1_trigger_tim:22,ch1_voltag:19,ch2:[10,27,77],ch2_curvedata:27,ch2_databuff:15,ch2_displai:15,ch2_offset:28,ch2_posit:27,ch2_ratio:15,ch2_scale:27,ch2_state:27,ch3_state:28,ch41_v:11,ch42_v:11,cha0:57,chain:113,chan0:[6,9,57],chan0_set:6,chan1:[6,9,30,32],chan1_set:6,chan2:[6,9,30],chan:64,chan_alia:29,chan_go:14,chan_list:33,chan_reset_1:14,chan_reset_2:14,chan_reset_3:14,chan_typ:33,chanc:59,chandata:30,chang:[1,3,10,16,19,24,25,27,30,31,35,38,48,49,65,68,76,77,101,102,106,108,109,110,113],change_autozero:77,change_displai:77,change_fold:77,channel2:66,channel:[3,6,7,10,11,15,16,18,19,20,21,27,28,33,44,45,54,58,59,61,62,63,64,65,66,68,72,74,76,77,98,99,105,106,107,113],channel_0:66,channel_1:66,channel_a:59,channel_cfg:77,channel_rang:[16,59],channel_range1:16,channel_range2:16,channel_select:[16,59],channel_skew_n:77,channel_state_n:77,channelbuff:76,channelis:[21,64,77],channelist:33,channellist:[64,91],channum:[62,64],charact:[31,42,43,48,49,54,72,102],characterist:113,chassi:62,check:[3,17,55,58,72,74,76,83,84,102,107,111,113,114],check_error:14,check_for_error:75,check_module_error:76,check_schema:2,checklist:102,chime:102,chnum:28,choic:[26,59],choos:[28,65,68,74,77,113],chore:102,chosen:68,chx:10,clariti:3,classic:13,classmethod:[57,59,62,69,75],clean:[73,77,95,102],clean_str:73,cleanup:[40,100],clear:[14,15,26,27,28,54,62,76,77],clear_buff:59,clear_channel:[26,74],clear_error:69,clear_message_queu:[27,28,77],clear_waveform:77,clearli:102,clever:103,cli:108,click:[1,109],clim:1,clip:113,clock:[3,16,59,77],clock_edg:[16,59],clock_edge_ris:16,clock_frequ:62,clock_sourc:[3,16,59,77],clone:102,close:[1,4,11,17,19,21,24,25,26,27,28,29,30,58,66,68,72,100,102],close_ev:1,close_fil:40,closedevic:75,cls:2,cmd:[3,14,61,64,76,77],cmd_str:14,code:[1,3,30,41,49,60,61,66,69,76,85,103,108,113],codebas:108,coil:[17,70],coil_const:[17,70],col:74,cold:72,collect:[8,51,59,105,108,113],colloqui:77,colon:[72,102],color:[1,28,30,83],colorbar:[1,36],column:[1,42,113],com2:54,com:[66,69,78,102,104,106,109],combin:[34,37,42,49,75,80,82,91,99,105,106,112,113],combined_set:0,combinedparamet:[0,91],come:[42,102,113],comma:[72,77],command:[1,3,12,13,14,16,27,28,30,41,49,58,61,64,65,66,69,72,74,76,77,91,102,105,108,113],comment:[3,42,58,102],commit:[59,107,108],common:[3,72,74,77,105,113],commonli:[69,74,77],commun:[3,17,43,54,59,61,65,72,76,105,107,113],communc:17,compani:3,compar:[11,26,102],compat:[46,53,68,77,108,113],compatibil:77,compens:[66,77],complain:[10,113],complet:[1,14,28,36,37,58,66,77,113,114],complex:[3,26,49,74,102,113],compliant:102,complic:[41,113],compon:[7,48,59,85,108,113],composit:[14,113],comprehens:[102,106],comput:[1,21,68,72,102,109,113],con:97,concaten:[64,102],concept:114,conclus:13,concurr:113,conda:109,condit:[3,10,32,49,58,72,77,113],config:[3,16,59,77,91,99,102,106,112],config_file_nam:35,configur:[16,30,35,58,59,75,77,94,106,108,112,113],conflict:[58,113],confusingli:114,connect:[3,11,12,13,14,15,16,17,18,21,22,24,25,26,27,28,30,54,59,61,62,68,72,76,77,85,105,113],connect_messag:[3,61,62,64],consequ:113,consid:[10,21,77,102],consist:[10,24,25,26,65,75,77,81,102,113],consol:66,consolid:108,constant:[5,10,17,30,65,68,70,75],construct:[5,26,32,36,43,49,114],constructor:[3,31,36,48,83,84],consult:113,cont_meas_off:26,cont_meas_on:26,conta:68,contact:100,contain:[3,5,6,10,21,26,28,33,36,37,39,42,58,59,61,64,68,69,72,74,76,77,85,102,105,110,113,114],content:[36,106],context:113,contian:59,contin:77,contini:26,continu:[28,30,46,77,85,102],contrast:102,contribut:[3,103,107],contributor:102,control:[2,3,9,16,18,19,20,21,23,24,25,26,28,30,59,61,63,65,70,72,74,77,97,108,110,113,114],controlthermometri:72,conveni:[77,85,113],convent:3,convers:[77,102],convert:[3,17,36,38,59,64,66,72,76,77,113],convert_to_voltag:66,coordin:17,copi:[2,18,36,51,65,68,113],core:[0,1,6,7,9,14,15,16,18,20,23,26,27,29,30,102,106,107,108,110],corner:[9,16,18,20,23],correct:[1,3,17,19,28,30,40,76,99],correctli:17,correspond:[1,3,11,15,19,21,28,42,59,61,68,74,76,77],cosmet:[95,96],cost:65,could:[3,9,14,28,102,113],count:[8,14,41,58,64,77,114],counter:[9,10,39,58],coupl:[3,16,30,59,66,77],coupling1:16,coupling2:16,cours:[102,113],cov:102,cover:[102,114],coverag:[102,108],coveragerc:102,cpld:59,cpld_version:[16,59],cpu:26,crash:[59,108],creat:[1,4,7,8,9,10,16,18,20,21,33,36,40,46,48,49,51,57,59,61,62,68,69,72,77,78,81,82,105,106,109,110,113,114],create_and_goto_dir:77,creation:[10,114],creator:102,critic:[2,110],cryo:97,ctwrapper:14,ctype:3,cumbersom:64,curernt:114,curr:[3,7,12,20,21,71,76],current:[2,3,6,7,12,17,20,21,24,25,26,27,28,30,35,37,38,39,58,62,64,68,70,71,72,76,77,79,80,82,85,102,110,113,114],current_config:[2,35],current_config_path:35,current_field:17,current_r:[17,70],current_ramp_limit:[17,70],current_schema:[2,35],current_target:17,current_to_field:17,current_valu:14,currentparamet:[3,7,20,71],curv:[12,77,106],custom:[8,35,38,106],customawgfil:77,customis:64,cutoff_hi:76,cutoff_lo:76,cwd:35,cwd_file_nam:[2,35],cycl:[7,16,18,20,21,22,62,113],cylindirc:17,cylindr:17,cylindrical_measur:17,d_bdaq_c_interfac:58,dac1:5,dac2:5,dac3:5,dac:[5,10,57,61,65,99],dac_ch1_set:10,dac_ch2_set:10,dac_commands_v_13:64,dac_delai:65,dac_max_delai:65,dac_step:65,dacchannel:61,dacexcept:61,dacnam:65,dacread:61,dacslot:61,dai:102,dancer:102,daq:30,daqnavi:58,daqnaviexcept:58,daqnaviwarn:58,dark:83,dat:42,data1:26,data2:[4,9,27],data:[0,1,2,3,5,6,8,11,12,13,14,15,16,18,20,21,26,27,30,36,37,38,39,40,42,46,48,49,58,59,64,65,66,68,74,77,80,82,83,84,91,99,102,105,106,108,113,114],data_arrai:6,data_buff:14,data_l:4,data_set:[2,4,6,10,14,40,77,94],data_v:49,dataarrai:[0,1,6,8,20,31,37,40,48,82,91,105,113],dataflow:59,dataformat:106,dataformatt:102,datamanag:[105,113],datamin:113,datamod:[0,6,8,9,11,16,20,30,114],datapoint:77,datasav:106,dataserv:[9,37,105,113],dataset:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,20,21,26,27,30,36,39,40,42,48,62,77,80,81,82,91,105,112,114],date:[9,10,39,59],datetim:39,daunt:102,dbm:[26,74],dc_channel_numb:77,dc_output_level_n:77,ddl:58,deacadac:61,deadlin:18,dealt:113,debug:[2,4,27,30,110,113,114],debugmod:14,deca:19,decadac:[57,98,100,106],decadec:61,decid:[2,113,114],decim:[16,59],declar:58,decod:3,decoupl:102,decreas:11,deem:68,deeper:18,def:[0,1,2,3,8,10,13,14,17,18,20,72,114],default_current_ramp_limit:70,default_figs:1,default_file_nam:35,default_fmt:110,default_formatt:[37,80,82],default_io:[37,80,82],default_parameter_nam:100,default_server_nam:75,defaulttestload:4,defer:32,deferred_oper:91,defin:[0,2,3,9,26,28,30,31,41,48,62,71,72,76,77,102,105,106,110,113,114],definit:[9,30,41,113],deg:15,deg_to_rad:69,degre:[22,30,49],del:3,delai:[0,1,6,10,14,16,17,25,30,46,49,50,52,55,65,74,113,114],delay_in_points_n:77,delay_in_time_n:77,deleg:36,delegate_attr_dict:85,delet:[3,77,102],delete_all_waveforms_from_list:[28,77],demand:113,demo:106,demod1:[30,68],demod1_harmon:30,demod1_ord:30,demod1_phaseshift:30,demod1_sampler:30,demod1_signalin:30,demod1_sinc:30,demod1_stream:30,demod1_timeconst:30,demod1_trigg:30,demod:30,demodul:[68,106],demodulation_acquisitioncontrol:[16,59],demodulation_frequ:[16,59],demonstr:[3,8],denot:[31,42,48,82],depend:[1,16,24,25,30,42,74,93,100,102,109,113],deploi:[12,77],deprec:[3,36,77,96],deprecationwarn:77,deriv:105,descipt:35,describ:[2,3,8,10,31,46,48,68,102,110,113],descript:[2,36,77,102,110,113],descriptor:65,design:[69,77,78,113],desir:[10,17,76],desktop:14,destruct:113,detail:[1,102,113],detect:99,determin:[40,84],dev2235:30,dev:[2,12,13],develop:[62,68,103,107,108],devic:[54,58,62,65,68,72,74,77,97,113],device_clear:54,device_descript:58,device_id:68,dft:[16,59],dg4000:57,dg4062:73,dg4102:73,dg4162:73,dg4202:73,diagon:105,dict:[31,35,36,39,40,43,44,45,48,49,54,61,72,76,77,79,82,98,113],dictionari:[3,28,59,76,77,85,110,113],did:[3,9,11,109],didact:10,diff:77,differ:[1,3,8,21,26,31,37,48,68,74,77,102,105,108,113,114],differenti:36,difficult:102,difficulti:102,dig:[30,62,99],digit:[3,10,58,62,64,66,77,97],digital_amplitude_n:77,digital_high_n:77,digital_low_n:77,digital_method_n:77,digital_offset_n:77,dilut:72,dim:30,dimens:[8,31,36,42,48,113],dimension:[1,36,37,72],dio:58,dir:[2,77],direct:[31,48,62,75,102],directli:[1,3,5,8,17,24,25,28,30,37,46,72,77,106,113],directori:[2,3,37,38,77,80,82,102,109,110],disabl:[16,33,37],disadvantag:113,disambigu:9,disappear:113,disc:77,disconnect:113,discov:57,discret:113,discuss:[102,107],disk:[37,38,40,77,82,113],diskio:[6,37,39,80,82,91,105],displai:[0,1,2,6,7,9,11,13,14,15,16,18,20,23,26,27,29,30,74,77],display_clear:[11,13,14,69,77],display_grid:[26,74],display_norm:77,display_settext:21,display_sij_split:26,display_single_window:26,display_text:[7,11,13],display_text_2:7,dissip:113,distribut:108,div:27,dived:57,divid:[49,57,97,98],divider_r:77,divis:[27,57],division_valu:57,divsion:57,dll:[58,59,75,106,113],dll_path:[3,59,75],dma:58,dmm:[10,11,13,14,69,99,100],dmm_data_buff:14,dmm_volt:13,dmm_voltag:10,do_acquisit:59,do_get_frequ:74,do_get_pow:74,do_get_pulse_delai:74,do_get_statu:74,do_get_status_of_alc:74,do_get_status_of_modul:74,do_set_frequ:74,do_set_pow:74,do_set_pulse_delai:74,do_set_statu:74,do_set_status_of_alc:74,do_set_status_of_modul:74,doc:[2,6,65,102,106,109],docstr:[3,8,31,41,48,49,77,102],document:[1,17,31,41,48,49,59,77,94,95,97,102,108,113],doe:[1,10,17,23,26,30,36,39,42,46,54,57,58,62,65,69,72,74,76,77,78,102,113],doesn:[3,8,9,28,36,58,62,66,77,102],dofastsweep:[12,21,77],doing:[16,26,102,113],domain:[30,72],domin:108,don:[1,3,27,40,51,52,61,62,64,77,102,113,114],done:[1,6,10,28,30,72,95,109,113,114],dot:[2,102,110],doubl:[39,77],doubt:[30,102],down:[17,21,28,102],download:[30,106,109],dramat:113,drive:6,driver:[5,8,10,15,17,21,24,25,26,27,28,30,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,95,96,97,98,99,100,102,108,112,113],driver_vers:[16,59],drivertestcas:[57,62,69,78],due:[3,6,24,25,30,61,113,114],dummi:[5,10,16,81,106,114],dummy_set:16,dummyinstru:[5,10],dump:[7,59],duplic:[3,77],dur:30,durat:[25,30],dure:[1,14,49,51,55,59,62,66,77,93,113,114],dut:26,dynam:[24,25,58,106],e1cb66:28,e8267:69,e8267c:[57,97],e8527d:[57,102],each:[0,1,3,4,6,8,10,11,12,13,14,15,16,18,19,20,21,22,24,25,26,27,28,30,31,36,37,40,41,42,43,46,48,49,51,58,59,61,64,65,68,69,76,77,78,83,84,85,102,105,108,113,114],eachot:114,earli:27,easi:[5,16,102,105,108,109],easier:[68,100,102,113],easiest:2,easili:[1,9,10,77,108],echo:61,edg:[16,27],edit:75,editor:102,ee82e:28,effect:[59,77,110],effort:3,eight:[24,25],either:[1,3,21,24,25,30,40,58,62,70,73,77,84,113],elaps:[14,18,20],electron:[3,108],elem1m1ch1:77,elem1m1ch2:77,elem1m2ch1:77,elem1m2ch2:77,elem2m1ch1:77,elem2m1ch2:77,elem2m2ch1:77,elem2m2ch2:77,element:[1,28,77,84,110,113],element_no:77,elemnum:28,elif:18,elnum:28,elpi:102,els:[2,14,19,26,58,77,102],elsewher:85,emac:102,email:107,embed:[1,109],emit:65,emoji:102,empti:[2,8,10,18,28,61],enabl:[16,30,49,66],enable_channel:66,enable_record_head:[16,59],encapsul:113,enco:14,encod:[3,14,41,49,58],encount:58,encourag:[3,30,102],end:[3,39,51,54,58,59,74,77,102,108,113],endpoint:[11,77],engin:16,enough:[10,58,72,102,105],ensur:[27,75,76,102,113],ensure_ascii:7,enter:[31,48,113],entir:[15,16,22,76,85,113],entri:[2,40,46,48,77,91],entrypoint:93,enumer:[3,30],env:[2,14,35,109,110],env_file_nam:[2,35],enviro:109,environ:[2,108,109,110],equal:110,equitim:76,equival:[8,77,108],err:75,error:[0,2,3,4,14,17,18,24,36,46,49,58,59,62,65,66,76,77,99,106,110,114],error_cod:65,errorcod:58,errormsg:58,errorreg:66,errorvalu:66,esr:76,essenti:[10,69,76],establish:17,etc:[1,3,8,19,21,26,31,36,41,48,102,113],ethernet:[3,43,77],etr_5v:16,eumer:52,evalu:53,even:[8,13,17,24,25,38,40,49,51,52,54,64,66,77,102,113],event:[28,30,58,61,76,77,106],event_input_imped:77,event_input_polar:77,event_input_threshold:77,everi:[1,3,34,37,46,56,59,68,107,113,114],everybodi:[102,107],everyon:102,everyth:[28,30,39,91,102],exactli:[5,14,102],examin:72,exampl:[0,1,2,6,8,31,32,36,39,48,49,52,54,59,62,66,77,97,102,105,108,109,111,114],exce:102,exceed:[28,58],except:[2,3,14,17,58,61,76,77,86],exec_funct:14,exec_str:14,execut:[10,14,30,41,53,57,58,62,66,68,69,74,77,78,105,108,113],executor:114,exemplifi:30,exept:30,exercis:102,exis:26,exist:[3,10,26,28,39,40,52,58,66,77,80,82,102,108,113],exit:77,exit_kei:77,expand:103,expect:[2,3,14,18,30,31,40,46,48,58,64,66,76,77,102,114],experi:[9,10,35,106,108,109,113],experiment:[108,113],expir:14,explain:[102,110],explicit:[28,49,51],explicitli:[31,36,48,102,113],explor:[10,77],expos:[64,110],express:[49,113],ext:[14,22],ext_trigg:15,extend:[28,42,51,74],extens:[42,77],extern:[16,22,66,74,75,77],external_add_n:77,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:77,external_startcaptur:[16,59],external_trigger_coupl:[16,59],external_trigger_rang:[16,59],extra:[8,13,31,48,49,102,113],extra_schema_path:2,extract:72,extrem:113,f008:72,fact:102,factor:[3,7,24,25,30],factori:77,fail:[2,100,102,113],falcon:102,fall:77,fals:[2,6,7,8,14,18,19,20,24,25,26,30,36,37,43,44,49,50,60,61,62,64,65,66,69,70,73,74,76,77,82,110,113],faq:112,fast:[64,72,77,106,113],faster:[26,28,100,102],fastest:28,fastsweep:21,feasibl:108,feat:102,featur:[1,3,19,75,97,98,99,100,103,108],feed:[3,71,76],feedback:[52,113],feel:102,fetch:[7,13,72],few:[22,26,41,68,102,107],fewer:[24,25],ff4500:28,ff8c00:28,fft:68,field:[17,31,41,42,48,49,70,72,108,114],field_limit:[17,70],field_measur:17,field_target:17,field_target_cartesian:17,field_target_cylindr:17,field_target_spher:17,field_valu:72,field_vector:17,fieldvector:17,fifo:16,fifo_only_stream:[16,59],fig:[1,17,26,28,30],figsiz:[1,10,83,84],figur:[1,14,28,30,84,102,109,113],figure_api:1,file:[2,4,9,10,35,37,39,40,42,58,65,72,77,80,82,102,106,112,113],file_path:77,filen:35,filenam:[28,77],filepath:28,filestructur:77,fill:[8,10,15,46,77,113],filter:[30,68],filter_slop:15,filw:77,find:[18,39,59,102,107,110],find_board:[16,59],find_modul:76,findal:72,finder:10,fine:[65,113],finish:[1,6,12,13,26,30,59,95,113],finit:[24,25,64,65],fire:[24,25],firmwar:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,98],first:[1,2,6,8,10,13,14,17,22,26,28,31,36,42,48,49,53,70,77,83,84,102,113,114],first_delai:14,fit:[28,59,102],five:75,fix:[17,30,36,41,51,72,98,99,100,101,102,113,114],fixabl:102,flag:[24,25,65,75],flake8:102,flavor:113,flexibl:[105,108],flow:[24,25],flush:[22,76,77],flush_error_queu:[22,62],fmt:[2,9,10,39],fmt_counter:39,fmt_date:39,fmt_time:39,fname:77,focus:102,folder:[3,38,42,77],follow:[1,3,5,10,11,17,22,28,49,61,77,102,109,110,113,114],foo:[102,110,114],footer:102,forc:[6,9,16,18,20,23,26,28,77],force_ev:77,force_logicjump:77,force_reload:77,force_trigg:[27,77],force_trigger_ev:77,foreground:[100,113],foreground_color:83,foreign:58,fork:102,form:[3,12,41,59,72,74],format:[3,10,11,12,13,14,17,21,24,25,26,28,30,37,39,41,42,58,74,77,80,82,106,108,113],formatloc:[2,9,10,82,91,105],formatt:[4,6,37,80,82,91,97,105,110,113],former:[12,13],formerli:[3,78],forward:[16,38,59],foul:28,found:[3,26,28,30,40,53,58,65,77,102,106],four:[19,58,61,73],fourier:59,framework:[102,108,113],free_mem:59,freedom:49,freeli:113,freq:[26,75],frequenc:[10,15,26,30,59,62,74,75,77,114],frequency_set:26,frequencysweep:74,frequencysweepmagphas:74,frequent:102,fridg:[72,108],friendli:68,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,31,36,37,39,40,41,42,46,48,49,58,59,62,64,65,66,68,69,71,72,74,76,77,80,81,84,85,99,102,104,105,106,108,113,114],fron:7,front:[30,77],frontend:110,full:[0,2,22,24,30,37,42,77,80,82,108],full_nam:[0,36],full_trac:26,fulli:[26,30,102],fullrang:65,fun:64,func:[3,14,53],func_nam:18,fundament:113,further:[73,105,108],furthermor:[1,17,68],futur:[3,77,102,114],gain:[71,76],garbag:59,gate:[6,9,10,22,32,61,105,113,114],gate_frequ:114,gate_frequency_set:114,gated_trigger_acquisit:66,gather:9,gather_paramet:9,gave:28,gcc:58,gee:30,gener:[3,10,17,22,27,28,37,39,51,58,60,62,68,69,73,74,75,76,77,78,97,102,105,106,108,109,113],generate_awg_fil:77,generate_channel_cfg:77,generate_sequence_cfg:77,get:[0,2,3,4,5,6,8,9,10,11,14,16,17,18,19,20,21,23,24,25,27,29,30,31,36,40,48,49,57,59,62,64,65,68,71,72,74,76,77,85,102,106,110,113,114],get_al:[65,72,74,77],get_board_info:59,get_card_memori:66,get_card_typ:66,get_chang:72,get_cmd:[3,10,49,50,59,72,114],get_compon:17,get_current_folder_nam:77,get_data_set:[0,1,10,11,12,13,14],get_error:77,get_error_info32bit:66,get_filenam:77,get_folder_cont:77,get_funct:59,get_idn:[3,16,58,59,61,65,66,71,72,76,77],get_instrument_valu:57,get_jumpmod:77,get_latest:[27,30,31,32,48,49],get_max_sample_r:66,get_mocker_messag:70,get_module_idn:76,get_module_statu:76,get_pars:[3,49,50],get_pol_dac:65,get_power_at_freq:75,get_processed_data:[16,59],get_sample_r:59,get_spectrum:75,get_sq_mod:77,get_sqel_loopcnt:77,get_sqel_trigger_wait:77,get_sqel_waveform:77,get_stat:77,get_voltag:76,getattr:3,getcwd:28,getdoubl:30,getlogg:[4,27,28,30],gettabl:[3,8,31,48,49,71,76,81,105,113],getter:[14,105],getx:114,giga:67,giga_b:67,gimm:22,git:[6,18,106,108],github:[102,104,105,106,108,109],giulio:102,giulioungaretti:102,give:[1,8,10,17,46,61,77,102,113],given:[0,1,17,24,25,33,43,58,59,61,73,102,113,114],global:[3,9,19,26,106],gmbh:66,gnuplot:[42,108],gnuplot_format:[4,6],gnuplotformat:[4,6,37,80,82,91,105,113],goal:102,going:[3,5,65],good:[2,3,10,27,30,74,102],googl:[6,102],got:[13,102],goto_root:77,goto_st:[28,77],goto_to_index_no:77,gotten:[22,24,25,28,113],gpib0:[7,15,18,20],gpib:[3,77,79],gradual:19,grai:83,graph:[10,31,48,49],graphicswindow:83,great:102,greatest:113,green:109,grid:[26,74],group:[1,44,58,74,102,108,113],grow:107,gs200:[57,96],guarante:2,gui:[1,2,14,20,30,102,108,110],guid:[1,59,102,107,109],guidelin:102,h5fmt:4,h5py:109,hack:[102,110],had:[9,28,58],half:30,halfrang:65,halt:55,halt_bg:16,han:28,hand:28,handl:[3,8,31,36,37,41,48,58,59,64,65,66,83,100,105,106],handle_buff:59,handle_clos:1,handler:4,hang:102,happen:[3,24,25,28,36,53,113],happi:102,hard:[77,102],harder:[102,113],hardwar:[3,17,24,25,28,61,65,66,74,77,102,105,113],harmon:15,harvard:[19,57],has:[1,3,4,6,8,10,15,17,19,21,22,24,25,27,28,30,31,36,42,48,49,58,59,68,70,76,77,102,110,113,114],hasattr:[14,18],hasn:[3,58],have:[1,2,3,5,8,9,10,17,21,24,25,26,27,28,30,31,36,40,42,48,49,52,57,58,59,61,62,65,68,69,71,75,76,77,78,84,102,105,107,108,109,113,114],haz:95,hdf5:[4,97,113],hdf5_format:4,hdf5format:4,head:77,header:[16,22,58,102],heater:72,heater_off:72,heater_on:72,heatmap:[83,84],height:[83,84],helium:[72,100],help:[2,3,28,30,31,37,40,41,43,48,49,54,77,102,108,113],helper:[2,4,28,68,91,110],henc:61,here:[1,3,6,8,9,15,16,21,24,25,26,30,36,64,68,72,76,81,102,109,113],hesit:102,hewlett:[7,60],hierarchi:103,high:[10,66,77,102,113],higher:[17,110,113],highest:[39,113],highlevel:14,hislip0:13,histori:[77,102],hkey_current_usersoftwareoxford:72,hold:[3,13,15,21,23,30,72,77,105,113,114],hold_repetition_r:77,holdoff:30,home:[2,35,102,110],home_file_nam:[2,35],horisont:[27,30],horizont:27,horizontal_scal:27,host:[24,25],hotfix:102,hound:75,how:[2,5,8,10,17,26,28,30,31,40,42,46,48,49,51,52,83,102,104,105,106,107,113,114],howev:[17,26,62,102],hp33210a:57,hp8133a:57,hp_83650a:57,htm:65,html:[1,54],http:[1,54,65,66,102,104,106,109],human:[10,59,96],i3d:17,iPS:97,icon:109,id1:42,id2:42,id3:42,idea:[3,10,74,102,107],ideal:102,ident:[3,8,21,68,77,114],identifi:[31,37,40,42,44,48,49,61,72,76],idl:[29,77],idn:[3,4,6,7,10,15,16,21,29,61,64,65,72],idn_param:61,idr:72,iff:77,igh:72,ignor:[26,31,48,53,59,77],ignore_kwarg:14,igor:108,illustr:1,ilm200:57,ilm:[72,100],imaginari:26,imm:[13,22],immedi:[10,11,22,24,25,33,38,59,68,85,102,113],impact:113,imped:[10,16,30,59],impedance1:16,impedance2:16,imper:102,implememnt:85,implement:[9,16,17,40,43,51,52,58,59,68,72,74,75,77],implicit:102,implicitli:113,importlib:4,impos:113,improv:[101,102],imprrov:98,inc:[7,12,17,21],inch:84,includ:[3,8,11,31,39,48,49,51,54,58,66,69,76,77,81,83,84,102,105,107,108,113,114],inclus:77,inconsist:113,inconsistensi:77,inconsit:27,incorrect:102,incorrectli:59,increas:[8,17,102],increment:[42,49,99,113],ind:30,inde:[17,102],indend:30,indent:[7,102],independ:[40,113],index0:8,index1:8,index:[1,8,64,65,77,84,113],indic:[0,1,17,36,66,77,113,114],individu:[1,17,26,33,37,51,70],inf:[14,22,24,25],infer:36,infin:77,infinit:[28,77],info:[2,3,6,14,20,23,30,39,59,77,107,110],inform:[10,16,31,39,43,48,49,54,59,66,75,77,83,100,102,108,110,113],inherit:[14,59,74,77],inifit:[24,25],init:61,init_measur:[13,14,69],init_s_param:[26,74],initi:[1,3,10,36,37,40,57,58,72,77,80,82,108,113],initial_valu:[1,3,8,47,49],initialis:[14,74,75,77,79,106],initialize_channel:66,initialz:65,inner:[0,1,8,36,42,113],input:[2,3,14,17,18,28,41,49,57,58,65,72,76,77,102,105,106,113],input_config:15,input_coupl:15,input_path:66,input_rang:66,input_shield:15,insert:[3,39,110],insid:[3,8,11,31,33,37,46,48,77,80,82,102,108,109,113],inspect:[2,17],inst0:[3,11,12,14,21,22,26,28,74],instal:[30,54,58,62,68,76,93,100,102,104,108],instanc:[1,2,3,10,31,37,41,48,49,57,59,61,62,68,69,71,76,77,78,113],instant:58,instantan:[24,25],instanti:[3,16,21,30,37,64,70,102,106,113],instdict:28,instead:[0,1,3,10,36,114],institut:3,instr:[3,7,11,12,13,14,15,18,20,21,22,23,24,25,26,27,28,61,72,74],instruct:[17,108,109],instrument:[0,6,8,11,12,14,15,16,17,18,20,21,22,24,25,26,28,29,30,31,33,36,41,43,45,47,48,49,50,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,91,98,100,102,103,106,108,112],instrument_cod:49,instrument_driv:[3,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,102],instrument_i:70,instrument_mock:[4,5,10],instrument_nam:[10,16,36],instrument_testcas:57,instrument_x:70,instrument_z:70,instrumentchannel:[33,61,62,63,64,74,77,91],instrumentrefparamet:98,instrumentserv:[113,114],instrumentstriton:72,insuffici:113,integ:[3,8,31,36,39,48,58,76,77,84,110,113],integr:[1,7,18,20,21,75,102,113],integration_tim:7,intellig:[72,113],intend:[17,31,48,52,113],inter:65,inter_delai:49,interact:[1,3,76,102,106,109,113],interdepend:113,interest:[30,102,113],interfac:[3,30,58,68,77,106,113],interleav:[16,66,77],interleave_adj_amplitud:77,interleave_adj_phas:77,interleave_sampl:[16,59],intermedi:102,intern:[15,17,22,30,36,49,59,62,68,76,77],internal_clock:[3,16],internal_trigger_r:77,interpret:[3,4,9,10,21,113],interrupt:[58,111],interv:[83,84],introduct:112,inv:22,invert:[3,7,20,71,76],invit:102,invok:[3,30],involv:[106,108,113],io_manag:[37,80,82,113],iomanag:105,ion:30,ipinstru:[3,70,72,91,105],ips120:[57,100],ipython:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,108],iq_arrai:8,iqarrai:8,irang:[25,64],irrespect:[24,25,77],irrevers:113,is_awg_readi:77,is_numb:73,is_setpoint:[6,36],is_typ:2,isobu:72,issu:[17,77,95,96,99,102,105],issue_warning_on:14,ital:105,item:[8,29,31,39,48,51,64],iter:[33,51,52,105],iter_error:2,ithaco1:7,ithaco:[3,7,57,106],ithaco_1211:[3,7,20,57],its:[1,3,8,10,11,19,24,25,28,30,36,41,49,58,59,76,77,81,84,102,105,109,113,114],itself:[33,39,49,59,77,102,113],iv_sweep:[12,21],ivert:7,ivvi:[57,97,99,100],javascript:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,102],jhn:26,job:[113,114],johnson:102,join:[2,28,102,107],jorgenschaef:102,json:[2,6,7,26,31,43,44,48,49,54,76,77,97,108,110,113],json_config:2,jsonschema:2,jtar_index_no:77,jtar_stat:77,jump:[10,19,28,77],jump_log:77,jump_tim:77,jump_to:[28,77],jumplog:77,junk:9,jupyt:[1,10,108,109,111],just:[0,3,5,6,9,10,11,13,21,27,28,30,41,42,55,61,65,102,105,109,112,113,114],k2600:3,k2600a:3,keep:[17,40,59,61,98,102,108,110,113],kei:[1,3,9,28,37,51,59,76,77,82,85,110,113],keightlei:98,keith:[7,12,18,20,21,96],keith_smua_curr:12,keith_smua_iv_sweep:12,keith_smua_volt_set:12,keithlei:[7,12,77,97,106],keithley1:[7,18,20],keithley2:[7,18,20],keithley_2000:57,keithley_2400:57,keithley_2600:[3,7,12,18,20,21,57],keithley_2600_channel:[12,21,57],keithley_2614b:[3,77],keithley_2700:57,keithley_smua:21,keithley_smua_iv_sweep:21,keithley_smub:21,keithleychannel:77,kelvinox:[57,100],kept:110,kernel:[110,111],keysight:[10,57,97,98,99,100,106],keysight_33500b:[10,22,57],keysight_33500b_channel:57,keysight_34465a:[11,13,14,57],keysight_m3201a:62,keysight_volt:11,keysightchannel:62,keyword:[39,41,53],khz:[26,27],kilo:67,kilo_b:67,kind:[0,30,77,114],knob:[3,113],know:[10,51,52,102,107,114],known:[3,36,78],kwarg:[1,2,3,8,14,16,18,41,43,44,45,47,49,50,52,53,54,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,114],lab:[30,68,108],label1:42,label2:42,label3:42,label:[0,1,3,6,7,8,10,16,28,30,31,34,36,39,42,48,49,56,57,59,77,102,113,114],lack:61,lakeshor:57,lambda:[5,10,17,59],languag:42,larg:[6,28,49,77,102],larger:49,last:[1,2,6,14,18,30,49,59,64,68,77,102,113],last_saved_index:40,latenc:[10,11],later:[3,30,31,37,38,39,48,82,85,102,113,114],latest:[59,109,113],latest_cal_d:[16,59],latter:[12,13,84],launch:[68,109],lazi:106,lcardtyp:66,lead:[72,102],leak:59,learn:[30,108],least:[30,102,105,113],leav:[31,43,48,77],leave_persistent_mod:72,left:[1,109],legacy_mp:[2,110],legend:26,len:[13,14,30,58,77,114],length:[8,11,22,28,30,48,58,68,77,81,113,114],less:[30,49,102,113],lest:28,let:[1,17,21,26,36,102,110,114],letter:102,leve:3,level0:66,level1:66,level:[2,3,10,14,16,36,42,66,72,76,77,100,102,110,113,114],levelnam:4,levelv:3,lib:[2,14,18,99],librari:[14,28,58,62,102,109,110],life:[62,102],like:[3,9,10,17,26,28,30,31,36,40,41,48,51,52,59,62,69,72,74,77,102,105,108,110,113],limit:[1,3,16,17,24,25,27,58,70,102,113,114],limiti:[7,21],limitv:[7,21],lin:[30,75],linalg:17,line2d:[14,30],line:[5,7,10,14,18,20,21,30,42,62,83,84,102,107,108],linear:[0,26,74,114],linearli:[30,105],liner:102,link:[36,52,58,59,105],linkag:103,linspac:[0,13,28,114],linux:109,list:[1,4,8,10,12,13,16,25,33,34,37,39,41,44,51,56,58,59,62,64,65,66,68,72,74,76,77,82,85,91,93,95,97,102,105,106,113,114],list_of_dataset:4,list_of_mixed_typ:4,listcomp:14,liter:102,littl:[102,113],live:[1,80,104,106,109,113,114],load:[2,3,8,28,35,40,58,75,77,80,95,106,108,110,114],load_and_set_sequ:77,load_awg_fil:77,load_data:[10,37,91],load_ext:2,loaded_data:10,loadlibrari:3,loadtestsfromtestcas:4,loc:39,loc_fmt:9,loc_provid:[2,9,10,39],loc_provider_junk:9,loc_record:[9,82],local:[0,8,11,12,13,28,30,31,37,41,43,48,49,54,61,62,72,77,79,102,108,113,114],locat:[0,1,2,4,6,8,11,12,13,14,15,16,18,20,21,24,25,26,27,30,37,38,39,40,62,77,80,82,106,110,113,114],location_provid:[2,10,39,82,105],lock:[10,30,33,65,72,76],lockin:[3,15,71,76],lockin_ch1_databuff:15,log:[2,4,5,14,27,28,30,68,75,108,110,114],logger:[4,27,28],logic:[44,77,102],logic_jump:77,loglevel:[2,110],logo:95,lograng:51,logview:102,longer:[26,39,42,46],look:[5,10,24,25,27,30,39,54,59,102,110,113,114],loop:[0,1,6,8,9,12,13,14,16,18,20,26,27,31,32,36,37,40,42,48,49,53,55,59,77,81,85,91,95,105,106,112,114],loop_indic:14,loop_result:8,loop_writing_test_2d_skewed_parabola:4,loop_writing_test_2d_x_set:4,loop_writing_test_2d_y_set:4,loop_writing_test_skewed_parabola:4,loop_writing_test_x_set:4,loopcount:77,lose:13,lost:58,lot:[3,17,36,77,102],loudli:10,love:[102,107],low:[3,10,14,26,30,77,113,114],lower:[36,113],lowest:[39,76],lua:[12,21,77],luasweepparamet:77,m1s:[28,77],m2cmd_card_reset:66,m2s:[28,77],m3201a:57,m3300a:[57,97],m3300a_awg:62,m3300a_dig:62,m4i:[57,96,97,99],mac:[6,9,16,18,20,23],machin:[12,77,102],made:[2,30,62,68,110],magic:28,magnet:[17,70,72,97,100,106,108,114],magnitud:[17,26,74,113],magnitur:26,mai:[3,10,19,21,24,25,26,27,28,30,32,37,40,41,51,52,77,83,84,93,102,105,110,113],mail:107,main:[1,77,113],mainfram:76,mainli:10,maintain:[3,71,76,102,103,107,113],majorana:110,make:[3,5,8,9,10,11,12,15,16,17,18,20,21,23,24,25,30,36,41,42,46,59,64,65,72,76,77,102,105,106,108,109,113],make_and_save_awg_fil:[28,77],make_directori:77,make_send_and_load_awg_fil:[28,77],manag:[3,18,37,39,40,72,76,82,113],mandatori:[15,77,102],mani:[1,8,30,36,37,42,51,52,59,62,99,102,113],manner:28,manual:[17,21,26,30,65,69,71,72,74,76,77,106,108,113,114],manualparamet:[0,1,3,8,10,16,91,114],map:[3,13,41,49,59,76,84,113],mark:[76,113],marker1:77,marker1_amplitude_n:77,marker1_high_n:77,marker1_low_n:77,marker1_method_n:77,marker1_offset_n:77,marker1_skew_n:77,marker2:77,marker2_amplitude_n:77,marker2_high_n:77,marker2_low_n:77,marker2_method_n:77,marker2_offset_n:77,marker2_skew_n:77,marker:[28,77],mashup:95,mass:77,master:[102,106,109],match:[28,30,39,41,42,48,49,58,72,74,76,77,113],math:17,matlab:1,matplot:[0,2,10,15,16,21,26,27,91,98,106],matplotlib:[0,2,4,5,9,11,12,14,15,16,17,18,19,20,23,26,27,28,29,30,84,106,109,110],matter:[28,102],maunual:2,max:[22,42,49,65,66,75],max_delai:50,max_sampl:[16,59],max_status_ag:64,max_subplot_column:1,max_val:61,max_val_ag:[49,50],max_work:114,maxim:[24,25,77],maximum:[17,49,61,65,70,75,110,113],mayb:[36,46,102],mea:15,mean:[2,3,8,12,13,17,26,30,46,49,77,102,110,113,114],meaning:3,meaningless:102,meant:[41,68],meassur:26,measur:[0,1,3,4,6,8,9,11,12,13,14,15,16,17,18,20,21,26,27,31,36,37,42,46,48,49,52,53,57,62,68,71,74,76,85,91,99,106,112],measured_param:[3,71,76],measured_v:1,measured_val_2:1,measured_valu:52,measurerange_i:[12,21],measurerange_v:21,mechan:65,media:77,mega:67,mega_b:67,member:108,memori:[37,58,59,66,77,82,110,113],memory_s:[16,59],memrori:28,memsiz:66,mention:102,mercuri:[97,106],mercuryip:[23,57],mercuryipsarrai:72,merg:102,merger:3,merlin:6,messag:[4,14,22,27,28,61,62,64,65,66,76,77],message_len:65,messagebas:14,messur:26,met:[49,93],meta:[5,30,108,112,113],meta_fil:7,meta_serv:114,meta_server_nam:114,metadat:[44,52],metadata:[3,10,20,31,36,40,43,44,48,49,54,57,76,91,97,106,108,113],metadata_fil:42,meter:[3,6,9,10,21,72,77,100],method:[1,2,3,8,9,10,12,13,17,24,25,28,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,59,62,64,68,69,72,77,78,81,83,84,85,102,113,114],methodnam:[57,62,69,78],mhz:[26,30],might:[19,21,59,102,113],millisecond:76,mimic:105,mimick:113,min:[22,65],min_val:61,min_valu:8,mind:59,mini:42,minim:30,minimum:[49,61],minu:110,mirror:113,misc:91,misinterpret:28,mismatch:58,miss:[102,114],mistak:102,mix:[3,4,102],mock:[5,17,102],mockami430:70,mocker_class:70,mockgat:[6,9],mockinstru:105,mockmet:[6,9],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,9],mode:[0,3,6,7,8,11,12,13,16,17,19,21,30,37,58,59,64,66,68,72,74,75,77,79,106,113,114],model:[3,6,7,9,10,12,16,20,21,59,62,63,70,72,73,74,76,77,102,105,110,113],model_336:57,modif:110,modifi:[1,25,49,51,68,102],modified_rang:40,modul:[2,3,10,14,18,30,93,102,110],modular:[108,113],mohm:12,moment:[62,77],monitor:[9,46,55,85,105,108,113],more:[1,6,10,24,25,26,28,30,37,41,42,49,59,62,66,68,77,94,99,102,105,106,108,109,113],most:[1,2,3,8,14,18,19,26,30,48,49,59,62,69,74,77,102,105,109,113],mostli:[30,105],motiv:102,move:[3,9,17,72,77],mpl_connect:1,msec:[3,7],msg:72,mua:24,much:[26,40,74,102,113],multi:[10,64,94,113],multichan_paramclass:33,multichannelinstrumentparamet:[33,64],multilin:102,multimet:[77,97],multiparamet:[3,26,68,71,72,74,76,91,97,106],multipl:[0,1,8,25,30,33,41,48,49,65,66,69,74,77,106,113,114],multiple_trigger_acquisit:66,multipli:[49,113],multiprocess:[3,18,94,97,108,114],multityp:105,must:[3,8,10,27,28,30,31,36,39,42,43,48,51,52,59,61,62,66,68,76,77,82,102,105,110,113,114],mv_rang:66,mvpp:27,my47004267:7,my48002016:11,my54505281:13,my54505388:[11,14],my57800256:22,my_experi:109,mycount:8,myget:10,myinstrument:114,myset:10,myvector:114,myvector_set:114,n48280:15,naiv:12,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,39,41,42,43,44,45,47,48,49,50,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,85,102,105,109,110,113,114],name_to_delet:3,namespac:[9,91,110],nan:10,nataliejpg:79,nativ:[10,76],navg:75,navig:109,nbagg:[4,5,9,16,18,19,20,23,26,27,28,29],nbi:[102,107],ndarrai:[31,36,48,77,113],nearli:3,necessari:[16,30,36,52,58,59,68,108,113],necessarili:[31,48,102,105],need:[1,2,3,8,10,17,28,36,59,66,72,77,102,105,106,113,114],neg:[55,65],neither:102,nep:[30,68],nepbw:68,nepbw_to_timeconst:68,nest:[8,10,11,36,46,113],nested_dataset:4,network:[74,113],never:[49,102],new_cmd:3,new_data:[37,91],new_indic:14,new_nam:3,new_valu:14,newlin:42,newlinestripp:77,next:[1,28,31,39,42,48,77,109,113,114],nice:[1,3,9,30,102,109],nick:102,nielsen:107,nix:109,no_instru:114,nobodi:102,node:30,nois:21,noisi:17,non:[17,28,81,102,114],none:[2,3,4,6,7,10,14,15,16,17,18,20,21,23,30,31,33,34,36,37,39,41,42,43,46,47,48,49,50,51,54,56,57,59,60,61,62,64,65,66,70,72,74,75,76,77,80,82,84,85,95,102],nonetyp:[33,57],noofpoint:28,noofseqelem:28,nor:102,norm:[17,22],normal:[12,31,37,38,41,48,49,51,62,77,105,113],notabl:30,notat:[2,51],notch_filt:15,note:[1,2,3,8,10,17,21,24,25,28,30,31,33,37,48,49,51,52,54,61,64,68,71,72,75,76,77,80,82,93,108,110,113,114],notebook:[1,2,11,12,14,15,16,17,21,27,28,30,97,99,106,108,109,110,111],noth:[21,59,61],notic:[1,21,26],now:[0,6,8,9,10,15,17,24,25,26,28,30,31,48,85,97,102,109,110,114],nplc:[7,11,13,14,18,20,21,77,106],nplc_list:62,npt:[16,26,74],nr_averag:66,nr_bytes_written:14,nrep:[28,77],num:[6,12,13,14,51,84],num_chan:64,num_channel:77,num_port:26,number:[0,1,3,7,8,9,10,11,13,14,18,20,24,25,26,28,30,39,42,43,46,48,49,51,54,57,58,59,61,62,64,65,66,68,72,73,74,76,77,102,105,110,113,114],number_format:42,number_of_channel:59,number_of_paramet:114,numdac:65,numer:[42,113],numpi:[0,3,4,8,9,11,12,13,14,17,18,20,23,24,25,27,28,29,30,31,36,48,68,76,77,99,113,114],numpoint:77,numval:[13,14],object:[0,1,2,6,7,9,10,14,15,16,18,20,23,26,27,29,30,31,33,36,38,40,41,46,48,49,51,52,59,61,64,75,80,82,85,102,103,110,113,114],obsolet:28,obtain:[1,49,59],obviou:46,occasion:40,occupi:[39,77],occur:[1,17,58,61,65,66,76,110,113],oct:15,oem:77,off:[3,7,11,13,14,19,21,22,24,25,26,27,30,41,64,69,72,74,77],off_modul:74,offer:[0,1,114],offload:113,offset:[16,17,19,27,30,77],often:[1,5,37,102,105],ohm:[16,30],old:[15,21,26,27,98],oldest:22,oldn:30,omit:[31,48,49,72],on_modul:74,onboard:21,onc:[0,5,8,9,10,36,40,77,102,105,109,113,114],one:[1,2,3,8,9,10,12,15,17,19,21,24,25,26,27,28,30,31,34,36,37,40,41,42,46,48,49,51,56,57,58,59,61,64,65,74,76,77,82,102,105,106,110,113,114],ones:[69,74,77,102],onli:[3,4,8,10,16,17,18,24,25,26,27,28,30,31,36,37,39,41,42,48,49,51,52,58,59,62,64,68,69,71,72,74,76,77,82,102,106,113],onlin:1,onto:[77,113],opc:77,open:[4,7,40,43,54,58,72,84,98,102,108,109,113],opendevic:75,oper:[1,3,14,16,31,32,38,48,51,58,61,77,106,110,113,114],oppos:[3,28],opposit:83,optim:108,option:[2,3,22,28,31,33,34,36,37,39,40,41,43,44,48,49,51,52,54,56,57,62,66,72,76,77,80,82,95,99,102],order:[2,3,10,17,28,30,34,37,41,56,68,70,102,110,113],ordereddict:[0,37],org:[1,54],organ:[102,106],orient:113,origin:[11,57,113],osc:30,oscil:30,oscillator2_freq:30,oscilloscop:[77,106],osx:109,other:[1,2,3,8,24,25,26,28,30,39,40,46,53,55,59,61,71,76,81,83,84,102,108,113],otherclass:3,otherwis:[3,28,36,58,59,61,102,113],our:[26,42,102],out:[0,3,5,8,10,14,17,18,22,24,25,26,27,30,31,32,48,58,59,64,66,72,102,107,108,111,113,114],outer:[1,8,10,36,42,113],output:[3,7,9,12,16,18,19,20,21,23,24,25,26,28,41,46,49,58,61,64,65,66,68,71,73,74,76,77,81,102,106,113],output_interfac:15,output_waveform_name_n:77,outsid:[55,59,65,66,68,77],over:[0,3,10,26,30,33,40,46,51,52,59,75,102,105,113,114],overhead:[13,113],overid:72,overload:[61,76],overrid:[3,37,39,40,64,68,72,77,82],overridden:1,overview:[10,21,66,77,106,110,112],overwrit:[2,18,20,65,77,82,110],overwritten:39,ovsr:76,own:[2,3,10,26,41,58,59,84,102,113],oxford:[23,29,57,97,100],oxfordinstruments_ilm200:72,oxfordinstruments_ips120:72,oxfordinstruments_kelvinox_igh:72,p1_set:0,p_label:3,p_measur:1,p_measure2:1,p_name:3,p_sweep2:1,p_sweep:1,p_unit:3,pack:77,pack_waveform:77,packag:[1,2,14,30,93,102,108,110],packard:[7,60],packed_waveform:77,pad:3,page:[91,93,102,113],pai:102,pair:11,panel:[30,61,77,108],panic:113,par:28,paraemt:57,parallel:72,param:[8,28,29,30,49,59,64,65],param_id:14,param_nam:[36,64],param_out:14,paramet:[1,5,6,7,9,10,12,16,17,19,20,21,24,25,26,28,29,30,31,32,33,34,36,37,38,39,41,42,43,44,45,46,48,51,52,53,54,55,56,57,58,59,61,62,64,65,66,68,69,70,71,72,74,75,76,77,79,80,81,82,83,84,85,91,94,96,99,102,103,106,108,112],parameter_class:3,parameter_nam:95,params_to_skip_upd:[64,74],paramt:[0,56,114],parent:[31,33,41,45,48,49,52,61,62,63,64,74,76,77],parenthes:102,parmet:66,pars:[28,41,73,77],parse_awg_fil:[28,77],parse_multiple_output:73,parse_on_off:[69,74],parse_output_bool:77,parse_output_str:77,parse_single_output:73,parse_string_output:73,parsebool:77,parseint:77,parser:[3,41,76,77],parsestr:[60,77],part:[2,3,9,26,31,39,48,49,66,75,76,97,102,105,106,110,113],partial:[73,114],particular:[3,8,17,28,30,105,113],particularli:[3,41,44,76,113],pass:[1,3,39,41,52,53,57,59,62,66,70,74,79,82,83,84,102,110,113,114],pat:77,patch:102,path:[2,10,28,35,37,38,40,59,72,77,80,82,109,113],pattern:77,paus:17,pci:[3,58],pcie:[58,59,97],pcie_1751:57,pcie_link_spe:[16,59],pcie_link_width:[16,59],pdf:64,pend:77,pep8:102,per:[3,12,13,14,16,21,31,36,48,59,61,64,65,70,77,108,114],percent:[30,68],percentag:72,perf:102,perfom:11,perform:[1,10,11,15,16,17,21,24,25,30,40,49,54,59,65,68,75,77,81,98,100,102,113],perform_safety_check:70,perhap:[14,113,114],period:[37,83,84],persist:[43,70,72],persistent_switch:70,person:102,phase:[8,15,22,26,30,59,68,74,113],phase_delay_input_method_n:77,phase_n:77,phi:17,phi_measur:17,physic:[3,24,25,37,57,61,80,82,85,113],pick:102,pictur:113,piec:[105,113],pillar:113,pin:58,ping:102,pinki:102,pip:[102,108,109],pixel:83,place:[1,2,24,25,62,102,113],plai:10,platform:66,pleas:[21,28,30,64,77,102,107],plese:107,plot:[0,2,14,15,16,17,20,21,22,24,26,27,28,30,36,91,95,98,99,106,109,110,113],plot_1d:10,plotlib:[2,110],plotq:20,plotter:30,plt:[1,9,11,12,14,17,18,20,23,26,27,28,29,30,84],plu:110,plubic:93,plug:[12,62,108],plugin:102,plural:8,point:[10,11,12,13,14,15,17,26,30,34,38,42,46,56,68,72,74,75,77,91,108,113],poitn:77,polar:65,polish:108,poll:[12,15],polyfit:17,poor:19,popul:[36,44,45],port:[17,19,26,29,43,58,61,70,72,75,108],port_count:58,posit:[41,113],possibl:[8,19,26,28,71,72,76,77,110,113],post:102,post_acquir:59,post_delai:49,post_trigg:66,posttrigger_s:66,potenti:[21,37,46,108,113],power:[17,21,26,62,70,72,74,75,97,102,113],power_limit:32,ppi:58,pprint:[6,7],practic:102,pre:[80,106],pre_acquir:59,pre_start_captur:59,preamp:[3,71,76],preamplifi:[3,71,76],prece:68,preced:42,precis:[19,65,68,96],preconfigur:2,predefin:[28,53,76,77,106],prefer:[108,113],prefix:102,preliminari:11,prepar:[12,13,14,30,59,62,68,77,113],prepare_buffer_readout:[15,76],prepare_curvedata:[27,77],prepare_for_measur:75,prepare_scop:[30,68],preparesweep:77,prepend:[36,77],preprocessor:58,prerequisit:106,present:[3,15,71,76,102,113],preservechannelset:77,preset:75,preset_data:36,press:[1,77,111],pretrigger_s:66,pretti:[24,25,64,68],prevent:[3,31,48,49,59,65,77],previou:[1,6,49,61,102],previous:[68,77,113],primari:108,princip:41,print:[0,1,2,3,8,9,10,11,13,14,16,17,18,20,21,23,24,25,28,29,30,61,62,64,66,68,77,114],print_al:60,print_cont:77,print_modstatu:60,print_overview:[24,25,64],print_readable_snapshot:[10,15,21,26],print_sweeper_set:[30,68],printslop:[24,25,64],prior:[57,61],prioriti:[39,113],privat:[59,91],privileg:58,probabl:[41,59,74,102,113],problem:[28,66,102],procedur:[64,113],process:[9,16,59,102,113],produc:[26,113],profit:109,program:[1,59],programm:[59,70,77],programmat:[2,77,108],progress:46,progress_interv:[14,46],project:[3,102],proper:[30,65],properli:[17,77],properti:[2,58,110,113],protect:65,protocol:[16,65,113],provid:[1,2,8,16,24,25,36,39,41,43,49,52,59,62,66,69,78,82,83,84,102,105,106,109,113],proxi:113,psu:72,pts:[15,30],pull:[14,30],pull_from_serv:[6,9,16,20,113],puls:[24,25,28,60,97],purchas:30,purpos:[3,8,113],push:113,push_to_serv:[6,20,113],put:[17,28,42,64,72,77,113,114],pxie:62,py_head:[57,66],pyenv:2,pyplot:[1,9,11,12,14,17,18,20,23,26,27,28,29,30],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,20,22,24,91,98,100,109],pyqtmaxplot:110,pyqtplot:110,pyspcm:66,pytest:102,python3:2,python:[3,10,37,58,59,65,66,72,77,80,82,95,102,108,109,113],pyvisa:[14,54,113],pywin32:100,qcmatplotlib:[0,2,16,91],qcode:[0,1,4,5,6,7,12,13,14,91,93,102,103,104,107,112,113,114],qcodes_colorbar:1,qcodes_config:110,qcodesrc:2,qcodesrc_schema:26,qdac:[11,13,57,97,98,99,100,106],qdac_ch01_v_set:13,qdac_ch02_v_set:14,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[57,106],qdac_setpoint:13,qdacchannel:64,qdacmultichannelparamet:64,qdev:[11,13,14,18,24,25,57,108,110],qtlab:75,qtplot:[0,2,10,14,20,22,24,91,106],qtwork:65,quadratur:8,quantiti:42,quantum:109,queri:[18,24,25,30,64,75,76,77,113],querysweep:75,question:[62,64,102],queue:[18,22,28,61,62,77],quickli:28,quiet:14,quirk:94,quit:[1,32,102,113],quot:42,qutech:57,qutech_controlbox:69,r_offset:15,rack:65,rad_to_deg:69,rainbow:[9,39],rais:[2,3,14,17,18,32,33,49,52,55,57,58,59,62,65,68,69,76,77,78],raiseexc:76,ramiro:75,ramp:[3,10,14,17,19,22,24,25,49,61,70,72,77],ramp_al:61,ramp_rat:[17,61],ramptim:24,ran:4,randint:[5,10],random:[2,5,10,17,28,62],rang:[3,7,8,11,13,14,16,22,24,25,26,28,30,58,59,62,65,66,68,75,77,113,114],range_auto:7,rangei:7,rangev:7,rate:[15,16,17,30,59,61,65,66,70,76],rather:[19,30,62,102,114],ravel:113,raw:[13,65,105,106,108],raw_val:13,raw_valu:49,reach:[17,76,102],read:[3,4,8,10,17,18,20,24,25,27,37,40,41,42,43,54,58,61,64,65,66,71,72,74,76,77,80,82,102,105,106,109,110,113],read_metadata:40,read_one_fil:40,read_pin:58,read_port:58,read_stat:64,readabl:[10,49,59,96,102],reader:10,readi:[8,10,30,77,82,102,109],readili:1,readm:102,readout:[64,66,98],readthedoc:54,real:[3,10,26,62,71,76,102,105,108,113,114],realli:[24,25,36,62,109,113],realtim:[102,108],reappear:102,rear:77,reason:[10,17,102,114],recal:10,receiv:[1,22,61,76],recent:[2,14,18,30,49],recommend:102,reconnect:113,reconsid:21,reconstruct:40,record:[10,16,39,68,77,82,108,113],records_per_buff:[16,59],recycl:59,redirect:[36,96],reduc:41,ref:[27,113],refactor:102,refer:[10,30,36,59,91,102,104,113,114],referenc:[31,48,49,113],reference_clock_frequency_select:77,reference_multiplier_r:77,reference_sourc:[15,77],refernc:75,reflect:74,refriger:72,reg:[29,57,66],regard:[59,113],regardless:102,regist:[66,76,102],registri:72,regular:[3,5,113],reimport:110,reinvent:102,reject:75,rel:[10,26,37,38,80,82,113],relat:[1,113],relationship:113,releas:[40,108],relev:[14,49,59,76,77],reli:[1,3,59],reliabl:[59,113],reload:[4,40,57,113],remain:59,rememb:[13,17,26,27,68],remot:[7,18,23,72,83,113],remoteinstru:[7,113,114],remoteparamet:113,remov:[22,26,30,36,37,65,68,72,74,77,97,99,102,106],remove_signal_from_sweep:68,rep:77,repeat:[33,102,113],repet:77,repetit:[28,77],repetition_r:77,replac:[1,61,99],repo:[2,102],report:[103,108],repositori:[102,106,108],repr:[14,61],reprec:26,repres:[8,42,49,59,62,76,113],represent:[10,58,85,105],reproduc:[102,113],request:[13,17,103,113],requir:[8,10,30,31,41,48,51,52,54,58,68,74,82,100,102,110,113,114],res:18,research:[76,98],resend:77,resend_waveform:77,reserv:15,reset:[3,8,10,12,14,15,26,28,41,42,60,65,66,69,70,73,74,76,77],reset_modul:76,resistor:12,resit:57,resolut:[7,10,65,99],resolv:62,resourc:[14,40,54,58,62,64,76,113],respect:[1,31,48,58,77],respons:[3,18,41,43,49,54,61,64,76],ressourc:77,restart:[66,110],restrict:[76,105],restructur:102,result:[1,4,8,39,59,65,75,77,106,113],ret:14,ret_cod:14,ret_valu:14,retriev:[22,49,77,110],retur:77,return_count:14,return_pars:41,return_self:77,reus:113,revers:[49,51],review:[102,108],revion:61,revok:[24,25],rewrit:113,rewritten:102,rf_off:26,rf_on:26,rho:17,richer:113,rid:36,right:[1,17,28,57,59,76,85],rigol:57,rigol_dg4000:73,rise:[3,7,30],risetim:[3,7,20],robust:3,rohd:[74,106],rohde_schwarz:[26,57],rohdeschwarz_sgs100a:74,rohdeschwarz_smr40:74,rol:75,ron:77,root:[4,37,38,77,80,82],rotate_nvalv:72,rough:103,round:[65,99,113],round_dac:65,routin:[62,64],row:[1,42,74],rrm:30,rs232linkformat:65,rs_sgs100a:74,rs_smb100a:74,rst:[3,41,102],rto:72,rtoz:23,rtype:14,rule:17,run:[0,1,5,6,9,10,11,12,13,14,15,16,17,18,20,22,26,27,30,46,57,58,68,77,95,106,108,110,113,114],run_mod:77,run_stat:77,run_temp:8,run_to_field:72,run_to_field_wait:72,runtest:[57,62,69,78],runtim:[2,110],runtimeerror:30,s11:26,s12:26,s21:26,s22:26,s44:26,sa124_max_freq:75,sa124_min_freq:75,sa44_max_freq:75,sa44_min_freq:75,sa_api:75,sa_audio:75,sa_audio_am:75,sa_audio_cw:75,sa_audio_fm:75,sa_audio_lsb:75,sa_audio_usb:75,sa_auto_atten:75,sa_auto_gain:75,sa_averag:75,sa_bypass:75,sa_idl:75,sa_iq:75,sa_iq_sample_r:75,sa_lin_full_scal:75,sa_lin_scal:75,sa_log_full_scal:75,sa_log_scal:75,sa_log_unit:75,sa_max_atten:75,sa_max_devic:75,sa_max_gain:75,sa_max_iq_decim:75,sa_max_rbw:75,sa_max_ref:75,sa_max_rt_rbw:75,sa_min_iq_bandwidth:75,sa_min_max:75,sa_min_rbw:75,sa_min_rt_rbw:75,sa_min_span:75,sa_power_unit:75,sa_real_tim:75,sa_sweep:75,sa_tg_sweep:75,sa_volt_unit:75,sabandwidthclamp:75,sabandwidtherr:75,sacompressionwarn:75,sadevicenotconfigurederr:75,sadevicenotfounderr:75,sadevicenotidleerr:75,sadevicenotopenerr:75,sadevicetypenon:75,sadevicetypesa124a:75,sadevicetypesa124b:75,sadevicetypesa44:75,sadevicetypesa44b:75,saexternalreferencenotfound:75,safe:[17,65,72,102,113],safe_reload:75,safe_vers:65,safeti:[17,26,62,72],safrequencyrangeerr:75,safti:26,sai:[37,80,82,102,114],said:[36,77],sainterneterr:75,sainvaliddetectorerr:75,sainvaliddeviceerr:75,sainvalidmodeerr:75,sainvalidparametererr:75,sainvalidscaleerr:75,same:[1,3,5,8,11,16,17,34,36,42,48,51,56,58,68,76,77,84,102,113,114],sampl:[13,15,16,30,51,52,57,59,66,113],sample_count:[13,14],sample_r:[16,59],sample_timer_minimum:[13,14],samples_per_buff:59,samples_per_record:[16,59],sampling_r:77,sane:35,sanocorrect:75,sanoerror:75,sanotconfigurederr:75,sanullptrerr:75,saovencolderr:75,saparameterclamp:75,sastatu:75,sastatus_invert:75,satisfi:17,satoomanydeviceserr:75,satrackinggeneratornotfound:75,saunknownerr:75,sausbcommerr:75,save:[0,10,14,28,31,36,37,40,42,48,49,59,77,81,82,95,102,105,106,108,113,114],save_to_cwd:2,save_to_env:2,save_to_hom:[2,110],savvi:108,sawtooth:22,sbench6:66,sca:1,scalar:[5,8,10,31,48,81,113],scale:[8,26,27,30,49,57,75],scale_param:8,scale_set:8,scale_v:8,scan:26,scenario:[62,102],scene:30,scf:1,schema:[2,26,35,110],schema_cwd_file_nam:35,schema_default_file_nam:35,schema_env_file_nam:35,schema_file_nam:35,schema_home_file_nam:35,schouten:65,schwarz:[74,106],scientist:109,scope:[27,68,77,106],scope_average_weight:30,scope_channel1_input:30,scope_channel2_input:30,scope_channel:30,scope_correctly_built:30,scope_dur:30,scope_length:30,scope_measur:27,scope_mod:30,scope_samplingr:30,scope_seg:30,scope_segments_count:30,scope_trig_delai:30,scope_trig_en:30,scope_trig_gating_en:30,scope_trig_gating_sourc:30,scope_trig_holdoffmod:30,scope_trig_holdoffsecond:30,scope_trig_hystabsolut:30,scope_trig_hystmod:30,scope_trig_level:30,scope_trig_refer:30,scope_trig_sign:30,scope_trig_slop:30,scopearrai:77,scopedata:30,scpi:61,screen:[77,109],script:[21,77,106,108,114],sd_awg:62,sd_common:62,sd_dig:62,sd_modul:62,sdk:59,sdk_version:[16,59],seamless:62,search:[39,102,113],sec:77,second:[1,6,8,10,15,22,30,31,36,37,43,46,48,49,54,55,59,61,65,70,72,76,77,82,83,84,107,113,114],section:[107,109],see:[0,1,2,5,9,17,22,24,27,28,39,40,43,49,52,54,59,65,66,74,77,83,102,113,114],seem:[42,66,102],seen:26,seg_siz:66,segm1_ch1:77,segm1_ch2:77,segm2_ch1:77,segm2_ch2:77,segment:[1,30,68,77],select:[16,17,59,68,77,102,109],self:[2,3,8,14,18,20,31,37,40,48,61,62,64,72,75,77,82,85,102,114],semant:108,semi:102,semicolon:72,sen:[3,7,20,71],send:[3,12,13,14,17,43,65,71,76,77,106,107],send_awg_fil:77,send_dc_puls:77,send_pattern:77,send_sequ:77,send_sequence2:77,send_waveform:77,send_waveform_to_list:[28,77],sens:102,sens_factor:[3,7,71],sens_x:20,sensit:[3,7,15,71],sensor:[63,106],sensorchannel:63,sent:[3,12,41,49,72,77,105,113],separ:[8,21,40,42,48,72,85,108,113,114],seper:[61,77],septemb:21,seq:77,seq_elem:28,sequanti:56,sequecn:77,sequenc:[8,28,31,36,46,48,51,61,77,81,84,113],sequence_cfg:77,sequence_length:28,sequence_po:28,sequenti:[30,34,114],seri:[3,69,73,77],serial:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,105],serial_numb:20,serialis:77,serv:3,server:[16,18,23,30,59,68,113,114],server_err:18,server_nam:[4,7,16,23,60,66,114],session:[9,10,14,37,80,82,102],set:[0,1,2,3,4,5,7,8,9,11,14,15,16,17,18,19,20,21,22,23,26,28,34,36,37,40,42,46,49,51,52,56,57,58,59,61,62,64,65,66,68,70,71,72,74,75,76,77,79,80,81,82,105,106,108,110,113,114],set_al:61,set_arrai:36,set_channel_or_trigger_set:66,set_channel_set:66,set_cmd:[1,3,10,49,50,72,114],set_current_folder_nam:77,set_dacs_zero:65,set_default:77,set_delai:10,set_ext0_or_trigger_set:66,set_ext_trig:74,set_field:70,set_funct:59,set_jumpmod:77,set_level:77,set_measur:[6,7,9,18,20],set_mix_chamber_heater_mod:72,set_mix_chamber_heater_power_rang:72,set_mod:77,set_mode_volt_dc:77,set_mp_method:[6,9,16,18,20,23],set_pars:[49,50],set_persist:72,set_point:27,set_pol_dacrack:65,set_pulsemod_sourc:74,set_pulsemod_st:74,set_ramp:19,set_remote_statu:72,set_sequ:77,set_set_point:27,set_setup_filenam:77,set_smooth:76,set_sqel_event_jump_target_index:77,set_sqel_event_jump_typ:77,set_sqel_event_target_index:[28,77],set_sqel_goto_st:77,set_sqel_goto_target_index:[28,77],set_sqel_loopcnt:[28,77],set_sqel_loopcnt_to_inf:[28,77],set_sqel_trigger_wait:[28,77],set_sqel_waveform:[28,77],set_statu:74,set_step:10,set_sweep:74,set_titl:[1,28],set_to_fast:72,set_to_slow:72,set_valu:52,set_voltag:76,set_ylim:28,setboth:114,setbothasync:114,setformatt:4,setlevel:[4,27,28,30],setpoint:[0,1,4,5,6,8,10,11,12,13,14,16,17,26,27,31,36,42,48,62,68,72,74,76,77,81,97,113,114],setpoint_arrai:[31,48],setpoint_label:[8,31,48],setpoint_nam:[8,31,48,68],setpoint_unit:[31,48],settabl:[49,52,105,113],setter:105,settl:[30,102],setup:[26,66,74,85,106,108],setupclass:[57,62,69],setx:114,sever:[62,68,72,102,105,113],sg384:[57,96],sgs100a:57,shadow:2,shape:[0,1,3,4,6,8,10,11,12,13,14,15,16,21,26,27,28,30,31,36,48,62,68,74,84,113,114],share:[19,107],shared_kwarg:114,shell:108,shift:30,ship:[2,30],shortcut:83,shorthand:1,shot:[21,94,102,106],should:[3,10,13,16,17,22,26,27,28,30,31,33,36,37,39,40,41,43,45,46,48,49,51,52,53,57,58,59,61,62,71,72,76,77,85,102,109,113],shouldn:36,show:[1,5,9,10,16,17,18,20,23,24,25,102],show_subprocess_widget:[6,9,16,18,20,23],show_window:83,shown:[1,17],side:[17,28,49,105,109,114],sig:30,sig_gen:102,signadyn:62,signal:[10,27,28,59,66,68,69,74,75,76,77,97,106,113],signal_hound:57,signal_input1:30,signal_input1_ac:30,signal_input1_diff:30,signal_input1_imped:30,signal_input1_rang:30,signal_input1_sc:30,signal_output1:30,signal_output1_ampdef:30,signal_output1_amplitud:30,signal_output1_autorang:30,signal_output1_en:30,signal_output1_imp50:30,signal_output1_offset:30,signal_output1_on:30,signal_output1_rang:30,signal_to_volt:59,signalhound_usb_sa124b:75,signatur:[28,40,58,77],significantli:26,silent:62,sim900:76,sim928:[57,97],sim:76,similar:[1,10,74,77,113],similarli:[25,30,113],simpl:[5,8,10,12,15,16,26,27,32,38,41,55,66,84,102,106,108,113],simpler:102,simplest:113,simpli:[2,30,41,49,77],simplifi:[3,9,61,102],simul:[105,108,112,113],simultan:[15,25,61],simultani:70,sin:[28,73],sinc:[1,3,10,17,30,61,68,72,77,113,114],sine:27,sing:26,singl:[1,8,10,18,20,21,26,31,42,49,51,58,59,61,63,64,66,70,77,81,84,94,102,105,106,113],single_iq:8,single_set:8,single_software_trigger_acquisit:66,single_trigger_acquisit:66,singleiqpair:8,sit:21,site:[1,2,14],situat:[10,42,113],six:[24,25,58],size:[1,6,10,31,37,48,49,59,65,66,76],skewed_parabola:4,skill:102,skip:102,slack:[98,99,100,102,107,108],slash:38,sleep:[3,13,14,15,18,20,23,24,25,27,28,52,55,65],slice:[9,26,51,105],slider:1,slider_demo:1,slightli:[21,96],slope:[14,16,17,22,24,25,64],slot:[19,61,62,76],slot_nam:76,slow:[24,25,72,113],slow_external_clock:3,slower:28,small:[21,24,25,26,30,58,94,102],smaller:[26,76],smart:[72,102],smooth_timestep:76,smoothli:76,smr40:57,smu:3,smua:[12,21,77],smub:[21,77],snap:7,snapshot:[0,3,6,7,10,16,20,31,33,36,43,44,48,49,54,76,77,85,96,99,100,113],snapshot_bas:[64,74,77],snapshot_get:[31,48,49],snapshot_valu:[31,48,49],socket:[43,63],soft:77,softwar:[3,22,30,64,68,77,100,102,106,113],software_revis:20,software_triggered_read:13,solv:102,some:[0,3,10,25,30,31,41,43,48,49,51,61,62,66,76,77,102,106,110,113],somebodi:102,somehow:113,someon:[58,102],someth:[2,9,17,28,30,59,62,64,102,110,113],sometim:[3,8,10,30,42,113],soon:[61,102],sophist:59,sort:[28,42],sort_kei:7,sourc:[3,6,9,10,16,17,21,26,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,102,103,108,109,113],sourcemet:[12,77,97],sourcerange_i:21,sourcerange_v:[12,21],space:[24,25,31,48,49,51,102,105],span:[26,75],spawn:[6,9,16,18,20,23],spc_tm_high:66,spcerr:[57,66],spcm0:66,special:[3,10,31,48,49,102,113],specif:[16,28,37,61,64,65,72,77,102,105,113],specifi:[1,17,22,28,31,40,46,48,57,58,62,65,68,69,75,76,77,78,84,85,102,110,113],specifiedta:77,spectrum:[57,96,97,113],speed:[11,13,26,49,59,113],speedup:99,spheric:17,spherical_measur:17,splat:1,split:[3,13,26,29],spread:107,sqel:77,sql:113,squar:27,squencer:77,sr560:[3,57],sr830:[57,95,98,106],sr865:57,src:[2,4,26],srs_sg384:76,stabl:54,stackoverflow:1,stage:113,stai:[102,114],staircas:10,stale:113,stand:17,standalon:108,standard:[1,3,13,26,49,61,64,76,108],standardparamet:[1,3,6,8,10,16,20,91,105],stanford:[76,98],stanford_research:[3,15,57],stanford_research_system:15,stanford_sr865:76,start:[0,1,3,6,9,10,11,12,13,14,15,16,20,22,26,30,35,36,37,42,49,51,53,58,59,61,72,74,76,77,80,82,102,106,113],startcaptur:16,startup:[24,25,64],stat:[69,74],state:[3,24,25,28,30,58,61,77,102,105,108,113],statement:[65,102],station1:[18,20],station2:[18,20],station:[4,5,6,7,9,10,11,14,18,20,21,26,30,31,44,46,48,49,76,91,103,113],stationq:108,statu:[3,29,30,59,62,64,65,69,72,74,75,76,77],status:76,statuscod:77,std:[12,13],stderr:4,stdlib:58,stdout:[14,66],step:[1,3,10,11,21,26,46,49,50,51,65,76,77,78,109,114],step_attenu:69,stepper:72,still:[24,25,28,36,102,113],stop:[1,15,22,26,28,30,51,74,77],storag:[77,108,113],store:[0,2,4,33,36,37,40,49,57,59,77,82,85,99,113],str:[3,14,31,33,34,35,36,37,38,39,41,43,44,45,48,49,54,56,57,61,62,64,65,68,71,72,74,76,77,79,80,82],straightforward:[28,113],strang:30,strategi:61,stream:[14,16,30],streamhandl:4,strftime:39,strictli:68,string:[2,3,4,14,18,20,31,33,39,40,41,42,48,49,59,62,65,66,68,70,72,73,74,76,77,82,85,102,105,110,113],strip:[3,42],strive:102,strongli:[1,3,30,102],struct:12,structur:[37,40,59,80,82,105,110,113],struggl:102,stuf:110,stuff:[3,17,72,77,106],stupid:17,subclass:[3,8,31,33,40,41,43,48,49,52,54,59,105],subject:[102,113],sublim:102,sublimelint:102,submit:114,submodul:44,subplot:[17,26,27,30,84,106],subprocess:[9,16,18,20,23],subscrib:68,subsequ:53,subset:26,substitut:3,subtract:30,succes:77,success:49,successfulli:[17,58],succinct:102,suit:[4,62,69,74,78,108],sum:[0,114],summari:106,superclass:3,superconduct:72,suppli:[3,38,40,70,72,97,113],support:[0,1,2,3,4,10,21,22,24,25,26,27,28,30,44,45,52,58,62,68,72,76,77,98,99,102,110,113],suppos:72,suppress:[3,7,20,77],supress:62,sure:[11,15,17,30,72,77,102,105,109],sv2:51,sv3:51,sv4:51,swap:108,sweep:[0,5,6,10,12,13,14,21,26,30,33,34,49,51,52,56,68,72,74,75,77,94,105,106,108,112,113],sweep_val:[0,1,114],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[6,10,46],sweepabl:56,sweepdata:30,sweeper:[68,97,106],sweeper_bw:30,sweeper_bwmod:30,sweeper_ord:30,sweeper_param:30,sweeper_samplecount:30,sweeper_start:30,sweeper_stop:30,sweeper_xmap:30,sweeper_xxx:30,sweepfixedvalu:[91,105],sweepvalu:[46,91,103],swept:[12,114],symmetri:17,sync:[18,20,24,25,27,30,106,113],sync_delai:25,sync_dur:25,sync_filt:15,sync_output:22,sync_sourc:22,synchron:[61,113],syntax:108,synthes:97,sys:[4,14,26],system32:[3,59,75],system:[3,16,31,35,41,48,49,59,72,76,77,85,94,96,110,113],system_id:[3,16,59],sztypetonam:66,t_actual:17,t_set:17,t_start:[11,14],t_stop:[11,14],tab:[30,42,102],tabl:[77,106,110,113],tag:102,tailor:1,take:[0,10,14,25,31,32,33,46,48,49,61,64,66,74,77,98,102,105,108,114],taken:[66,74,77],talent:102,talk:[3,71,76,113,114],target:[17,51,52,59,77],target_curr:17,target_field:17,task:[5,10,14,22,46,55,91,95,102,105,113],tcpip0:[3,11,12,13,14,21,22,26,28,74],tcpip:113,tear:21,tech:108,techniqu:102,technolog:[7,11,13,14,22],tektp:27,tektron:100,tektronix:[3,7,12,18,20,21,57,97,98,106],tektronix_awg5014:[28,77],tektronix_awg5200:77,tektronix_awg520:77,tell:[40,42,55,102,113],temp0_0:[24,25],temp2_1:[24,25],temp5_2:[24,25],temperatur:[63,72,97,106],templat:102,temporari:[37,82],tempx_i:[24,25],tend:3,tens:102,term:[14,102],termin:[3,7,9,12,14,16,18,20,23,42,43,54,64,66,70,72,108,109,113],tesla:[17,70,72],test:[3,5,10,11,13,17,39,43,44,58,61,62,64,65,69,70,73,74,77,78,96,105,106,108,113],test_ami430:17,test_attenu:78,test_awg_fil:28,test_channel_amplitud:62,test_channel_frequ:62,test_channel_offset:62,test_channel_phas:62,test_channel_wave_shap:62,test_chassis_and_slot:62,test_chassis_numb:62,test_clock_frequ:62,test_closed_fil:4,test_dataset_clos:4,test_dataset_finalize_closes_fil:4,test_dataset_flush_after_writ:4,test_dataset_with_missing_attr:4,test_double_closing_gives_warn:4,test_field_vector:17,test_firmware_vers:[69,78],test_frequ:69,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[57,102],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:102,test_metadata_write_read:4,test_on_off:69,test_open_clos:62,test_phas:69,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:69,test_pxi_trigg:62,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:77,test_serial_numb:62,test_slot_numb:62,test_snapshot:102,test_str_to_bool:4,test_suit:57,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:69,testcas:57,testhdf5_format:4,testkeysight_m3201a:62,testkeysight_m3300a:62,testmetadat:102,testsd_modul:62,testsweep:[0,10,11,14,18,20],testweinschel_8320:78,text:[3,14,73,102,105,113],texttestrunn:4,textual:113,tg_thru_0db:75,tg_thru_20db:75,than:[1,3,24,25,26,30,46,49,102,108,113],thank:102,thebrain:102,thei:[2,5,9,10,16,18,20,23,36,37,46,53,59,71,76,77,102,105,110,113],them:[1,2,3,8,9,21,24,25,36,57,70,72,76,77,102,106,110,113,114],theme:83,theoret:113,therebi:22,thermometri:29,theta:17,theta_measur:17,thi:[0,1,2,3,5,6,8,9,10,11,13,14,16,17,18,20,21,23,24,25,26,27,28,30,31,33,36,37,39,40,41,42,43,44,45,46,48,49,52,54,55,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,84,85,91,93,102,103,105,108,109,110,112,113,114],thing:[3,9,10,16,23,41,46,51,52,53,55,62,69,78,102,105,107,109,113,114],think:[102,110,113],third:113,those:[5,8,36,39,41,105,113],though:[1,3,49,51,52,113],thread:[65,113],thread_map:14,threadpoolexecutor:114,three:[1,8,24,25,30,42,51,70,77,113],through:[10,24,25,28,30,36,37,102,109,113,114],thu:[102,113],tick:[1,16],tight_layout:[1,26,28],tim:22,time:[1,3,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,39,40,46,49,51,52,58,61,62,66,68,75,76,77,102,106,108,113,114],time_const:15,timeit:[12,13],timeout:[7,14,15,16,18,21,28,30,43,54,72,76,77],timeout_tick:[16,59],timer:[18,20],timestamp:[108,113],titl:1,tmpfile:[29,72],to_setpoint:72,to_zero:72,toc:10,todo:[3,36,64,65,68,69,76,79,102],togeth:[1,5,28,74,113],toggl:19,tolist:3,too:[3,26,31,48,49,58,74,102],tool:[1,102],top:1,toplevel:99,tortur:102,total:[3,8,26],touch:102,toymodel:[6,9],tps1:27,tps1_scope_measurement_0:27,tps1_scope_measurement_1:27,tps2012:[57,106],tps2012channel:77,tps:27,trace:[1,10,26,27,30,59,66,68,74,83,84],traceback:[2,14,18,20,30,108],tracenotreadi:77,track:[59,61,75,113],trail:102,transer:16,transfer:[28,77],transfer_offset:[16,59],transform:[3,17,41,49,55,59],translat:[3,40,68],transmiss:74,trcl:76,treat:[61,85,113],tree:[106,109],trg:[13,14],trig:[30,77],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:66,trig_slope_posit:16,trig_wait:[28,77],trigger:[3,14,16,22,27,28,30,66,74,77,100,106],trigger_count:13,trigger_delai:[16,59],trigger_engine1:[16,59],trigger_engine2:[16,59],trigger_input_imped:77,trigger_input_polar:77,trigger_input_slop:77,trigger_input_threshold:77,trigger_level1:[16,59],trigger_level2:[16,59],trigger_level:27,trigger_oper:[16,59],trigger_slop:14,trigger_slope1:[16,59],trigger_slope2:[16,59],trigger_sourc:[13,14,27,77],trigger_source1:[16,59],trigger_source2:[16,59],trigger_typ:27,triton1_thermometri:29,triton:[57,97,106],trival:114,trivial:[1,102],trivialdictionari:59,troubleshoot:113,truncat:102,trust:49,truthi:[10,32],ts_start:6,tst:4,tstart:[18,20],tudelft:65,tune:[65,102],tupl:[1,8,28,30,31,33,36,41,48,64,68,77,83,84],turn:[3,13,21,26,30,72,77],turoti:10,tutori:[5,8,106,112],two:[1,3,8,10,12,13,15,21,26,27,28,36,49,64,68,70,75,76,77,102,106,114],txt:65,type:[0,1,2,3,4,6,8,10,11,12,13,14,15,16,18,20,21,26,27,28,30,33,40,41,57,58,59,65,66,68,76,77,99,102,109,110,113,114],typeerror:[14,32,52,77],typic:[36,102,106,113],typo:102,ufh:97,uhf:[68,106],unambigu:3,unassign:[24,25],unavail:58,uncommit:59,uncondit:77,undefin:[22,58],under:77,underli:[105,113],underscor:102,understand:[102,113],undesir:10,undo:77,unfortun:62,unga:[2,4,102,110],ungaretti:102,unicorn:9,unimport:77,union:[33,36,41,49,51,57],uniqu:[36,62],unit:[0,3,6,7,8,10,16,20,24,25,30,31,34,36,48,49,56,59,68,72,76,96,97,102,113,114],unitless:[31,48,49],unittest:[4,57,102],unittest_data:4,unless:[24,25,36,102],unlik:57,unload:77,unlock:[72,74],unnecessari:8,unrecogn:58,unrel:113,unsav:113,unsign:77,until:[3,28,49,72,109,113],unus:82,updat:[1,2,7,10,14,24,25,26,27,30,31,35,48,49,59,64,68,72,74,77,83,84,85,100,105,109,113],update_acquisitionkwarg:[16,59],update_curr:[14,24,25,64],update_display_off:26,update_display_on:26,update_snapshot:85,upfront:[31,48],upgrad:30,upload:[12,28,77],upon:[1,22,24,25,57,76],uppercas:72,ups:17,upsteam:2,upto:77,usag:[8,39,52,62,66,72,77,103,106,112],usb:3,usb_sa124b:57,use:[0,1,2,3,5,8,10,12,26,27,28,30,36,39,41,42,49,51,52,54,55,57,59,62,64,66,69,70,71,72,76,77,78,84,102,105,107,109,110,112,113,114],use_lock:65,use_thread:14,used:[3,8,10,17,19,21,31,33,36,39,41,42,48,49,51,52,57,59,62,64,65,66,68,69,71,72,74,75,76,77,81,85,105,108,113],useful:[1,8,62,102,113],user:[1,2,4,6,14,18,26,28,49,54,58,59,68,76,77,108,109,110,113],usernam:102,userwarn:26,uses:[1,3,8,49,57,58,75,76,105,110,113],using:[1,3,10,17,21,24,25,28,30,35,40,42,54,62,65,66,70,75,77,102,105,108,113],usual:[10,44,45,64,77,113],util:[0,4,14,18,20,62,91,102,114],utility_freq:62,utopia:102,v11:27,v_amp_in:76,v_in:76,v_out:76,v_rang:[24,25],vaild:35,val:[0,3,6,8,10,30,49,50,51,52,59,77,114],val_map:[3,49,50],valid:[0,2,3,8,14,18,20,26,31,35,41,48,49,51,52,65,66,77,81,83,91,97,98,99,102,103,110,113,114],validate_al:41,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,11,12,14,15,16,17,18,20,21,24,25,26,28,30,31,34,35,36,39,41,42,46,48,49,51,52,56,57,58,59,61,62,64,65,68,70,72,74,76,77,105,113,114],valuabl:102,value_round:65,value_typ:2,valueerror:[33,55,57,62,68,69,77,78],valv:72,vari:[10,31,48,113],variabl:[3,42,49,62,77,102,105,106,110,113],variou:[102,105],vbw:75,vector:[17,70,113],vendor:[3,6,7,10,15,16,20,21,59,72,76],ver1:15,verbos:[4,10,57,60,62,64,66,74,77,102],verbose_channel:10,veri:[24,25,59,64,113],verifi:[3,17],vernier:76,versa:[17,21,30],version:[2,3,8,10,27,58,59,61,64,65,69,72,74,75,76,77,95,108,109,114],versu:[77,106],vertic:[27,30],vi_error_rsrc_nfound:113,vi_error_tmo:14,via:[1,3,9,25,30,44,45,63,71,76,77,85,106,113],vibuf:14,vice:[21,30],videobandwidth:75,view:[26,102],vipuint32:14,virtual:[3,70,71,74,76,109,114],virtualivvi:114,vis:17,visa:[3,14,28,49,54,60,61,62,63,64,65,69,72,73,74,76,77,78,79,113],visa_handl:[14,54,61,72],visainstru:[60,61,62,63,64,65,69,72,73,74,76,77,78,79,91,105,106,113],visaioerror:14,visalib:14,visess:14,visibl:[24,25],vision:102,visit:102,visual:108,visualis:28,viuint32:14,viwrit:14,vna:[26,75],vna_:26,vna_paramet:[26,74],vna_s11:26,vna_s11_magnitud:26,vna_s11_phas:26,vna_s11_power_set:26,vna_s11_trac:26,vna_s12_trac:26,vna_s13_trac:26,vna_s14_trac:26,vna_s21_trac:26,vna_s22_trac:26,vna_s23_trac:26,vna_s24_trac:26,vna_s31_trac:26,vna_s32_trac:26,vna_s33_trac:26,vna_s34_trac:26,vna_s41_trac:26,vna_s42_trac:26,vna_s43_trac:26,vna_s44_trac:26,volt:[3,7,10,11,12,13,18,20,21,30,59,61,76,77],volt_0:20,volt_1:20,volt_:76,volt_set:20,voltag:[3,7,8,10,11,12,13,19,21,24,25,49,57,61,62,64,66,71,76,77,79,97,98,105,113],voltage_range_statu:64,voltage_raw:[3,71,76],voltagedict:76,voltagedivid:57,voltageparamet:76,voltmet:[62,113],volunt:102,vpp:22,vrang:[14,24,25,64],vsd:[5,6,9],w8320_1:3,wai:[1,2,3,5,9,10,15,16,28,30,33,49,77,102,113,114],wait:[6,10,13,28,41,46,49,72,77,91,105,109,113,114],wait_trigg:77,wait_valu:77,walk:114,wall:26,want:[0,1,2,3,5,17,19,26,27,30,31,37,48,57,58,59,64,102,103,105,107,110,112,113,114],warn:[2,3,4,17,26,28,46,58,59,65,68,96,110],wav:64,wave:[27,66],waveform:[8,22,62,69,73,77,97,106,113],waveform_nam:77,web:[30,68],week:[102,107],weight:2,weinschel:[3,57],weinschel_8320:[3,57],welcom:[102,107],well:[1,5,30,33,40,61,62,69,72,76,78,102,113],went:17,were:[36,37,49,59,93],wfm001ch1:77,wfm002ch1:77,wfm1ch1:77,wfm1ch2:77,wfm2ch1:77,wfm2ch2:77,wfm:[28,77],wfmname:[28,77],wfname_l:77,wfs1:77,wfs2:77,wfs:77,what:[2,3,9,10,17,24,25,28,30,43,46,48,51,52,54,61,72,77,79,91,102,110,113,114],whatev:[13,59],wheel:102,when:[1,3,6,8,17,21,22,24,25,26,27,28,31,32,33,36,39,48,49,52,53,57,58,59,61,62,64,66,68,69,71,76,77,78,82,102,108,113,114],whenev:[66,76,77,113],where:[3,8,10,24,25,31,37,40,48,51,52,59,61,62,68,71,72,76,77,80,82,83,102,113,114],wherea:13,whether:[19,40,42,43,49,64,70,73,77,102,113],which:[1,2,3,5,8,10,17,26,28,30,31,33,35,36,37,39,40,42,45,46,48,49,51,53,57,58,59,62,64,72,74,76,77,80,82,85,102,105,110,113,114],whish:0,white:[83,102],whitespac:42,who:[102,107],whole:[3,5,8,42,48,71,76,102,105,113],whose:[36,76,85,113,114],why:[30,102],widget:[1,9,16,18,20,23,95],width:[83,84],william:[14,30],williamhpnielsen:[64,76],win32:58,win:2,window:[3,6,9,16,18,20,23,26,59,72,75,77,84,100,109],window_titl:83,windowtitl:20,wish:77,with_bg_task:[1,10,14],within:[1,3,16,33,36,53,55,59,68,102,108,113],without:[17,19,74,99,106,110,113],won:26,wonder:30,word:[106,107],work:[2,3,5,16,23,37,38,66,69,73,74,77,78,80,82,102,108,109,110,113,114],workflow:[106,108],world:[59,102,108],wors:102,would:[1,2,8,9,16,18,20,23,39,62,74,102,107,113],wrap:[8,38,77,113],wrapper:[65,72,74],write:[2,3,13,14,18,22,37,40,41,42,43,54,58,61,64,65,72,76,77,82,102,112,113],write_confirm:43,write_copi:113,write_metadata:40,write_modul:76,write_period:[37,82],write_pin:58,write_port:58,write_raw:14,written:[1,42,59,62,72,77],wrong:[17,61,66,102],x_actn:23,x_fld:23,x_fldc:23,x_length:1,x_offset:15,x_rate:23,x_setpoint:23,x_val:[0,114],xlabel:17,xml:102,xrm:30,xxx:61,y_length:1,y_offset:15,y_val:[0,114],yai:95,yeah:20,year:102,yes:113,yet:[30,40,62,102,113],yield:[46,76],ylabel:17,yokogawa:[57,96],yolo:2,you:[0,1,2,3,5,8,9,10,17,21,26,27,28,30,31,35,36,37,38,40,41,46,48,49,51,52,57,59,64,71,76,77,80,82,84,103,105,106,107,109,110,112,113,114],your:[3,10,35,41,57,71,76,102,106,107,109,110,113,114],yourself:[59,76],yrm:30,yscale:30,z_val:[0,114],zero:[3,17,24,25,28,31,48,49,72,77],ziapinotfoundexcept:30,zip:[14,17],ziuhfli:[30,57],ziuhfli_rrm:30,ziuhfli_sig:30,ziuhfli_xrm:30,ziuhfli_yrm:30,zn20:106,znb20:57,znb4:74,znb8:[26,74,99],znb:[26,57],znbchannel:74,zone:17,zoom:68,zurich:30},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark","Benchmark of Keysight 34465A","QDac and Keysight 34465 sync and buffer","QCoDeS example with SR830","Qcodes example ATS_ONWORK","QCoDeS example with AMI430","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","QCoDeS Example with ZI UHF-LI","qcodes.ArrayParameter","qcodes.BreakIf","qcodes.ChannelList","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.InstrumentChannel","qcodes.Loop","qcodes.ManualParameter","qcodes.MultiParameter","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.Advantech package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.HP package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.Lakeshore package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":12,"33500b":22,"34400a":18,"34411a":11,"34465a":[11,13],"break":[94,95,96,97],"class":[3,91,92,93],"default":110,"function":[3,41,91,92,93],"import":[10,11,12,28],"new":[94,95,96,97,98,99,100,102],"public":93,ATS:59,IPS:23,THE:27,THERE:28,The:10,Using:[2,22,30,110],abort:111,acquir:27,acquisit:[15,27],action:[10,93],adding:3,advantech:58,aggreg:0,agil:[11,18,69],agilent_34400a:69,alazartech:59,all:5,american_magnet:70,ami430:[17,70],arrai:5,arrayparamet:[8,31],async:114,ats9870:59,ats_acquisition_control:59,ats_onwork:16,attent:[24,25],avanc:114,awg5014:[28,77],awg5200:77,awg520:77,awg:28,awgfilepars:77,base:3,basic:[10,21,22,24,25,30,106],benchmark:[12,13,14,26,106],breakif:32,buffer:[14,15],bug:102,burst:22,can:10,caution:30,chang:[2,94,95,96,97],changelog:[94,95,96,97,98,99,100,101],channel:[24,25,26],channellist:33,chat:107,clever:102,code:[102,104],combin:[0,56,114],combinedparamet:34,command:86,commit:102,commun:103,comprehens:1,config:[2,35,93,110],configur:[2,110],content:[10,28,30,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,102],contribut:102,core:2,creat:3,curv:[21,27],custom:[2,3],data:[4,10,93],dataarrai:36,dataformat:4,datasav:4,dataset:[37,113],decadac:[19,61],deferred_oper:87,defin:10,demo:5,demodul:30,develop:102,devic:57,dg4000:73,diskio:38,dll:3,driver:[3,106,114],dummi:4,dynam:3,e8267c:69,e8527d:69,enter:109,error:22,event:1,exampl:[3,4,9,10,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,106,113],experi:2,familiar:102,faq:111,fast:21,featur:102,file:[28,110],fix:[94,95,96,97],format:[9,102],formatloc:39,formatt:40,from:[4,27],gener:4,get:[12,13,28,107,109],git:102,global:10,gnuplotformat:42,gs200:79,guid:[103,112],handl:[1,22],harvard:61,help:107,helper:88,hierarchi:105,hour:107,how:[1,111],hp33210a:69,hp8133a:60,hp_83650a:60,ilm200:72,improv:[94,95,96,97,98,99,100],initialis:[12,28],input:30,instal:109,instanti:[5,10],instrument:[3,4,5,7,10,44,93,105,113,114],instrument_driv:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],instrumentchannel:45,interact:10,interfac:1,introduct:113,involv:3,ipinstru:43,ips120:72,ithaco:[20,71],ithaco_1211:71,ivvi:65,keithlei:21,keithley_2000:77,keithley_2400:77,keithley_2600:77,keithley_2600_channel:77,keithley_2700:77,kelvinox:72,keysight:[11,13,14,22,62],keysight_33500b:62,keysight_33500b_channel:62,keysight_34465a:62,lakeshor:63,lazi:28,linkag:105,list:[15,28],live:10,load:10,load_data:80,locat:[9,10],loop:[4,5,10,11,46,93,113],m3201a:62,m3300a:62,m4i:66,magnet:23,make:28,manual:3,manualparamet:47,matplot:[1,84],matplotlib:1,measur:[5,10,30,81,93,111,113,114],mercuri:23,mercuryip:72,messag:102,meta:114,metadata:[6,7,89],misc:93,mode:[22,28],model_336:63,modul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],more:[3,107,110],multiparamet:[8,48],multipl:10,need:5,new_data:82,note:102,nplc:12,object:105,offic:107,one:11,onli:5,oper:21,organ:3,oscilloscop:27,output:[5,10,30],overview:[24,25,113],oxford:72,packag:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],paramet:[0,3,8,15,49,105,113,114],part:11,pcie_1751:58,phase:108,plan:108,plot:[1,10,83,84,93],pre:13,predefin:26,prerequisit:30,privat:92,project:108,provid:10,pull:102,push:102,py_head:67,pyqtgraph:83,qcmatplotlib:84,qcode:[2,3,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,106,108,109,110,111],qdac:[14,24,25,64],qdac_channel:[25,64],qdev:64,qtplot:[1,83],qutech:65,raw:11,read:11,realli:102,reg:67,remov:3,report:102,request:102,requir:109,respons:113,result:[12,13],rigol:73,rohd:26,rohde_schwarz:74,rough:105,run:[4,28,102,111],save:[2,110],schwarz:26,scope:30,script:12,send:28,sensor:[24,25],set:[10,12,13,24,25,27,30],setup:[11,102],sg384:76,sgs100a:74,shot:14,signal:30,signal_hound:75,sim928:76,simpl:[0,1,3],simul:114,singl:14,smr40:74,softwar:13,some:28,sourc:104,spcerr:67,spectrum:[66,67],sr560:76,sr830:[15,76],sr865:76,standardparamet:50,stanford_research:76,start:[4,109],station:[85,93,105],stuff:14,style:102,submodul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],subpackag:[57,66],subplot:1,summari:13,sweep:[1,11,114],sweeper:30,sweepfixedvalu:51,sweepvalu:[52,105],sync:14,tabl:[10,28,30],task:53,tektronix:[27,28,77],temperatur:[24,25],test:[4,57,102],test_suit:[62,69,78],them:28,time:12,todo:[46,52,66,72,74,75,77,105,110,114],tps2012:[27,77],trigger:13,triton:[29,72],tutori:[10,114],two:11,typic:10,uhf:30,updat:110,usag:[22,24,25,30,102,109,111],usb_sa124b:75,user:112,using:106,util:[86,87,88,89,90,93],valid:[90,105],valu:110,variabl:2,versu:11,via:28,visainstru:[3,54],wait:55,waveform:28,weinschel:78,weinschel_8320:78,without:[5,26],word:30,workflow:10,write:114,yokogawa:79,you:102,your:2,ziuhfli:68,zn20:26,znb20:74,znb:74}})
\ No newline at end of file