├── .gitattributes ├── .gitignore ├── Configuration ├── Instruments │ ├── 2-samples.cfg │ ├── CurrentInstruments.cfg │ ├── ppms-6221-2182.cfg │ └── ppms-LR700.cfg └── Parameters │ └── CurrentParameters.cfg ├── Doc PyGMI v3.0.pdf ├── License.txt ├── ListofMainUIChildren.txt ├── Macro ├── 20160914_test_newppmsdriver.mac ├── RT curve with VTI ramp.mac └── test.mac ├── Measurements data ├── default.txt └── mytestdata.txt ├── PyGMI_Launcher.py ├── PyGMI_files ├── Config_menu.py ├── Config_menu.ui ├── Config_menu_Ui.py ├── Frontpanel_values.py ├── GUI_Compiler.py ├── Graphical_User_Interface.ui ├── Graphical_User_Interface_Ui.py ├── Instruments │ ├── AAA_Test_instruments.py │ ├── AMI135_LHe_meter.py │ ├── CryoCon.py │ ├── ES7215_BNCswitch.py │ ├── Hioki3522.py │ ├── Keithley2182A.py │ ├── Keithley2420.py │ ├── Keithley6221.py │ ├── LR700.py │ ├── Lakeshore340.py │ ├── Lakeshore372w3708scan.py │ ├── MyPPMSDLL │ │ ├── MyPPMSDLL.aliases │ │ ├── MyPPMSDLL.dll │ │ ├── MyPPMSDLL.h │ │ ├── MyPPMSDLL.ini │ │ └── MyPPMSDLL.lib │ ├── PPMS.py │ ├── SR830.py │ ├── Tektronix_TDS2024C.py │ ├── VXMStepmotor.py │ └── __init__.py ├── Instruments_connection.py ├── Instruments_connection.ui ├── Instruments_connection_Ui.py ├── Instruments_panels │ ├── AAA_Test_instruments.py │ ├── AAA_Test_instruments.ui │ ├── AAA_Test_instruments_Ui.py │ ├── Keithley6221.py │ ├── Keithley6221.ui │ ├── Keithley6221_Ui.py │ ├── Lakeshore340.py │ ├── Lakeshore340.ui │ ├── Lakeshore340_Ui.py │ ├── SR830.py │ ├── SR830.ui │ ├── SR830_Ui.py │ └── __init__.py ├── Macro_editor.py ├── Macro_editor.ui ├── Macro_editor_Ui.py ├── Macro_editor_textbox.py ├── Main.py ├── Measurements_programs │ ├── Demo_script.py │ ├── Hioki_f_scan.py │ ├── IV_3pts_ppms.py │ ├── IV_LR700_ppms.py │ ├── LHe_refill.py │ ├── LK372_PPMS_continuous.py │ ├── LK372_example.py │ ├── R_LR700_ppms.py │ ├── V_3pts_3axis.py │ ├── V_3pts_3axis_2_samples.py │ ├── V_3pts_3axis_deltamode.py │ ├── V_3pts_3axis_with_1_bias.py │ ├── V_3pts_3axis_with_2_bias.py │ ├── V_3pts_plus_SRS830.py │ ├── V_3pts_ppms.py │ ├── __init__.py │ └── ppms_example.py ├── New_Instrument_template.py ├── New_Measurements_program_template.py ├── Plot2DDataWidget.py ├── Plot2DDataWidget.ui ├── Plot2DDataWidget_Ui.py ├── TableWith2Buttons.py ├── TableWith2Buttons.ui ├── TableWith2Buttons4Col.py ├── TableWith2Buttons4Col.ui ├── TableWith2Buttons4Col_Ui.py ├── TableWith2Buttons_Ui.py ├── __init__.py ├── measurements_done_alert.py └── retry_decorator.py ├── Python3patch.py ├── README.txt ├── check_walker.py ├── pathcorrectionpatch.py ├── pyQt4topyQt5patch.py └── pyvisaup1p5patch.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/.gitignore -------------------------------------------------------------------------------- /Configuration/Instruments/2-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Configuration/Instruments/2-samples.cfg -------------------------------------------------------------------------------- /Configuration/Instruments/CurrentInstruments.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Configuration/Instruments/CurrentInstruments.cfg -------------------------------------------------------------------------------- /Configuration/Instruments/ppms-6221-2182.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Configuration/Instruments/ppms-6221-2182.cfg -------------------------------------------------------------------------------- /Configuration/Instruments/ppms-LR700.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Configuration/Instruments/ppms-LR700.cfg -------------------------------------------------------------------------------- /Configuration/Parameters/CurrentParameters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Configuration/Parameters/CurrentParameters.cfg -------------------------------------------------------------------------------- /Doc PyGMI v3.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Doc PyGMI v3.0.pdf -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/License.txt -------------------------------------------------------------------------------- /ListofMainUIChildren.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/ListofMainUIChildren.txt -------------------------------------------------------------------------------- /Macro/20160914_test_newppmsdriver.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Macro/20160914_test_newppmsdriver.mac -------------------------------------------------------------------------------- /Macro/RT curve with VTI ramp.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Macro/RT curve with VTI ramp.mac -------------------------------------------------------------------------------- /Macro/test.mac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Measurements data/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Measurements data/default.txt -------------------------------------------------------------------------------- /Measurements data/mytestdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Measurements data/mytestdata.txt -------------------------------------------------------------------------------- /PyGMI_Launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_Launcher.py -------------------------------------------------------------------------------- /PyGMI_files/Config_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Config_menu.py -------------------------------------------------------------------------------- /PyGMI_files/Config_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Config_menu.ui -------------------------------------------------------------------------------- /PyGMI_files/Config_menu_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Config_menu_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Frontpanel_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Frontpanel_values.py -------------------------------------------------------------------------------- /PyGMI_files/GUI_Compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/GUI_Compiler.py -------------------------------------------------------------------------------- /PyGMI_files/Graphical_User_Interface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Graphical_User_Interface.ui -------------------------------------------------------------------------------- /PyGMI_files/Graphical_User_Interface_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Graphical_User_Interface_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/AAA_Test_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/AAA_Test_instruments.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/AMI135_LHe_meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/AMI135_LHe_meter.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/CryoCon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/CryoCon.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/ES7215_BNCswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/ES7215_BNCswitch.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Hioki3522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Hioki3522.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Keithley2182A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Keithley2182A.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Keithley2420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Keithley2420.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Keithley6221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Keithley6221.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/LR700.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/LR700.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Lakeshore340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Lakeshore340.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Lakeshore372w3708scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Lakeshore372w3708scan.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.aliases -------------------------------------------------------------------------------- /PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.dll -------------------------------------------------------------------------------- /PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.h -------------------------------------------------------------------------------- /PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.ini -------------------------------------------------------------------------------- /PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/MyPPMSDLL/MyPPMSDLL.lib -------------------------------------------------------------------------------- /PyGMI_files/Instruments/PPMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/PPMS.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/SR830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/SR830.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/Tektronix_TDS2024C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/Tektronix_TDS2024C.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/VXMStepmotor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/VXMStepmotor.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments/__init__.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_connection.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_connection.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_connection.ui -------------------------------------------------------------------------------- /PyGMI_files/Instruments_connection_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_connection_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/AAA_Test_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/AAA_Test_instruments.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/AAA_Test_instruments.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/AAA_Test_instruments.ui -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/AAA_Test_instruments_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/AAA_Test_instruments_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Keithley6221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Keithley6221.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Keithley6221.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Keithley6221.ui -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Keithley6221_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Keithley6221_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Lakeshore340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Lakeshore340.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Lakeshore340.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Lakeshore340.ui -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/Lakeshore340_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/Lakeshore340_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/SR830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/SR830.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/SR830.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/SR830.ui -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/SR830_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/SR830_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Instruments_panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Instruments_panels/__init__.py -------------------------------------------------------------------------------- /PyGMI_files/Macro_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Macro_editor.py -------------------------------------------------------------------------------- /PyGMI_files/Macro_editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Macro_editor.ui -------------------------------------------------------------------------------- /PyGMI_files/Macro_editor_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Macro_editor_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/Macro_editor_textbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Macro_editor_textbox.py -------------------------------------------------------------------------------- /PyGMI_files/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Main.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/Demo_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/Demo_script.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/Hioki_f_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/Hioki_f_scan.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/IV_3pts_ppms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/IV_3pts_ppms.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/IV_LR700_ppms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/IV_LR700_ppms.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/LHe_refill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/LHe_refill.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/LK372_PPMS_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/LK372_PPMS_continuous.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/LK372_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/LK372_example.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/R_LR700_ppms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/R_LR700_ppms.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_3axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_3axis.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_3axis_2_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_3axis_2_samples.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_3axis_deltamode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_3axis_deltamode.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_3axis_with_1_bias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_3axis_with_1_bias.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_3axis_with_2_bias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_3axis_with_2_bias.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_plus_SRS830.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_plus_SRS830.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/V_3pts_ppms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/V_3pts_ppms.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/__init__.py -------------------------------------------------------------------------------- /PyGMI_files/Measurements_programs/ppms_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Measurements_programs/ppms_example.py -------------------------------------------------------------------------------- /PyGMI_files/New_Instrument_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/New_Instrument_template.py -------------------------------------------------------------------------------- /PyGMI_files/New_Measurements_program_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/New_Measurements_program_template.py -------------------------------------------------------------------------------- /PyGMI_files/Plot2DDataWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Plot2DDataWidget.py -------------------------------------------------------------------------------- /PyGMI_files/Plot2DDataWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Plot2DDataWidget.ui -------------------------------------------------------------------------------- /PyGMI_files/Plot2DDataWidget_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/Plot2DDataWidget_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons.py -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons.ui -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons4Col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons4Col.py -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons4Col.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons4Col.ui -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons4Col_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons4Col_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/TableWith2Buttons_Ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/TableWith2Buttons_Ui.py -------------------------------------------------------------------------------- /PyGMI_files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/__init__.py -------------------------------------------------------------------------------- /PyGMI_files/measurements_done_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/measurements_done_alert.py -------------------------------------------------------------------------------- /PyGMI_files/retry_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/PyGMI_files/retry_decorator.py -------------------------------------------------------------------------------- /Python3patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/Python3patch.py -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/README.txt -------------------------------------------------------------------------------- /check_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/check_walker.py -------------------------------------------------------------------------------- /pathcorrectionpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/pathcorrectionpatch.py -------------------------------------------------------------------------------- /pyQt4topyQt5patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/pyQt4topyQt5patch.py -------------------------------------------------------------------------------- /pyvisaup1p5patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Argonne-National-Laboratory/PyGMI/HEAD/pyvisaup1p5patch.py --------------------------------------------------------------------------------