├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── ChannelsViews.enaml ├── DictManager.py ├── DictManagerView.enaml ├── ExpSettingsGUI.py ├── ExpSettingsVal.py ├── ExpSettingsView.enaml ├── LICENSE ├── Libraries.py ├── MeasFilters.py ├── MeasFiltersViews.enaml ├── NOTICE ├── README.md ├── Sweeps.py ├── SweepsViews.enaml ├── analysis └── SSRO.py ├── config.example.json ├── config.py ├── floatbits.py ├── instruments ├── AWGBase.py ├── AWGs.py ├── AWGsViews.enaml ├── Analysers.py ├── Attenuators.py ├── AttenuatorsViews.enaml ├── DCSources.py ├── DCSourcesViews.enaml ├── DigitalAttenuator.py ├── Digitizers.py ├── DigitizersViews.enaml ├── Instrument.py ├── InstrumentManager.py ├── InstrumentManagerView.enaml ├── LabBrick.py ├── MicrowaveSources.py ├── MicrowaveSourcesViews.enaml ├── QPC.py ├── __init__.py ├── drivers │ ├── APS.py │ ├── APS2.py │ ├── Tek5014.py │ ├── Tek7000.py │ └── __init__.py └── plugins.py ├── tests ├── __init__.py └── test_json.py └── widgets ├── __init__.py ├── dialogs.enaml ├── enum_combos.enaml └── qt_list_str_widget.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.awg 3 | *.json 4 | __enamlcache__/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChannelsViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/ChannelsViews.enaml -------------------------------------------------------------------------------- /DictManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/DictManager.py -------------------------------------------------------------------------------- /DictManagerView.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/DictManagerView.enaml -------------------------------------------------------------------------------- /ExpSettingsGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/ExpSettingsGUI.py -------------------------------------------------------------------------------- /ExpSettingsVal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/ExpSettingsVal.py -------------------------------------------------------------------------------- /ExpSettingsView.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/ExpSettingsView.enaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/Libraries.py -------------------------------------------------------------------------------- /MeasFilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/MeasFilters.py -------------------------------------------------------------------------------- /MeasFiltersViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/MeasFiltersViews.enaml -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/README.md -------------------------------------------------------------------------------- /Sweeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/Sweeps.py -------------------------------------------------------------------------------- /SweepsViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/SweepsViews.enaml -------------------------------------------------------------------------------- /analysis/SSRO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/analysis/SSRO.py -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/config.example.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/config.py -------------------------------------------------------------------------------- /floatbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/floatbits.py -------------------------------------------------------------------------------- /instruments/AWGBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/AWGBase.py -------------------------------------------------------------------------------- /instruments/AWGs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/AWGs.py -------------------------------------------------------------------------------- /instruments/AWGsViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/AWGsViews.enaml -------------------------------------------------------------------------------- /instruments/Analysers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/Analysers.py -------------------------------------------------------------------------------- /instruments/Attenuators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/Attenuators.py -------------------------------------------------------------------------------- /instruments/AttenuatorsViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/AttenuatorsViews.enaml -------------------------------------------------------------------------------- /instruments/DCSources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/DCSources.py -------------------------------------------------------------------------------- /instruments/DCSourcesViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/DCSourcesViews.enaml -------------------------------------------------------------------------------- /instruments/DigitalAttenuator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/DigitalAttenuator.py -------------------------------------------------------------------------------- /instruments/Digitizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/Digitizers.py -------------------------------------------------------------------------------- /instruments/DigitizersViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/DigitizersViews.enaml -------------------------------------------------------------------------------- /instruments/Instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/Instrument.py -------------------------------------------------------------------------------- /instruments/InstrumentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/InstrumentManager.py -------------------------------------------------------------------------------- /instruments/InstrumentManagerView.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/InstrumentManagerView.enaml -------------------------------------------------------------------------------- /instruments/LabBrick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/LabBrick.py -------------------------------------------------------------------------------- /instruments/MicrowaveSources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/MicrowaveSources.py -------------------------------------------------------------------------------- /instruments/MicrowaveSourcesViews.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/MicrowaveSourcesViews.enaml -------------------------------------------------------------------------------- /instruments/QPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/QPC.py -------------------------------------------------------------------------------- /instruments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instruments/drivers/APS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/drivers/APS.py -------------------------------------------------------------------------------- /instruments/drivers/APS2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/drivers/APS2.py -------------------------------------------------------------------------------- /instruments/drivers/Tek5014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/drivers/Tek5014.py -------------------------------------------------------------------------------- /instruments/drivers/Tek7000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/drivers/Tek7000.py -------------------------------------------------------------------------------- /instruments/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instruments/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/instruments/plugins.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/widgets/__init__.py -------------------------------------------------------------------------------- /widgets/dialogs.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/widgets/dialogs.enaml -------------------------------------------------------------------------------- /widgets/enum_combos.enaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/widgets/enum_combos.enaml -------------------------------------------------------------------------------- /widgets/qt_list_str_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBN-Q/PyQLab/HEAD/widgets/qt_list_str_widget.py --------------------------------------------------------------------------------