diff --git a/_modules/qcodes/instrument_drivers/oxford/triton.html b/_modules/qcodes/instrument_drivers/oxford/triton.html index 851a3ac9ed2..03ce908c4bd 100644 --- a/_modules/qcodes/instrument_drivers/oxford/triton.html +++ b/_modules/qcodes/instrument_drivers/oxford/triton.html @@ -178,10 +178,10 @@

Source code for qcodes.instrument_drivers.oxford.triton

Triton Driver Args: - tmpfile: Expects an exported windows registry file from the registry + tmpfile: Optional: an exported windows registry file from the registry path: `[HKEY_CURRENT_USER\Software\Oxford Instruments\Triton System Control\Thermometry]` - and is used to extract the available temperature channels. + It is used to extract the names of temperature channels if set. Status: beta-version. @@ -258,9 +258,10 @@

Source code for qcodes.instrument_drivers.oxford.triton

vals=Enum(*self._heater_range_curr)) self.chan_alias = {} - self.chan_temps = {} + self.chan_temp_names = {} if tmpfile is not None: - self._get_temp_channels(tmpfile) + self._get_temp_channel_names(tmpfile) + self._get_temp_channels() self._get_pressure_channels() try: @@ -289,9 +290,9 @@

Source code for qcodes.instrument_drivers.oxford.triton

return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
- def _get_control_channel(self, force_get=False): + def _get_control_channel(self, force_get=True): if force_get or (not self._control_channel): - for i in range(20): + for i in range(1,17): tempval = self.ask('READ:DEV:T%s:TEMP:LOOP:MODE' % (i)) if not tempval.endswith('NOT_FOUND'): self._control_channel = i @@ -319,7 +320,7 @@

Source code for qcodes.instrument_drivers.oxford.triton

for ch in allchans: msg = 'READ:SYS:DR:CHAN:%s' % ch rep = self.ask(msg) - if 'INVALID' not in rep: + if 'INVALID' not in rep and 'NONE' not in rep: alias, chan = rep.split(':')[-2:] self.chan_alias[alias] = chan self.add_parameter(name=alias, @@ -328,16 +329,19 @@

Source code for qcodes.instrument_drivers.oxford.triton

get_parser=self._parse_temp) def _get_pressure_channels(self): + self.chan_pressure = [] for i in range(1, 7): chan = 'P%d' % i + self.chan_pressure.append(chan) self.add_parameter(name=chan, unit='bar', get_cmd='READ:DEV:%s:PRES:SIG:PRES' % chan, get_parser=self._parse_pres) + self.chan_pressure = set(self.chan_pressure) - def _get_temp_channels(self, file): + def _get_temp_channel_names(self, file): config = configparser.ConfigParser() - with open(file, 'r') as f: + with open(file, 'r', encoding='utf16') as f: next(f) config.read_file(f) @@ -345,13 +349,23 @@

Source code for qcodes.instrument_drivers.oxford.triton

options = config.options(section) namestr = '"m_lpszname"' if namestr in options: - chan = 'T'+section.split('\\')[-1].split('[')[-1] + chan_number = int(section.split('\\')[-1].split('[')[-1]) + 1 + # the names used in the register file are base 0 but the api and the gui + # uses base one names so add one + chan = 'T'+ str(chan_number) name = config.get(section, '"m_lpszname"').strip("\"") - self.chan_temps[chan] = {'name': name, 'value': None} - self.add_parameter(name=chan, - unit='K', - get_cmd='READ:DEV:%s:TEMP:SIG:TEMP' % chan, - get_parser=self._parse_temp) + self.chan_temp_names[chan] = {'name': name, 'value': None} + + def _get_temp_channels(self): + self.chan_temps = [] + for i in range(1, 17): + chan = 'T%d' % i + self.chan_temps.append(chan) + self.add_parameter(name=chan, + unit = 'K', + get_cmd = 'READ:DEV:%s:TEMP:SIG:TEMP' % chan, + get_parser = self._parse_temp) + self.chan_temps = set(self.chan_temps) def _parse_action(self, msg): action = msg[17:] diff --git a/api/generated/qcodes.instrument_drivers.oxford.html b/api/generated/qcodes.instrument_drivers.oxford.html index b4e3445582c..879da61e333 100644 --- a/api/generated/qcodes.instrument_drivers.oxford.html +++ b/api/generated/qcodes.instrument_drivers.oxford.html @@ -297,10 +297,10 @@

Submodules -Parameters:tmpfile – Expects an exported windows registry file from the registry +Parameters:tmpfile – Optional: an exported windows registry file from the registry path: [HKEY_CURRENT_USERSoftwareOxford InstrumentsTriton System ControlThermometry] -and is used to extract the available temperature channels. +It is used to extract the names of temperature channels if set. diff --git a/searchindex.js b/searchindex.js index fdc6fa86009..958a0da642c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["_notebooks/Agilent 34411A versus Keysight 34465A","_notebooks/Combined Parameters","_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 example with Keysight 33500B","_notebooks/Qcodes example with ZI UHF-LI","_notebooks/Qcodes location-format example","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/Keithley_example","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_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 Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZN20","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","api/generated/qcodes.BreakIf","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.Loop","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.AlazarTech","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","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.helpers.in_notebook","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/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:51,filenames:["_notebooks/Agilent 34411A versus Keysight 34465A.rst","_notebooks/Combined Parameters.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 example with Keysight 33500B.rst","_notebooks/Qcodes example with ZI UHF-LI.rst","_notebooks/Qcodes location-format example.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/Keithley_example.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.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 Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZN20.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","api/generated/qcodes.BreakIf.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.Loop.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.AlazarTech.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.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.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.helpers.in_notebook.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/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.BreakIf":{__init__:[26,1,1,""]},"qcodes.CombinedParameter":{__init__:[27,1,1,""]},"qcodes.Config":{__init__:[28,1,1,""],config_file_name:[28,2,1,""],current_config:[28,2,1,""],current_config_path:[28,2,1,""],current_schema:[28,2,1,""],cwd_file_name:[28,2,1,""],default_file_name:[28,2,1,""],env_file_name:[28,2,1,""],home_file_name:[28,2,1,""],schema_cwd_file_name:[28,2,1,""],schema_default_file_name:[28,2,1,""],schema_env_file_name:[28,2,1,""],schema_file_name:[28,2,1,""],schema_home_file_name:[28,2,1,""]},"qcodes.DataArray":{__init__:[29,1,1,""]},"qcodes.DataSet":{__init__:[30,1,1,""],background_functions:[30,2,1,""]},"qcodes.DiskIO":{__init__:[31,1,1,""]},"qcodes.FormatLocation":{__init__:[32,1,1,""]},"qcodes.Formatter":{__init__:[33,1,1,""]},"qcodes.Function":{__init__:[34,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[35,1,1,""]},"qcodes.IPInstrument":{__init__:[36,1,1,""]},"qcodes.Instrument":{__init__:[37,1,1,""],functions:[37,2,1,""],name:[37,2,1,""],parameters:[37,2,1,""]},"qcodes.Loop":{__init__:[38,1,1,""]},"qcodes.Parameter":{__init__:[39,1,1,""]},"qcodes.StandardParameter":{__init__:[40,1,1,""]},"qcodes.SweepFixedValues":{__init__:[41,1,1,""]},"qcodes.SweepValues":{__init__:[42,1,1,""]},"qcodes.Task":{__init__:[43,1,1,""]},"qcodes.VisaInstrument":{__init__:[44,1,1,""],visa_handle:[44,2,1,""]},"qcodes.Wait":{__init__:[45,1,1,""]},"qcodes.instrument_drivers":{AlazarTech:[48,4,0,"-"],Harvard:[49,4,0,"-"],Keysight:[50,4,0,"-"],QDev:[51,4,0,"-"],QuTech:[52,4,0,"-"],Spectrum:[53,4,0,"-"],ZI:[54,4,0,"-"],agilent:[55,4,0,"-"],american_magnetics:[56,4,0,"-"],devices:[47,4,0,"-"],ithaco:[57,4,0,"-"],oxford:[58,4,0,"-"],rigol:[59,4,0,"-"],rohde_schwarz:[60,4,0,"-"],signal_hound:[61,4,0,"-"],stanford_research:[62,4,0,"-"],tektronix:[63,4,0,"-"],test:[47,4,0,"-"],weinschel:[64,4,0,"-"],yokogawa:[65,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[48,4,0,"-"],ATS:[48,4,0,"-"],ATS_acquisition_controllers:[48,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[48,0,1,""],AlazarParameter:[48,0,1,""],AlazarTech_ATS:[48,0,1,""],Buffer:[48,0,1,""],TrivialDictionary:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[48,2,1,""],handle_buffer:[48,1,1,""],post_acquire:[48,1,1,""],pre_acquire:[48,1,1,""],pre_start_capture:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[48,1,1,""],channels:[48,2,1,""],clear_buffers:[48,1,1,""],config:[48,1,1,""],dll_path:[48,2,1,""],find_boards:[48,5,1,""],get_board_info:[48,5,1,""],get_idn:[48,1,1,""],get_sample_rate:[48,1,1,""],signal_to_volt:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[48,1,1,""],free_mem:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[48,1,1,""],fit:[48,1,1,""],handle_buffer:[48,1,1,""],post_acquire:[48,1,1,""],pre_acquire:[48,1,1,""],pre_start_capture:[48,1,1,""],update_acquisitionkwargs:[48,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[49,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{Decadac:[49,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{_ramp_state:[49,2,1,""],_ramp_time:[49,2,1,""],get_ramping:[49,1,1,""],set_ramping:[49,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[50,4,0,"-"],Keysight_34465A:[50,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[50,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[50,0,1,""],Keysight_34465A:[50,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[50,1,1,""],prepare:[50,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[50,2,1,""],model:[50,2,1,""],ranges:[50,2,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[51,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[51,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[51,1,1,""],max_status_age:[51,2,1,""],print_overview:[51,1,1,""],printslopes:[51,1,1,""],read:[51,1,1,""],read_state:[51,1,1,""],voltage_range_status:[51,2,1,""],write:[51,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[52,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[52,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[52,2,1,""],Halfrange:[52,2,1,""],ask:[52,1,1,""],get_all:[52,1,1,""],get_idn:[52,1,1,""],get_pol_dac:[52,1,1,""],read:[52,1,1,""],set_dacs_zero:[52,1,1,""],set_pol_dacrack:[52,1,1,""],write:[52,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[53,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[53,0,1,""],szTypeToName:[53,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{close:[53,1,1,""],convert_to_voltage:[53,1,1,""],gated_trigger_acquisition:[53,1,1,""],get_card_memory:[53,1,1,""],get_card_type:[53,1,1,""],get_error_info32bit:[53,1,1,""],get_idn:[53,1,1,""],get_max_sample_rate:[53,1,1,""],initialize_channels:[53,1,1,""],multiple_trigger_acquisition:[53,1,1,""],set_channel_OR_trigger_settings:[53,1,1,""],set_channel_settings:[53,1,1,""],set_ext0_OR_trigger_settings:[53,1,1,""],single_software_trigger_acquisition:[53,1,1,""],single_trigger_acquisition:[53,1,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[54,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[54,0,1,""],Sweep:[54,0,1,""],ZIUHFLI:[54,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[54,1,1,""],names:[54,2,1,""],prepare_scope:[54,1,1,""],setpoint_names:[54,2,1,""],setpoints:[54,2,1,""],shapes:[54,2,1,""],units:[54,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[54,1,1,""],get:[54,1,1,""],names:[54,2,1,""],setpoint_names:[54,2,1,""],setpoints:[54,2,1,""],shapes:[54,2,1,""],units:[54,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[54,6,1,""],add_signal_to_sweeper:[54,1,1,""],close:[54,1,1,""],print_sweeper_settings:[54,1,1,""],remove_signal_from_sweeper:[54,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[55,4,0,"-"],E8527D:[55,4,0,"-"],HP33210A:[55,4,0,"-"],test_suite:[55,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[55,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[55,1,1,""],display_clear:[55,1,1,""],init_measurement:[55,1,1,""],reset:[55,1,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[55,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[55,1,1,""],off:[55,1,1,""],on:[55,1,1,""],parse_on_off:[55,1,1,""],rad_to_deg:[55,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[55,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[55,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[55,2,1,""],setUpClass:[55,5,1,""],test_firmware_version:[55,1,1,""],test_frequency:[55,1,1,""],test_on_off:[55,1,1,""],test_phase:[55,1,1,""],test_power:[55,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[56,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[56,0,1,""],AMI430_2D:[56,0,1,""],AMI430_3D:[56,0,1,""],R_y:[56,3,1,""],R_z:[56,3,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{update_internal_setpoints:[56,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[47,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[47,1,1,""],get_instrument_value:[47,1,1,""],set:[47,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[57,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[57,0,1,""],Ithaco_1211:[57,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[57,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[57,1,1,""]},"qcodes.instrument_drivers.oxford":{mercuryiPS:[58,4,0,"-"],triton:[58,4,0,"-"]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[58,0,1,""],MercuryiPSArray:[58,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[58,1,1,""],rtos:[58,1,1,""],to_zero:[58,1,1,""],write:[58,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[58,1,1,""],set:[58,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[58,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[58,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[59,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[59,0,1,""],clean_string:[59,3,1,""],is_number:[59,3,1,""],parse_multiple_outputs:[59,3,1,""],parse_single_output:[59,3,1,""],parse_string_output:[59,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[60,4,0,"-"],SMR40:[60,4,0,"-"],ZNB20:[60,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[60,1,1,""],on:[60,1,1,""],parse_on_off:[60,1,1,""],set_pulsemod_source:[60,1,1,""],set_pulsemod_state:[60,1,1,""],set_status:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[60,1,1,""],do_get_power:[60,1,1,""],do_get_pulse_delay:[60,1,1,""],do_get_status:[60,1,1,""],do_get_status_of_ALC:[60,1,1,""],do_get_status_of_modulation:[60,1,1,""],do_set_frequency:[60,1,1,""],do_set_power:[60,1,1,""],do_set_pulse_delay:[60,1,1,""],do_set_status:[60,1,1,""],do_set_status_of_ALC:[60,1,1,""],do_set_status_of_modulation:[60,1,1,""],get_all:[60,1,1,""],off:[60,1,1,""],off_modulation:[60,1,1,""],on:[60,1,1,""],on_modulation:[60,1,1,""],reset:[60,1,1,""],set_ext_trig:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20":{FrequencySweep:[60,0,1,""],ZNB20:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20.FrequencySweep":{get:[60,1,1,""],set_sweep:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20.ZNB20":{initialise:[60,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[61,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[61,0,1,""],constants:[61,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[61,1,1,""],abort:[61,1,1,""],check_for_error:[61,1,1,""],closeDevice:[61,1,1,""],configure:[61,1,1,""],default_server_name:[61,5,1,""],dll_path:[61,2,1,""],get_power_at_freq:[61,1,1,""],get_spectrum:[61,1,1,""],initialisation:[61,1,1,""],openDevice:[61,1,1,""],prepare_for_measurement:[61,1,1,""],preset:[61,1,1,""],saStatus:[61,2,1,""],saStatus_inverted:[61,2,1,""],safe_reload:[61,1,1,""],sweep:[61,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[61,2,1,""],TG_THRU_0DB:[61,2,1,""],TG_THRU_20DB:[61,2,1,""],sa124_MAX_FREQ:[61,2,1,""],sa124_MIN_FREQ:[61,2,1,""],sa44_MAX_FREQ:[61,2,1,""],sa44_MIN_FREQ:[61,2,1,""],saDeviceTypeNone:[61,2,1,""],saDeviceTypeSA124A:[61,2,1,""],saDeviceTypeSA124B:[61,2,1,""],saDeviceTypeSA44:[61,2,1,""],saDeviceTypeSA44B:[61,2,1,""],sa_AUDIO:[61,2,1,""],sa_AUDIO_AM:[61,2,1,""],sa_AUDIO_CW:[61,2,1,""],sa_AUDIO_FM:[61,2,1,""],sa_AUDIO_LSB:[61,2,1,""],sa_AUDIO_USB:[61,2,1,""],sa_AUTO_ATTEN:[61,2,1,""],sa_AUTO_GAIN:[61,2,1,""],sa_AVERAGE:[61,2,1,""],sa_BYPASS:[61,2,1,""],sa_IDLE:[61,2,1,""],sa_IQ:[61,2,1,""],sa_IQ_SAMPLE_RATE:[61,2,1,""],sa_LIN_FULL_SCALE:[61,2,1,""],sa_LIN_SCALE:[61,2,1,""],sa_LOG_FULL_SCALE:[61,2,1,""],sa_LOG_SCALE:[61,2,1,""],sa_LOG_UNITS:[61,2,1,""],sa_MAX_ATTEN:[61,2,1,""],sa_MAX_GAIN:[61,2,1,""],sa_MAX_IQ_DECIMATION:[61,2,1,""],sa_MAX_RBW:[61,2,1,""],sa_MAX_REF:[61,2,1,""],sa_MAX_RT_RBW:[61,2,1,""],sa_MIN_IQ_BANDWIDTH:[61,2,1,""],sa_MIN_MAX:[61,2,1,""],sa_MIN_RBW:[61,2,1,""],sa_MIN_RT_RBW:[61,2,1,""],sa_MIN_SPAN:[61,2,1,""],sa_POWER_UNITS:[61,2,1,""],sa_REAL_TIME:[61,2,1,""],sa_SWEEPING:[61,2,1,""],sa_TG_SWEEP:[61,2,1,""],sa_VOLT_UNITS:[61,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[62,4,0,"-"],SR560:[62,4,0,"-"],SR830:[62,4,0,"-"],SR865:[62,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[62,0,1,""],VoltageParameter:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[62,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[62,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{SR830:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[62,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[63,4,0,"-"],AWG520:[63,4,0,"-"],AWGFileParser:[63,4,0,"-"],Keithley_2000:[63,4,0,"-"],Keithley_2400:[63,4,0,"-"],Keithley_2600:[63,4,0,"-"],Keithley_2700:[63,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[63,0,1,""],parsestr:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[63,2,1,""],AWG_FILE_FORMAT_HEAD:[63,2,1,""],all_channels_off:[63,1,1,""],all_channels_on:[63,1,1,""],change_folder:[63,1,1,""],clear_message_queue:[63,1,1,""],create_and_goto_dir:[63,1,1,""],delete_all_waveforms_from_list:[63,1,1,""],force_event:[63,1,1,""],force_trigger:[63,1,1,""],force_trigger_event:[63,1,1,""],generate_awg_file:[63,1,1,""],generate_channel_cfg:[63,1,1,""],generate_sequence_cfg:[63,1,1,""],get_all:[63,1,1,""],get_current_folder_name:[63,1,1,""],get_error:[63,1,1,""],get_filenames:[63,1,1,""],get_folder_contents:[63,1,1,""],get_sq_mode:[63,1,1,""],get_sqel_loopcnt:[63,1,1,""],get_sqel_trigger_wait:[63,1,1,""],get_sqel_waveform:[63,1,1,""],get_state:[63,1,1,""],goto_root:[63,1,1,""],is_awg_ready:[63,1,1,""],load_awg_file:[63,1,1,""],make_and_save_awg_file:[63,1,1,""],make_send_and_load_awg_file:[63,1,1,""],newlinestripper:[63,1,1,""],pack_waveform:[63,1,1,""],run:[63,1,1,""],send_DC_pulse:[63,1,1,""],send_awg_file:[63,1,1,""],send_waveform_to_list:[63,1,1,""],set_current_folder_name:[63,1,1,""],set_sqel_event_jump_target_index:[63,1,1,""],set_sqel_event_jump_type:[63,1,1,""],set_sqel_event_target_index:[63,1,1,""],set_sqel_goto_state:[63,1,1,""],set_sqel_goto_target_index:[63,1,1,""],set_sqel_loopcnt:[63,1,1,""],set_sqel_loopcnt_to_inf:[63,1,1,""],set_sqel_trigger_wait:[63,1,1,""],set_sqel_waveform:[63,1,1,""],start:[63,1,1,""],stop:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[63,1,1,""],clear_waveforms:[63,1,1,""],delete_all_waveforms_from_list:[63,1,1,""],force_logicjump:[63,1,1,""],force_trigger:[63,1,1,""],get_all:[63,1,1,""],get_current_folder_name:[63,1,1,""],get_filenames:[63,1,1,""],get_folder_contents:[63,1,1,""],get_jumpmode:[63,1,1,""],get_state:[63,1,1,""],goto_root:[63,1,1,""],load_and_set_sequence:[63,1,1,""],make_directory:[63,1,1,""],resend_waveform:[63,1,1,""],return_self:[63,1,1,""],send_pattern:[63,1,1,""],send_sequence2:[63,1,1,""],send_sequence:[63,1,1,""],send_waveform:[63,1,1,""],set_current_folder_name:[63,1,1,""],set_jumpmode:[63,1,1,""],set_sequence:[63,1,1,""],set_setup_filename:[63,1,1,""],start:[63,1,1,""],stop:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[63,0,1,""],parse_output_bool:[63,3,1,""],parse_output_string:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[63,1,1,""],get_idn:[63,1,1,""],reset:[63,1,1,""],write:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[63,0,1,""],bool_to_str:[63,3,1,""],parsebool:[63,3,1,""],parseint:[63,3,1,""],parsestr:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[63,1,1,""],reset:[63,1,1,""],set_defaults:[63,1,1,""],set_mode:[63,1,1,""],set_mode_volt_dc:[63,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[47,0,1,""],test_instrument:[47,3,1,""],test_instruments:[47,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[47,2,1,""],setUpClass:[47,5,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[64,4,0,"-"],test_suite:[64,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[64,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[64,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[64,2,1,""],test_attenuation:[64,1,1,""],test_firmware_version:[64,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[65,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[65,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[65,1,1,""]},"qcodes.measure":{Measure:[67,0,1,""]},"qcodes.measure.Measure":{__init__:[67,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[69,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[69,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[70,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[70,1,1,""]},"qcodes.station":{Station:[71,0,1,""]},"qcodes.station.Station":{"default":[71,2,1,""],__init__:[71,1,1,""],delegate_attr_dicts:[71,2,1,""]},"qcodes.utils":{command:[72,4,0,"-"],deferred_operations:[73,4,0,"-"],helpers:[74,4,0,"-"],metadata:[76,4,0,"-"],validators:[77,4,0,"-"]},"qcodes.utils.helpers":{in_notebook:[75,3,1,""]},qcodes:{BreakIf:[26,0,1,""],CombinedParameter:[27,0,1,""],Config:[28,0,1,""],DataArray:[29,0,1,""],DataSet:[30,0,1,""],DiskIO:[31,0,1,""],FormatLocation:[32,0,1,""],Formatter:[33,0,1,""],Function:[34,0,1,""],GNUPlotFormat:[35,0,1,""],IPInstrument:[36,0,1,""],Instrument:[37,0,1,""],Loop:[38,0,1,""],Parameter:[39,0,1,""],StandardParameter:[40,0,1,""],SweepFixedValues:[41,0,1,""],SweepValues:[42,0,1,""],Task:[43,0,1,""],VisaInstrument:[44,0,1,""],Wait:[45,0,1,""],combine:[46,3,1,""],instrument_drivers:[47,4,0,"-"],load_data:[66,3,1,""],new_data:[68,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","classmethod","Python class method"],"6":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:classmethod","6":"py:staticmethod"},terms:{"001_13":32,"001_unicorn_2016":11,"002_rainbow_2016":11,"00370000e":19,"005_rainbow_2016":11,"009_testsweep_15":14,"009_unicorn_2050":11,"01084000e":19,"010_mockloop_hdf5_test_15":4,"011_":10,"011_mockloop_hdf5_test_15":4,"012_":10,"016_test_missing_attr_15":4,"01763000e":19,"017_mockparabola_run_15":4,"018_mockparabola_run_15":4,"018_testsweep_12":[0,13],"019_testsweep_12":[0,13],"020_testsweep_12":[0,13],"021_testsweep_12":[0,13],"025_":14,"026_":14,"027_":14,"028_":14,"029_":14,"030_":14,"031_":14,"032_":14,"033_":14,"034_":14,"035_":14,"036_":14,"03d":24,"04s":23,"06s":[0,13],"07288e":20,"07s":14,"0848e":7,"0x1c10ee73a58":14,"0x212e0582320":10,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":19,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":93,"0x7fd834e99ea0":1,"0x818a908":16,"0x8a855c0":23,"0x8d11978":7,"0x8f1f940":23,"100x100":[0,13],"10e":10,"10e6":[10,16,23],"10mhz":61,"10v":40,"13_testsweep":1,"13_testsweep_002":1,"14577e":20,"15_rainbow_test":32,"16243e":7,"16_13":11,"17s":15,"1b1536e1a2e4":10,"1e3":[9,10],"1e6":10,"20000000e":24,"20e":10,"250khz":61,"25gb":16,"2614b":[7,20],"27041e":7,"28539f77dfd3":2,"2d_test":12,"2e3":9,"2port":23,"30_alazartest":16,"33500b":89,"33522b":9,"34400a":89,"34401a":7,"34410a":7,"34411a":89,"34460a":50,"34461a":50,"34465a":[14,50,89],"34470a":50,"348s":4,"352161306002045e":21,"3x2":8,"41753e":20,"42637000e":19,"4271e":7,"44xx":[53,83],"4634e":7,"52608e":22,"541_13":11,"69014000e":19,"6a5acd":24,"7bcb44f808c5":20,"800e6":23,"844e846b99a2":14,"93s":[0,13],"94851000e":19,"95535000e":19,"96216000e":19,"98023e":20,"98941000e":19,"99618000e":19,"\u03bca":22,"\u03bcv":6,"abstract":96,"boolean":[52,63,93],"break":[3,12,26,63,84,85],"byte":[48,52,63],"case":[2,3,8,10,16,24,34,38,40,47,48,56,85,92,96,97],"class":[4,8,10,11,15,17,19,20,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,76,77,85,88,89,97],"default":[2,3,5,8,12,20,22,28,29,30,32,34,35,36,38,39,44,47,48,49,50,51,52,57,58,60,62,63,66,68,69,70,71,81,82,85,88,95],"enum":[2,3,10,17,19,40,63,88,93],"export":58,"final":[10,14,16,24,33,34,40,92,96],"float":[3,15,30,34,40,41,47,52,54,56,59,60,63,68,70],"function":[1,6,7,8,11,14,15,16,19,20,24,26,27,30,37,40,41,43,46,48,49,52,53,54,55,59,60,61,63,64,65,72,73,74,76,77,85,88,89,91,96,97],"goto":[24,63],"import":[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,22,23,25,85,89,93,96,97],"int":[8,10,14,24,29,34,36,40,41,47,49,50,51,52,54,58,63,88],"long":[39,63,85],"m\u00e6lkeb\u00f8tt":7,"new":[2,3,8,10,16,20,29,32,33,34,35,63,66,68,70,84,91,92,93,96,97],"public":[78,85,92],"return":[1,3,5,8,10,12,14,17,20,22,24,26,32,34,39,40,41,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,66,67,68,75,88,96,97],"short":[29,96],"static":[36,37,44,54],"super":[3,8,97],"switch":[0,10,13,56,63,93,96],"true":[2,3,6,7,10,14,17,18,19,20,22,29,35,36,39,49,50,51,52,56,61,63,69,71,75,93,96],"try":[1,2,3,9,14,17,22,85,96],"var":35,"while":[12,17,19,63,96],AND:63,ATS:[16,47],Adding:85,And:[3,8,10,93,97],Are:[68,96],BUT:85,But:[1,2,3,10,20,45,88],For:[2,3,5,8,10,24,32,35,40,44,48,53,54,56,63,69,85,90,92,93,96,97],Has:3,IPS:89,Its:[93,96],NOT:[10,32,47,54,85],Not:[2,39,71,85,93],ONE:85,One:[2,10,54,91,96,97],POS:[14,52],PRs:85,THE:10,THERE:89,That:[3,41,42,63,97],The:[0,1,2,3,5,10,13,14,16,18,22,23,24,27,29,32,34,35,36,38,39,41,43,44,46,47,48,49,50,51,53,54,58,61,62,63,65,69,70,85,87,89,92,93,96,97],Then:[10,24,85,92,97],There:[3,18,24,50,85,88,93],These:[22,35,48,61,89,96],Use:[30,39,48,63,85,91,93],Used:59,Uses:32,Using:[89,95],Will:[29,93],With:96,_11:10,_15:14,__call__:[14,32],__class__:[1,6,7,16,20],__del__:48,__dir__:20,__doc__:[10,15,34,39],__enter__:[17,19],__exit__:[17,19],__getattr__:20,__init__:[3,8,17,19,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,67,69,70,71,97],__iter__:[41,42],__name__:[10,20],__next__:42,_alazar:48,_assigned_fg:14,_ats_dll:3,_attenu:47,_call:14,_channel:3,_check_for_error:17,_check_respons:17,_count:8,_error_queu:17,_expect_error:17,_get:97,_get_cmd:58,_get_temp_channel:25,_handl:3,_indic:8,_instrument:[3,14,17],_instrument_list:97,_measured_param:3,_mode:63,_parent_instru:56,_poll:17,_ramp_stat:49,_ramp_tim:49,_raw:3,_read_cmd:58,_recv:58,_response_queu:17,_return_handl:14,_run_loop:14,_run_wrapp:14,_save_v:[3,39],_scale_param:8,_send:58,_set:97,_set_async:97,_set_both:97,_syncoutput:14,_val:8,_write_cmd:58,_write_respons:51,a02:15,a118e754f9e:17,abil:[60,82],abl:[96,97],abort:61,about:[3,10,16,17,63,85,88,91,93,97],abov:[24,63,96],abs:[26,60],absolut:[10,31,63,85],accept:[3,30,31,33,34,35,43,96],acces:[12,24],accommod:63,accompani:85,accord:[3,63,92],accordingli:14,account:[47,85],accur:33,achiev:24,acknowledg:36,acquir:[3,10,14,16,48,53,54,96],acquisiion:48,acquisit:[10,16,48,53,54,61,85,96],acquisition_conrol:48,acquisition_control:[16,48],acquisition_controller_acquisit:16,acquisitioncontrol:48,acquisiton:[16,48],acquist:48,across:[22,96],act:[3,29,40,47],action:[3,5,6,8,14,17,25,26,29,38,63,67,71,78,88,89,91,96,97],action_indic:[6,14,29],activ:[6,88,92],active_children:[11,15,20],active_loop:6,activeloop:[6,38,88],actual:[0,3,13,47,48,85,96],acut:1,adapt:[20,41,42],adaptivesweep:[42,88],adawpt:42,add:[2,3,4,6,10,11,12,14,15,20,30,32,36,37,44,51,52,54,55,60,61,63,65,68,69,70,71,82,83,85,88,93],add_arrai:[29,30,68],add_compon:[4,71],add_funct:[3,37,85],add_paramet:[3,15,37,85,96,97],add_signal_to_sweep:[10,54],add_subplot:24,added:[29,30,54,63,68,69,70,71,85,96],adding:[10,11,15,20,89],addit:[3,24,36,37,44,57,91,93,96],addition:[10,53,54],address:[3,7,21,25,36,44,50,51,52,55,56,58,59,60,62,63,64,65,85,96],adjust:[52,56,96],adopt:91,adriaan:61,aeroflex:[3,64],affect:[10,31,54,85],after:[6,14,35,38,40,43,48,63,82,85,93,96],again:[6,16,96],against:88,aggeg:1,aggreag:1,aggreg:[27,46,89,97],agi:[0,7,13,17,19],agil:[7,19,47,85,89],agilent1:[7,17,19],agilent2:[7,17,19],agilent_2:7,agilent_34400a:[0,7,13,17,19,47],agilent_34401a:55,agilent_34410a:55,agilent_34411a:55,agilent_e8527d:[55,85],agilent_hp33210a:55,agilent_volt:[0,13],agument:26,ahead:[10,41,42],aid:96,aim:40,airbnb:85,aka:85,akin:96,ala:91,alazar1:16,alazar:[3,16,48],alazar_driv:48,alazar_nam:[16,48],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,48],alazarstartcaptur:48,alazartech:[3,16,47],alazartech_at:[3,16,48],alazartech_ats9870:[3,16,48],alazartest:16,alex:85,alexcjohnson:85,alia:[55,64],all:[2,3,8,10,11,16,18,20,22,24,27,29,32,33,34,35,37,39,41,44,46,47,48,51,54,55,56,58,59,60,61,63,71,85,88,89,91,92,93,96,97],all_channels_off:63,all_channels_on:63,alloc:[16,48],alloc_buff:[16,48],allocated_buff:[16,48],allow:[3,22,36,39,41,42,44,54,63,68,85,96],almost:96,alon:29,along:[39,61,69,70,85,88,96],alongsid:8,alpha:[24,52],alreadi:[29,33],also:[2,3,6,12,16,24,26,29,31,33,35,40,41,45,48,53,57,62,63,68,85,88,91,92,93,96],altern:24,although:[3,24,54,85,92],alwai:[2,5,10,12,35,49,51,54,63,85,96],always_nest:35,amen:85,american:56,american_magnet:47,ami430:47,ami430_2d:56,ami430_3d:56,ami430_i:56,ami430_x:56,ami430_z:56,ammet:96,amodel:[6,11],among:[32,97],amp:[3,57,62],amper:56,amplifi:[3,57,62],amplitud:[6,8,10,11,20,22,48,63,97],amplitude_0:20,amplitude_3:20,anaconda3:[14,17],anaconda3libsit:23,anaconda:[91,92],analog:51,analog_amplitude_n:63,analog_direct_output_n:63,analog_filter_n:63,analog_high_n:63,analog_low_n:63,analog_method_n:63,analog_offset_n:63,analys:60,analysi:[85,96],analyz:91,angl:56,angle_deg:55,angle_rad:55,ani:[1,2,3,8,11,12,15,16,17,19,20,21,22,23,24,27,29,31,32,33,34,35,36,38,39,40,41,42,43,44,46,48,54,63,67,71,85,88,91,96,97],anoth:[0,3,8,13,24,32,41,91,96],answer:[49,52],anyth:[18,63,88],anywai:8,aper:15,apertur:[0,13],api:[54,78,80,91,93,96],api_level:54,apparatu:88,appear:[50,63],append:[17,24,29,41,97],appli:[18,22,30,34,40,63],appropri:[48,96],approv:85,arang:3,arbitrari:[34,35,55,59,63,88,91],architectur:[3,91,97],arctan:24,arg:[2,3,14,17,34,41,43,50,58,69,70,97],arg_count:14,arg_pars:34,argument:[1,5,11,12,14,15,20,26,29,30,33,34,43,56,88],around:[24,29,56,61,85,96],arrai:[0,1,4,6,8,10,12,13,14,16,19,20,23,24,29,30,33,48,53,54,59,63,67,68,82,88,89,96,97],array_count:8,array_id:[0,1,4,6,8,10,12,13,14,16,23,29,33,97],arraycount:8,arraygett:[5,12],arraymeasur:50,arrayparamet:[3,50,89],arriv:96,arrow:92,ask:[3,10,17,25,40,49,52,58,63,85,96],ask_direct:20,ask_raw:3,asopc:48,asopc_typ:[16,48],asrl10:21,asrl2:44,asrl4:[0,13],asrl6:[14,22],asrl:52,assert:63,assign:[14,22,51,63,85],associ:96,assum:[3,24,42,51,92,96],assumpt:[10,63],async:95,atob:58,ats9870:[3,16,47],ats_acquisition_control:[16,47],ats_contr:16,ats_inst:16,ats_onwork:89,atsapi:[3,48],atsdriv:16,attach:[30,37,38,47],attent:[85,89],attenu:[3,22,64],attn:3,attribut:[10,20,28,29,30,32,33,36,37,39,40,44,54,67,69,71,85,96],attributeerror:20,author:85,auto:[10,32],autom:91,automat:[3,8,10,32,51,56,83,85,91],autorang:14,autoreload:2,auxiliari:85,avail:[3,10,24,47,50,55,58,60,63,78,80,91,96],avanc:95,averag:[10,48,61,63],averageandraw:[5,6,11,20],averagegett:[6,11],avg:[23,61],avg_amplitud:20,awar:85,awg1:24,awg5014:[47,83,89],awg520:47,awg:[63,89],awg_fil:63,awg_file_format_channel:63,awg_file_format_head:63,awgfil:24,awgfilepars:[24,47],awgfilepath:63,ax1:24,ax2:24,ax3:24,ax4:24,axes:[21,58],axi:[10,29,35,39,54,56,96],axs:10,azimuth:56,b06:15,babi:97,back:[3,24,42,63,85,91,92,93,96,97],backend:44,background:[6,17,19,23,96],background_color:69,background_funct:30,backslash:85,backward:31,bad:2,bandwidth:[10,16,54],bar:[85,93],bare:[36,41],base0:97,base1:97,base2:97,base:[8,14,29,30,31,32,33,37,42,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,85,89,93,96,97],base_loc:[2,6,31],baseplot:[69,70],baseserv:97,basic:[3,12,35,48,52,91],basicconfig:14,baudrat:49,bear:85,becam:6,becaus:[2,3,20,29,30,33,48,85,92,96,97],becom:[16,24,88,96],been:[3,8,23,24,54,56,61,63,96,97],beep:3,befor:[0,2,3,10,12,13,14,32,36,38,43,47,48,52,54,63,85,93,96],beforehand:47,begin:6,behav:85,behavior:[6,11,16,17,19,20,21,23,85,96],behaviour:54,behind:10,being:[2,16,24,29,61,63],belong:[39,40],below:[2,3,24,85,88,89],benchmark:[0,13],best:[3,85],beta:[3,48,55,58,60,61,62,63],better:[3,34,85,96],between:[3,30,33,36,41,54,63,68,69,70],beyond:63,bidirect:[3,40],binari:63,bind:10,bip:52,bit:[48,63],bitlevel0:53,bitlevel1:53,bits_per_sampl:[16,48],black:69,blame:[22,63],blank:[35,85],block:[17,35,97],board:[3,16,22,48],board_id:[3,16,48],board_kind:[16,48],bodi:85,boilerpl:[3,34],bold:88,bool:[3,29,36,39,49,50,51,52,56,57,62,63,68,71,75],bool_to_str:63,born:85,both:[0,3,8,10,13,31,39,62,63,85,88,91,92,96,97],bottom:[52,92],bound:96,bracket:85,branch:85,breakif:[12,78,96],breviti:3,bring:20,brittl:96,broader:91,broken:[2,40],brows:[92,97],buf:48,buffer:[16,48,89],buffer_list:3,buffer_timeout:[16,48],buffers_per_acquisit:[16,48],bug:86,build:[10,24,54,63,83,85,92,96],build_sweep:[10,54],built:[8,10],builtin:34,bunch:10,burden:96,button:[63,85],bwlimit1:16,bwlimit2:16,bwlimit:[16,48],bwmode:10,byref:14,byte_to_value_dict:[3,48],bytes:49,c_amp_in:[3,57],c_set:8,cabl:[63,96],calc:53,calcul:[54,88,96],calibr:[47,48],call:[2,3,8,10,11,14,15,17,20,24,27,29,30,32,33,34,36,39,43,44,46,48,49,51,54,61,63,65,68,85,96],call_by_str:14,call_by_str_parsed_out:14,call_cmd:[3,34],callabl:[12,17,26,27,30,32,38,43,45,46,68,96],callsig:24,came:48,camp1:19,camp:[7,19],can:[1,2,3,8,10,11,20,22,24,26,28,29,30,32,34,35,38,39,40,41,42,45,48,52,53,54,56,58,59,60,63,67,68,69,70,71,85,88,89,90,91,93,96,97],cancel:[22,63],cannot:[4,40,62,63,96],capabl:[18,88,91,96],capit:85,captur:[12,48],card:[3,16,48,53],cardid:53,care:[2,3],cartesian:[56,96],carthesian:56,cast:[24,34],caus:[22,53],caution:[63,89],caveat:96,cdll:3,cell:24,center:61,centr:60,certain:[10,12,48,58],ch01_i:22,ch01_irang:22,ch01_slope:[14,22],ch01_sync:14,ch01_sync_delai:14,ch01_sync_dur:14,ch01_v:[14,22],ch01_vrang:22,ch02:22,ch02_slope:22,ch02_sync:22,ch02_v:[14,22],ch0_offset:18,ch0_voltag:18,ch1:63,ch1_amplitud:9,ch1_amplitude_unit:9,ch1_frequenc:9,ch1_function_typ:9,ch1_offset:9,ch1_output:9,ch1_ramp_symmetri:9,ch1_voltag:18,ch2:63,ch2_offset:24,ch3_state:24,ch41_v:[0,13],ch42_v:[0,13],cha0:47,chain:96,chan0:[6,11,47],chan0_set:6,chan1:[6,10,11,20,26],chan1_set:6,chan2:[6,10,11,20],chan:51,chan_alia:25,chan_go:14,chan_reset_1:14,chan_reset_2:14,chan_reset_3:14,chanc:48,chandata:10,chang:[3,10,16,18,22,28,31,40,52,54,62,63,84,85,89,91,92,93,96],change_autozero:63,change_displai:63,change_fold:63,channel2:53,channel:[0,3,6,7,13,16,17,18,19,20,24,44,48,49,51,52,53,54,58,63,88,89,96],channel_0:53,channel_1:53,channel_a:48,channel_cfg:63,channel_rang:[16,48],channel_range1:16,channel_range2:16,channel_select:[16,48],channel_skew_n:63,channel_state_n:63,charact:[35,36,39,44,58,85],characterist:96,check:[3,45,56,60,69,70,75,85,90,94,96,97],check_error:14,check_for_error:61,check_schema:2,checklist:85,chime:85,chnum:24,choic:48,choos:[24,52,54,60,63,96],chore:85,chosen:54,clariti:3,classmethod:[47,48,55,61],clean:[59,63,82,85],clean_str:59,cleanup:33,clear:[14,24,63],clear_buff:48,clear_error:55,clear_message_queu:[24,63],clear_waveform:63,clearli:85,clever:86,cli:91,click:92,clip:96,clock:[3,16,48,63],clock_edg:[16,48],clock_edge_ris:16,clock_sourc:[3,16,48,63],clone:85,close:[0,4,9,10,13,18,22,24,25,53,54,85],close_fil:33,closedevic:61,cls:2,cmap:20,cmd:[3,14,51,63],cmd_str:14,code:[3,10,34,40,53,55,62,71,75,86,91,96],codebas:91,coil:56,coil_const:56,collect:[8,41,48,88,91,96],colon:85,color:[10,24,69],colorbar:29,column:[35,96],com2:44,com:[49,53,55,64,75,85,87,89,92],combin:[27,30,35,61,66,68,78,88,89,95,96],combined_set:1,combinedparamet:[1,78],come:[35,85,96],comma:63,command:[3,10,14,16,24,34,40,51,52,55,60,62,63,78,85,88,91,96],comment:[3,35,85],commit:[48,90,91],common:[3,60,63,88,96],commonli:[55,60,63],commun:[3,36,44,48,52,58,88,90,96],compani:3,compar:[0,13,85],compat:[38,43,54,91,96],compatibil:63,compens:[53,63],complain:96,complet:[14,24,29,30,53,63,96,97],complex:[3,60,85,96],compliant:85,complic:[20,34,96],compon:[7,48,56,71,91,96],composit:[14,96],comprehens:85,comput:[54,58,85,92,96],concaten:[51,85],concept:97,concurr:96,conda:92,condit:[3,12,26,58,63,96],config:[3,16,48,63,78,85,89,95],config_file_nam:28,configur:[10,16,28,48,61,63,81,89,91,95,96],conflict:96,confusingli:97,connect:[0,3,10,13,14,15,16,17,22,23,24,44,48,49,54,63,71,75,88,96],connect_messag:[3,50,51],consequ:96,consid:[63,85],consist:[22,52,61,63,67,85,96],consol:53,consolid:91,constant:[5,10,12,52,54,56,61],construct:[5,26,29,36,40,56,97],constructor:[3,29,69,70],consult:96,conta:54,contain:[3,5,6,12,24,29,30,32,35,40,48,54,55,60,63,71,85,88,93,96,97],content:[29,89],context:96,contian:48,contin:63,continu:[10,24,38,63,71,85],contrast:85,contribut:[3,86,90],contributor:85,control:[2,3,10,11,16,17,18,19,20,21,22,23,24,48,52,56,60,63,91,93,96,97],controlthermometri:58,conveni:[63,71,96],convent:3,convers:[63,85],convert:[3,29,31,48,51,53,58,63,96],convert_to_voltag:53,coordin:56,copi:[2,17,29,41,52,54,96],core:[1,6,7,10,11,14,15,16,17,19,20,21,23,25,85,89,90,91,93],corner:[11,16,17,19,20,21,23],correct:[3,10,18,24,33,62],correspond:[0,3,13,18,24,35,48,49,54,63],cosmet:[82,83],could:[3,11,14,15,20,24,75,85,96],count:[8,14,34,63,97],counter:[11,12,32],coupl:[3,10,16,48,53,63],coupling1:16,coupling2:16,cours:[85,96],cov:85,cover:[85,97],coverag:[85,91],coveragerc:85,cpld:48,cpld_version:[16,48],crash:[48,91],creat:[4,7,8,11,16,17,19,20,29,33,38,41,47,48,49,50,54,55,63,64,67,68,88,89,92,93,96,97],create_and_goto_dir:63,creation:[12,97],creator:85,critic:[2,93],ctwrapper:14,ctype:3,cumbersom:51,curernt:97,curr1:20,curr2:20,curr:[3,7,19,20,57,62],curr_0:20,curr_0_0:20,curr_0_1:20,curr_1:20,curr_1_0:20,curr_1_1:20,current:[2,3,6,7,10,15,19,22,24,28,30,31,32,50,51,54,56,57,62,63,65,66,68,71,85,93,96,97],current_config:[2,28],current_config_path:28,current_r:56,current_ramp_limit:56,current_schema:[2,28],current_valu:14,currentparamet:[3,7,19,57],custom:[8,28,31,89],customawgfil:63,cutoff_hi:62,cutoff_lo:62,cwd:28,cwd_file_nam:[2,28],cycl:[7,15,16,17,19,50,96],cylindr:56,dac1:[5,12],dac2:[5,12],dac2_dac2:12,dac2_dac3:12,dac3:5,dac:[5,12,47,52],dac_commands_v_13:51,dac_delai:52,dac_max_delai:52,dac_step:52,dai:85,dancer:85,daq:10,dark:69,dat:35,data1:23,data2:[4,11,20],data3:20,data4:20,data:[0,1,2,3,5,6,8,10,13,14,16,17,19,20,29,30,31,32,33,35,38,40,48,52,53,54,60,63,66,68,69,70,78,85,88,89,91,96,97],data_arrai:6,data_buff:14,data_l:4,data_set:[2,4,6,12,14,33,81],data_v:40,dataarrai:[1,6,8,19,20,30,33,68,78,88,96],dataflow:48,dataformat:89,dataformatt:85,datamanag:[88,96],datamin:96,datamod:[0,1,6,8,10,11,13,16,19,20,23,97],datapoint:63,datasav:89,dataserv:[11,20,30,88,96],dataset:[0,1,2,4,5,6,8,10,11,12,13,14,16,19,20,23,29,32,33,35,50,66,67,68,78,88,95,97],date:[11,12,32,48],datetim:32,daunt:85,dbm:60,dc_channel_numb:63,dc_output_level_n:63,deacadac:49,deadlin:17,dealt:96,debug:[2,4,10,93,96,97],debugmod:14,deca:18,decadac:[47,89],decadec:49,decid:[2,96,97],decim:[16,48],decod:3,decoupl:85,decreas:[0,13],deem:54,deeper:17,def:[1,2,3,8,14,17,19,20,58,97],default_file_nam:28,default_fmt:93,default_formatt:[30,66,68],default_io:[30,66,68],default_server_nam:61,defaulttestload:4,defer:26,deferred_oper:78,defin:[1,2,3,10,11,20,24,34,39,40,57,58,62,63,85,88,89,93,96,97],definit:[10,11,20,34,96],deg_to_rad:55,degre:[10,39,56],del:3,delai:[1,6,10,12,14,16,38,40,42,45,52,60,96,97],delay_in_points_n:63,delay_in_time_n:63,deleg:[20,29],delegate_attr_dict:71,delet:[3,63,85],delete_all_waveforms_from_list:[24,63],demand:96,demo:89,demod1:[10,54],demod1_harmon:10,demod1_ord:10,demod1_phaseshift:10,demod1_sampler:10,demod1_signalin:10,demod1_sinc:10,demod1_stream:10,demod1_timeconst:10,demod1_trigg:10,demod:10,demodul:[54,89],demodulation_acquisitioncontrol:[16,48],demodulation_frequ:[16,48],demonstr:[3,8],denot:[35,68],depend:[10,16,22,35,80,85,92,96],deprec:[3,23,29,39,63,83],deprecationwarn:63,deriv:88,descipt:28,describ:[2,3,8,12,38,54,85,93,96],descript:[2,29,63,85,93,96],descriptor:52,design:[55,63,64,96],desir:12,desktop:14,destruct:96,detail:[85,96],determin:33,dev2235:10,dev:2,develop:[54,86,90,91],devic:[52,54,60,96],device_id:54,dft:[16,48],dg4000:47,dg4062:59,dg4102:59,dg4162:59,dg4202:59,diagon:88,dict:[28,29,32,33,36,37,39,40,44,63,65,68,96],dictionari:[3,24,48,63,71,93,96],did:[0,3,11,13,20,92],diff:63,differ:[3,8,20,30,52,54,56,60,63,85,88,91,96,97],differenti:29,difficult:85,difficulti:85,dig:[10,50],digit:[3,51,53,63],digital_amplitude_n:63,digital_high_n:63,digital_low_n:63,digital_method_n:63,digital_offset_n:63,dim:10,dimens:[8,20,29,35,96],dimension:[29,30,58],dir:[2,63],direct:[56,61,85],directli:[3,5,8,10,22,24,30,38,58,63,89,96],directori:[2,3,30,31,63,66,68,85,92,93],disabl:[16,30],disadvantag:96,disambigu:[11,20],disappear:96,disc:63,disconnect:96,discov:47,discret:96,discuss:[85,90],disk:[30,31,33,63,68,96],diskio:[6,30,32,66,68,78,88],displai:[0,1,2,6,7,10,11,13,14,15,16,17,19,20,21,23,25],display_clear:[0,13,14,55],display_text:[0,7,13],display_text_2:7,dissip:96,distribut:91,dived:47,divid:47,divider_r:63,divis:47,division_valu:47,divsion:47,dll:[48,61,89,96],dll_path:[3,48,61],dmm:[0,13,14,55],dmm_data_buff:14,do_acquisit:48,do_get_frequ:60,do_get_pow:60,do_get_pulse_delai:60,do_get_statu:60,do_get_status_of_alc:60,do_get_status_of_modul:60,do_set_frequ:60,do_set_pow:60,do_set_pulse_delai:60,do_set_statu:60,do_set_status_of_alc:60,do_set_status_of_modul:60,doc:[2,6,52,85,89,92],docstr:[3,8,34,39,63,85],document:[15,34,39,48,63,81,82,85,91,96],doe:[10,12,21,29,32,35,38,44,47,52,55,60,62,63,64,85,96],doesn:[3,8,11,20,24,29,53,63,85],doing:[16,85,96],domain:[10,58],domin:91,don:[3,33,40,41,42,51,63,85,96,97],done:[6,10,12,24,56,82,92,96,97],dot:[2,85,93],doubl:[32,63],doubt:[10,85],down:[24,85],download:[10,89,92],dramat:96,drive:6,driver:[5,8,10,12,22,24,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,82,83,85,91,95,96],driver_vers:[16,48],drivertestcas:[47,55,64],due:[3,6,10,22,96,97],dummi:[5,12,16,67,89,97],dummy_set:16,dummyinstru:[5,12],dump:[7,48],duplic:[3,63],dur:10,durat:10,dure:[14,39,40,41,45,48,53,63,80,96,97],dynam:[22,89],e1cb66:24,e8527d:[47,85],each:[0,1,3,4,6,8,10,12,13,14,16,17,18,19,20,22,23,24,29,30,33,34,35,36,38,39,40,41,48,49,52,54,55,62,63,64,69,71,85,88,91,96,97],eachot:97,easi:[5,12,16,85,88,91,92],easier:[54,85,96],easiest:2,easili:[11,20,63,91],edg:16,edit:61,editor:85,ee82e:24,eendebakpt:15,effect:[48,63,93],effort:3,eight:22,either:[3,10,22,33,39,40,56,59,63,70,96],elaps:[14,17,19],electron:[3,91],elem1m1ch1:63,elem1m1ch2:63,elem1m2ch1:63,elem1m2ch2:63,elem2m1ch1:63,elem2m1ch2:63,elem2m2ch1:63,elem2m2ch2:63,element:[24,63,93,96],element_no:63,elemnum:24,elif:17,elnum:24,elpi:85,els:[2,14,18,63,85],elsewher:71,emac:85,email:90,embed:92,emit:[40,52],emoji:85,empti:[2,8,12,17,24,49],enabl:[10,16,53],enable_channel:53,enable_record_head:[16,48],encapsul:96,enco:14,encod:[3,14,34,40],encourag:[3,10,85],end:[3,32,41,44,48,63,85,91,96],endpoint:[0,13],engin:16,enough:[85,88],ensur:[61,62,85,96],ensure_ascii:7,enter:96,entir:[16,71,96],entri:[2,33,38,63,78],entrypoint:80,enumer:[3,10],env:[2,14,28,92,93],env_file_nam:[2,28],enviro:92,environ:[2,91,92,93],equal:93,equival:[8,20,63,91],err:61,error:[1,2,3,4,9,14,17,22,29,38,40,48,52,53,63,93,97],error_cod:52,essenti:[55,62],etc:[3,8,18,29,34,40,85,96],ethernet:[3,36,63],etr_5v:16,eumer:42,evalu:43,even:[8,22,31,33,39,40,41,42,44,51,53,63,85,96],event:[10,24,49,63],event_input_imped:63,event_input_polar:63,event_input_threshold:63,everi:[3,27,30,38,46,48,54,90,96,97],everybodi:[85,90],everyon:85,everyth:[10,24,32,78,85],exactli:[5,14,85],exampl:[1,2,6,8,26,29,32,39,40,42,44,48,53,56,63,85,88,91,92,94,97],exce:85,exceed:24,except:[2,3,14,63,72],exec_funct:14,exec_str:14,execut:[10,12,14,34,43,47,54,55,63,64,88,91,96],executor:97,exemplifi:10,exept:10,exercis:85,exist:[3,24,32,33,42,53,63,66,68,85,91,96],expand:86,expect:[2,3,10,14,17,33,38,53,58,63,85,97],experi:[11,20,28,89,91,92,96],experiment:[91,96],expir:14,explain:[85,93],explicit:[20,24,41],explicitli:[29,39,85,96],explor:[12,63],expos:93,express:[40,96],ext:14,extend:[24,35,41],extens:[35,63],extern:[16,53,60,61,63],external_add_n:63,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:63,external_startcaptur:[16,48],external_trigger_coupl:[16,48],external_trigger_rang:[16,48],extra:[8,20,39,85,96],extra_schema_path:2,extract:58,extrem:96,fact:85,factor:[3,7,10,22],factori:63,fail:[2,85,96],falcon:85,fall:63,fals:[2,6,7,8,10,14,17,18,19,22,23,29,30,39,49,50,51,52,55,56,59,60,62,63,68,93,96],faq:95,fast:96,faster:[24,85],fastest:24,feasibl:91,feat:85,featur:[3,18,20,61,86,91],feed:[3,57,62],feedback:[42,96],feel:85,fetch:[7,58],few:[34,54,85],fewer:22,ff4500:24,ff8c00:24,fft:54,field:[34,35,39,40,56,91,97],field_limit:56,fifo:16,fifo_only_stream:[16,48],fig:[10,24],figsiz:[12,20,69,70],figur:[10,14,24,70,85,92,96],file:[2,4,11,12,20,28,30,32,33,35,52,58,63,66,68,85,89,95,96],file_path:63,filen:28,filenam:[24,63],filepath:24,filestructur:63,fill:[8,12,38,63,96],filter:[10,54],filw:63,find:[17,32,48,85,90,93],find_board:[16,48],findal:58,finder:12,fine:[52,96],finish:[6,10,20,48,82,96],finit:[22,51],fire:22,firmwar:[0,3,6,7,13,14,16,23,48,49],first:[2,6,8,14,24,29,35,40,43,56,63,69,70,85,96,97],first_delai:14,fit:[24,48,85],five:61,fix:[10,29,34,41,84,85,96,97],fixabl:85,flag:[22,52,61],flake8:85,flavor:96,flexibl:[88,91],flow:22,flush:63,fmt:[2,11,12,32],fmt_counter:32,fmt_date:32,fmt_time:32,fname:63,focus:85,folder:[3,31,35,63],follow:[0,3,5,12,13,24,49,56,63,85,92,93,96,97],foo:[85,93,97],footer:85,forc:[6,11,16,17,19,20,21,23,24,63],force_ev:63,force_logicjump:63,force_reload:63,force_trigg:63,force_trigger_ev:63,foreground:96,foreground_color:69,fork:85,form:[3,34,48,60],format:[0,3,10,13,14,20,22,24,30,32,34,35,40,63,66,68,89,91,96],formatloc:[2,11,12,68,78,88],formatt:[4,6,30,66,68,78,88,93,96],formerli:[3,64],forward:[16,31,48],foul:24,found:[3,10,24,33,40,43,52,63,85,89],four:[18,49,59],fourier:48,framework:[85,91,96],free_mem:48,freedom:39,freeli:96,freq:61,frequenc:[10,23,48,50,60,61,63,97],frequencysweep:60,frequent:85,frequwnci:60,fridg:[58,91],friendli:54,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,29,30,32,33,34,35,38,39,40,48,51,52,53,54,55,56,57,58,60,62,63,66,67,71,85,87,88,89,91,96,97],fron:7,front:[10,63],frontend:93,full:[1,2,9,10,22,30,35,63,66,68,91],full_nam:[1,29],fulli:[10,85],fullrang:52,fun:51,func:[3,14,43],func_nam:17,fundament:96,further:[59,88,91],furthermor:54,futur:[3,63,85,97],gain:[57,62],garbag:48,gate:[6,11,26,88,96,97],gate_frequ:97,gate_frequency_set:97,gated_trigger_acquisit:53,gather:[11,20],gather_paramet:[11,20],gave:24,gee:10,gener:[3,12,24,30,32,41,54,55,59,60,61,62,63,64,85,88,89,91,92,96],generate_awg_fil:63,generate_channel_cfg:63,generate_sequence_cfg:63,get:[0,1,2,3,4,5,6,8,10,11,12,13,14,15,16,17,18,19,20,21,22,25,29,33,39,40,47,48,50,52,54,57,58,60,62,63,71,85,89,93,96,97],get_al:[52,60,63],get_board_info:48,get_card_memori:53,get_card_typ:53,get_cmd:[3,15,40,48,58,97],get_current_folder_nam:63,get_data_set:[0,1,12,13,14],get_error:63,get_error_info32bit:53,get_filenam:63,get_folder_cont:63,get_funct:48,get_idn:[3,16,48,52,53,57,58,62,63],get_instrument_valu:47,get_integrationtim:15,get_jumpmod:63,get_latest:[10,26,39],get_max_sample_r:53,get_pars:[3,15,40],get_pol_dac:52,get_power_at_freq:61,get_processed_data:[16,48],get_ramp:49,get_sample_r:48,get_spectrum:61,get_sq_mod:63,get_sqel_loopcnt:63,get_sqel_trigger_wait:63,get_sqel_waveform:63,get_stat:63,getattr:[3,20],getcwd:24,getdoubl:10,getlogg:[4,10,24],gettabl:[3,8,39,57,62,67,88,96],getter:[14,88],getx:97,git:[6,17,89,91],github:[20,85,87,88,89,91,92],giulio:85,giulioungaretti:85,give:[8,12,38,63,85,96],given:[1,22,36,48,59,85,96,97],global:[3,11,18,20,89],gmbh:53,gnuplot:[35,91],gnuplot_format:[4,6],gnuplotformat:[4,6,30,66,68,78,88,96],goal:85,going:[3,5],good:[2,3,10,60,85],googl:[6,85],got:85,goto_root:63,goto_st:[24,63],goto_to_index_no:63,gotten:[22,24,96],gpib0:[7,17,19,20],gpib1:15,gpib:[3,63,65],gradual:18,grai:69,graph:39,graphicswindow:69,great:85,greater:40,greatest:96,green:92,group:[60,85,91,96],grow:90,gs200:[47,83],guarante:[2,75],gui:[2,10,14,19,85,91,93],guid:[48,85,90,92],guidelin:85,h5fmt:4,h5py:92,hack:[85,93],had:[11,20,24],half:10,halfrang:52,halt:45,halt_bg:[16,20],han:24,hand:24,handl:[3,8,29,30,34,48,51,52,53,69,88],handle_buff:48,handler:4,hang:85,happen:[3,22,24,29,43,96],happi:85,hard:[63,85],harder:[85,96],hardwar:[3,22,24,52,60,63,85,88,96],harvard:[18,47],has:[3,4,6,8,10,18,22,23,24,29,35,48,54,56,62,63,85,93,96,97],hasattr:[14,17],hasn:3,have:[2,3,5,8,10,11,12,20,22,24,29,33,35,39,42,47,48,52,54,55,56,57,61,62,63,64,85,88,90,91,92,96,97],haz:82,hdf5:[4,96],hdf5_format:4,hdf5format:4,head:63,header:[16,85],heatmap:[69,70],height:[69,70],help:[2,3,10,24,30,33,34,36,39,44,63,85,91,96],helper:[2,4,20,24,54,78,93],here:[3,6,8,10,11,15,16,20,22,29,51,54,62,67,85,92,96],hesit:85,hewlett:7,hierarchi:86,high:[53,63,85,96],higher:[93,96],highest:[32,96],highlevel:14,histori:[63,85],hkey_current_usersoftwareoxford:58,hold:[3,10,21,58,88,96,97],hold_repetition_r:63,holdoff:10,home:[2,28,85,93],home_file_nam:[2,28],horisont:10,host:22,hot:20,hotfix:85,hound:61,how:[2,5,8,10,12,24,33,35,38,39,41,42,69,85,87,88,90,96,97],howev:85,hp33210a:47,htm:52,html:44,http:[44,52,53,75,85,87,89,92],human:[48,83],icon:92,id1:35,id2:35,id3:35,idea:[3,60,85,90],ideal:85,ident:[3,8,54,56,63,97],identifi:[30,33,35,37,39],idl:[25,63],idn:[3,4,6,7,16,20,25,51,52],iff:63,ignor:[43,48,63],ignore_kwarg:14,igor:91,immedi:[0,13,22,31,48,54,71,85,96],imp:[15,23],impact:96,imped:[10,16,48],impedance1:16,impedance2:16,imper:85,implememnt:71,implement:[11,15,16,20,33,36,41,42,48,54,60,61,63],implicit:85,implicitli:96,importlib:4,impos:96,improv:[84,85],in_notebook:78,inc:[7,15,20],inch:70,includ:[0,3,8,13,32,39,41,44,53,55,62,63,67,69,70,85,88,91,96,97],inclus:63,inconsist:96,inconsistensi:63,incorrect:85,incorrectli:48,increas:[8,85],increment:[35,40,96],ind:10,inde:85,indend:10,indent:[7,85],independ:[33,96],index0:8,index1:8,index:[8,52,63,70,96],indic:[1,29,63,96,97],individu:[30,41,52,56],inf:[14,22],infer:29,infin:63,infinit:[24,63],info:[2,3,6,10,14,19,20,21,32,48,63,90,93],inform:[16,32,36,39,44,48,49,53,61,63,69,85,91,93,96],inherit:[14,48,60,63],inifit:22,init_measur:[14,55],initi:[3,12,29,30,33,47,63,66,68,91,96],initial_valu:[3,8],initialis:[14,60,61,65,89],initialize_channel:53,initialz:52,inner:[1,8,29,35,96],input:[2,3,14,17,20,24,34,40,47,52,63,85,88,89,96],input_path:53,input_rang:53,insert:[3,32,93],insid:[0,3,8,13,30,38,39,63,66,68,75,85,91,92,96],inspect:2,inst0:[0,3,9,13,14,23,24],instal:[10,44,50,54,80,85,87,91],instanc:[2,3,30,34,39,47,48,49,50,54,55,57,62,64,96],instantan:22,instanti:[3,10,16,30,51,56,85,89,96],instdict:24,instead:[1,3,20,23,29,97],institut:3,instr:[0,3,7,9,13,14,15,17,19,20,21,22,23,24],instruct:[91,92],instrument:[0,1,6,8,10,13,14,15,16,17,19,20,22,24,25,29,34,36,39,40,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,78,85,86,89,91,95],instrument_cod:40,instrument_driv:[0,3,7,9,10,13,14,15,16,17,18,19,20,21,22,23,24,25,85],instrument_mock:[4,5,12],instrument_nam:[16,29],instrument_testcas:47,instrumentserv:[96,97],instrumentstriton:58,insuffici:96,integ:[3,8,29,32,63,70,96],integr:[7,15,17,19,61,85,96],integration_tim:7,integrationtim:15,intellig:96,intend:[42,96],interact:[3,12,62,85,92,96],interdepend:96,interest:[10,85,96],interfac:[3,10,54,63,96],interleav:[16,63],interleave_adj_amplitud:63,interleave_adj_phas:63,interleave_sampl:[16,48],intermedi:85,intern:[10,29,48,54,56],internal_clock:[3,16],internal_trigger_r:63,interpret:[3,4,11,12,20,96],interrupt:94,interv:[69,70],introduct:95,invert:[3,7,19,57,62],invit:85,invok:[3,10],involv:[89,91,96],io_manag:[30,66,68,96],iomanag:88,ion:10,ipinstru:[3,56,58,78,88],ipykernel:23,ipython:[1,2,6,7,10,11,14,15,16,17,19,20,21,23,25,75,91],iq_arrai:8,iqarrai:8,irrespect:[22,63],irrevers:96,is_awg_readi:63,is_numb:59,is_setpoint:[6,29],is_typ:2,issu:[63,82,83,85,88],issue_warning_on:14,ital:88,item:[8,25,32,41,51],iter:[41,42,88],iter_error:2,ithaco1:7,ithaco:[3,7,47,89],ithaco_1211:[3,7,19,47],its:[0,3,8,10,13,18,20,22,24,29,34,48,63,67,85,88,92,96,97],itself:[32,39,48,63,85,96],ivert:7,ivvi:47,javascript:[1,2,6,7,10,11,14,15,16,17,19,20,21,23,25,85],job:[96,97],johnson:85,join:[2,24,85,90],jorgenschaef:85,json:[2,6,7,36,37,39,44,63,91,93,96],json_config:2,jsonschema:2,jtar_index_no:63,jtar_stat:63,jump:[18,24,63],jump_log:63,jump_tim:63,jump_to:[24,63],jumplog:63,junk:11,jupyt:[12,91,92,94],jupyter_cli:23,just:[0,1,3,5,6,10,11,12,13,15,20,24,34,35,40,45,85,88,92,95,96,97],jypyt:75,k2600:3,k2600a:3,keep:[33,48,49,85,91,96],kei:[3,11,20,24,30,41,48,63,68,71,93,96],keith:[7,15,17,19,20,83],keithlei:[7,63,89],keithley1:[7,17,19,20],keithley2:[7,17,19,20],keithley_2000:47,keithley_2400:47,keithley_2600:[3,7,17,19,20,47],keithley_2614b:[3,63],keithley_2700:[15,47],kept:93,kernel:[23,93,94],keysight:[47,89],keysight_33500b:[9,47],keysight_34465a:[0,13,14,47],keysight_volt:[0,13],keyword:[32,34,43],kind:[1,10,97],knob:[3,96],know:[41,42,85,90,97],known:[3,29,64],kwarg:[2,3,8,14,16,17,34,36,37,40,42,43,44,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,68,69,70,71,97],lab:[10,54,91],label1:35,label2:35,label3:35,label:[1,3,6,7,8,10,15,16,24,27,29,32,35,39,46,47,48,85,96,97],lambda:[5,12,48],languag:35,larg:[6,24,63,85],larger:40,last:[2,6,10,14,17,20,48,51,54,63,85,96],last_saved_index:33,latenc:[0,13],later:[3,10,30,31,32,68,71,85,96,97],latest:[48,92,96],latest_cal_d:[16,48],launch:[54,92],lazi:89,lcardtyp:53,lead:85,leak:48,learn:[10,91],least:[10,85,88,96],leav:[20,36],left:92,legacy_mp:[2,93],len:[10,14,63,97],length:[0,8,10,13,24,54,63,67,96,97],less:[10,85,96],lest:24,let:[29,85,93,97],letter:85,leve:3,level0:53,level1:53,level:[2,3,12,14,16,29,35,53,63,85,93,96,97],levelnam:4,levelv:3,lib:[2,14,17],librari:[14,24,85,92,93],life:85,like:[3,10,11,20,24,29,33,34,40,41,42,48,55,58,60,63,85,88,91,93,96],limit:[3,16,22,56,63,85,96,97],limiti:[7,20],limitv:[7,20],lin:[10,61],line2d:[10,14],line:[5,7,10,12,14,17,19,35,50,69,70,85,91],linear:[1,97],linearli:[10,88],liner:85,link:[29,42,48,88],linkag:86,linspac:[1,24,97],linux:92,list:[4,8,12,16,27,30,32,34,41,46,48,50,52,53,54,58,60,63,68,71,78,80,82,85,88,89,96,97],list_of_dataset:4,list_of_mixed_typ:4,listcomp:14,liter:85,littl:[85,96],live:[20,66,87,89,92,96,97],load:[2,3,8,24,28,33,61,63,66,82,89,91,93,97],load_and_set_sequ:63,load_awg_fil:63,load_data:[12,30,78],load_ext:2,loaded_data:12,loadlibrari:3,loadtestsfromtestcas:4,loc:32,loc_fmt:11,loc_provid:[2,11,12,32],loc_provider_junk:11,loc_record:[11,68],local:[0,1,8,10,13,23,24,30,34,36,39,40,44,49,50,63,65,85,91,96,97],locat:[0,1,2,4,6,8,10,13,14,16,17,19,20,22,23,30,31,32,33,63,66,68,89,93,96,97],location_provid:[2,12,32,68,88],lock:[10,62],lockin:[3,57,62],log:[2,4,5,10,12,14,24,54,61,91,93,97],logger:[4,24],logic:[63,85],logic_jump:63,loglevel:[2,93],logo:82,lograng:41,logview:85,longer:[32,35,38],look:[5,10,12,22,32,44,48,85,93,96,97],loop:[1,6,8,11,14,16,17,19,20,23,26,29,30,33,35,39,43,45,48,63,67,71,78,82,88,89,95,97],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:63,lot:[3,29,63,85],love:[85,90],low:[3,10,14,63,96,97],lower:[29,96],lowest:32,m1s:[24,63],m2s:[24,63],m4i:[47,83],mac:[6,11,16,17,19,20,21,23],machin:[63,85],made:[2,10,54,93],magic:24,magnet:[56,58,89,91,97],magnet_i:56,magnet_x:56,magnet_z:56,magnitud:[23,60,96],mai:[3,10,18,22,24,26,30,33,34,41,42,63,69,70,80,85,88,93,96],main:[20,63,96],maintain:[3,57,62,85,86,90,96],majorana:93,make:[0,3,5,8,10,11,12,13,16,17,19,20,21,22,23,29,34,35,38,48,51,58,63,85,88,89,91,92,96],make_and_save_awg_fil:[24,63],make_directori:63,make_send_and_load_awg_fil:[24,63],manag:[3,17,30,32,33,62,68,96],mandatori:[63,85],mani:[8,10,29,30,35,40,41,42,48,85,96],manner:24,manual:[10,20,52,55,56,57,58,60,62,63,89,91,96,97],manualparamet:[1,3,8,16,97],map:[3,34,40,48,70,96],mark:96,marker1:63,marker1_amplitude_n:63,marker1_high_n:63,marker1_low_n:63,marker1_method_n:63,marker1_offset_n:63,marker1_skew_n:63,marker2:63,marker2_amplitude_n:63,marker2_high_n:63,marker2_low_n:63,marker2_method_n:63,marker2_offset_n:63,marker2_skew_n:63,marker:[24,63],mashup:82,mass:63,master:[85,89,92],match:[10,24,32,34,35,40,63,96],matplot:[1,2,12,16,20,23,78],matplotlib:[0,1,2,4,5,10,11,13,14,15,16,17,18,19,20,21,23,24,25,70,92,93],matrix:56,matter:[24,85],maunual:2,max:[35,40,52,53,61],max_delai:40,max_sampl:[16,48],max_status_ag:51,max_val_ag:40,max_work:97,maxim:[22,63],maximum:[40,52,56,61,96],mayb:[29,38,85],mean:[2,3,8,10,38,40,63,75,85,93,96,97],meaning:3,meaningless:85,meant:[34,54],measur:[0,1,3,4,6,8,11,13,14,15,16,17,19,20,23,29,30,35,38,39,40,42,43,47,50,54,56,57,62,71,78,89,95],measured_param:[3,57,62],measured_valu:42,media:63,member:91,memori:[30,48,63,68,96],memory_s:[16,48],memrori:24,memsiz:53,mention:85,mercuri:89,mercuryip:[21,47],mercuryipsarrai:58,merg:85,merger:3,merlin:6,messag:[4,14,24,49,51,52,63],message_len:52,messagebas:14,met:80,meta:[5,10,12,91,95,96],meta_fil:7,meta_serv:97,meta_server_nam:97,metadat:42,metadata:[3,12,19,20,29,33,36,37,39,44,47,78,89,91,96],metadata_fil:35,meter:[3,6,11,15,20,63],method:[2,3,8,10,11,12,20,22,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,54,55,56,58,63,64,67,69,70,71,85,96,97],methodnam:[47,55,64],mhz:10,might:[18,48,56,85,96],mimic:88,mimick:96,min_valu:8,mind:48,mini:35,minim:10,minu:93,mirror:96,misc:78,misinterpret:24,miss:[85,97],mistak:85,mix:[3,4,85],mock:[5,12,85],mockgat:[6,11],mockinstru:88,mockmet:[6,11],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,11],mode:[0,1,3,6,7,8,10,13,15,16,18,20,23,30,48,51,53,54,60,61,63,65,89,96,97],model:[3,6,7,11,15,16,19,20,48,50,56,59,60,85,88,93,96],modif:93,modifi:[41,54,85],modified_rang:33,modul:[2,3,10,12,14,15,17,20,23,80,85,93],modular:[91,96],moment:63,monitor:[11,20,38,45,71,88,91,96],more:[6,10,20,22,24,30,34,35,48,53,54,63,81,85,88,89,91,92,96],most:[2,3,8,10,14,17,18,20,39,48,55,60,63,85,88,92,96],mostli:[10,88],motiv:85,move:[3,11,20,58,63],msec:[3,7],msg:58,mua:22,much:[33,85,96],multi:[81,96],multilin:85,multimet:63,multiparamet:[3,54,57,58,60,62,89],multipl:[1,8,10,34,40,52,53,55,60,63,89,96,97],multiple_trigger_acquisit:53,multipli:96,multiprocess:[3,17,81,91,97],multityp:88,must:[3,8,10,24,29,32,35,36,39,41,42,48,53,54,62,63,68,85,88,93,96,97],mv_rang:53,my47004267:7,my48002016:[0,13],my54505388:[0,13,14],my_experi:92,mycount:8,myinstrument:97,myvector:97,myvector_set:97,name:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,16,17,19,21,22,23,24,25,27,28,29,30,32,34,35,36,37,39,40,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,68,71,85,88,92,93,96,97],name_to_delet:3,namespac:[11,20,78,93],nan:[12,20],nataliejpg:65,navg:61,navig:92,nbagg:[4,5,11,16,17,18,19,20,21,23,24,25],nbi:85,ndarrai:[29,63,96],nearli:3,necessari:[10,16,29,42,48,54,91,96],necessarili:[39,85,88],need:[2,3,8,24,29,48,53,58,63,85,88,89,96,97],neg:[45,52,56],neither:85,nep:[10,54],nepbw:54,nepbw_to_timeconst:54,nest:[0,8,13,29,38,96],nested_dataset:4,network:[60,96],never:[40,85],new_cmd:3,new_data:[30,78],new_indic:14,new_nam:3,new_valu:14,newlin:35,newlinestripp:63,next:[24,32,35,63,92,96,97],nice:[3,10,11,20,85,92],nick:85,nix:92,no_instru:97,nobodi:85,nocommanderror:40,node:10,non:[24,67,85,97],none:[2,3,4,6,7,10,14,16,17,19,20,21,23,27,29,30,32,34,35,36,38,39,40,41,44,46,47,48,49,52,53,56,58,60,61,63,66,68,70,71,82,85],nonlinear:20,noofpoint:24,noofseqelem:24,nor:85,normal:[30,31,34,39,41,88,96],notabl:10,notat:[2,41],note:[2,3,8,10,12,22,24,30,39,40,41,42,44,51,54,57,61,62,63,66,68,80,91,93,96,97],notebook:[0,2,10,13,14,16,20,24,75,89,91,92,93,94],noth:48,notic:20,now:[1,6,8,10,11,20,22,24,71,85,92,93,97],nplc:[0,7,13,14,15,17,19,63],nplc_list:50,npt:[16,23,60],nr_bytes_written:14,nrep:[24,63],num:[6,14,41,70],num_chan:51,number:[0,1,3,7,8,10,11,13,14,15,17,19,20,22,24,32,35,36,38,39,41,44,47,48,49,50,51,52,53,54,59,60,63,85,88,96,97],number_format:35,number_of_channel:48,number_of_paramet:97,numdac:52,numer:[35,96],numpi:[0,1,3,4,8,10,11,13,14,15,17,19,20,21,22,24,25,29,54,63,96,97],numpoint:63,numval:14,object:[1,2,6,7,10,11,12,14,15,16,17,19,20,21,23,25,29,31,33,34,38,39,40,41,42,48,51,61,66,68,71,85,86,93,96,97],obsolet:24,obtain:48,obviou:38,occasion:33,occupi:[32,63],occur:[52,53,93,96],oem:63,off:[0,3,7,9,10,13,14,18,22,34,51,55,60,63],off_modul:60,offer:[1,97],offload:96,offset:[10,16,18,63],often:[5,30,85,88],ohm:[10,16],oldn:10,omit:[20,40,58],on_modul:60,onc:[1,5,8,11,12,20,29,33,63,85,88,92,96,97],one:[2,3,8,10,11,15,18,20,22,24,27,29,30,33,34,35,38,40,41,46,47,48,49,52,56,60,62,63,68,85,88,89,93,96,97],ones:[55,60,63,85],onli:[3,4,8,10,16,17,20,22,24,29,30,32,34,35,39,40,41,42,48,49,50,51,54,55,57,58,60,62,63,68,85,89,96],onto:[63,96],opc:63,open:[4,7,33,36,44,70,85,91,92,96],opendevic:61,oper:[3,14,16,26,31,41,63,93,96,97],oppos:[3,24],opposit:69,optim:91,option:[2,3,24,27,29,30,32,33,34,36,37,39,40,41,42,44,46,47,50,58,63,66,68,82,85],optiona:49,order:[2,3,10,24,27,30,34,46,54,56,85,93,96],ordereddict:[1,30],org:44,organ:[85,89],orient:96,origin:[0,13,47,96],osc:10,oscil:10,oscillator2_freq:10,osx:92,other:[2,3,8,10,22,24,32,33,38,43,45,48,57,62,67,69,70,85,91,96],otherclass:3,otherwis:[3,24,29,48,85,96],our:[35,85],out:[1,3,5,8,10,12,14,17,20,22,26,48,51,53,85,90,91,94,96,97],outer:[8,29,35,96],output:[3,7,11,16,17,18,19,20,21,22,23,24,34,38,40,52,54,57,59,60,62,63,67,85,89,96],output_waveform_name_n:63,outsid:[45,48,53,54,63],over:[1,3,10,20,33,38,41,42,48,61,85,88,96,97],overhead:96,overrid:[3,30,32,33,51,54,68],overview:[12,53,63,89,93,95],overwrit:[2,17,19,20,52,63,68,93],overwritten:32,own:[2,3,34,48,56,85,96],oxford:[21,25,47],p1_set:1,p_label:3,p_name:3,p_unit:3,pack:63,pack_waveform:63,packag:[2,10,14,23,80,85,91,93],packagesipythonkernel__init__:23,packard:7,packed_waveform:63,pad:3,page:[78,80,85,96],pai:85,pair:[0,13],panel:[10,63,91],panic:96,par:24,paraemt:47,param:[8,10,24,25,39,48,51],param_id:14,param_nam:29,param_out:14,paramet:[5,6,7,10,11,12,15,16,18,19,20,22,24,25,26,27,29,30,31,32,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,63,65,66,67,68,69,70,71,78,81,83,85,86,89,91,95],parameter_class:3,parameter_nam:82,paramt:[1,46,97],parent:[34,39,40,42],parenthes:85,parmet:53,pars:[24,34,59,63],parse_awg_fil:[24,63],parse_multiple_output:59,parse_on_off:[55,60],parse_output_bool:63,parse_output_str:63,parse_single_output:59,parse_string_output:59,parsebool:63,parseint:63,parser:[3,34,63],parsestr:63,part:[2,3,11,20,32,39,40,53,61,85,88,89,93,96],partial:[59,97],particular:[3,8,10,24,88,96],particularli:[3,34,37,96],pass:[3,32,34,40,42,43,47,48,53,56,65,68,69,70,85,93,96,97],pat:63,patch:85,path:[2,12,24,28,30,31,33,48,58,63,66,68,92,96],pattern:63,pci:3,pcie:48,pcie_link_spe:[16,48],pcie_link_width:[16,48],pdf:51,pend:63,pep8:85,per:[3,14,16,29,48,52,56,63,91,97],percent:[10,54],perf:85,perfom:[0,13],perform:[0,10,13,16,22,33,48,52,54,61,63,67,85,96],perhap:[14,96,97],period:[30,69,70],persist:[36,56],persistent_switch:56,person:85,phase:[8,10,23,48,54,56,96],phase_delay_input_method_n:63,phase_n:63,phi:56,physic:[3,22,30,47,49,66,68,71,96],pick:85,pictur:96,piec:[88,96],pillar:96,ping:85,pinki:85,pip:[85,91,92],pixel:69,place:[2,22,85,96],platform:53,pleas:[10,24,51,63,85,90],plot2:20,plot2q:20,plot3:20,plot3b:20,plot3bq:20,plot3q:20,plot4:20,plot4q:20,plot:[1,2,9,10,14,16,19,20,22,23,24,29,78,82,89,92,93,96],plotlib:[2,93],plotq1:20,plotq2:20,plotq:19,plotter:10,plt:[0,10,11,13,14,15,17,19,20,21,23,24,25,70],plu:93,plubic:80,plug:91,plugin:85,plural:8,point:[0,10,13,14,27,31,35,38,40,46,54,61,78,91,96],poitn:63,polar:[52,56],polish:91,poor:18,popul:[29,37],port:[18,25,36,49,56,58,61,91],posit:[34,56,96],possibl:[8,18,24,57,58,62,63,93,96],post:85,post_acquir:48,posttrigger_s:53,potenti:[30,38,91,96],power:[23,50,56,58,60,61,85,96],power_limit:26,powerlin:15,pprint:[6,7],practic:85,pre:66,pre_acquir:48,pre_start_captur:48,preamp:[3,57,62],preamplifi:[3,57,62],prece:54,preced:35,precis:[18,54,83],preconfigur:2,predefin:[24,43,62,63],prefer:[91,96],prefix:85,preliminari:[0,13],prepar:[10,14,48,50,54,96],prepare_for_measur:61,prepare_scop:[10,54],prepend:[29,63],prerequisit:89,present:[3,57,62,85,96],preservechannelset:63,preset:61,preset_data:29,press:[63,94],pretrigger_s:53,pretti:[22,51,54],prevent:[3,39,48,63],previou:[6,49,85],previous:[54,63,96],primari:91,princip:34,print:[0,1,2,3,8,10,11,13,14,15,16,17,19,20,21,22,23,24,25,51,54,63,97],print_cont:63,print_overview:[22,51],print_sweeper_set:[10,54],printslop:[22,51],prior:47,prioriti:[32,96],privat:[48,78],probabl:[34,48,85,96],problem:[24,53,85],procedur:[51,96],process:[11,16,20,48,85,96],produc:[20,96],profit:92,program:48,programm:[48,56,63],programmat:[2,63,91],progress:38,progress_interv:[14,38],project:[3,85],proper:[10,52],properli:63,properti:[2,93,96],protect:52,protocol:[16,52,96],provid:[2,8,16,22,29,32,34,36,40,42,48,53,55,56,64,68,69,70,85,88,89,92,96],proxi:96,pts:10,pull:[10,14],pull_from_serv:[6,11,16,19,20,96],puls:[22,24],purchas:10,purpos:[3,8,96],push:96,push_to_serv:[6,19,96],put:[24,35,51,63,96,97],pyenv:2,pyplot:[0,10,11,13,14,15,17,19,20,21,23,24,25],pyqtgraph:[1,2,9,19,22,78,92],pyspcm:53,pytest:85,python3:2,python:[3,12,30,48,52,53,63,66,68,82,85,91,92,96],pyvisa:[14,44,96],qcmatplotlib:[1,2,16,23,78],qcode:[1,4,5,6,7,14,15,78,80,85,86,87,90,95,96,97],qcodes_config:93,qcodesfold:23,qcodesrc:2,qdac:[0,13,47,89],qdac_ch02_v_set:14,qdac_ch41_v_set:[0,13],qdac_ch42_v_set:[0,13],qdev:[0,13,14,17,22,47,91,93],qtlab:61,qtplot:[1,2,9,12,14,19,20,22,23,78],qtwork:52,quadratur:8,quantiti:[20,35],quantum:92,quench:56,queri:[10,17,22,49,51,61,63,96],querysweep:61,question:[75,85],queue:[17,24,49,63],quickli:24,quiet:14,quirk:81,quit:[26,85,96],quot:35,qutech:47,qutech_controlbox:55,r_y:56,r_z:56,rack:52,rad_to_deg:55,rainbow:[11,32],rais:[2,3,14,17,20,26,40,42,45,47,48,52,54,55,63,64],ramiro:61,ramp:[3,9,14,18,22,49,56,58,63],ramptim:22,ran:4,randint:[5,12],random:[2,5,12,24,50],rang:[0,3,7,8,10,13,14,15,16,22,24,48,50,52,53,54,61,63,96,97],range_auto:7,rangei:[7,20],rangev:[7,20],rate:[10,16,48,52,53,56],rather:[10,18,85,97],ravel:96,raw:[52,88,89,91],reach:85,read:[3,4,8,15,17,19,22,30,33,34,35,36,44,51,52,53,57,58,60,62,63,66,68,85,88,89,92,93,96],read_metadata:33,read_one_fil:33,read_stat:51,readabl:[40,48,83,85],readi:[8,10,63,68,85,92],readm:85,readnext:15,readout:53,readthedoc:44,real:[3,57,62,85,88,91,96,97],realli:[22,29,50,92,96],realtim:[85,91],reappear:85,rear:63,reason:[85,97],recent:[2,10,14,17,20,39],recommend:85,reconnect:96,reconstruct:33,record:[16,32,54,63,68,91,96],records_per_buff:[16,48],recycl:48,redirect:[29,39,83],reduc:34,ref:96,refactor:85,refer:[10,29,48,78,85,87,96,97],referenc:[39,96],reference_clock_frequency_select:63,reference_multiplier_r:63,reference_sourc:63,refernc:61,reg:25,regard:[48,96],regardless:85,regist:[53,85],registri:58,regular:[3,5,96],reimport:93,reinvent:85,reject:61,rel:[12,30,31,66,68,96],relat:96,relationship:96,releas:[33,91],relev:[14,39,48,63],reli:[3,48],reliabl:[48,96],reload:[4,15,23,33,47,96],remain:48,rememb:54,remot:[7,17,21,69,96],remoteinstru:[7,96,97],remoteparamet:96,remov:[10,29,30,52,54,58,63,85,89],remove_signal_from_sweep:54,rep:63,repeat:[85,96],repet:63,repetit:[24,63],repetition_r:63,repo:[2,85],report:[86,91],repositori:[85,89,91],repr:14,repres:[8,35,39,48,50,96],represent:[12,71,88],reproduc:[85,96],request:[86,96],requir:[8,10,12,34,41,42,44,54,60,68,85,93,96,97],res:17,research:62,resend:63,resend_waveform:63,reset:[3,8,14,24,34,35,52,55,56,59,60,62,63],resit:47,resolut:7,resolv:50,resourc:[14,33,44,51,96],respect:63,respons:[3,17,34,36,40,44,49,51],restart:[53,93],restrict:[62,88],restructur:85,result:[4,8,20,32,48,56,61,63,96],ret:14,ret_cod:14,ret_valu:14,retriev:[63,93],retur:63,return_count:14,return_pars:34,return_self:63,reus:96,revers:[40,41],review:[85,91],revion:49,revok:22,rewrit:96,rewritten:85,rho:56,richer:96,rid:29,right:[20,24,47,48,71],rigol:47,rigol_dg4000:59,rise:[3,7,10],risetim:[3,7,19],risk:56,robust:3,rohd:[60,89],rohde_schwarz:[23,47],rohdeschwarz_sgs100a:60,rohdeschwarz_smr40:60,rol:61,ron:63,root:[4,30,31,63,66,68],rotat:56,rough:86,round:96,routin:[50,51],row:35,rrm:10,rs232linkformat:52,rs_sgs100a:60,rs_smb100a:60,rst:[3,34,85],rsznb20:60,rto:58,rtoz:21,rtype:[14,75],run:[0,1,5,6,10,11,13,14,16,17,19,20,23,38,47,54,63,75,82,89,91,96,97],run_mod:63,run_stat:63,run_temp:8,runtest:[47,55,64],runtim:[2,93],runtimeerror:10,sa124_max_freq:61,sa124_min_freq:61,sa44_max_freq:61,sa44_min_freq:61,sa_api:61,sa_audio:61,sa_audio_am:61,sa_audio_cw:61,sa_audio_fm:61,sa_audio_lsb:61,sa_audio_usb:61,sa_auto_atten:61,sa_auto_gain:61,sa_averag:61,sa_bypass:61,sa_idl:61,sa_iq:61,sa_iq_sample_r:61,sa_lin_full_scal:61,sa_lin_scal:61,sa_log_full_scal:61,sa_log_scal:61,sa_log_unit:61,sa_max_atten:61,sa_max_devic:61,sa_max_gain:61,sa_max_iq_decim:61,sa_max_rbw:61,sa_max_ref:61,sa_max_rt_rbw:61,sa_min_iq_bandwidth:61,sa_min_max:61,sa_min_rbw:61,sa_min_rt_rbw:61,sa_min_span:61,sa_power_unit:61,sa_real_tim:61,sa_sweep:61,sa_tg_sweep:61,sa_volt_unit:61,sabandwidthclamp:61,sabandwidtherr:61,sacompressionwarn:61,sadevicenotconfigurederr:61,sadevicenotfounderr:61,sadevicenotidleerr:61,sadevicenotopenerr:61,sadevicetypenon:61,sadevicetypesa124a:61,sadevicetypesa124b:61,sadevicetypesa44:61,sadevicetypesa44b:61,saexternalreferencenotfound:61,safe:[85,96],safe_reload:61,safe_vers:52,safeti:58,safrequencyrangeerr:61,sai:[30,66,68,85,97],said:[29,63],sainterneterr:61,sainvaliddetectorerr:61,sainvaliddeviceerr:61,sainvalidmodeerr:61,sainvalidparametererr:61,sainvalidscaleerr:61,same:[0,3,5,8,13,16,27,29,35,40,41,46,54,63,85,96,97],sampl:[10,16,41,42,47,48,53,96],sample_count:14,sample_r:[16,48],sample_timer_minimum:14,samples_per_buff:48,samples_per_record:[16,48],sampling_r:63,sane:28,sanocorrect:61,sanoerror:61,sanotconfigurederr:61,sanullptrerr:61,saovencolderr:61,saparameterclamp:61,sastatu:61,sastatus_invert:61,satoomanydeviceserr:61,satrackinggeneratornotfound:61,saunknownerr:61,sausbcommerr:61,save:[1,12,14,24,29,30,33,35,39,40,48,63,67,68,82,85,88,89,91,96,97],save_to_cwd:2,save_to_env:2,save_to_hom:[2,93],savvi:91,sawtooth:9,sbench6:53,scalar:[5,8,67,96],scale:[8,10,47,61],scale_param:8,scale_set:8,scale_v:8,scenario:85,scene:10,schema:[2,28,93],schema_cwd_file_nam:28,schema_default_file_nam:28,schema_env_file_nam:28,schema_file_nam:28,schema_home_file_nam:28,schouten:52,schwarz:[60,89],scientist:92,scope:[54,89],scope_average_weight:10,scope_channel1_input:10,scope_channel2_input:10,scope_channel:10,scope_correctly_built:10,scope_dur:10,scope_length:10,scope_mod:10,scope_samplingr:10,scope_seg:10,scope_segments_count:10,scope_trig_delai:10,scope_trig_en:10,scope_trig_gating_en:10,scope_trig_gating_sourc:10,scope_trig_holdoffmod:10,scope_trig_holdoffsecond:10,scope_trig_hystabsolut:10,scope_trig_hystmod:10,scope_trig_level:10,scope_trig_refer:10,scope_trig_sign:10,scope_trig_slop:10,scopedata:10,screen:92,script:[89,91,97],sdk:48,sdk_version:[16,48],seamless:50,search:[32,85,96],sec:63,second:[6,8,10,15,29,30,36,38,40,44,45,48,49,52,56,63,68,69,70,90,96,97],section:[90,92],see:[1,2,5,9,11,20,22,24,32,33,36,40,42,44,48,52,53,60,63,69,70,75,85,96,97],seem:[35,53,85],seg_siz:53,segm1_ch1:63,segm1_ch2:63,segm2_ch1:63,segm2_ch2:63,segment:[10,54,63],select:[16,48,54,63,85,92],self:[2,3,8,14,17,19,20,30,33,39,49,51,58,61,63,68,71,85,97],semant:91,semi:85,sen:[3,7,19,57],send:[3,14,36,52,57,62,63,89,90],send_awg_fil:63,send_dc_puls:63,send_pattern:63,send_sequ:63,send_sequence2:63,send_waveform:63,send_waveform_to_list:[24,63],sens:85,sens_factor:[3,7,57],sens_x:19,sensit:[3,7,57],sensor:89,sent:[3,34,40,63,88,96],separ:[8,33,35,71,91,96,97],seper:[49,63],seprar:20,seq:63,seq_elem:24,sequanti:46,sequecn:63,sequenc:[8,24,29,38,41,63,67,70,96],sequence_cfg:63,sequence_length:24,sequence_po:24,sequenti:[10,27,97],seri:[3,55,59,63],serial:[0,3,6,7,13,14,16,23,48,88],serial_numb:[19,20],serialis:63,serv:3,server:[10,16,17,21,48,54,96,97],server_err:17,server_nam:[4,7,16,20,21,23,53,97],session:[11,12,14,20,30,66,68,85],set:[0,1,2,3,4,5,7,8,9,11,13,14,16,17,18,19,20,21,24,27,29,30,33,35,38,39,40,41,42,46,47,48,49,50,51,52,53,54,56,57,58,60,61,62,63,65,66,67,68,88,89,91,93,96,97],set_arrai:29,set_channel_or_trigger_set:53,set_channel_set:53,set_cmd:[3,40,58,97],set_current_folder_nam:63,set_dacs_zero:52,set_default:63,set_ext0_or_trigger_set:53,set_ext_trig:60,set_funct:48,set_jumpmod:63,set_level:63,set_measur:[6,7,11,15,17,19,20],set_mod:63,set_mode_volt_dc:63,set_mp_method:[6,11,16,17,19,20,21,23],set_pars:40,set_pol_dacrack:52,set_pulsemod_sourc:60,set_pulsemod_st:60,set_ramp:[18,49],set_sequ:63,set_setup_filenam:63,set_sqel_event_jump_target_index:63,set_sqel_event_jump_typ:63,set_sqel_event_target_index:[24,63],set_sqel_goto_st:63,set_sqel_goto_target_index:[24,63],set_sqel_loopcnt:[24,63],set_sqel_loopcnt_to_inf:[24,63],set_sqel_trigger_wait:[24,63],set_sqel_waveform:[24,63],set_statu:60,set_sweep:60,set_titl:24,set_valu:42,set_ylim:24,setattr:20,setboth:97,setbothasync:97,setformatt:4,setlevel:[4,10,24],setpoint:[0,1,4,5,6,8,13,14,16,23,29,35,50,54,56,58,67,96,97],setpoint_label:8,setpoint_nam:[8,54],settabl:[39,42,60,88,96],setter:88,settl:[10,85],setup:[53,71,89,91],setupclass:[47,55],setx:97,sever:[20,50,54,85,88,96],sg384:[47,83],sgs100a:47,shadow:2,shape:[0,1,3,4,6,8,10,13,14,16,23,24,29,50,54,96,97],share:[18,90],shared_kwarg:97,shell:91,shift:10,shimwarn:23,ship:[2,10],shortcut:[69,70],shot:[81,85,89],should:[3,10,12,16,20,23,24,29,30,32,33,34,36,38,39,41,42,43,47,48,50,57,62,63,71,85,92,96],shouldn:29,show:[5,11,12,16,17,19,20,21,22,23,85],show_subprocess_widget:[6,11,16,17,19,20,21,23],show_window:69,side:[24,40,88,92,97],sig:10,sig_gen:85,signal:[24,48,53,54,55,60,61,62,63,89,96],signal_hound:47,signal_input1:10,signal_input1_ac:10,signal_input1_diff:10,signal_input1_imped:10,signal_input1_rang:10,signal_input1_sc:10,signal_output1:10,signal_output1_ampdef:10,signal_output1_amplitud:10,signal_output1_autorang:10,signal_output1_en:10,signal_output1_imp50:10,signal_output1_offset:10,signal_output1_on:10,signal_output1_rang:10,signal_to_volt:48,signalhound_usb_sa124b:61,signatur:[24,33,63],silent:50,similar:[60,63,96],similarli:[10,96],simpl:[5,8,16,26,31,34,45,53,70,85,89,91,96],simpler:85,simplest:96,simpli:[2,10,34,39,63],simplifi:[3,11,20,56,85],simul:[88,91,95,96],simultan:20,simultani:56,sin:[24,59],sinc:[3,10,54,63,96,97],singl:[8,17,19,35,39,40,41,48,56,63,67,70,81,85,88,89,96],single_iq:8,single_set:8,single_software_trigger_acquisit:53,single_trigger_acquisit:53,singleiqpair:8,site:[2,14],situat:[35,96],six:22,size:[6,30,40,48,52],skewed_parabola:4,skill:85,skip:[56,85],slack:[85,90,91],slash:31,sleep:[3,14,17,19,21,22,24,42,45,52],slice:[11,20,41,88],slightli:83,slope:[14,16,22,51],slot:[18,49],slow:[22,96],slow_external_clock:3,slower:24,small:[10,22,81,85],smart:[58,85],smr40:47,smu:3,snap:7,snapshot:[1,3,6,7,12,16,19,20,29,36,37,39,44,63,71,83,96],snapshot_get:39,socket:36,soft:63,softwar:[3,10,51,54,63,85,96],software_revis:[19,20],solv:85,some:[1,3,10,12,34,36,39,41,49,50,53,63,85,89,93,96],somebodi:85,somehow:96,someon:85,someth:[2,10,11,20,24,48,51,85,93,96],sometim:[3,8,10,35,96],soon:85,sophist:48,sort:[24,35],sort_kei:7,sourc:[3,6,11,16,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,75,85,86,91,92,96],sourcemet:63,space:[22,39,41,85,88],span:[60,61],spawn:[6,11,16,17,19,20,21,23],spc_tm_high:53,spcm0:53,special:[3,12,39,85,96],specif:[16,24,30,51,52,63,85,88,96],specifi:[24,33,38,47,52,54,55,61,63,64,70,71,85,93,96],specifiedta:63,spectrum:[47,83,96],speed:[0,13,40,48,96],spheric:56,split:[3,25],spread:90,sqel:63,sql:96,squencer:63,sr560:[3,47],sr830:[47,82],sr865:47,src:[2,4],srs_sg384:62,stabl:44,stackoverflow:75,stage:96,stai:[85,97],stale:96,standalon:91,standard:[3,51,91],standardparamet:[3,6,8,16,19,47,78,88],stanford:62,stanford_research:[3,47],stanford_sr865:62,start:[0,1,3,6,9,10,11,12,13,14,16,19,20,23,28,29,30,35,40,41,43,48,56,60,63,66,68,85,89,96],startcaptur:16,startup:[22,51],stat:[55,60],state:[3,10,22,24,49,63,85,88,91,96],statement:[52,85],station1:[17,19],station2:[17,19],station:[0,4,5,6,7,10,11,12,13,14,15,17,19,20,23,37,38,39,78,86,96],stationq:91,statu:[3,10,25,48,51,52,55,58,60,61,62,63],statuscod:63,stderr:4,stdout:14,step:[0,3,12,13,38,40,41,52,64,92,97],step_attenu:55,still:[22,24,29,85,96],stop:[9,10,20,23,24,41,60,63],storag:[63,91,96],store:[1,2,4,29,30,33,47,48,63,68,71,96],str:[3,14,27,28,29,30,31,32,34,36,37,39,40,44,46,47,49,50,51,54,57,58,62,63,65,66,68],straightforward:[24,96],strang:10,strategi:49,stream:[10,14,16],streamhandl:4,strength:56,strftime:32,strictli:54,string:[2,3,4,14,17,19,32,33,34,35,39,40,48,52,53,54,56,59,60,63,68,71,85,88,93,96],strip:[3,35],strive:85,strongli:[3,10,85],structur:[30,33,48,66,68,88,93,96],struggl:85,stuf:93,stuff:[3,58,63,89],subclass:[3,8,33,34,36,39,42,44,48,88],subject:[85,96],sublim:85,sublimelint:85,submit:97,subplot:[10,12,20,70],subprocess:[11,16,17,19,20,21,23],subscrib:54,subsequ:43,substitut:3,subtract:10,succes:63,succinct:85,suit:[4,55,60,64,91],sum:[1,97],superclass:3,suppli:[3,31,33,56,58,96],support:[1,2,3,4,9,10,22,24,37,42,50,54,56,58,63,85,93,96],suppress:[3,7,19,63],supress:50,sure:[0,10,13,58,63,85,88,92],sv2:41,sv3:41,sv4:41,swap:91,sweep:[1,5,6,10,12,14,20,27,40,41,42,46,54,60,61,81,88,89,91,95,96],sweep_val:[1,97],sweep_valu:[6,12,38],sweepabl:46,sweepdata:10,sweeper:[54,89],sweeper_bw:10,sweeper_bwmod:10,sweeper_ord:10,sweeper_param:10,sweeper_samplecount:10,sweeper_start:10,sweeper_stop:10,sweeper_xmap:10,sweeper_xxx:10,sweepfixedvalu:[78,88],sweepvalu:[38,78,86],swept:97,sync:[10,17,19,20,22,89,96],sync_output:9,sync_sourc:9,synchron:96,syntax:91,sys:[4,14],system32:[3,48,61],system:[3,16,28,34,39,48,56,58,62,63,71,81,83,93,96],system_id:[3,16,48],sztypetonam:53,t_start:[0,13,14],t_stop:[0,13,14],tab:[10,35,85],tabl:[63,89,93,96],tag:85,take:[1,12,14,20,26,38,39,51,60,63,85,88,91,97],taken:[40,53,60,63],talent:85,talk:[3,57,62,96,97],target:[41,42,48,63],task:[5,12,14,38,45,78,82,85,88,96],tcpip0:[0,3,9,13,14,23,24],tcpip:96,tech:91,techniqu:85,technolog:[0,7,13,14],tektronix:[3,7,15,17,19,20,47,89],tektronix_awg5014:[24,63],tektronix_awg520:63,tell:[33,35,45,85,96],temp0_0:22,temp2_1:22,temp5_2:22,temperatur:[58,89],templat:85,temporari:[30,68],tempx_i:22,tend:3,tens:85,term:[14,85],termin:[3,7,11,14,16,17,19,20,21,23,35,36,44,53,56,58,91,92,96],tesla:56,test2d:20,test:[0,3,5,12,13,20,32,49,50,51,52,55,59,60,63,64,83,88,89,91,96],test_attenu:64,test_awg_fil:24,test_closed_fil:4,test_complex_param:20,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_firmware_vers:[55,64],test_frequ:55,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[47,85],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:85,test_metadata_write_read:4,test_multi_d:20,test_on_off:55,test_phas:55,test_pow:55,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:63,test_snapshot:85,test_str_to_bool:4,test_suit:47,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:55,testcas:47,testhdf5_format:4,testmetadat:85,testsweep:[0,1,12,13,14,17,19,20],testweinschel_8320:64,text:[3,14,59,85,88,96],texttestrunn:4,textual:96,tg_thru_0db:61,tg_thru_20db:61,than:[3,10,22,38,40,85,91,96],thank:85,thebrain:85,thei:[2,5,11,16,17,19,20,21,23,29,30,38,43,48,57,62,63,85,88,93,96],them:[2,3,8,11,20,22,29,47,56,62,63,85,89,93,96,97],theme:69,theoret:96,thermometri:25,theta:56,thi:[0,1,2,3,5,6,8,10,11,12,13,14,15,16,17,19,20,21,22,23,24,29,30,32,33,34,35,36,37,38,39,40,42,44,45,47,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,70,71,75,78,80,85,86,88,91,92,93,95,96,97],thing:[3,11,12,15,16,20,21,34,38,40,41,42,43,45,55,64,85,88,90,92,96,97],think:[85,93,96],third:96,those:[5,8,29,32,34,88,96],though:[3,40,41,42,96],thread:96,thread_map:14,threadpoolexecutor:97,three:[8,10,22,35,41,56,63,96],through:[10,12,22,24,29,30,85,92,96,97],thu:[85,96],tick:16,tight_layout:24,time:[0,3,7,8,10,11,12,13,14,15,17,18,19,20,21,22,24,25,26,32,33,38,40,41,42,49,50,53,54,61,63,85,91,96,97],timeout:[7,10,14,16,17,24,36,44,49,58,63],timeout_tick:[16,48],timer:[17,19],timestamp:[20,91,96],tmpfile:[25,58],to_zero:58,todo:[3,29,51,52,54,55,65,85],togeth:[5,24,40,60,96],toggl:18,tolist:3,too:[3,39,40,85],tool:85,tortur:85,total:[3,8],touch:85,toymodel:[6,11],trace:[10,23,48,54,60,69,70],traceback:[2,10,14,17,19,20,91],track:[48,61,96],trail:85,transer:16,transfer:[24,63],transfer_offset:[16,48],transform:[3,34,40,45,48],translat:[3,33,54],transmiss:60,treat:[49,71,96],tree:[89,92],trg:14,trig:[10,63],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:53,trig_slope_posit:16,trig_wait:[24,63],trigger:[3,10,14,16,24,53,60,63],trigger_delai:[16,48],trigger_engine1:[16,48],trigger_engine2:[16,48],trigger_input_imped:63,trigger_input_polar:63,trigger_input_slop:63,trigger_input_threshold:63,trigger_level1:[16,48],trigger_level2:[16,48],trigger_oper:[16,48],trigger_slop:14,trigger_slope1:[16,48],trigger_slope2:[16,48],trigger_sourc:[14,63],trigger_source1:[16,48],trigger_source2:[16,48],triton1_thermometri:25,triton:[47,89],trival:97,trivial:85,trivialdictionari:48,troubleshoot:96,truncat:85,trust:40,truthi:[12,26],ts_start:6,tst:4,tstart:[17,19],tudelft:52,tune:[52,85],tupl:[8,10,24,29,34,54,63,69,70],turn:[3,10,63],tutori:[5,8,89,95],two:[3,8,12,20,24,29,54,56,61,63,85,89,97],txt:52,type:[0,1,2,3,4,6,8,10,13,14,16,17,19,23,24,33,34,47,48,49,53,54,63,85,92,93,96,97],typeerror:[14,26,42,63],typic:[29,85,89,96],typo:85,uhf:[54,89],unambigu:3,unassign:22,uncommit:48,uncondit:63,under:63,underli:[88,96],underscor:85,understand:[85,96],undo:63,unga:[2,4,85,93],ungaretti:85,unicorn:11,unimport:63,union:[29,34,40,41,47],uniqu:29,unit:[1,3,6,7,8,10,15,16,19,22,27,29,39,46,48,54,56,58,83,85,96,97],unitless:39,unittest:[4,47,85],unittest_data:4,unless:[22,29,40,85],unlik:47,unload:63,unnecessari:8,unrel:96,unsav:96,unsign:63,until:[3,24,92,96],unus:68,updat:[2,7,10,12,14,20,22,28,39,48,54,60,63,69,70,71,88,92,96],update_acquisitionkwarg:[16,48],update_curr:[14,22,51],update_internal_setpoint:56,update_snapshot:71,upgrad:10,upload:[24,63],upon:[22,47],uppercas:58,upsteam:2,usag:[8,32,42,50,53,63,86,89,95],usb:3,usb_sa124b:47,use:[1,2,3,5,8,10,15,20,24,29,32,34,35,40,41,42,44,45,47,48,49,51,55,56,57,58,62,63,64,70,85,88,92,93,95,96,97],use_thread:14,used:[3,8,18,20,29,32,34,35,39,41,42,47,48,50,51,53,54,55,57,58,60,61,62,63,67,71,88,91,96],useful:[8,85,96],user:[2,4,6,14,15,17,24,40,44,48,54,63,91,92,93,96],usernam:85,uses:[3,8,40,47,61,88,93,96],using:[3,10,12,20,22,24,28,33,35,44,50,52,53,56,61,63,85,88,91,96],usual:[37,51,63,96],util:[1,4,14,17,19,20,50,78,85,97],utility_freq:50,utopia:85,v_amp_in:62,v_in:62,v_out:62,v_rang:22,vaild:28,val:[1,3,6,8,10,39,40,41,42,48,63,97],val_map:[3,40],valid:[1,2,3,8,14,17,19,28,34,39,40,41,42,53,63,67,69,78,85,86,93,96,97],validate_al:34,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,12,13,14,15,16,17,19,20,22,24,27,28,29,32,34,35,38,39,40,41,42,46,47,48,49,50,51,52,54,56,60,62,63,88,96,97],valuabl:85,value_typ:2,valueerror:[45,47,54,55,63,64],vari:[12,96],variabl:[3,35,63,85,88,89,93,96],variou:[85,88],vbw:61,vector:[56,96],vendor:[3,6,7,16,19,20,48],verbos:[4,47,51,53,60,63,85],veri:[22,48,51,96],verifi:3,vernier:62,versa:10,version:[2,3,8,48,51,52,55,58,60,61,62,63,82,91,92,97],versu:89,vertic:10,vi_error_rsrc_nfound:96,vi_error_tmo:14,via:[3,10,11,20,37,57,62,63,71,89,96],vibuf:14,vice:10,videobandwidth:61,view:85,vipuint32:14,virtual:[3,56,57,60,62,92,97],virtualivvi:97,visa:[3,14,24,44,49,50,51,52,55,59,60,62,63,64,65,96],visa_handl:[14,44,49,58],visainstru:[49,50,51,52,55,58,59,60,62,63,64,65,78,88,89,96],visaioerror:14,visalib:14,visess:14,visibl:22,vision:85,visit:85,visual:91,visualis:24,viuint32:14,viwrit:14,vna:[23,61],vna_magnitud:23,vna_phas:23,vna_power_set:23,volt:[0,3,7,10,13,15,17,19,20,48,62,63],volt_0:[19,20],volt_1:[19,20],volt_set:19,voltag:[0,3,7,8,13,18,20,22,47,50,53,57,62,63,65,88,96],voltage_range_statu:51,voltage_raw:[3,57,62],voltagedivid:47,voltageparamet:62,voltmet:[50,96],volunt:85,vpp:9,vrang:[14,22],vsd1:20,vsd2:20,vsd:[5,6,11],w8320_1:3,wai:[2,3,5,10,11,16,20,24,40,63,85,96,97],wait:[6,12,24,34,38,40,49,63,78,88,92,96,97],wait_trigg:63,wait_valu:63,walk:97,want:[1,2,3,5,10,18,30,39,47,48,51,56,85,86,88,90,93,95,96,97],warn:[2,3,4,24,38,40,48,52,54,83,93],wav:51,wave:53,waveform:[8,55,59,63,89,96],waveform_nam:63,web:[10,54],week:[85,90],weight:2,weinschel:[3,47],weinschel_8320:[3,47],welcom:[85,90],well:[5,10,33,55,62,64,85,96],were:[29,30,39,48,80],wfm001ch1:63,wfm002ch1:63,wfm1ch1:63,wfm1ch2:63,wfm2ch1:63,wfm2ch2:63,wfm:[24,63],wfmname:[24,63],wfname_l:63,wfs1:63,wfs2:63,wfs:63,what:[2,3,10,11,12,15,20,22,24,36,38,41,42,44,49,58,63,65,78,85,93,96,97],whatev:48,wheel:85,when:[3,6,8,20,22,24,26,29,32,39,42,43,47,48,51,53,54,55,57,62,63,64,68,85,91,96,97],whenev:[53,62,63,96],where:[3,8,12,22,30,33,41,42,48,54,57,62,63,66,68,69,85,96,97],whether:[18,33,35,36,40,51,56,59,63,85,96],which:[2,3,5,8,10,12,20,24,28,29,30,32,33,35,38,40,41,43,47,48,60,62,63,66,68,71,85,88,93,96,97],whish:1,white:[69,85],whitespac:35,who:85,whole:[3,5,8,35,57,62,85,88,96],whose:[29,71,96,97],why:[10,85],widget:[11,16,17,19,20,21,23,82],width:[69,70],william:[10,14],williamhpnielsen:51,win:2,window:[3,6,11,16,17,19,20,21,23,48,58,61,63,70,92],window_titl:69,windowtitl:19,wish:63,with_bg_task:[12,14],within:[3,16,29,43,45,48,54,85,91,96],without:[18,89,96],won:20,wonder:10,word:[89,90],work:[2,3,5,16,21,30,31,53,55,59,60,63,64,66,68,85,91,92,93,96,97],workflow:[89,91],world:[48,85,91],wors:85,would:[2,8,11,16,17,19,20,21,23,32,40,60,85,90,96],wrap:[8,31,56,96],wrapper:[52,60],write:[2,3,14,17,30,33,34,35,36,40,44,51,52,58,63,68,85,95,96],write_confirm:36,write_copi:96,write_metadata:33,write_period:[30,68],write_raw:14,written:[35,48,50,58,63],wrong:[53,85],x_actn:21,x_fld:21,x_fldc:21,x_rate:21,x_setpoint:21,x_val:[1,97],xml:85,xrm:10,xxx:49,y_val:[1,97],yai:82,yeah:19,year:85,yes:96,yet:[10,33,85,96],yield:[38,62],yokogawa:[47,83],yolo:2,you:[1,2,3,5,8,10,11,12,20,23,24,28,29,30,31,33,34,38,39,40,41,42,47,48,51,56,57,62,63,66,68,70,86,88,89,90,92,93,95,96,97],your:[3,28,34,47,56,57,62,85,89,90,92,93,96,97],yourself:[48,62],yrm:10,yscale:10,z_val:[1,97],zero:[3,22,24,63],ziapinotfoundexcept:10,zip:14,ziuhfli:[10,47],ziuhfli_rrm:10,ziuhfli_sig:10,ziuhfli_xrm:10,ziuhfli_yrm:10,zn20:89,znb20:[23,47],zoom:54,zurich:10},titles:["Agilent 34411A versus Keysight 34465A","Combined Parameters","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes example with Keysight 33500B","QCoDeS Example with ZI UHF-LI","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","QDac and Keysight 34465 sync and buffer","Example script for Keithley driver","Qcodes example ATS_ONWORK","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with Rohde Schwarz ZN20","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","qcodes.BreakIf","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.Loop","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum 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.helpers.in_notebook","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","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:{"33500b":9,"34400a":17,"34411a":[0,13],"34465a":[0,13],"break":[81,82,83],"class":[3,78,79,80],"default":93,"function":[3,34,78,79,80],"import":[0,13,24],"new":[81,82,83,85],"public":80,ATS:48,IPS:21,THERE:24,The:12,Using:[2,10,93],abort:94,action:[12,80],adding:3,aggreg:1,agil:[0,13,17,55],agilent_34400a:55,alazartech:48,all:[5,12],american_magnet:56,ami430:56,arrai:5,arrayparamet:8,async:97,ats9870:48,ats_acquisition_control:48,ats_onwork:16,attent:22,avanc:97,awg5014:[24,63],awg520:63,awg:24,awgfilepars:63,base:3,basic:[10,22,89],benchmark:[14,89],breakif:26,buffer:14,bug:85,can:12,caution:10,chang:[2,81,82,83],changelog:[81,82,83,84],channel:22,chat:90,clever:85,code:[85,87],combin:[1,46,97],combinedparamet:27,command:72,commit:85,commun:86,config:[2,28,80,93],configur:[2,93],content:[10,24,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,85],contribut:85,core:2,creat:3,custom:[2,3],data:[4,12,80],dataarrai:29,dataformat:4,datasav:4,dataset:[30,96],decadac:[18,49],deferred_oper:73,defin:12,demo:[5,12],demodul:10,develop:85,devic:47,dg4000:59,diskio:31,dll:3,driver:[3,15,89,97],dummi:4,dynam:3,e8527d:55,enter:92,exampl:[3,4,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,89,96],experi:[2,12],familiar:85,faq:94,featur:85,file:[24,93],fix:[81,82,83],format:[11,85],formatloc:32,formatt:33,from:4,gener:4,get:[24,90,92],git:85,global:12,gnuplotformat:35,gs200:65,guid:[86,95],harvard:49,help:90,helper:[74,75],hierarchi:88,hour:90,how:94,hp33210a:55,improv:[81,82,83],in_notebook:75,initialis:24,input:10,instal:92,instanti:[5,12],instrument:[3,4,5,7,12,37,80,88,96,97],instrument_driv:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],introduct:96,involv:3,ipinstru:36,ithaco:[19,57],ithaco_1211:57,ivvi:52,keithlei:[15,20],keithley_2000:63,keithley_2400:63,keithley_2600:63,keithley_2700:63,keysight:[0,9,13,14,50],keysight_33500b:50,keysight_34465a:50,lazi:24,linkag:88,list:24,live:12,load:12,load_data:66,locat:[11,12],loop:[0,4,5,12,13,38,80,96],m4i:53,magnet:21,make:24,manual:3,matplot:70,measur:[5,10,12,67,80,94,96,97],mercuri:21,mercuryip:58,messag:85,meta:97,metadata:[6,7,76],misc:80,mode:24,modul:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],more:[3,90,93],multiparamet:8,multipl:12,need:[5,12],new_data:68,note:85,object:88,offic:90,one:[0,13],onli:5,organ:3,output:[5,10,12],overview:[22,96],oxford:58,packag:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],paramet:[1,3,8,39,88,96,97],part:[0,13],phase:91,plan:91,plot:[12,69,70,80],prerequisit:10,privat:79,project:91,provid:12,pull:85,push:85,pyqtgraph:69,qcmatplotlib:70,qcode:[0,2,3,8,9,10,11,12,13,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,81,82,83,89,91,92,93,94],qdac:[14,22,51],qdev:51,qtplot:69,qutech:52,raw:[0,13],read:[0,13],realli:85,remov:3,report:85,request:85,requir:92,respons:96,rigol:59,rohd:23,rohde_schwarz:60,rough:88,run:[4,12,24,85,94],save:[2,93],schwarz:23,scope:10,script:15,send:24,sensor:22,set:[10,12,22],setup:[0,13,85],sg384:62,sgs100a:60,shot:14,signal:10,signal_hound:61,simpl:[1,3],simul:97,singl:14,smr40:60,some:24,sourc:87,spectrum:53,sr560:62,sr830:62,sr865:62,standardparamet:40,stanford_research:62,start:[4,92],station:[71,80,88],stuff:14,style:85,submodul:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],subpackag:47,sweep:[0,13,97],sweeper:10,sweepfixedvalu:41,sweepvalu:[42,88],sync:14,tabl:[10,24],task:43,tektronix:[24,63],temperatur:22,test:[4,47,85],test_suit:[55,64],them:24,todo:[38,42,53,58,60,61,63,88,93,97],triton:[25,58],tutori:[12,97],two:[0,13],typic:12,uhf:10,updat:93,usag:[10,22,85,92,94],usb_sa124b:61,user:95,using:89,util:[72,73,74,75,76,77,80],valid:[77,88],valu:93,variabl:2,versu:[0,13],via:24,visainstru:[3,44],wait:45,waveform:24,weinschel:64,weinschel_8320:64,without:5,word:10,workflow:12,write:97,yokogawa:65,you:85,your:2,ziuhfli:54,zn20:23,znb20:60}}) \ No newline at end of file +Search.setIndex({docnames:["_notebooks/Agilent 34411A versus Keysight 34465A","_notebooks/Combined Parameters","_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 example with Keysight 33500B","_notebooks/Qcodes example with ZI UHF-LI","_notebooks/Qcodes location-format example","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/Keithley_example","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_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 Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZN20","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","api/generated/qcodes.BreakIf","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.Loop","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.AlazarTech","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","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.helpers.in_notebook","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/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:51,filenames:["_notebooks/Agilent 34411A versus Keysight 34465A.rst","_notebooks/Combined Parameters.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 example with Keysight 33500B.rst","_notebooks/Qcodes example with ZI UHF-LI.rst","_notebooks/Qcodes location-format example.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/Keithley_example.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.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 Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZN20.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","api/generated/qcodes.BreakIf.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.Loop.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.AlazarTech.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.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.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.helpers.in_notebook.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/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.BreakIf":{__init__:[26,1,1,""]},"qcodes.CombinedParameter":{__init__:[27,1,1,""]},"qcodes.Config":{__init__:[28,1,1,""],config_file_name:[28,2,1,""],current_config:[28,2,1,""],current_config_path:[28,2,1,""],current_schema:[28,2,1,""],cwd_file_name:[28,2,1,""],default_file_name:[28,2,1,""],env_file_name:[28,2,1,""],home_file_name:[28,2,1,""],schema_cwd_file_name:[28,2,1,""],schema_default_file_name:[28,2,1,""],schema_env_file_name:[28,2,1,""],schema_file_name:[28,2,1,""],schema_home_file_name:[28,2,1,""]},"qcodes.DataArray":{__init__:[29,1,1,""]},"qcodes.DataSet":{__init__:[30,1,1,""],background_functions:[30,2,1,""]},"qcodes.DiskIO":{__init__:[31,1,1,""]},"qcodes.FormatLocation":{__init__:[32,1,1,""]},"qcodes.Formatter":{__init__:[33,1,1,""]},"qcodes.Function":{__init__:[34,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[35,1,1,""]},"qcodes.IPInstrument":{__init__:[36,1,1,""]},"qcodes.Instrument":{__init__:[37,1,1,""],functions:[37,2,1,""],name:[37,2,1,""],parameters:[37,2,1,""]},"qcodes.Loop":{__init__:[38,1,1,""]},"qcodes.Parameter":{__init__:[39,1,1,""]},"qcodes.StandardParameter":{__init__:[40,1,1,""]},"qcodes.SweepFixedValues":{__init__:[41,1,1,""]},"qcodes.SweepValues":{__init__:[42,1,1,""]},"qcodes.Task":{__init__:[43,1,1,""]},"qcodes.VisaInstrument":{__init__:[44,1,1,""],visa_handle:[44,2,1,""]},"qcodes.Wait":{__init__:[45,1,1,""]},"qcodes.instrument_drivers":{AlazarTech:[48,4,0,"-"],Harvard:[49,4,0,"-"],Keysight:[50,4,0,"-"],QDev:[51,4,0,"-"],QuTech:[52,4,0,"-"],Spectrum:[53,4,0,"-"],ZI:[54,4,0,"-"],agilent:[55,4,0,"-"],american_magnetics:[56,4,0,"-"],devices:[47,4,0,"-"],ithaco:[57,4,0,"-"],oxford:[58,4,0,"-"],rigol:[59,4,0,"-"],rohde_schwarz:[60,4,0,"-"],signal_hound:[61,4,0,"-"],stanford_research:[62,4,0,"-"],tektronix:[63,4,0,"-"],test:[47,4,0,"-"],weinschel:[64,4,0,"-"],yokogawa:[65,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[48,4,0,"-"],ATS:[48,4,0,"-"],ATS_acquisition_controllers:[48,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[48,0,1,""],AlazarParameter:[48,0,1,""],AlazarTech_ATS:[48,0,1,""],Buffer:[48,0,1,""],TrivialDictionary:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[48,2,1,""],handle_buffer:[48,1,1,""],post_acquire:[48,1,1,""],pre_acquire:[48,1,1,""],pre_start_capture:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[48,1,1,""],channels:[48,2,1,""],clear_buffers:[48,1,1,""],config:[48,1,1,""],dll_path:[48,2,1,""],find_boards:[48,5,1,""],get_board_info:[48,5,1,""],get_idn:[48,1,1,""],get_sample_rate:[48,1,1,""],signal_to_volt:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[48,1,1,""],free_mem:[48,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[48,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[48,1,1,""],fit:[48,1,1,""],handle_buffer:[48,1,1,""],post_acquire:[48,1,1,""],pre_acquire:[48,1,1,""],pre_start_capture:[48,1,1,""],update_acquisitionkwargs:[48,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[49,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{Decadac:[49,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{_ramp_state:[49,2,1,""],_ramp_time:[49,2,1,""],get_ramping:[49,1,1,""],set_ramping:[49,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[50,4,0,"-"],Keysight_34465A:[50,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[50,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[50,0,1,""],Keysight_34465A:[50,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[50,1,1,""],prepare:[50,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[50,2,1,""],model:[50,2,1,""],ranges:[50,2,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[51,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[51,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[51,1,1,""],max_status_age:[51,2,1,""],print_overview:[51,1,1,""],printslopes:[51,1,1,""],read:[51,1,1,""],read_state:[51,1,1,""],voltage_range_status:[51,2,1,""],write:[51,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[52,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[52,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[52,2,1,""],Halfrange:[52,2,1,""],ask:[52,1,1,""],get_all:[52,1,1,""],get_idn:[52,1,1,""],get_pol_dac:[52,1,1,""],read:[52,1,1,""],set_dacs_zero:[52,1,1,""],set_pol_dacrack:[52,1,1,""],write:[52,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[53,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[53,0,1,""],szTypeToName:[53,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{close:[53,1,1,""],convert_to_voltage:[53,1,1,""],gated_trigger_acquisition:[53,1,1,""],get_card_memory:[53,1,1,""],get_card_type:[53,1,1,""],get_error_info32bit:[53,1,1,""],get_idn:[53,1,1,""],get_max_sample_rate:[53,1,1,""],initialize_channels:[53,1,1,""],multiple_trigger_acquisition:[53,1,1,""],set_channel_OR_trigger_settings:[53,1,1,""],set_channel_settings:[53,1,1,""],set_ext0_OR_trigger_settings:[53,1,1,""],single_software_trigger_acquisition:[53,1,1,""],single_trigger_acquisition:[53,1,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[54,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[54,0,1,""],Sweep:[54,0,1,""],ZIUHFLI:[54,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[54,1,1,""],names:[54,2,1,""],prepare_scope:[54,1,1,""],setpoint_names:[54,2,1,""],setpoints:[54,2,1,""],shapes:[54,2,1,""],units:[54,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[54,1,1,""],get:[54,1,1,""],names:[54,2,1,""],setpoint_names:[54,2,1,""],setpoints:[54,2,1,""],shapes:[54,2,1,""],units:[54,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[54,6,1,""],add_signal_to_sweeper:[54,1,1,""],close:[54,1,1,""],print_sweeper_settings:[54,1,1,""],remove_signal_from_sweeper:[54,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[55,4,0,"-"],E8527D:[55,4,0,"-"],HP33210A:[55,4,0,"-"],test_suite:[55,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[55,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[55,1,1,""],display_clear:[55,1,1,""],init_measurement:[55,1,1,""],reset:[55,1,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[55,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[55,1,1,""],off:[55,1,1,""],on:[55,1,1,""],parse_on_off:[55,1,1,""],rad_to_deg:[55,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[55,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[55,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[55,2,1,""],setUpClass:[55,5,1,""],test_firmware_version:[55,1,1,""],test_frequency:[55,1,1,""],test_on_off:[55,1,1,""],test_phase:[55,1,1,""],test_power:[55,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[56,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[56,0,1,""],AMI430_2D:[56,0,1,""],AMI430_3D:[56,0,1,""],R_y:[56,3,1,""],R_z:[56,3,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{update_internal_setpoints:[56,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[47,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[47,1,1,""],get_instrument_value:[47,1,1,""],set:[47,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[57,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[57,0,1,""],Ithaco_1211:[57,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[57,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[57,1,1,""]},"qcodes.instrument_drivers.oxford":{mercuryiPS:[58,4,0,"-"],triton:[58,4,0,"-"]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[58,0,1,""],MercuryiPSArray:[58,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[58,1,1,""],rtos:[58,1,1,""],to_zero:[58,1,1,""],write:[58,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[58,1,1,""],set:[58,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[58,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[58,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[59,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[59,0,1,""],clean_string:[59,3,1,""],is_number:[59,3,1,""],parse_multiple_outputs:[59,3,1,""],parse_single_output:[59,3,1,""],parse_string_output:[59,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[60,4,0,"-"],SMR40:[60,4,0,"-"],ZNB20:[60,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[60,1,1,""],on:[60,1,1,""],parse_on_off:[60,1,1,""],set_pulsemod_source:[60,1,1,""],set_pulsemod_state:[60,1,1,""],set_status:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[60,1,1,""],do_get_power:[60,1,1,""],do_get_pulse_delay:[60,1,1,""],do_get_status:[60,1,1,""],do_get_status_of_ALC:[60,1,1,""],do_get_status_of_modulation:[60,1,1,""],do_set_frequency:[60,1,1,""],do_set_power:[60,1,1,""],do_set_pulse_delay:[60,1,1,""],do_set_status:[60,1,1,""],do_set_status_of_ALC:[60,1,1,""],do_set_status_of_modulation:[60,1,1,""],get_all:[60,1,1,""],off:[60,1,1,""],off_modulation:[60,1,1,""],on:[60,1,1,""],on_modulation:[60,1,1,""],reset:[60,1,1,""],set_ext_trig:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20":{FrequencySweep:[60,0,1,""],ZNB20:[60,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20.FrequencySweep":{get:[60,1,1,""],set_sweep:[60,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB20.ZNB20":{initialise:[60,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[61,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[61,0,1,""],constants:[61,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[61,1,1,""],abort:[61,1,1,""],check_for_error:[61,1,1,""],closeDevice:[61,1,1,""],configure:[61,1,1,""],default_server_name:[61,5,1,""],dll_path:[61,2,1,""],get_power_at_freq:[61,1,1,""],get_spectrum:[61,1,1,""],initialisation:[61,1,1,""],openDevice:[61,1,1,""],prepare_for_measurement:[61,1,1,""],preset:[61,1,1,""],saStatus:[61,2,1,""],saStatus_inverted:[61,2,1,""],safe_reload:[61,1,1,""],sweep:[61,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[61,2,1,""],TG_THRU_0DB:[61,2,1,""],TG_THRU_20DB:[61,2,1,""],sa124_MAX_FREQ:[61,2,1,""],sa124_MIN_FREQ:[61,2,1,""],sa44_MAX_FREQ:[61,2,1,""],sa44_MIN_FREQ:[61,2,1,""],saDeviceTypeNone:[61,2,1,""],saDeviceTypeSA124A:[61,2,1,""],saDeviceTypeSA124B:[61,2,1,""],saDeviceTypeSA44:[61,2,1,""],saDeviceTypeSA44B:[61,2,1,""],sa_AUDIO:[61,2,1,""],sa_AUDIO_AM:[61,2,1,""],sa_AUDIO_CW:[61,2,1,""],sa_AUDIO_FM:[61,2,1,""],sa_AUDIO_LSB:[61,2,1,""],sa_AUDIO_USB:[61,2,1,""],sa_AUTO_ATTEN:[61,2,1,""],sa_AUTO_GAIN:[61,2,1,""],sa_AVERAGE:[61,2,1,""],sa_BYPASS:[61,2,1,""],sa_IDLE:[61,2,1,""],sa_IQ:[61,2,1,""],sa_IQ_SAMPLE_RATE:[61,2,1,""],sa_LIN_FULL_SCALE:[61,2,1,""],sa_LIN_SCALE:[61,2,1,""],sa_LOG_FULL_SCALE:[61,2,1,""],sa_LOG_SCALE:[61,2,1,""],sa_LOG_UNITS:[61,2,1,""],sa_MAX_ATTEN:[61,2,1,""],sa_MAX_GAIN:[61,2,1,""],sa_MAX_IQ_DECIMATION:[61,2,1,""],sa_MAX_RBW:[61,2,1,""],sa_MAX_REF:[61,2,1,""],sa_MAX_RT_RBW:[61,2,1,""],sa_MIN_IQ_BANDWIDTH:[61,2,1,""],sa_MIN_MAX:[61,2,1,""],sa_MIN_RBW:[61,2,1,""],sa_MIN_RT_RBW:[61,2,1,""],sa_MIN_SPAN:[61,2,1,""],sa_POWER_UNITS:[61,2,1,""],sa_REAL_TIME:[61,2,1,""],sa_SWEEPING:[61,2,1,""],sa_TG_SWEEP:[61,2,1,""],sa_VOLT_UNITS:[61,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[62,4,0,"-"],SR560:[62,4,0,"-"],SR830:[62,4,0,"-"],SR865:[62,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[62,0,1,""],VoltageParameter:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[62,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[62,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{SR830:[62,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[62,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[63,4,0,"-"],AWG520:[63,4,0,"-"],AWGFileParser:[63,4,0,"-"],Keithley_2000:[63,4,0,"-"],Keithley_2400:[63,4,0,"-"],Keithley_2600:[63,4,0,"-"],Keithley_2700:[63,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[63,0,1,""],parsestr:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[63,2,1,""],AWG_FILE_FORMAT_HEAD:[63,2,1,""],all_channels_off:[63,1,1,""],all_channels_on:[63,1,1,""],change_folder:[63,1,1,""],clear_message_queue:[63,1,1,""],create_and_goto_dir:[63,1,1,""],delete_all_waveforms_from_list:[63,1,1,""],force_event:[63,1,1,""],force_trigger:[63,1,1,""],force_trigger_event:[63,1,1,""],generate_awg_file:[63,1,1,""],generate_channel_cfg:[63,1,1,""],generate_sequence_cfg:[63,1,1,""],get_all:[63,1,1,""],get_current_folder_name:[63,1,1,""],get_error:[63,1,1,""],get_filenames:[63,1,1,""],get_folder_contents:[63,1,1,""],get_sq_mode:[63,1,1,""],get_sqel_loopcnt:[63,1,1,""],get_sqel_trigger_wait:[63,1,1,""],get_sqel_waveform:[63,1,1,""],get_state:[63,1,1,""],goto_root:[63,1,1,""],is_awg_ready:[63,1,1,""],load_awg_file:[63,1,1,""],make_and_save_awg_file:[63,1,1,""],make_send_and_load_awg_file:[63,1,1,""],newlinestripper:[63,1,1,""],pack_waveform:[63,1,1,""],run:[63,1,1,""],send_DC_pulse:[63,1,1,""],send_awg_file:[63,1,1,""],send_waveform_to_list:[63,1,1,""],set_current_folder_name:[63,1,1,""],set_sqel_event_jump_target_index:[63,1,1,""],set_sqel_event_jump_type:[63,1,1,""],set_sqel_event_target_index:[63,1,1,""],set_sqel_goto_state:[63,1,1,""],set_sqel_goto_target_index:[63,1,1,""],set_sqel_loopcnt:[63,1,1,""],set_sqel_loopcnt_to_inf:[63,1,1,""],set_sqel_trigger_wait:[63,1,1,""],set_sqel_waveform:[63,1,1,""],start:[63,1,1,""],stop:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[63,1,1,""],clear_waveforms:[63,1,1,""],delete_all_waveforms_from_list:[63,1,1,""],force_logicjump:[63,1,1,""],force_trigger:[63,1,1,""],get_all:[63,1,1,""],get_current_folder_name:[63,1,1,""],get_filenames:[63,1,1,""],get_folder_contents:[63,1,1,""],get_jumpmode:[63,1,1,""],get_state:[63,1,1,""],goto_root:[63,1,1,""],load_and_set_sequence:[63,1,1,""],make_directory:[63,1,1,""],resend_waveform:[63,1,1,""],return_self:[63,1,1,""],send_pattern:[63,1,1,""],send_sequence2:[63,1,1,""],send_sequence:[63,1,1,""],send_waveform:[63,1,1,""],set_current_folder_name:[63,1,1,""],set_jumpmode:[63,1,1,""],set_sequence:[63,1,1,""],set_setup_filename:[63,1,1,""],start:[63,1,1,""],stop:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[63,0,1,""],parse_output_bool:[63,3,1,""],parse_output_string:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[63,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[63,1,1,""],get_idn:[63,1,1,""],reset:[63,1,1,""],write:[63,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[63,0,1,""],bool_to_str:[63,3,1,""],parsebool:[63,3,1,""],parseint:[63,3,1,""],parsestr:[63,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[63,1,1,""],reset:[63,1,1,""],set_defaults:[63,1,1,""],set_mode:[63,1,1,""],set_mode_volt_dc:[63,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[47,0,1,""],test_instrument:[47,3,1,""],test_instruments:[47,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[47,2,1,""],setUpClass:[47,5,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[64,4,0,"-"],test_suite:[64,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[64,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[64,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[64,2,1,""],test_attenuation:[64,1,1,""],test_firmware_version:[64,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[65,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[65,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[65,1,1,""]},"qcodes.measure":{Measure:[67,0,1,""]},"qcodes.measure.Measure":{__init__:[67,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[69,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[69,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[70,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[70,1,1,""]},"qcodes.station":{Station:[71,0,1,""]},"qcodes.station.Station":{"default":[71,2,1,""],__init__:[71,1,1,""],delegate_attr_dicts:[71,2,1,""]},"qcodes.utils":{command:[72,4,0,"-"],deferred_operations:[73,4,0,"-"],helpers:[74,4,0,"-"],metadata:[76,4,0,"-"],validators:[77,4,0,"-"]},"qcodes.utils.helpers":{in_notebook:[75,3,1,""]},qcodes:{BreakIf:[26,0,1,""],CombinedParameter:[27,0,1,""],Config:[28,0,1,""],DataArray:[29,0,1,""],DataSet:[30,0,1,""],DiskIO:[31,0,1,""],FormatLocation:[32,0,1,""],Formatter:[33,0,1,""],Function:[34,0,1,""],GNUPlotFormat:[35,0,1,""],IPInstrument:[36,0,1,""],Instrument:[37,0,1,""],Loop:[38,0,1,""],Parameter:[39,0,1,""],StandardParameter:[40,0,1,""],SweepFixedValues:[41,0,1,""],SweepValues:[42,0,1,""],Task:[43,0,1,""],VisaInstrument:[44,0,1,""],Wait:[45,0,1,""],combine:[46,3,1,""],instrument_drivers:[47,4,0,"-"],load_data:[66,3,1,""],new_data:[68,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","classmethod","Python class method"],"6":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:classmethod","6":"py:staticmethod"},terms:{"001_13":32,"001_unicorn_2016":11,"002_rainbow_2016":11,"00370000e":19,"005_rainbow_2016":11,"009_testsweep_15":14,"009_unicorn_2050":11,"01084000e":19,"010_mockloop_hdf5_test_15":4,"011_":10,"011_mockloop_hdf5_test_15":4,"012_":10,"016_test_missing_attr_15":4,"01763000e":19,"017_mockparabola_run_15":4,"018_mockparabola_run_15":4,"018_testsweep_12":[0,13],"019_testsweep_12":[0,13],"020_testsweep_12":[0,13],"021_testsweep_12":[0,13],"025_":14,"026_":14,"027_":14,"028_":14,"029_":14,"030_":14,"031_":14,"032_":14,"033_":14,"034_":14,"035_":14,"036_":14,"03d":24,"04s":23,"06s":[0,13],"07288e":20,"07s":14,"0848e":7,"0x1c10ee73a58":14,"0x212e0582320":10,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":19,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":93,"0x7fd834e99ea0":1,"0x818a908":16,"0x8a855c0":23,"0x8d11978":7,"0x8f1f940":23,"100x100":[0,13],"10e":10,"10e6":[10,16,23],"10mhz":61,"10v":40,"13_testsweep":1,"13_testsweep_002":1,"14577e":20,"15_rainbow_test":32,"16243e":7,"16_13":11,"17s":15,"1b1536e1a2e4":10,"1e3":[9,10],"1e6":10,"20000000e":24,"20e":10,"250khz":61,"25gb":16,"2614b":[7,20],"27041e":7,"28539f77dfd3":2,"2d_test":12,"2e3":9,"2port":23,"30_alazartest":16,"33500b":89,"33522b":9,"34400a":89,"34401a":7,"34410a":7,"34411a":89,"34460a":50,"34461a":50,"34465a":[14,50,89],"34470a":50,"348s":4,"352161306002045e":21,"3x2":8,"41753e":20,"42637000e":19,"4271e":7,"44xx":[53,83],"4634e":7,"52608e":22,"541_13":11,"69014000e":19,"6a5acd":24,"7bcb44f808c5":20,"800e6":23,"844e846b99a2":14,"93s":[0,13],"94851000e":19,"95535000e":19,"96216000e":19,"98023e":20,"98941000e":19,"99618000e":19,"\u03bca":22,"\u03bcv":6,"abstract":96,"boolean":[52,63,93],"break":[3,12,26,63,84,85],"byte":[48,52,63],"case":[2,3,8,10,16,24,34,38,40,47,48,56,85,92,96,97],"class":[4,8,10,11,15,17,19,20,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,69,70,71,72,73,74,76,77,85,88,89,97],"default":[2,3,5,8,12,20,22,28,29,30,32,34,35,36,38,39,44,47,48,49,50,51,52,57,58,60,62,63,66,68,69,70,71,81,82,85,88,95],"enum":[2,3,10,17,19,40,63,88,93],"export":58,"final":[10,14,16,24,33,34,40,92,96],"float":[3,15,30,34,40,41,47,52,54,56,59,60,63,68,70],"function":[1,6,7,8,11,14,15,16,19,20,24,26,27,30,37,40,41,43,46,48,49,52,53,54,55,59,60,61,63,64,65,72,73,74,76,77,85,88,89,91,96,97],"goto":[24,63],"import":[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,22,23,25,85,89,93,96,97],"int":[8,10,14,24,29,34,36,40,41,47,49,50,51,52,54,58,63,88],"long":[39,63,85],"m\u00e6lkeb\u00f8tt":7,"new":[2,3,8,10,16,20,29,32,33,34,35,63,66,68,70,84,91,92,93,96,97],"public":[78,85,92],"return":[1,3,5,8,10,12,14,17,20,22,24,26,32,34,39,40,41,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,66,67,68,75,88,96,97],"short":[29,96],"static":[36,37,44,54],"super":[3,8,97],"switch":[0,10,13,56,63,93,96],"true":[2,3,6,7,10,14,17,18,19,20,22,29,35,36,39,49,50,51,52,56,61,63,69,71,75,93,96],"try":[1,2,3,9,14,17,22,85,96],"var":35,"while":[12,17,19,63,96],AND:63,ATS:[16,47],Adding:85,And:[3,8,10,93,97],Are:[68,96],BUT:85,But:[1,2,3,10,20,45,88],For:[2,3,5,8,10,24,32,35,40,44,48,53,54,56,63,69,85,90,92,93,96,97],Has:3,IPS:89,Its:[93,96],NOT:[10,32,47,54,85],Not:[2,39,71,85,93],ONE:85,One:[2,10,54,91,96,97],POS:[14,52],PRs:85,THE:10,THERE:89,That:[3,41,42,63,97],The:[0,1,2,3,5,10,13,14,16,18,22,23,24,27,29,32,34,35,36,38,39,41,43,44,46,47,48,49,50,51,53,54,58,61,62,63,65,69,70,85,87,89,92,93,96,97],Then:[10,24,85,92,97],There:[3,18,24,50,85,88,93],These:[22,35,48,61,89,96],Use:[30,39,48,63,85,91,93],Used:59,Uses:32,Using:[89,95],Will:[29,93],With:96,_11:10,_15:14,__call__:[14,32],__class__:[1,6,7,16,20],__del__:48,__dir__:20,__doc__:[10,15,34,39],__enter__:[17,19],__exit__:[17,19],__getattr__:20,__init__:[3,8,17,19,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,67,69,70,71,97],__iter__:[41,42],__name__:[10,20],__next__:42,_alazar:48,_assigned_fg:14,_ats_dll:3,_attenu:47,_call:14,_channel:3,_check_for_error:17,_check_respons:17,_count:8,_error_queu:17,_expect_error:17,_get:97,_get_cmd:58,_get_temp_channel:25,_handl:3,_indic:8,_instrument:[3,14,17],_instrument_list:97,_measured_param:3,_mode:63,_parent_instru:56,_poll:17,_ramp_stat:49,_ramp_tim:49,_raw:3,_read_cmd:58,_recv:58,_response_queu:17,_return_handl:14,_run_loop:14,_run_wrapp:14,_save_v:[3,39],_scale_param:8,_send:58,_set:97,_set_async:97,_set_both:97,_syncoutput:14,_val:8,_write_cmd:58,_write_respons:51,a02:15,a118e754f9e:17,abil:[60,82],abl:[96,97],abort:61,about:[3,10,16,17,63,85,88,91,93,97],abov:[24,63,96],abs:[26,60],absolut:[10,31,63,85],accept:[3,30,31,33,34,35,43,96],acces:[12,24],accommod:63,accompani:85,accord:[3,63,92],accordingli:14,account:[47,85],accur:33,achiev:24,acknowledg:36,acquir:[3,10,14,16,48,53,54,96],acquisiion:48,acquisit:[10,16,48,53,54,61,85,96],acquisition_conrol:48,acquisition_control:[16,48],acquisition_controller_acquisit:16,acquisitioncontrol:48,acquisiton:[16,48],acquist:48,across:[22,96],act:[3,29,40,47],action:[3,5,6,8,14,17,25,26,29,38,63,67,71,78,88,89,91,96,97],action_indic:[6,14,29],activ:[6,88,92],active_children:[11,15,20],active_loop:6,activeloop:[6,38,88],actual:[0,3,13,47,48,85,96],acut:1,adapt:[20,41,42],adaptivesweep:[42,88],adawpt:42,add:[2,3,4,6,10,11,12,14,15,20,30,32,36,37,44,51,52,54,55,60,61,63,65,68,69,70,71,82,83,85,88,93],add_arrai:[29,30,68],add_compon:[4,71],add_funct:[3,37,85],add_paramet:[3,15,37,85,96,97],add_signal_to_sweep:[10,54],add_subplot:24,added:[29,30,54,63,68,69,70,71,85,96],adding:[10,11,15,20,89],addit:[3,24,36,37,44,57,91,93,96],addition:[10,53,54],address:[3,7,21,25,36,44,50,51,52,55,56,58,59,60,62,63,64,65,85,96],adjust:[52,56,96],adopt:91,adriaan:61,aeroflex:[3,64],affect:[10,31,54,85],after:[6,14,35,38,40,43,48,63,82,85,93,96],again:[6,16,96],against:88,aggeg:1,aggreag:1,aggreg:[27,46,89,97],agi:[0,7,13,17,19],agil:[7,19,47,85,89],agilent1:[7,17,19],agilent2:[7,17,19],agilent_2:7,agilent_34400a:[0,7,13,17,19,47],agilent_34401a:55,agilent_34410a:55,agilent_34411a:55,agilent_e8527d:[55,85],agilent_hp33210a:55,agilent_volt:[0,13],agument:26,ahead:[10,41,42],aid:96,aim:40,airbnb:85,aka:85,akin:96,ala:91,alazar1:16,alazar:[3,16,48],alazar_driv:48,alazar_nam:[16,48],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,48],alazarstartcaptur:48,alazartech:[3,16,47],alazartech_at:[3,16,48],alazartech_ats9870:[3,16,48],alazartest:16,alex:85,alexcjohnson:85,alia:[55,64],all:[2,3,8,10,11,16,18,20,22,24,27,29,32,33,34,35,37,39,41,44,46,47,48,51,54,55,56,58,59,60,61,63,71,85,88,89,91,92,93,96,97],all_channels_off:63,all_channels_on:63,alloc:[16,48],alloc_buff:[16,48],allocated_buff:[16,48],allow:[3,22,36,39,41,42,44,54,63,68,85,96],almost:96,alon:29,along:[39,61,69,70,85,88,96],alongsid:8,alpha:[24,52],alreadi:[29,33],also:[2,3,6,12,16,24,26,29,31,33,35,40,41,45,48,53,57,62,63,68,85,88,91,92,93,96],altern:24,although:[3,24,54,85,92],alwai:[2,5,10,12,35,49,51,54,63,85,96],always_nest:35,amen:85,american:56,american_magnet:47,ami430:47,ami430_2d:56,ami430_3d:56,ami430_i:56,ami430_x:56,ami430_z:56,ammet:96,amodel:[6,11],among:[32,97],amp:[3,57,62],amper:56,amplifi:[3,57,62],amplitud:[6,8,10,11,20,22,48,63,97],amplitude_0:20,amplitude_3:20,anaconda3:[14,17],anaconda3libsit:23,anaconda:[91,92],analog:51,analog_amplitude_n:63,analog_direct_output_n:63,analog_filter_n:63,analog_high_n:63,analog_low_n:63,analog_method_n:63,analog_offset_n:63,analys:60,analysi:[85,96],analyz:91,angl:56,angle_deg:55,angle_rad:55,ani:[1,2,3,8,11,12,15,16,17,19,20,21,22,23,24,27,29,31,32,33,34,35,36,38,39,40,41,42,43,44,46,48,54,63,67,71,85,88,91,96,97],anoth:[0,3,8,13,24,32,41,91,96],answer:[49,52],anyth:[18,63,88],anywai:8,aper:15,apertur:[0,13],api:[54,78,80,91,93,96],api_level:54,apparatu:88,appear:[50,63],append:[17,24,29,41,97],appli:[18,22,30,34,40,63],appropri:[48,96],approv:85,arang:3,arbitrari:[34,35,55,59,63,88,91],architectur:[3,91,97],arctan:24,arg:[2,3,14,17,34,41,43,50,58,69,70,97],arg_count:14,arg_pars:34,argument:[1,5,11,12,14,15,20,26,29,30,33,34,43,56,88],around:[24,29,56,61,85,96],arrai:[0,1,4,6,8,10,12,13,14,16,19,20,23,24,29,30,33,48,53,54,59,63,67,68,82,88,89,96,97],array_count:8,array_id:[0,1,4,6,8,10,12,13,14,16,23,29,33,97],arraycount:8,arraygett:[5,12],arraymeasur:50,arrayparamet:[3,50,89],arriv:96,arrow:92,ask:[3,10,17,25,40,49,52,58,63,85,96],ask_direct:20,ask_raw:3,asopc:48,asopc_typ:[16,48],asrl10:21,asrl2:44,asrl4:[0,13],asrl6:[14,22],asrl:52,assert:63,assign:[14,22,51,63,85],associ:96,assum:[3,24,42,51,92,96],assumpt:[10,63],async:95,atob:58,ats9870:[3,16,47],ats_acquisition_control:[16,47],ats_contr:16,ats_inst:16,ats_onwork:89,atsapi:[3,48],atsdriv:16,attach:[30,37,38,47],attent:[85,89],attenu:[3,22,64],attn:3,attribut:[10,20,28,29,30,32,33,36,37,39,40,44,54,67,69,71,85,96],attributeerror:20,author:85,auto:[10,32],autom:91,automat:[3,8,10,32,51,56,83,85,91],autorang:14,autoreload:2,auxiliari:85,avail:[3,10,24,47,50,55,60,63,78,80,91,96],avanc:95,averag:[10,48,61,63],averageandraw:[5,6,11,20],averagegett:[6,11],avg:[23,61],avg_amplitud:20,awar:85,awg1:24,awg5014:[47,83,89],awg520:47,awg:[63,89],awg_fil:63,awg_file_format_channel:63,awg_file_format_head:63,awgfil:24,awgfilepars:[24,47],awgfilepath:63,ax1:24,ax2:24,ax3:24,ax4:24,axes:[21,58],axi:[10,29,35,39,54,56,96],axs:10,azimuth:56,b06:15,babi:97,back:[3,24,42,63,85,91,92,93,96,97],backend:44,background:[6,17,19,23,96],background_color:69,background_funct:30,backslash:85,backward:31,bad:2,bandwidth:[10,16,54],bar:[85,93],bare:[36,41],base0:97,base1:97,base2:97,base:[8,14,29,30,31,32,33,37,42,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,85,89,93,96,97],base_loc:[2,6,31],baseplot:[69,70],baseserv:97,basic:[3,12,35,48,52,91],basicconfig:14,baudrat:49,bear:85,becam:6,becaus:[2,3,20,29,30,33,48,85,92,96,97],becom:[16,24,88,96],been:[3,8,23,24,54,56,61,63,96,97],beep:3,befor:[0,2,3,10,12,13,14,32,36,38,43,47,48,52,54,63,85,93,96],beforehand:47,begin:6,behav:85,behavior:[6,11,16,17,19,20,21,23,85,96],behaviour:54,behind:10,being:[2,16,24,29,61,63],belong:[39,40],below:[2,3,24,85,88,89],benchmark:[0,13],best:[3,85],beta:[3,48,55,58,60,61,62,63],better:[3,34,85,96],between:[3,30,33,36,41,54,63,68,69,70],beyond:63,bidirect:[3,40],binari:63,bind:10,bip:52,bit:[48,63],bitlevel0:53,bitlevel1:53,bits_per_sampl:[16,48],black:69,blame:[22,63],blank:[35,85],block:[17,35,97],board:[3,16,22,48],board_id:[3,16,48],board_kind:[16,48],bodi:85,boilerpl:[3,34],bold:88,bool:[3,29,36,39,49,50,51,52,56,57,62,63,68,71,75],bool_to_str:63,born:85,both:[0,3,8,10,13,31,39,62,63,85,88,91,92,96,97],bottom:[52,92],bound:96,bracket:85,branch:85,breakif:[12,78,96],breviti:3,bring:20,brittl:96,broader:91,broken:[2,40],brows:[92,97],buf:48,buffer:[16,48,89],buffer_list:3,buffer_timeout:[16,48],buffers_per_acquisit:[16,48],bug:86,build:[10,24,54,63,83,85,92,96],build_sweep:[10,54],built:[8,10],builtin:34,bunch:10,burden:96,button:[63,85],bwlimit1:16,bwlimit2:16,bwlimit:[16,48],bwmode:10,byref:14,byte_to_value_dict:[3,48],bytes:49,c_amp_in:[3,57],c_set:8,cabl:[63,96],calc:53,calcul:[54,88,96],calibr:[47,48],call:[2,3,8,10,11,14,15,17,20,24,27,29,30,32,33,34,36,39,43,44,46,48,49,51,54,61,63,65,68,85,96],call_by_str:14,call_by_str_parsed_out:14,call_cmd:[3,34],callabl:[12,17,26,27,30,32,38,43,45,46,68,96],callsig:24,came:48,camp1:19,camp:[7,19],can:[1,2,3,8,10,11,20,22,24,26,28,29,30,32,34,35,38,39,40,41,42,45,48,52,53,54,56,58,59,60,63,67,68,69,70,71,85,88,89,90,91,93,96,97],cancel:[22,63],cannot:[4,40,62,63,96],capabl:[18,88,91,96],capit:85,captur:[12,48],card:[3,16,48,53],cardid:53,care:[2,3],cartesian:[56,96],carthesian:56,cast:[24,34],caus:[22,53],caution:[63,89],caveat:96,cdll:3,cell:24,center:61,centr:60,certain:[10,12,48,58],ch01_i:22,ch01_irang:22,ch01_slope:[14,22],ch01_sync:14,ch01_sync_delai:14,ch01_sync_dur:14,ch01_v:[14,22],ch01_vrang:22,ch02:22,ch02_slope:22,ch02_sync:22,ch02_v:[14,22],ch0_offset:18,ch0_voltag:18,ch1:63,ch1_amplitud:9,ch1_amplitude_unit:9,ch1_frequenc:9,ch1_function_typ:9,ch1_offset:9,ch1_output:9,ch1_ramp_symmetri:9,ch1_voltag:18,ch2:63,ch2_offset:24,ch3_state:24,ch41_v:[0,13],ch42_v:[0,13],cha0:47,chain:96,chan0:[6,11,47],chan0_set:6,chan1:[6,10,11,20,26],chan1_set:6,chan2:[6,10,11,20],chan:51,chan_alia:25,chan_go:14,chan_reset_1:14,chan_reset_2:14,chan_reset_3:14,chanc:48,chandata:10,chang:[3,10,16,18,22,28,31,40,52,54,62,63,84,85,89,91,92,93,96],change_autozero:63,change_displai:63,change_fold:63,channel2:53,channel:[0,3,6,7,13,16,17,18,19,20,24,44,48,49,51,52,53,54,58,63,88,89,96],channel_0:53,channel_1:53,channel_a:48,channel_cfg:63,channel_rang:[16,48],channel_range1:16,channel_range2:16,channel_select:[16,48],channel_skew_n:63,channel_state_n:63,charact:[35,36,39,44,58,85],characterist:96,check:[3,45,56,60,69,70,75,85,90,94,96,97],check_error:14,check_for_error:61,check_schema:2,checklist:85,chime:85,chnum:24,choic:48,choos:[24,52,54,60,63,96],chore:85,chosen:54,clariti:3,classmethod:[47,48,55,61],clean:[59,63,82,85],clean_str:59,cleanup:33,clear:[14,24,63],clear_buff:48,clear_error:55,clear_message_queu:[24,63],clear_waveform:63,clearli:85,clever:86,cli:91,click:92,clip:96,clock:[3,16,48,63],clock_edg:[16,48],clock_edge_ris:16,clock_sourc:[3,16,48,63],clone:85,close:[0,4,9,10,13,18,22,24,25,53,54,85],close_fil:33,closedevic:61,cls:2,cmap:20,cmd:[3,14,51,63],cmd_str:14,code:[3,10,34,40,53,55,62,71,75,86,91,96],codebas:91,coil:56,coil_const:56,collect:[8,41,48,88,91,96],colon:85,color:[10,24,69],colorbar:29,column:[35,96],com2:44,com:[49,53,55,64,75,85,87,89,92],combin:[27,30,35,61,66,68,78,88,89,95,96],combined_set:1,combinedparamet:[1,78],come:[35,85,96],comma:63,command:[3,10,14,16,24,34,40,51,52,55,60,62,63,78,85,88,91,96],comment:[3,35,85],commit:[48,90,91],common:[3,60,63,88,96],commonli:[55,60,63],commun:[3,36,44,48,52,58,88,90,96],compani:3,compar:[0,13,85],compat:[38,43,54,91,96],compatibil:63,compens:[53,63],complain:96,complet:[14,24,29,30,53,63,96,97],complex:[3,60,85,96],compliant:85,complic:[20,34,96],compon:[7,48,56,71,91,96],composit:[14,96],comprehens:85,comput:[54,58,85,92,96],concaten:[51,85],concept:97,concurr:96,conda:92,condit:[3,12,26,58,63,96],config:[3,16,48,63,78,85,89,95],config_file_nam:28,configur:[10,16,28,48,61,63,81,89,91,95,96],conflict:96,confusingli:97,connect:[0,3,10,13,14,15,16,17,22,23,24,44,48,49,54,63,71,75,88,96],connect_messag:[3,50,51],consequ:96,consid:[63,85],consist:[22,52,61,63,67,85,96],consol:53,consolid:91,constant:[5,10,12,52,54,56,61],construct:[5,26,29,36,40,56,97],constructor:[3,29,69,70],consult:96,conta:54,contain:[3,5,6,12,24,29,30,32,35,40,48,54,55,60,63,71,85,88,93,96,97],content:[29,89],context:96,contian:48,contin:63,continu:[10,24,38,63,71,85],contrast:85,contribut:[3,86,90],contributor:85,control:[2,3,10,11,16,17,18,19,20,21,22,23,24,48,52,56,60,63,91,93,96,97],controlthermometri:58,conveni:[63,71,96],convent:3,convers:[63,85],convert:[3,29,31,48,51,53,58,63,96],convert_to_voltag:53,coordin:56,copi:[2,17,29,41,52,54,96],core:[1,6,7,10,11,14,15,16,17,19,20,21,23,25,85,89,90,91,93],corner:[11,16,17,19,20,21,23],correct:[3,10,18,24,33,62],correspond:[0,3,13,18,24,35,48,49,54,63],cosmet:[82,83],could:[3,11,14,15,20,24,75,85,96],count:[8,14,34,63,97],counter:[11,12,32],coupl:[3,10,16,48,53,63],coupling1:16,coupling2:16,cours:[85,96],cov:85,cover:[85,97],coverag:[85,91],coveragerc:85,cpld:48,cpld_version:[16,48],crash:[48,91],creat:[4,7,8,11,16,17,19,20,29,33,38,41,47,48,49,50,54,55,63,64,67,68,88,89,92,93,96,97],create_and_goto_dir:63,creation:[12,97],creator:85,critic:[2,93],ctwrapper:14,ctype:3,cumbersom:51,curernt:97,curr1:20,curr2:20,curr:[3,7,19,20,57,62],curr_0:20,curr_0_0:20,curr_0_1:20,curr_1:20,curr_1_0:20,curr_1_1:20,current:[2,3,6,7,10,15,19,22,24,28,30,31,32,50,51,54,56,57,62,63,65,66,68,71,85,93,96,97],current_config:[2,28],current_config_path:28,current_r:56,current_ramp_limit:56,current_schema:[2,28],current_valu:14,currentparamet:[3,7,19,57],custom:[8,28,31,89],customawgfil:63,cutoff_hi:62,cutoff_lo:62,cwd:28,cwd_file_nam:[2,28],cycl:[7,15,16,17,19,50,96],cylindr:56,dac1:[5,12],dac2:[5,12],dac2_dac2:12,dac2_dac3:12,dac3:5,dac:[5,12,47,52],dac_commands_v_13:51,dac_delai:52,dac_max_delai:52,dac_step:52,dai:85,dancer:85,daq:10,dark:69,dat:35,data1:23,data2:[4,11,20],data3:20,data4:20,data:[0,1,2,3,5,6,8,10,13,14,16,17,19,20,29,30,31,32,33,35,38,40,48,52,53,54,60,63,66,68,69,70,78,85,88,89,91,96,97],data_arrai:6,data_buff:14,data_l:4,data_set:[2,4,6,12,14,33,81],data_v:40,dataarrai:[1,6,8,19,20,30,33,68,78,88,96],dataflow:48,dataformat:89,dataformatt:85,datamanag:[88,96],datamin:96,datamod:[0,1,6,8,10,11,13,16,19,20,23,97],datapoint:63,datasav:89,dataserv:[11,20,30,88,96],dataset:[0,1,2,4,5,6,8,10,11,12,13,14,16,19,20,23,29,32,33,35,50,66,67,68,78,88,95,97],date:[11,12,32,48],datetim:32,daunt:85,dbm:60,dc_channel_numb:63,dc_output_level_n:63,deacadac:49,deadlin:17,dealt:96,debug:[2,4,10,93,96,97],debugmod:14,deca:18,decadac:[47,89],decadec:49,decid:[2,96,97],decim:[16,48],decod:3,decoupl:85,decreas:[0,13],deem:54,deeper:17,def:[1,2,3,8,14,17,19,20,58,97],default_file_nam:28,default_fmt:93,default_formatt:[30,66,68],default_io:[30,66,68],default_server_nam:61,defaulttestload:4,defer:26,deferred_oper:78,defin:[1,2,3,10,11,20,24,34,39,40,57,58,62,63,85,88,89,93,96,97],definit:[10,11,20,34,96],deg_to_rad:55,degre:[10,39,56],del:3,delai:[1,6,10,12,14,16,38,40,42,45,52,60,96,97],delay_in_points_n:63,delay_in_time_n:63,deleg:[20,29],delegate_attr_dict:71,delet:[3,63,85],delete_all_waveforms_from_list:[24,63],demand:96,demo:89,demod1:[10,54],demod1_harmon:10,demod1_ord:10,demod1_phaseshift:10,demod1_sampler:10,demod1_signalin:10,demod1_sinc:10,demod1_stream:10,demod1_timeconst:10,demod1_trigg:10,demod:10,demodul:[54,89],demodulation_acquisitioncontrol:[16,48],demodulation_frequ:[16,48],demonstr:[3,8],denot:[35,68],depend:[10,16,22,35,80,85,92,96],deprec:[3,23,29,39,63,83],deprecationwarn:63,deriv:88,descipt:28,describ:[2,3,8,12,38,54,85,93,96],descript:[2,29,63,85,93,96],descriptor:52,design:[55,63,64,96],desir:12,desktop:14,destruct:96,detail:[85,96],determin:33,dev2235:10,dev:2,develop:[54,86,90,91],devic:[52,54,60,96],device_id:54,dft:[16,48],dg4000:47,dg4062:59,dg4102:59,dg4162:59,dg4202:59,diagon:88,dict:[28,29,32,33,36,37,39,40,44,63,65,68,96],dictionari:[3,24,48,63,71,93,96],did:[0,3,11,13,20,92],diff:63,differ:[3,8,20,30,52,54,56,60,63,85,88,91,96,97],differenti:29,difficult:85,difficulti:85,dig:[10,50],digit:[3,51,53,63],digital_amplitude_n:63,digital_high_n:63,digital_low_n:63,digital_method_n:63,digital_offset_n:63,dim:10,dimens:[8,20,29,35,96],dimension:[29,30,58],dir:[2,63],direct:[56,61,85],directli:[3,5,8,10,22,24,30,38,58,63,89,96],directori:[2,3,30,31,63,66,68,85,92,93],disabl:[16,30],disadvantag:96,disambigu:[11,20],disappear:96,disc:63,disconnect:96,discov:47,discret:96,discuss:[85,90],disk:[30,31,33,63,68,96],diskio:[6,30,32,66,68,78,88],displai:[0,1,2,6,7,10,11,13,14,15,16,17,19,20,21,23,25],display_clear:[0,13,14,55],display_text:[0,7,13],display_text_2:7,dissip:96,distribut:91,dived:47,divid:47,divider_r:63,divis:47,division_valu:47,divsion:47,dll:[48,61,89,96],dll_path:[3,48,61],dmm:[0,13,14,55],dmm_data_buff:14,do_acquisit:48,do_get_frequ:60,do_get_pow:60,do_get_pulse_delai:60,do_get_statu:60,do_get_status_of_alc:60,do_get_status_of_modul:60,do_set_frequ:60,do_set_pow:60,do_set_pulse_delai:60,do_set_statu:60,do_set_status_of_alc:60,do_set_status_of_modul:60,doc:[2,6,52,85,89,92],docstr:[3,8,34,39,63,85],document:[15,34,39,48,63,81,82,85,91,96],doe:[10,12,21,29,32,35,38,44,47,52,55,60,62,63,64,85,96],doesn:[3,8,11,20,24,29,53,63,85],doing:[16,85,96],domain:[10,58],domin:91,don:[3,33,40,41,42,51,63,85,96,97],done:[6,10,12,24,56,82,92,96,97],dot:[2,85,93],doubl:[32,63],doubt:[10,85],down:[24,85],download:[10,89,92],dramat:96,drive:6,driver:[5,8,10,12,22,24,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,82,83,85,91,95,96],driver_vers:[16,48],drivertestcas:[47,55,64],due:[3,6,10,22,96,97],dummi:[5,12,16,67,89,97],dummy_set:16,dummyinstru:[5,12],dump:[7,48],duplic:[3,63],dur:10,durat:10,dure:[14,39,40,41,45,48,53,63,80,96,97],dynam:[22,89],e1cb66:24,e8527d:[47,85],each:[0,1,3,4,6,8,10,12,13,14,16,17,18,19,20,22,23,24,29,30,33,34,35,36,38,39,40,41,48,49,52,54,55,62,63,64,69,71,85,88,91,96,97],eachot:97,easi:[5,12,16,85,88,91,92],easier:[54,85,96],easiest:2,easili:[11,20,63,91],edg:16,edit:61,editor:85,ee82e:24,eendebakpt:15,effect:[48,63,93],effort:3,eight:22,either:[3,10,22,33,39,40,56,59,63,70,96],elaps:[14,17,19],electron:[3,91],elem1m1ch1:63,elem1m1ch2:63,elem1m2ch1:63,elem1m2ch2:63,elem2m1ch1:63,elem2m1ch2:63,elem2m2ch1:63,elem2m2ch2:63,element:[24,63,93,96],element_no:63,elemnum:24,elif:17,elnum:24,elpi:85,els:[2,14,18,63,85],elsewher:71,emac:85,email:90,embed:92,emit:[40,52],emoji:85,empti:[2,8,12,17,24,49],enabl:[10,16,53],enable_channel:53,enable_record_head:[16,48],encapsul:96,enco:14,encod:[3,14,34,40],encourag:[3,10,85],end:[3,32,41,44,48,63,85,91,96],endpoint:[0,13],engin:16,enough:[85,88],ensur:[61,62,85,96],ensure_ascii:7,enter:96,entir:[16,71,96],entri:[2,33,38,63,78],entrypoint:80,enumer:[3,10],env:[2,14,28,92,93],env_file_nam:[2,28],enviro:92,environ:[2,91,92,93],equal:93,equival:[8,20,63,91],err:61,error:[1,2,3,4,9,14,17,22,29,38,40,48,52,53,63,93,97],error_cod:52,essenti:[55,62],etc:[3,8,18,29,34,40,85,96],ethernet:[3,36,63],etr_5v:16,eumer:42,evalu:43,even:[8,22,31,33,39,40,41,42,44,51,53,63,85,96],event:[10,24,49,63],event_input_imped:63,event_input_polar:63,event_input_threshold:63,everi:[3,27,30,38,46,48,54,90,96,97],everybodi:[85,90],everyon:85,everyth:[10,24,32,78,85],exactli:[5,14,85],exampl:[1,2,6,8,26,29,32,39,40,42,44,48,53,56,63,85,88,91,92,94,97],exce:85,exceed:24,except:[2,3,14,63,72],exec_funct:14,exec_str:14,execut:[10,12,14,34,43,47,54,55,63,64,88,91,96],executor:97,exemplifi:10,exept:10,exercis:85,exist:[3,24,32,33,42,53,63,66,68,85,91,96],expand:86,expect:[2,3,10,14,17,33,38,53,63,85,97],experi:[11,20,28,89,91,92,96],experiment:[91,96],expir:14,explain:[85,93],explicit:[20,24,41],explicitli:[29,39,85,96],explor:[12,63],expos:93,express:[40,96],ext:14,extend:[24,35,41],extens:[35,63],extern:[16,53,60,61,63],external_add_n:63,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:63,external_startcaptur:[16,48],external_trigger_coupl:[16,48],external_trigger_rang:[16,48],extra:[8,20,39,85,96],extra_schema_path:2,extract:58,extrem:96,fact:85,factor:[3,7,10,22],factori:63,fail:[2,85,96],falcon:85,fall:63,fals:[2,6,7,8,10,14,17,18,19,22,23,29,30,39,49,50,51,52,55,56,59,60,62,63,68,93,96],faq:95,fast:96,faster:[24,85],fastest:24,feasibl:91,feat:85,featur:[3,18,20,61,86,91],feed:[3,57,62],feedback:[42,96],feel:85,fetch:[7,58],few:[34,54,85],fewer:22,ff4500:24,ff8c00:24,fft:54,field:[34,35,39,40,56,91,97],field_limit:56,fifo:16,fifo_only_stream:[16,48],fig:[10,24],figsiz:[12,20,69,70],figur:[10,14,24,70,85,92,96],file:[2,4,11,12,20,28,30,32,33,35,52,58,63,66,68,85,89,95,96],file_path:63,filen:28,filenam:[24,63],filepath:24,filestructur:63,fill:[8,12,38,63,96],filter:[10,54],filw:63,find:[17,32,48,85,90,93],find_board:[16,48],findal:58,finder:12,fine:[52,96],finish:[6,10,20,48,82,96],finit:[22,51],fire:22,firmwar:[0,3,6,7,13,14,16,23,48,49],first:[2,6,8,14,24,29,35,40,43,56,63,69,70,85,96,97],first_delai:14,fit:[24,48,85],five:61,fix:[10,29,34,41,84,85,96,97],fixabl:85,flag:[22,52,61],flake8:85,flavor:96,flexibl:[88,91],flow:22,flush:63,fmt:[2,11,12,32],fmt_counter:32,fmt_date:32,fmt_time:32,fname:63,focus:85,folder:[3,31,35,63],follow:[0,3,5,12,13,24,49,56,63,85,92,93,96,97],foo:[85,93,97],footer:85,forc:[6,11,16,17,19,20,21,23,24,63],force_ev:63,force_logicjump:63,force_reload:63,force_trigg:63,force_trigger_ev:63,foreground:96,foreground_color:69,fork:85,form:[3,34,48,60],format:[0,3,10,13,14,20,22,24,30,32,34,35,40,63,66,68,89,91,96],formatloc:[2,11,12,68,78,88],formatt:[4,6,30,66,68,78,88,93,96],formerli:[3,64],forward:[16,31,48],foul:24,found:[3,10,24,33,40,43,52,63,85,89],four:[18,49,59],fourier:48,framework:[85,91,96],free_mem:48,freedom:39,freeli:96,freq:61,frequenc:[10,23,48,50,60,61,63,97],frequencysweep:60,frequent:85,frequwnci:60,fridg:[58,91],friendli:54,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,29,30,32,33,34,35,38,39,40,48,51,52,53,54,55,56,57,58,60,62,63,66,67,71,85,87,88,89,91,96,97],fron:7,front:[10,63],frontend:93,full:[1,2,9,10,22,30,35,63,66,68,91],full_nam:[1,29],fulli:[10,85],fullrang:52,fun:51,func:[3,14,43],func_nam:17,fundament:96,further:[59,88,91],furthermor:54,futur:[3,63,85,97],gain:[57,62],garbag:48,gate:[6,11,26,88,96,97],gate_frequ:97,gate_frequency_set:97,gated_trigger_acquisit:53,gather:[11,20],gather_paramet:[11,20],gave:24,gee:10,gener:[3,12,24,30,32,41,54,55,59,60,61,62,63,64,85,88,89,91,92,96],generate_awg_fil:63,generate_channel_cfg:63,generate_sequence_cfg:63,get:[0,1,2,3,4,5,6,8,10,11,12,13,14,15,16,17,18,19,20,21,22,25,29,33,39,40,47,48,50,52,54,57,58,60,62,63,71,85,89,93,96,97],get_al:[52,60,63],get_board_info:48,get_card_memori:53,get_card_typ:53,get_cmd:[3,15,40,48,58,97],get_current_folder_nam:63,get_data_set:[0,1,12,13,14],get_error:63,get_error_info32bit:53,get_filenam:63,get_folder_cont:63,get_funct:48,get_idn:[3,16,48,52,53,57,58,62,63],get_instrument_valu:47,get_integrationtim:15,get_jumpmod:63,get_latest:[10,26,39],get_max_sample_r:53,get_pars:[3,15,40],get_pol_dac:52,get_power_at_freq:61,get_processed_data:[16,48],get_ramp:49,get_sample_r:48,get_spectrum:61,get_sq_mod:63,get_sqel_loopcnt:63,get_sqel_trigger_wait:63,get_sqel_waveform:63,get_stat:63,getattr:[3,20],getcwd:24,getdoubl:10,getlogg:[4,10,24],gettabl:[3,8,39,57,62,67,88,96],getter:[14,88],getx:97,git:[6,17,89,91],github:[20,85,87,88,89,91,92],giulio:85,giulioungaretti:85,give:[8,12,38,63,85,96],given:[1,22,36,48,59,85,96,97],global:[3,11,18,20,89],gmbh:53,gnuplot:[35,91],gnuplot_format:[4,6],gnuplotformat:[4,6,30,66,68,78,88,96],goal:85,going:[3,5],good:[2,3,10,60,85],googl:[6,85],got:85,goto_root:63,goto_st:[24,63],goto_to_index_no:63,gotten:[22,24,96],gpib0:[7,17,19,20],gpib1:15,gpib:[3,63,65],gradual:18,grai:69,graph:39,graphicswindow:69,great:85,greater:40,greatest:96,green:92,group:[60,85,91,96],grow:90,gs200:[47,83],guarante:[2,75],gui:[2,10,14,19,85,91,93],guid:[48,85,90,92],guidelin:85,h5fmt:4,h5py:92,hack:[85,93],had:[11,20,24],half:10,halfrang:52,halt:45,halt_bg:[16,20],han:24,hand:24,handl:[3,8,29,30,34,48,51,52,53,69,88],handle_buff:48,handler:4,hang:85,happen:[3,22,24,29,43,96],happi:85,hard:[63,85],harder:[85,96],hardwar:[3,22,24,52,60,63,85,88,96],harvard:[18,47],has:[3,4,6,8,10,18,22,23,24,29,35,48,54,56,62,63,85,93,96,97],hasattr:[14,17],hasn:3,have:[2,3,5,8,10,11,12,20,22,24,29,33,35,39,42,47,48,52,54,55,56,57,61,62,63,64,85,88,90,91,92,96,97],haz:82,hdf5:[4,96],hdf5_format:4,hdf5format:4,head:63,header:[16,85],heatmap:[69,70],height:[69,70],help:[2,3,10,24,30,33,34,36,39,44,63,85,91,96],helper:[2,4,20,24,54,78,93],here:[3,6,8,10,11,15,16,20,22,29,51,54,62,67,85,92,96],hesit:85,hewlett:7,hierarchi:86,high:[53,63,85,96],higher:[93,96],highest:[32,96],highlevel:14,histori:[63,85],hkey_current_usersoftwareoxford:58,hold:[3,10,21,58,88,96,97],hold_repetition_r:63,holdoff:10,home:[2,28,85,93],home_file_nam:[2,28],horisont:10,host:22,hot:20,hotfix:85,hound:61,how:[2,5,8,10,12,24,33,35,38,39,41,42,69,85,87,88,90,96,97],howev:85,hp33210a:47,htm:52,html:44,http:[44,52,53,75,85,87,89,92],human:[48,83],icon:92,id1:35,id2:35,id3:35,idea:[3,60,85,90],ideal:85,ident:[3,8,54,56,63,97],identifi:[30,33,35,37,39],idl:[25,63],idn:[3,4,6,7,16,20,25,51,52],iff:63,ignor:[43,48,63],ignore_kwarg:14,igor:91,immedi:[0,13,22,31,48,54,71,85,96],imp:[15,23],impact:96,imped:[10,16,48],impedance1:16,impedance2:16,imper:85,implememnt:71,implement:[11,15,16,20,33,36,41,42,48,54,60,61,63],implicit:85,implicitli:96,importlib:4,impos:96,improv:[84,85],in_notebook:78,inc:[7,15,20],inch:70,includ:[0,3,8,13,32,39,41,44,53,55,62,63,67,69,70,85,88,91,96,97],inclus:63,inconsist:96,inconsistensi:63,incorrect:85,incorrectli:48,increas:[8,85],increment:[35,40,96],ind:10,inde:85,indend:10,indent:[7,85],independ:[33,96],index0:8,index1:8,index:[8,52,63,70,96],indic:[1,29,63,96,97],individu:[30,41,52,56],inf:[14,22],infer:29,infin:63,infinit:[24,63],info:[2,3,6,10,14,19,20,21,32,48,63,90,93],inform:[16,32,36,39,44,48,49,53,61,63,69,85,91,93,96],inherit:[14,48,60,63],inifit:22,init_measur:[14,55],initi:[3,12,29,30,33,47,63,66,68,91,96],initial_valu:[3,8],initialis:[14,60,61,65,89],initialize_channel:53,initialz:52,inner:[1,8,29,35,96],input:[2,3,14,17,20,24,34,40,47,52,63,85,88,89,96],input_path:53,input_rang:53,insert:[3,32,93],insid:[0,3,8,13,30,38,39,63,66,68,75,85,91,92,96],inspect:2,inst0:[0,3,9,13,14,23,24],instal:[10,44,50,54,80,85,87,91],instanc:[2,3,30,34,39,47,48,49,50,54,55,57,62,64,96],instantan:22,instanti:[3,10,16,30,51,56,85,89,96],instdict:24,instead:[1,3,20,23,29,97],institut:3,instr:[0,3,7,9,13,14,15,17,19,20,21,22,23,24],instruct:[91,92],instrument:[0,1,6,8,10,13,14,15,16,17,19,20,22,24,25,29,34,36,39,40,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,78,85,86,89,91,95],instrument_cod:40,instrument_driv:[0,3,7,9,10,13,14,15,16,17,18,19,20,21,22,23,24,25,85],instrument_mock:[4,5,12],instrument_nam:[16,29],instrument_testcas:47,instrumentserv:[96,97],instrumentstriton:58,insuffici:96,integ:[3,8,29,32,63,70,96],integr:[7,15,17,19,61,85,96],integration_tim:7,integrationtim:15,intellig:96,intend:[42,96],interact:[3,12,62,85,92,96],interdepend:96,interest:[10,85,96],interfac:[3,10,54,63,96],interleav:[16,63],interleave_adj_amplitud:63,interleave_adj_phas:63,interleave_sampl:[16,48],intermedi:85,intern:[10,29,48,54,56],internal_clock:[3,16],internal_trigger_r:63,interpret:[3,4,11,12,20,96],interrupt:94,interv:[69,70],introduct:95,invert:[3,7,19,57,62],invit:85,invok:[3,10],involv:[89,91,96],io_manag:[30,66,68,96],iomanag:88,ion:10,ipinstru:[3,56,58,78,88],ipykernel:23,ipython:[1,2,6,7,10,11,14,15,16,17,19,20,21,23,25,75,91],iq_arrai:8,iqarrai:8,irrespect:[22,63],irrevers:96,is_awg_readi:63,is_numb:59,is_setpoint:[6,29],is_typ:2,issu:[63,82,83,85,88],issue_warning_on:14,ital:88,item:[8,25,32,41,51],iter:[41,42,88],iter_error:2,ithaco1:7,ithaco:[3,7,47,89],ithaco_1211:[3,7,19,47],its:[0,3,8,10,13,18,20,22,24,29,34,48,63,67,85,88,92,96,97],itself:[32,39,48,63,85,96],ivert:7,ivvi:47,javascript:[1,2,6,7,10,11,14,15,16,17,19,20,21,23,25,85],job:[96,97],johnson:85,join:[2,24,85,90],jorgenschaef:85,json:[2,6,7,36,37,39,44,63,91,93,96],json_config:2,jsonschema:2,jtar_index_no:63,jtar_stat:63,jump:[18,24,63],jump_log:63,jump_tim:63,jump_to:[24,63],jumplog:63,junk:11,jupyt:[12,91,92,94],jupyter_cli:23,just:[0,1,3,5,6,10,11,12,13,15,20,24,34,35,40,45,85,88,92,95,96,97],jypyt:75,k2600:3,k2600a:3,keep:[33,48,49,85,91,96],kei:[3,11,20,24,30,41,48,63,68,71,93,96],keith:[7,15,17,19,20,83],keithlei:[7,63,89],keithley1:[7,17,19,20],keithley2:[7,17,19,20],keithley_2000:47,keithley_2400:47,keithley_2600:[3,7,17,19,20,47],keithley_2614b:[3,63],keithley_2700:[15,47],kept:93,kernel:[23,93,94],keysight:[47,89],keysight_33500b:[9,47],keysight_34465a:[0,13,14,47],keysight_volt:[0,13],keyword:[32,34,43],kind:[1,10,97],knob:[3,96],know:[41,42,85,90,97],known:[3,29,64],kwarg:[2,3,8,14,16,17,34,36,37,40,42,43,44,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,68,69,70,71,97],lab:[10,54,91],label1:35,label2:35,label3:35,label:[1,3,6,7,8,10,15,16,24,27,29,32,35,39,46,47,48,85,96,97],lambda:[5,12,48],languag:35,larg:[6,24,63,85],larger:40,last:[2,6,10,14,17,20,48,51,54,63,85,96],last_saved_index:33,latenc:[0,13],later:[3,10,30,31,32,68,71,85,96,97],latest:[48,92,96],latest_cal_d:[16,48],launch:[54,92],lazi:89,lcardtyp:53,lead:85,leak:48,learn:[10,91],least:[10,85,88,96],leav:[20,36],left:92,legacy_mp:[2,93],len:[10,14,63,97],length:[0,8,10,13,24,54,63,67,96,97],less:[10,85,96],lest:24,let:[29,85,93,97],letter:85,leve:3,level0:53,level1:53,level:[2,3,12,14,16,29,35,53,63,85,93,96,97],levelnam:4,levelv:3,lib:[2,14,17],librari:[14,24,85,92,93],life:85,like:[3,10,11,20,24,29,33,34,40,41,42,48,55,58,60,63,85,88,91,93,96],limit:[3,16,22,56,63,85,96,97],limiti:[7,20],limitv:[7,20],lin:[10,61],line2d:[10,14],line:[5,7,10,12,14,17,19,35,50,69,70,85,91],linear:[1,97],linearli:[10,88],liner:85,link:[29,42,48,88],linkag:86,linspac:[1,24,97],linux:92,list:[4,8,12,16,27,30,32,34,41,46,48,50,52,53,54,58,60,63,68,71,78,80,82,85,88,89,96,97],list_of_dataset:4,list_of_mixed_typ:4,listcomp:14,liter:85,littl:[85,96],live:[20,66,87,89,92,96,97],load:[2,3,8,24,28,33,61,63,66,82,89,91,93,97],load_and_set_sequ:63,load_awg_fil:63,load_data:[12,30,78],load_ext:2,loaded_data:12,loadlibrari:3,loadtestsfromtestcas:4,loc:32,loc_fmt:11,loc_provid:[2,11,12,32],loc_provider_junk:11,loc_record:[11,68],local:[0,1,8,10,13,23,24,30,34,36,39,40,44,49,50,63,65,85,91,96,97],locat:[0,1,2,4,6,8,10,13,14,16,17,19,20,22,23,30,31,32,33,63,66,68,89,93,96,97],location_provid:[2,12,32,68,88],lock:[10,62],lockin:[3,57,62],log:[2,4,5,10,12,14,24,54,61,91,93,97],logger:[4,24],logic:[63,85],logic_jump:63,loglevel:[2,93],logo:82,lograng:41,logview:85,longer:[32,35,38],look:[5,10,12,22,32,44,48,85,93,96,97],loop:[1,6,8,11,14,16,17,19,20,23,26,29,30,33,35,39,43,45,48,63,67,71,78,82,88,89,95,97],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:63,lot:[3,29,63,85],love:[85,90],low:[3,10,14,63,96,97],lower:[29,96],lowest:32,m1s:[24,63],m2s:[24,63],m4i:[47,83],mac:[6,11,16,17,19,20,21,23],machin:[63,85],made:[2,10,54,93],magic:24,magnet:[56,58,89,91,97],magnet_i:56,magnet_x:56,magnet_z:56,magnitud:[23,60,96],mai:[3,10,18,22,24,26,30,33,34,41,42,63,69,70,80,85,88,93,96],main:[20,63,96],maintain:[3,57,62,85,86,90,96],majorana:93,make:[0,3,5,8,10,11,12,13,16,17,19,20,21,22,23,29,34,35,38,48,51,58,63,85,88,89,91,92,96],make_and_save_awg_fil:[24,63],make_directori:63,make_send_and_load_awg_fil:[24,63],manag:[3,17,30,32,33,62,68,96],mandatori:[63,85],mani:[8,10,29,30,35,40,41,42,48,85,96],manner:24,manual:[10,20,52,55,56,57,58,60,62,63,89,91,96,97],manualparamet:[1,3,8,16,97],map:[3,34,40,48,70,96],mark:96,marker1:63,marker1_amplitude_n:63,marker1_high_n:63,marker1_low_n:63,marker1_method_n:63,marker1_offset_n:63,marker1_skew_n:63,marker2:63,marker2_amplitude_n:63,marker2_high_n:63,marker2_low_n:63,marker2_method_n:63,marker2_offset_n:63,marker2_skew_n:63,marker:[24,63],mashup:82,mass:63,master:[85,89,92],match:[10,24,32,34,35,40,63,96],matplot:[1,2,12,16,20,23,78],matplotlib:[0,1,2,4,5,10,11,13,14,15,16,17,18,19,20,21,23,24,25,70,92,93],matrix:56,matter:[24,85],maunual:2,max:[35,40,52,53,61],max_delai:40,max_sampl:[16,48],max_status_ag:51,max_val_ag:40,max_work:97,maxim:[22,63],maximum:[40,52,56,61,96],mayb:[29,38,85],mean:[2,3,8,10,38,40,63,75,85,93,96,97],meaning:3,meaningless:85,meant:[34,54],measur:[0,1,3,4,6,8,11,13,14,15,16,17,19,20,23,29,30,35,38,39,40,42,43,47,50,54,56,57,62,71,78,89,95],measured_param:[3,57,62],measured_valu:42,media:63,member:91,memori:[30,48,63,68,96],memory_s:[16,48],memrori:24,memsiz:53,mention:85,mercuri:89,mercuryip:[21,47],mercuryipsarrai:58,merg:85,merger:3,merlin:6,messag:[4,14,24,49,51,52,63],message_len:52,messagebas:14,met:80,meta:[5,10,12,91,95,96],meta_fil:7,meta_serv:97,meta_server_nam:97,metadat:42,metadata:[3,12,19,20,29,33,36,37,39,44,47,78,89,91,96],metadata_fil:35,meter:[3,6,11,15,20,63],method:[2,3,8,10,11,12,20,22,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,54,55,56,58,63,64,67,69,70,71,85,96,97],methodnam:[47,55,64],mhz:10,might:[18,48,56,85,96],mimic:88,mimick:96,min_valu:8,mind:48,mini:35,minim:10,minu:93,mirror:96,misc:78,misinterpret:24,miss:[85,97],mistak:85,mix:[3,4,85],mock:[5,12,85],mockgat:[6,11],mockinstru:88,mockmet:[6,11],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,11],mode:[0,1,3,6,7,8,10,13,15,16,18,20,23,30,48,51,53,54,60,61,63,65,89,96,97],model:[3,6,7,11,15,16,19,20,48,50,56,59,60,85,88,93,96],modif:93,modifi:[41,54,85],modified_rang:33,modul:[2,3,10,12,14,15,17,20,23,80,85,93],modular:[91,96],moment:63,monitor:[11,20,38,45,71,88,91,96],more:[6,10,20,22,24,30,34,35,48,53,54,63,81,85,88,89,91,92,96],most:[2,3,8,10,14,17,18,20,39,48,55,60,63,85,88,92,96],mostli:[10,88],motiv:85,move:[3,11,20,58,63],msec:[3,7],msg:58,mua:22,much:[33,85,96],multi:[81,96],multilin:85,multimet:63,multiparamet:[3,54,57,58,60,62,89],multipl:[1,8,10,34,40,52,53,55,60,63,89,96,97],multiple_trigger_acquisit:53,multipli:96,multiprocess:[3,17,81,91,97],multityp:88,must:[3,8,10,24,29,32,35,36,39,41,42,48,53,54,62,63,68,85,88,93,96,97],mv_rang:53,my47004267:7,my48002016:[0,13],my54505388:[0,13,14],my_experi:92,mycount:8,myinstrument:97,myvector:97,myvector_set:97,name:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,16,17,19,21,22,23,24,25,27,28,29,30,32,34,35,36,37,39,40,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,68,71,85,88,92,93,96,97],name_to_delet:3,namespac:[11,20,78,93],nan:[12,20],nataliejpg:65,navg:61,navig:92,nbagg:[4,5,11,16,17,18,19,20,21,23,24,25],nbi:85,ndarrai:[29,63,96],nearli:3,necessari:[10,16,29,42,48,54,91,96],necessarili:[39,85,88],need:[2,3,8,24,29,48,53,58,63,85,88,89,96,97],neg:[45,52,56],neither:85,nep:[10,54],nepbw:54,nepbw_to_timeconst:54,nest:[0,8,13,29,38,96],nested_dataset:4,network:[60,96],never:[40,85],new_cmd:3,new_data:[30,78],new_indic:14,new_nam:3,new_valu:14,newlin:35,newlinestripp:63,next:[24,32,35,63,92,96,97],nice:[3,10,11,20,85,92],nick:85,nix:92,no_instru:97,nobodi:85,nocommanderror:40,node:10,non:[24,67,85,97],none:[2,3,4,6,7,10,14,16,17,19,20,21,23,27,29,30,32,34,35,36,38,39,40,41,44,46,47,48,49,52,53,56,58,60,61,63,66,68,70,71,82,85],nonlinear:20,noofpoint:24,noofseqelem:24,nor:85,normal:[30,31,34,39,41,88,96],notabl:10,notat:[2,41],note:[2,3,8,10,12,22,24,30,39,40,41,42,44,51,54,57,61,62,63,66,68,80,91,93,96,97],notebook:[0,2,10,13,14,16,20,24,75,89,91,92,93,94],noth:48,notic:20,now:[1,6,8,10,11,20,22,24,71,85,92,93,97],nplc:[0,7,13,14,15,17,19,63],nplc_list:50,npt:[16,23,60],nr_bytes_written:14,nrep:[24,63],num:[6,14,41,70],num_chan:51,number:[0,1,3,7,8,10,11,13,14,15,17,19,20,22,24,32,35,36,38,39,41,44,47,48,49,50,51,52,53,54,59,60,63,85,88,96,97],number_format:35,number_of_channel:48,number_of_paramet:97,numdac:52,numer:[35,96],numpi:[0,1,3,4,8,10,11,13,14,15,17,19,20,21,22,24,25,29,54,63,96,97],numpoint:63,numval:14,object:[1,2,6,7,10,11,12,14,15,16,17,19,20,21,23,25,29,31,33,34,38,39,40,41,42,48,51,61,66,68,71,85,86,93,96,97],obsolet:24,obtain:48,obviou:38,occasion:33,occupi:[32,63],occur:[52,53,93,96],oem:63,off:[0,3,7,9,10,13,14,18,22,34,51,55,60,63],off_modul:60,offer:[1,97],offload:96,offset:[10,16,18,63],often:[5,30,85,88],ohm:[10,16],oldn:10,omit:[20,40,58],on_modul:60,onc:[1,5,8,11,12,20,29,33,63,85,88,92,96,97],one:[2,3,8,10,11,15,18,20,22,24,27,29,30,33,34,35,38,40,41,46,47,48,49,52,56,60,62,63,68,85,88,89,93,96,97],ones:[55,60,63,85],onli:[3,4,8,10,16,17,20,22,24,29,30,32,34,35,39,40,41,42,48,49,50,51,54,55,57,58,60,62,63,68,85,89,96],onto:[63,96],opc:63,open:[4,7,33,36,44,70,85,91,92,96],opendevic:61,oper:[3,14,16,26,31,41,63,93,96,97],oppos:[3,24],opposit:69,optim:91,option:[2,3,24,27,29,30,32,33,34,36,37,39,40,41,42,44,46,47,50,58,63,66,68,82,85],optiona:49,order:[2,3,10,24,27,30,34,46,54,56,85,93,96],ordereddict:[1,30],org:44,organ:[85,89],orient:96,origin:[0,13,47,96],osc:10,oscil:10,oscillator2_freq:10,osx:92,other:[2,3,8,10,22,24,32,33,38,43,45,48,57,62,67,69,70,85,91,96],otherclass:3,otherwis:[3,24,29,48,85,96],our:[35,85],out:[1,3,5,8,10,12,14,17,20,22,26,48,51,53,85,90,91,94,96,97],outer:[8,29,35,96],output:[3,7,11,16,17,18,19,20,21,22,23,24,34,38,40,52,54,57,59,60,62,63,67,85,89,96],output_waveform_name_n:63,outsid:[45,48,53,54,63],over:[1,3,10,20,33,38,41,42,48,61,85,88,96,97],overhead:96,overrid:[3,30,32,33,51,54,68],overview:[12,53,63,89,93,95],overwrit:[2,17,19,20,52,63,68,93],overwritten:32,own:[2,3,34,48,56,85,96],oxford:[21,25,47],p1_set:1,p_label:3,p_name:3,p_unit:3,pack:63,pack_waveform:63,packag:[2,10,14,23,80,85,91,93],packagesipythonkernel__init__:23,packard:7,packed_waveform:63,pad:3,page:[78,80,85,96],pai:85,pair:[0,13],panel:[10,63,91],panic:96,par:24,paraemt:47,param:[8,10,24,25,39,48,51],param_id:14,param_nam:29,param_out:14,paramet:[5,6,7,10,11,12,15,16,18,19,20,22,24,25,26,27,29,30,31,32,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,63,65,66,67,68,69,70,71,78,81,83,85,86,89,91,95],parameter_class:3,parameter_nam:82,paramt:[1,46,97],parent:[34,39,40,42],parenthes:85,parmet:53,pars:[24,34,59,63],parse_awg_fil:[24,63],parse_multiple_output:59,parse_on_off:[55,60],parse_output_bool:63,parse_output_str:63,parse_single_output:59,parse_string_output:59,parsebool:63,parseint:63,parser:[3,34,63],parsestr:63,part:[2,3,11,20,32,39,40,53,61,85,88,89,93,96],partial:[59,97],particular:[3,8,10,24,88,96],particularli:[3,34,37,96],pass:[3,32,34,40,42,43,47,48,53,56,65,68,69,70,85,93,96,97],pat:63,patch:85,path:[2,12,24,28,30,31,33,48,58,63,66,68,92,96],pattern:63,pci:3,pcie:48,pcie_link_spe:[16,48],pcie_link_width:[16,48],pdf:51,pend:63,pep8:85,per:[3,14,16,29,48,52,56,63,91,97],percent:[10,54],perf:85,perfom:[0,13],perform:[0,10,13,16,22,33,48,52,54,61,63,67,85,96],perhap:[14,96,97],period:[30,69,70],persist:[36,56],persistent_switch:56,person:85,phase:[8,10,23,48,54,56,96],phase_delay_input_method_n:63,phase_n:63,phi:56,physic:[3,22,30,47,49,66,68,71,96],pick:85,pictur:96,piec:[88,96],pillar:96,ping:85,pinki:85,pip:[85,91,92],pixel:69,place:[2,22,85,96],platform:53,pleas:[10,24,51,63,85,90],plot2:20,plot2q:20,plot3:20,plot3b:20,plot3bq:20,plot3q:20,plot4:20,plot4q:20,plot:[1,2,9,10,14,16,19,20,22,23,24,29,78,82,89,92,93,96],plotlib:[2,93],plotq1:20,plotq2:20,plotq:19,plotter:10,plt:[0,10,11,13,14,15,17,19,20,21,23,24,25,70],plu:93,plubic:80,plug:91,plugin:85,plural:8,point:[0,10,13,14,27,31,35,38,40,46,54,61,78,91,96],poitn:63,polar:[52,56],polish:91,poor:18,popul:[29,37],port:[18,25,36,49,56,58,61,91],posit:[34,56,96],possibl:[8,18,24,57,58,62,63,93,96],post:85,post_acquir:48,posttrigger_s:53,potenti:[30,38,91,96],power:[23,50,56,58,60,61,85,96],power_limit:26,powerlin:15,pprint:[6,7],practic:85,pre:66,pre_acquir:48,pre_start_captur:48,preamp:[3,57,62],preamplifi:[3,57,62],prece:54,preced:35,precis:[18,54,83],preconfigur:2,predefin:[24,43,62,63],prefer:[91,96],prefix:85,preliminari:[0,13],prepar:[10,14,48,50,54,96],prepare_for_measur:61,prepare_scop:[10,54],prepend:[29,63],prerequisit:89,present:[3,57,62,85,96],preservechannelset:63,preset:61,preset_data:29,press:[63,94],pretrigger_s:53,pretti:[22,51,54],prevent:[3,39,48,63],previou:[6,49,85],previous:[54,63,96],primari:91,princip:34,print:[0,1,2,3,8,10,11,13,14,15,16,17,19,20,21,22,23,24,25,51,54,63,97],print_cont:63,print_overview:[22,51],print_sweeper_set:[10,54],printslop:[22,51],prior:47,prioriti:[32,96],privat:[48,78],probabl:[34,48,85,96],problem:[24,53,85],procedur:[51,96],process:[11,16,20,48,85,96],produc:[20,96],profit:92,program:48,programm:[48,56,63],programmat:[2,63,91],progress:38,progress_interv:[14,38],project:[3,85],proper:[10,52],properli:63,properti:[2,93,96],protect:52,protocol:[16,52,96],provid:[2,8,16,22,29,32,34,36,40,42,48,53,55,56,64,68,69,70,85,88,89,92,96],proxi:96,pts:10,pull:[10,14],pull_from_serv:[6,11,16,19,20,96],puls:[22,24],purchas:10,purpos:[3,8,96],push:96,push_to_serv:[6,19,96],put:[24,35,51,63,96,97],pyenv:2,pyplot:[0,10,11,13,14,15,17,19,20,21,23,24,25],pyqtgraph:[1,2,9,19,22,78,92],pyspcm:53,pytest:85,python3:2,python:[3,12,30,48,52,53,63,66,68,82,85,91,92,96],pyvisa:[14,44,96],qcmatplotlib:[1,2,16,23,78],qcode:[1,4,5,6,7,14,15,78,80,85,86,87,90,95,96,97],qcodes_config:93,qcodesfold:23,qcodesrc:2,qdac:[0,13,47,89],qdac_ch02_v_set:14,qdac_ch41_v_set:[0,13],qdac_ch42_v_set:[0,13],qdev:[0,13,14,17,22,47,91,93],qtlab:61,qtplot:[1,2,9,12,14,19,20,22,23,78],qtwork:52,quadratur:8,quantiti:[20,35],quantum:92,quench:56,queri:[10,17,22,49,51,61,63,96],querysweep:61,question:[75,85],queue:[17,24,49,63],quickli:24,quiet:14,quirk:81,quit:[26,85,96],quot:35,qutech:47,qutech_controlbox:55,r_y:56,r_z:56,rack:52,rad_to_deg:55,rainbow:[11,32],rais:[2,3,14,17,20,26,40,42,45,47,48,52,54,55,63,64],ramiro:61,ramp:[3,9,14,18,22,49,56,58,63],ramptim:22,ran:4,randint:[5,12],random:[2,5,12,24,50],rang:[0,3,7,8,10,13,14,15,16,22,24,48,50,52,53,54,61,63,96,97],range_auto:7,rangei:[7,20],rangev:[7,20],rate:[10,16,48,52,53,56],rather:[10,18,85,97],ravel:96,raw:[52,88,89,91],reach:85,read:[3,4,8,15,17,19,22,30,33,34,35,36,44,51,52,53,57,58,60,62,63,66,68,85,88,89,92,93,96],read_metadata:33,read_one_fil:33,read_stat:51,readabl:[40,48,83,85],readi:[8,10,63,68,85,92],readm:85,readnext:15,readout:53,readthedoc:44,real:[3,57,62,85,88,91,96,97],realli:[22,29,50,92,96],realtim:[85,91],reappear:85,rear:63,reason:[85,97],recent:[2,10,14,17,20,39],recommend:85,reconnect:96,reconstruct:33,record:[16,32,54,63,68,91,96],records_per_buff:[16,48],recycl:48,redirect:[29,39,83],reduc:34,ref:96,refactor:85,refer:[10,29,48,78,85,87,96,97],referenc:[39,96],reference_clock_frequency_select:63,reference_multiplier_r:63,reference_sourc:63,refernc:61,reg:25,regard:[48,96],regardless:85,regist:[53,85],registri:58,regular:[3,5,96],reimport:93,reinvent:85,reject:61,rel:[12,30,31,66,68,96],relat:96,relationship:96,releas:[33,91],relev:[14,39,48,63],reli:[3,48],reliabl:[48,96],reload:[4,15,23,33,47,96],remain:48,rememb:54,remot:[7,17,21,69,96],remoteinstru:[7,96,97],remoteparamet:96,remov:[10,29,30,52,54,58,63,85,89],remove_signal_from_sweep:54,rep:63,repeat:[85,96],repet:63,repetit:[24,63],repetition_r:63,repo:[2,85],report:[86,91],repositori:[85,89,91],repr:14,repres:[8,35,39,48,50,96],represent:[12,71,88],reproduc:[85,96],request:[86,96],requir:[8,10,12,34,41,42,44,54,60,68,85,93,96,97],res:17,research:62,resend:63,resend_waveform:63,reset:[3,8,14,24,34,35,52,55,56,59,60,62,63],resit:47,resolut:7,resolv:50,resourc:[14,33,44,51,96],respect:63,respons:[3,17,34,36,40,44,49,51],restart:[53,93],restrict:[62,88],restructur:85,result:[4,8,20,32,48,56,61,63,96],ret:14,ret_cod:14,ret_valu:14,retriev:[63,93],retur:63,return_count:14,return_pars:34,return_self:63,reus:96,revers:[40,41],review:[85,91],revion:49,revok:22,rewrit:96,rewritten:85,rho:56,richer:96,rid:29,right:[20,24,47,48,71],rigol:47,rigol_dg4000:59,rise:[3,7,10],risetim:[3,7,19],risk:56,robust:3,rohd:[60,89],rohde_schwarz:[23,47],rohdeschwarz_sgs100a:60,rohdeschwarz_smr40:60,rol:61,ron:63,root:[4,30,31,63,66,68],rotat:56,rough:86,round:96,routin:[50,51],row:35,rrm:10,rs232linkformat:52,rs_sgs100a:60,rs_smb100a:60,rst:[3,34,85],rsznb20:60,rto:58,rtoz:21,rtype:[14,75],run:[0,1,5,6,10,11,13,14,16,17,19,20,23,38,47,54,63,75,82,89,91,96,97],run_mod:63,run_stat:63,run_temp:8,runtest:[47,55,64],runtim:[2,93],runtimeerror:10,sa124_max_freq:61,sa124_min_freq:61,sa44_max_freq:61,sa44_min_freq:61,sa_api:61,sa_audio:61,sa_audio_am:61,sa_audio_cw:61,sa_audio_fm:61,sa_audio_lsb:61,sa_audio_usb:61,sa_auto_atten:61,sa_auto_gain:61,sa_averag:61,sa_bypass:61,sa_idl:61,sa_iq:61,sa_iq_sample_r:61,sa_lin_full_scal:61,sa_lin_scal:61,sa_log_full_scal:61,sa_log_scal:61,sa_log_unit:61,sa_max_atten:61,sa_max_devic:61,sa_max_gain:61,sa_max_iq_decim:61,sa_max_rbw:61,sa_max_ref:61,sa_max_rt_rbw:61,sa_min_iq_bandwidth:61,sa_min_max:61,sa_min_rbw:61,sa_min_rt_rbw:61,sa_min_span:61,sa_power_unit:61,sa_real_tim:61,sa_sweep:61,sa_tg_sweep:61,sa_volt_unit:61,sabandwidthclamp:61,sabandwidtherr:61,sacompressionwarn:61,sadevicenotconfigurederr:61,sadevicenotfounderr:61,sadevicenotidleerr:61,sadevicenotopenerr:61,sadevicetypenon:61,sadevicetypesa124a:61,sadevicetypesa124b:61,sadevicetypesa44:61,sadevicetypesa44b:61,saexternalreferencenotfound:61,safe:[85,96],safe_reload:61,safe_vers:52,safeti:58,safrequencyrangeerr:61,sai:[30,66,68,85,97],said:[29,63],sainterneterr:61,sainvaliddetectorerr:61,sainvaliddeviceerr:61,sainvalidmodeerr:61,sainvalidparametererr:61,sainvalidscaleerr:61,same:[0,3,5,8,13,16,27,29,35,40,41,46,54,63,85,96,97],sampl:[10,16,41,42,47,48,53,96],sample_count:14,sample_r:[16,48],sample_timer_minimum:14,samples_per_buff:48,samples_per_record:[16,48],sampling_r:63,sane:28,sanocorrect:61,sanoerror:61,sanotconfigurederr:61,sanullptrerr:61,saovencolderr:61,saparameterclamp:61,sastatu:61,sastatus_invert:61,satoomanydeviceserr:61,satrackinggeneratornotfound:61,saunknownerr:61,sausbcommerr:61,save:[1,12,14,24,29,30,33,35,39,40,48,63,67,68,82,85,88,89,91,96,97],save_to_cwd:2,save_to_env:2,save_to_hom:[2,93],savvi:91,sawtooth:9,sbench6:53,scalar:[5,8,67,96],scale:[8,10,47,61],scale_param:8,scale_set:8,scale_v:8,scenario:85,scene:10,schema:[2,28,93],schema_cwd_file_nam:28,schema_default_file_nam:28,schema_env_file_nam:28,schema_file_nam:28,schema_home_file_nam:28,schouten:52,schwarz:[60,89],scientist:92,scope:[54,89],scope_average_weight:10,scope_channel1_input:10,scope_channel2_input:10,scope_channel:10,scope_correctly_built:10,scope_dur:10,scope_length:10,scope_mod:10,scope_samplingr:10,scope_seg:10,scope_segments_count:10,scope_trig_delai:10,scope_trig_en:10,scope_trig_gating_en:10,scope_trig_gating_sourc:10,scope_trig_holdoffmod:10,scope_trig_holdoffsecond:10,scope_trig_hystabsolut:10,scope_trig_hystmod:10,scope_trig_level:10,scope_trig_refer:10,scope_trig_sign:10,scope_trig_slop:10,scopedata:10,screen:92,script:[89,91,97],sdk:48,sdk_version:[16,48],seamless:50,search:[32,85,96],sec:63,second:[6,8,10,15,29,30,36,38,40,44,45,48,49,52,56,63,68,69,70,90,96,97],section:[90,92],see:[1,2,5,9,11,20,22,24,32,33,36,40,42,44,48,52,53,60,63,69,70,75,85,96,97],seem:[35,53,85],seg_siz:53,segm1_ch1:63,segm1_ch2:63,segm2_ch1:63,segm2_ch2:63,segment:[10,54,63],select:[16,48,54,63,85,92],self:[2,3,8,14,17,19,20,30,33,39,49,51,58,61,63,68,71,85,97],semant:91,semi:85,sen:[3,7,19,57],send:[3,14,36,52,57,62,63,89,90],send_awg_fil:63,send_dc_puls:63,send_pattern:63,send_sequ:63,send_sequence2:63,send_waveform:63,send_waveform_to_list:[24,63],sens:85,sens_factor:[3,7,57],sens_x:19,sensit:[3,7,57],sensor:89,sent:[3,34,40,63,88,96],separ:[8,33,35,71,91,96,97],seper:[49,63],seprar:20,seq:63,seq_elem:24,sequanti:46,sequecn:63,sequenc:[8,24,29,38,41,63,67,70,96],sequence_cfg:63,sequence_length:24,sequence_po:24,sequenti:[10,27,97],seri:[3,55,59,63],serial:[0,3,6,7,13,14,16,23,48,88],serial_numb:[19,20],serialis:63,serv:3,server:[10,16,17,21,48,54,96,97],server_err:17,server_nam:[4,7,16,20,21,23,53,97],session:[11,12,14,20,30,66,68,85],set:[0,1,2,3,4,5,7,8,9,11,13,14,16,17,18,19,20,21,24,27,29,30,33,35,38,39,40,41,42,46,47,48,49,50,51,52,53,54,56,57,58,60,61,62,63,65,66,67,68,88,89,91,93,96,97],set_arrai:29,set_channel_or_trigger_set:53,set_channel_set:53,set_cmd:[3,40,58,97],set_current_folder_nam:63,set_dacs_zero:52,set_default:63,set_ext0_or_trigger_set:53,set_ext_trig:60,set_funct:48,set_jumpmod:63,set_level:63,set_measur:[6,7,11,15,17,19,20],set_mod:63,set_mode_volt_dc:63,set_mp_method:[6,11,16,17,19,20,21,23],set_pars:40,set_pol_dacrack:52,set_pulsemod_sourc:60,set_pulsemod_st:60,set_ramp:[18,49],set_sequ:63,set_setup_filenam:63,set_sqel_event_jump_target_index:63,set_sqel_event_jump_typ:63,set_sqel_event_target_index:[24,63],set_sqel_goto_st:63,set_sqel_goto_target_index:[24,63],set_sqel_loopcnt:[24,63],set_sqel_loopcnt_to_inf:[24,63],set_sqel_trigger_wait:[24,63],set_sqel_waveform:[24,63],set_statu:60,set_sweep:60,set_titl:24,set_valu:42,set_ylim:24,setattr:20,setboth:97,setbothasync:97,setformatt:4,setlevel:[4,10,24],setpoint:[0,1,4,5,6,8,13,14,16,23,29,35,50,54,56,58,67,96,97],setpoint_label:8,setpoint_nam:[8,54],settabl:[39,42,60,88,96],setter:88,settl:[10,85],setup:[53,71,89,91],setupclass:[47,55],setx:97,sever:[20,50,54,85,88,96],sg384:[47,83],sgs100a:47,shadow:2,shape:[0,1,3,4,6,8,10,13,14,16,23,24,29,50,54,96,97],share:[18,90],shared_kwarg:97,shell:91,shift:10,shimwarn:23,ship:[2,10],shortcut:[69,70],shot:[81,85,89],should:[3,10,12,16,20,23,24,29,30,32,33,34,36,38,39,41,42,43,47,48,50,57,62,63,71,85,92,96],shouldn:29,show:[5,11,12,16,17,19,20,21,22,23,85],show_subprocess_widget:[6,11,16,17,19,20,21,23],show_window:69,side:[24,40,88,92,97],sig:10,sig_gen:85,signal:[24,48,53,54,55,60,61,62,63,89,96],signal_hound:47,signal_input1:10,signal_input1_ac:10,signal_input1_diff:10,signal_input1_imped:10,signal_input1_rang:10,signal_input1_sc:10,signal_output1:10,signal_output1_ampdef:10,signal_output1_amplitud:10,signal_output1_autorang:10,signal_output1_en:10,signal_output1_imp50:10,signal_output1_offset:10,signal_output1_on:10,signal_output1_rang:10,signal_to_volt:48,signalhound_usb_sa124b:61,signatur:[24,33,63],silent:50,similar:[60,63,96],similarli:[10,96],simpl:[5,8,16,26,31,34,45,53,70,85,89,91,96],simpler:85,simplest:96,simpli:[2,10,34,39,63],simplifi:[3,11,20,56,85],simul:[88,91,95,96],simultan:20,simultani:56,sin:[24,59],sinc:[3,10,54,63,96,97],singl:[8,17,19,35,39,40,41,48,56,63,67,70,81,85,88,89,96],single_iq:8,single_set:8,single_software_trigger_acquisit:53,single_trigger_acquisit:53,singleiqpair:8,site:[2,14],situat:[35,96],six:22,size:[6,30,40,48,52],skewed_parabola:4,skill:85,skip:[56,85],slack:[85,90,91],slash:31,sleep:[3,14,17,19,21,22,24,42,45,52],slice:[11,20,41,88],slightli:83,slope:[14,16,22,51],slot:[18,49],slow:[22,96],slow_external_clock:3,slower:24,small:[10,22,81,85],smart:[58,85],smr40:47,smu:3,snap:7,snapshot:[1,3,6,7,12,16,19,20,29,36,37,39,44,63,71,83,96],snapshot_get:39,socket:36,soft:63,softwar:[3,10,51,54,63,85,96],software_revis:[19,20],solv:85,some:[1,3,10,12,34,36,39,41,49,50,53,63,85,89,93,96],somebodi:85,somehow:96,someon:85,someth:[2,10,11,20,24,48,51,85,93,96],sometim:[3,8,10,35,96],soon:85,sophist:48,sort:[24,35],sort_kei:7,sourc:[3,6,11,16,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,75,85,86,91,92,96],sourcemet:63,space:[22,39,41,85,88],span:[60,61],spawn:[6,11,16,17,19,20,21,23],spc_tm_high:53,spcm0:53,special:[3,12,39,85,96],specif:[16,24,30,51,52,63,85,88,96],specifi:[24,33,38,47,52,54,55,61,63,64,70,71,85,93,96],specifiedta:63,spectrum:[47,83,96],speed:[0,13,40,48,96],spheric:56,split:[3,25],spread:90,sqel:63,sql:96,squencer:63,sr560:[3,47],sr830:[47,82],sr865:47,src:[2,4],srs_sg384:62,stabl:44,stackoverflow:75,stage:96,stai:[85,97],stale:96,standalon:91,standard:[3,51,91],standardparamet:[3,6,8,16,19,47,78,88],stanford:62,stanford_research:[3,47],stanford_sr865:62,start:[0,1,3,6,9,10,11,12,13,14,16,19,20,23,28,29,30,35,40,41,43,48,56,60,63,66,68,85,89,96],startcaptur:16,startup:[22,51],stat:[55,60],state:[3,10,22,24,49,63,85,88,91,96],statement:[52,85],station1:[17,19],station2:[17,19],station:[0,4,5,6,7,10,11,12,13,14,15,17,19,20,23,37,38,39,78,86,96],stationq:91,statu:[3,10,25,48,51,52,55,58,60,61,62,63],statuscod:63,stderr:4,stdout:14,step:[0,3,12,13,38,40,41,52,64,92,97],step_attenu:55,still:[22,24,29,85,96],stop:[9,10,20,23,24,41,60,63],storag:[63,91,96],store:[1,2,4,29,30,33,47,48,63,68,71,96],str:[3,14,27,28,29,30,31,32,34,36,37,39,40,44,46,47,49,50,51,54,57,58,62,63,65,66,68],straightforward:[24,96],strang:10,strategi:49,stream:[10,14,16],streamhandl:4,strength:56,strftime:32,strictli:54,string:[2,3,4,14,17,19,32,33,34,35,39,40,48,52,53,54,56,59,60,63,68,71,85,88,93,96],strip:[3,35],strive:85,strongli:[3,10,85],structur:[30,33,48,66,68,88,93,96],struggl:85,stuf:93,stuff:[3,58,63,89],subclass:[3,8,33,34,36,39,42,44,48,88],subject:[85,96],sublim:85,sublimelint:85,submit:97,subplot:[10,12,20,70],subprocess:[11,16,17,19,20,21,23],subscrib:54,subsequ:43,substitut:3,subtract:10,succes:63,succinct:85,suit:[4,55,60,64,91],sum:[1,97],superclass:3,suppli:[3,31,33,56,58,96],support:[1,2,3,4,9,10,22,24,37,42,50,54,56,58,63,85,93,96],suppress:[3,7,19,63],supress:50,sure:[0,10,13,58,63,85,88,92],sv2:41,sv3:41,sv4:41,swap:91,sweep:[1,5,6,10,12,14,20,27,40,41,42,46,54,60,61,81,88,89,91,95,96],sweep_val:[1,97],sweep_valu:[6,12,38],sweepabl:46,sweepdata:10,sweeper:[54,89],sweeper_bw:10,sweeper_bwmod:10,sweeper_ord:10,sweeper_param:10,sweeper_samplecount:10,sweeper_start:10,sweeper_stop:10,sweeper_xmap:10,sweeper_xxx:10,sweepfixedvalu:[78,88],sweepvalu:[38,78,86],swept:97,sync:[10,17,19,20,22,89,96],sync_output:9,sync_sourc:9,synchron:96,syntax:91,sys:[4,14],system32:[3,48,61],system:[3,16,28,34,39,48,56,58,62,63,71,81,83,93,96],system_id:[3,16,48],sztypetonam:53,t_start:[0,13,14],t_stop:[0,13,14],tab:[10,35,85],tabl:[63,89,93,96],tag:85,take:[1,12,14,20,26,38,39,51,60,63,85,88,91,97],taken:[40,53,60,63],talent:85,talk:[3,57,62,96,97],target:[41,42,48,63],task:[5,12,14,38,45,78,82,85,88,96],tcpip0:[0,3,9,13,14,23,24],tcpip:96,tech:91,techniqu:85,technolog:[0,7,13,14],tektronix:[3,7,15,17,19,20,47,89],tektronix_awg5014:[24,63],tektronix_awg520:63,tell:[33,35,45,85,96],temp0_0:22,temp2_1:22,temp5_2:22,temperatur:[58,89],templat:85,temporari:[30,68],tempx_i:22,tend:3,tens:85,term:[14,85],termin:[3,7,11,14,16,17,19,20,21,23,35,36,44,53,56,58,91,92,96],tesla:56,test2d:20,test:[0,3,5,12,13,20,32,49,50,51,52,55,59,60,63,64,83,88,89,91,96],test_attenu:64,test_awg_fil:24,test_closed_fil:4,test_complex_param:20,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_firmware_vers:[55,64],test_frequ:55,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[47,85],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:85,test_metadata_write_read:4,test_multi_d:20,test_on_off:55,test_phas:55,test_pow:55,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:63,test_snapshot:85,test_str_to_bool:4,test_suit:47,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:55,testcas:47,testhdf5_format:4,testmetadat:85,testsweep:[0,1,12,13,14,17,19,20],testweinschel_8320:64,text:[3,14,59,85,88,96],texttestrunn:4,textual:96,tg_thru_0db:61,tg_thru_20db:61,than:[3,10,22,38,40,85,91,96],thank:85,thebrain:85,thei:[2,5,11,16,17,19,20,21,23,29,30,38,43,48,57,62,63,85,88,93,96],them:[2,3,8,11,20,22,29,47,56,62,63,85,89,93,96,97],theme:69,theoret:96,thermometri:25,theta:56,thi:[0,1,2,3,5,6,8,10,11,12,13,14,15,16,17,19,20,21,22,23,24,29,30,32,33,34,35,36,37,38,39,40,42,44,45,47,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,70,71,75,78,80,85,86,88,91,92,93,95,96,97],thing:[3,11,12,15,16,20,21,34,38,40,41,42,43,45,55,64,85,88,90,92,96,97],think:[85,93,96],third:96,those:[5,8,29,32,34,88,96],though:[3,40,41,42,96],thread:96,thread_map:14,threadpoolexecutor:97,three:[8,10,22,35,41,56,63,96],through:[10,12,22,24,29,30,85,92,96,97],thu:[85,96],tick:16,tight_layout:24,time:[0,3,7,8,10,11,12,13,14,15,17,18,19,20,21,22,24,25,26,32,33,38,40,41,42,49,50,53,54,61,63,85,91,96,97],timeout:[7,10,14,16,17,24,36,44,49,58,63],timeout_tick:[16,48],timer:[17,19],timestamp:[20,91,96],tmpfile:[25,58],to_zero:58,todo:[3,29,51,52,54,55,65,85],togeth:[5,24,40,60,96],toggl:18,tolist:3,too:[3,39,40,85],tool:85,tortur:85,total:[3,8],touch:85,toymodel:[6,11],trace:[10,23,48,54,60,69,70],traceback:[2,10,14,17,19,20,91],track:[48,61,96],trail:85,transer:16,transfer:[24,63],transfer_offset:[16,48],transform:[3,34,40,45,48],translat:[3,33,54],transmiss:60,treat:[49,71,96],tree:[89,92],trg:14,trig:[10,63],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:53,trig_slope_posit:16,trig_wait:[24,63],trigger:[3,10,14,16,24,53,60,63],trigger_delai:[16,48],trigger_engine1:[16,48],trigger_engine2:[16,48],trigger_input_imped:63,trigger_input_polar:63,trigger_input_slop:63,trigger_input_threshold:63,trigger_level1:[16,48],trigger_level2:[16,48],trigger_oper:[16,48],trigger_slop:14,trigger_slope1:[16,48],trigger_slope2:[16,48],trigger_sourc:[14,63],trigger_source1:[16,48],trigger_source2:[16,48],triton1_thermometri:25,triton:[47,89],trival:97,trivial:85,trivialdictionari:48,troubleshoot:96,truncat:85,trust:40,truthi:[12,26],ts_start:6,tst:4,tstart:[17,19],tudelft:52,tune:[52,85],tupl:[8,10,24,29,34,54,63,69,70],turn:[3,10,63],tutori:[5,8,89,95],two:[3,8,12,20,24,29,54,56,61,63,85,89,97],txt:52,type:[0,1,2,3,4,6,8,10,13,14,16,17,19,23,24,33,34,47,48,49,53,54,63,85,92,93,96,97],typeerror:[14,26,42,63],typic:[29,85,89,96],typo:85,uhf:[54,89],unambigu:3,unassign:22,uncommit:48,uncondit:63,under:63,underli:[88,96],underscor:85,understand:[85,96],undo:63,unga:[2,4,85,93],ungaretti:85,unicorn:11,unimport:63,union:[29,34,40,41,47],uniqu:29,unit:[1,3,6,7,8,10,15,16,19,22,27,29,39,46,48,54,56,58,83,85,96,97],unitless:39,unittest:[4,47,85],unittest_data:4,unless:[22,29,40,85],unlik:47,unload:63,unnecessari:8,unrel:96,unsav:96,unsign:63,until:[3,24,92,96],unus:68,updat:[2,7,10,12,14,20,22,28,39,48,54,60,63,69,70,71,88,92,96],update_acquisitionkwarg:[16,48],update_curr:[14,22,51],update_internal_setpoint:56,update_snapshot:71,upgrad:10,upload:[24,63],upon:[22,47],uppercas:58,upsteam:2,usag:[8,32,42,50,53,63,86,89,95],usb:3,usb_sa124b:47,use:[1,2,3,5,8,10,15,20,24,29,32,34,35,40,41,42,44,45,47,48,49,51,55,56,57,58,62,63,64,70,85,88,92,93,95,96,97],use_thread:14,used:[3,8,18,20,29,32,34,35,39,41,42,47,48,50,51,53,54,55,57,58,60,61,62,63,67,71,88,91,96],useful:[8,85,96],user:[2,4,6,14,15,17,24,40,44,48,54,63,91,92,93,96],usernam:85,uses:[3,8,40,47,61,88,93,96],using:[3,10,12,20,22,24,28,33,35,44,50,52,53,56,61,63,85,88,91,96],usual:[37,51,63,96],util:[1,4,14,17,19,20,50,78,85,97],utility_freq:50,utopia:85,v_amp_in:62,v_in:62,v_out:62,v_rang:22,vaild:28,val:[1,3,6,8,10,39,40,41,42,48,63,97],val_map:[3,40],valid:[1,2,3,8,14,17,19,28,34,39,40,41,42,53,63,67,69,78,85,86,93,96,97],validate_al:34,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,12,13,14,15,16,17,19,20,22,24,27,28,29,32,34,35,38,39,40,41,42,46,47,48,49,50,51,52,54,56,60,62,63,88,96,97],valuabl:85,value_typ:2,valueerror:[45,47,54,55,63,64],vari:[12,96],variabl:[3,35,63,85,88,89,93,96],variou:[85,88],vbw:61,vector:[56,96],vendor:[3,6,7,16,19,20,48],verbos:[4,47,51,53,60,63,85],veri:[22,48,51,96],verifi:3,vernier:62,versa:10,version:[2,3,8,48,51,52,55,58,60,61,62,63,82,91,92,97],versu:89,vertic:10,vi_error_rsrc_nfound:96,vi_error_tmo:14,via:[3,10,11,20,37,57,62,63,71,89,96],vibuf:14,vice:10,videobandwidth:61,view:85,vipuint32:14,virtual:[3,56,57,60,62,92,97],virtualivvi:97,visa:[3,14,24,44,49,50,51,52,55,59,60,62,63,64,65,96],visa_handl:[14,44,49,58],visainstru:[49,50,51,52,55,58,59,60,62,63,64,65,78,88,89,96],visaioerror:14,visalib:14,visess:14,visibl:22,vision:85,visit:85,visual:91,visualis:24,viuint32:14,viwrit:14,vna:[23,61],vna_magnitud:23,vna_phas:23,vna_power_set:23,volt:[0,3,7,10,13,15,17,19,20,48,62,63],volt_0:[19,20],volt_1:[19,20],volt_set:19,voltag:[0,3,7,8,13,18,20,22,47,50,53,57,62,63,65,88,96],voltage_range_statu:51,voltage_raw:[3,57,62],voltagedivid:47,voltageparamet:62,voltmet:[50,96],volunt:85,vpp:9,vrang:[14,22],vsd1:20,vsd2:20,vsd:[5,6,11],w8320_1:3,wai:[2,3,5,10,11,16,20,24,40,63,85,96,97],wait:[6,12,24,34,38,40,49,63,78,88,92,96,97],wait_trigg:63,wait_valu:63,walk:97,want:[1,2,3,5,10,18,30,39,47,48,51,56,85,86,88,90,93,95,96,97],warn:[2,3,4,24,38,40,48,52,54,83,93],wav:51,wave:53,waveform:[8,55,59,63,89,96],waveform_nam:63,web:[10,54],week:[85,90],weight:2,weinschel:[3,47],weinschel_8320:[3,47],welcom:[85,90],well:[5,10,33,55,62,64,85,96],were:[29,30,39,48,80],wfm001ch1:63,wfm002ch1:63,wfm1ch1:63,wfm1ch2:63,wfm2ch1:63,wfm2ch2:63,wfm:[24,63],wfmname:[24,63],wfname_l:63,wfs1:63,wfs2:63,wfs:63,what:[2,3,10,11,12,15,20,22,24,36,38,41,42,44,49,58,63,65,78,85,93,96,97],whatev:48,wheel:85,when:[3,6,8,20,22,24,26,29,32,39,42,43,47,48,51,53,54,55,57,62,63,64,68,85,91,96,97],whenev:[53,62,63,96],where:[3,8,12,22,30,33,41,42,48,54,57,62,63,66,68,69,85,96,97],whether:[18,33,35,36,40,51,56,59,63,85,96],which:[2,3,5,8,10,12,20,24,28,29,30,32,33,35,38,40,41,43,47,48,60,62,63,66,68,71,85,88,93,96,97],whish:1,white:[69,85],whitespac:35,who:85,whole:[3,5,8,35,57,62,85,88,96],whose:[29,71,96,97],why:[10,85],widget:[11,16,17,19,20,21,23,82],width:[69,70],william:[10,14],williamhpnielsen:51,win:2,window:[3,6,11,16,17,19,20,21,23,48,58,61,63,70,92],window_titl:69,windowtitl:19,wish:63,with_bg_task:[12,14],within:[3,16,29,43,45,48,54,85,91,96],without:[18,89,96],won:20,wonder:10,word:[89,90],work:[2,3,5,16,21,30,31,53,55,59,60,63,64,66,68,85,91,92,93,96,97],workflow:[89,91],world:[48,85,91],wors:85,would:[2,8,11,16,17,19,20,21,23,32,40,60,85,90,96],wrap:[8,31,56,96],wrapper:[52,60],write:[2,3,14,17,30,33,34,35,36,40,44,51,52,58,63,68,85,95,96],write_confirm:36,write_copi:96,write_metadata:33,write_period:[30,68],write_raw:14,written:[35,48,50,58,63],wrong:[53,85],x_actn:21,x_fld:21,x_fldc:21,x_rate:21,x_setpoint:21,x_val:[1,97],xml:85,xrm:10,xxx:49,y_val:[1,97],yai:82,yeah:19,year:85,yes:96,yet:[10,33,85,96],yield:[38,62],yokogawa:[47,83],yolo:2,you:[1,2,3,5,8,10,11,12,20,23,24,28,29,30,31,33,34,38,39,40,41,42,47,48,51,56,57,62,63,66,68,70,86,88,89,90,92,93,95,96,97],your:[3,28,34,47,56,57,62,85,89,90,92,93,96,97],yourself:[48,62],yrm:10,yscale:10,z_val:[1,97],zero:[3,22,24,63],ziapinotfoundexcept:10,zip:14,ziuhfli:[10,47],ziuhfli_rrm:10,ziuhfli_sig:10,ziuhfli_xrm:10,ziuhfli_yrm:10,zn20:89,znb20:[23,47],zoom:54,zurich:10},titles:["Agilent 34411A versus Keysight 34465A","Combined Parameters","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes example with Keysight 33500B","QCoDeS Example with ZI UHF-LI","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","QDac and Keysight 34465 sync and buffer","Example script for Keithley driver","Qcodes example ATS_ONWORK","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with Rohde Schwarz ZN20","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","qcodes.BreakIf","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.Loop","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum 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.helpers.in_notebook","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","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:{"33500b":9,"34400a":17,"34411a":[0,13],"34465a":[0,13],"break":[81,82,83],"class":[3,78,79,80],"default":93,"function":[3,34,78,79,80],"import":[0,13,24],"new":[81,82,83,85],"public":80,ATS:48,IPS:21,THERE:24,The:12,Using:[2,10,93],abort:94,action:[12,80],adding:3,aggreg:1,agil:[0,13,17,55],agilent_34400a:55,alazartech:48,all:[5,12],american_magnet:56,ami430:56,arrai:5,arrayparamet:8,async:97,ats9870:48,ats_acquisition_control:48,ats_onwork:16,attent:22,avanc:97,awg5014:[24,63],awg520:63,awg:24,awgfilepars:63,base:3,basic:[10,22,89],benchmark:[14,89],breakif:26,buffer:14,bug:85,can:12,caution:10,chang:[2,81,82,83],changelog:[81,82,83,84],channel:22,chat:90,clever:85,code:[85,87],combin:[1,46,97],combinedparamet:27,command:72,commit:85,commun:86,config:[2,28,80,93],configur:[2,93],content:[10,24,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,85],contribut:85,core:2,creat:3,custom:[2,3],data:[4,12,80],dataarrai:29,dataformat:4,datasav:4,dataset:[30,96],decadac:[18,49],deferred_oper:73,defin:12,demo:[5,12],demodul:10,develop:85,devic:47,dg4000:59,diskio:31,dll:3,driver:[3,15,89,97],dummi:4,dynam:3,e8527d:55,enter:92,exampl:[3,4,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,89,96],experi:[2,12],familiar:85,faq:94,featur:85,file:[24,93],fix:[81,82,83],format:[11,85],formatloc:32,formatt:33,from:4,gener:4,get:[24,90,92],git:85,global:12,gnuplotformat:35,gs200:65,guid:[86,95],harvard:49,help:90,helper:[74,75],hierarchi:88,hour:90,how:94,hp33210a:55,improv:[81,82,83],in_notebook:75,initialis:24,input:10,instal:92,instanti:[5,12],instrument:[3,4,5,7,12,37,80,88,96,97],instrument_driv:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],introduct:96,involv:3,ipinstru:36,ithaco:[19,57],ithaco_1211:57,ivvi:52,keithlei:[15,20],keithley_2000:63,keithley_2400:63,keithley_2600:63,keithley_2700:63,keysight:[0,9,13,14,50],keysight_33500b:50,keysight_34465a:50,lazi:24,linkag:88,list:24,live:12,load:12,load_data:66,locat:[11,12],loop:[0,4,5,12,13,38,80,96],m4i:53,magnet:21,make:24,manual:3,matplot:70,measur:[5,10,12,67,80,94,96,97],mercuri:21,mercuryip:58,messag:85,meta:97,metadata:[6,7,76],misc:80,mode:24,modul:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],more:[3,90,93],multiparamet:8,multipl:12,need:[5,12],new_data:68,note:85,object:88,offic:90,one:[0,13],onli:5,organ:3,output:[5,10,12],overview:[22,96],oxford:58,packag:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],paramet:[1,3,8,39,88,96,97],part:[0,13],phase:91,plan:91,plot:[12,69,70,80],prerequisit:10,privat:79,project:91,provid:12,pull:85,push:85,pyqtgraph:69,qcmatplotlib:70,qcode:[0,2,3,8,9,10,11,12,13,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,81,82,83,89,91,92,93,94],qdac:[14,22,51],qdev:51,qtplot:69,qutech:52,raw:[0,13],read:[0,13],realli:85,remov:3,report:85,request:85,requir:92,respons:96,rigol:59,rohd:23,rohde_schwarz:60,rough:88,run:[4,12,24,85,94],save:[2,93],schwarz:23,scope:10,script:15,send:24,sensor:22,set:[10,12,22],setup:[0,13,85],sg384:62,sgs100a:60,shot:14,signal:10,signal_hound:61,simpl:[1,3],simul:97,singl:14,smr40:60,some:24,sourc:87,spectrum:53,sr560:62,sr830:62,sr865:62,standardparamet:40,stanford_research:62,start:[4,92],station:[71,80,88],stuff:14,style:85,submodul:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],subpackag:47,sweep:[0,13,97],sweeper:10,sweepfixedvalu:41,sweepvalu:[42,88],sync:14,tabl:[10,24],task:43,tektronix:[24,63],temperatur:22,test:[4,47,85],test_suit:[55,64],them:24,todo:[38,42,53,58,60,61,63,88,93,97],triton:[25,58],tutori:[12,97],two:[0,13],typic:12,uhf:10,updat:93,usag:[10,22,85,92,94],usb_sa124b:61,user:95,using:89,util:[72,73,74,75,76,77,80],valid:[77,88],valu:93,variabl:2,versu:[0,13],via:24,visainstru:[3,44],wait:45,waveform:24,weinschel:64,weinschel_8320:64,without:5,word:10,workflow:12,write:97,yokogawa:65,you:85,your:2,ziuhfli:54,zn20:23,znb20:60}}) \ No newline at end of file