├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── pyOptomip.iml ├── pyOptomip2.iml ├── pyOptomip3.iml └── vcs.xml ├── Documentation ├── Assembly Instructions.pdf ├── Instrument Information.pdf ├── LICENSE.txt ├── PyOptomip User's Guide.pdf └── Troubleshooting Guide.pdf ├── README.md ├── SiEPIClab_Color.png ├── pyOptomip ├── .gitignore ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── pyOptomip.iml │ ├── shelf │ │ ├── Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m__[Changes] │ │ │ └── shelved.patch │ │ └── Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m___Changes_.xml │ ├── vcs.xml │ └── workspace.xml ├── BSC203.py ├── BSC203MotorPanel.py ├── BSC203MotorParameters.py ├── CameraPanel.py ├── Changelog.txt ├── CorvusEco.py ├── CorvusEcoFrame.py ├── CorvusEcoParameters.py ├── ElectroOpticDevice.py ├── MGMotorPanel.py ├── MGMotorParameters.py ├── MGMotor_inst.py ├── N77Det_instr.py ├── N77Det_instrParameters.py ├── Qontrol.py ├── QontrolMotorPanel.py ├── QontrolMotorParameters.py ├── SMU.py ├── SMUFrame.py ├── SMUParameters.py ├── SMUTestSuite.py ├── ScaleFactor.csv ├── TestParameters.yaml ├── TestParameters_StandAlone.py ├── TestParameters_revised.py ├── TestParameters_revised_standalone.py ├── TestingParametersTemplate.csv ├── TestingParametersTestSuite.py ├── __pycache__ │ ├── CorvusEco.cpython-39.pyc │ ├── CorvusEcoFrame.cpython-39.pyc │ ├── CorvusEcoParameters.cpython-39.pyc │ ├── ElectroOpticDevice.cpython-39.pyc │ ├── MGMotorPanel.cpython-39.pyc │ ├── MGMotorParameters.cpython-39.pyc │ ├── MGMotor_inst.cpython-39.pyc │ ├── N77Det_instrParameters.cpython-39.pyc │ ├── Qontrol.cpython-39.pyc │ ├── QontrolMotorPanel.cpython-39.pyc │ ├── QontrolMotorParameters.cpython-39.pyc │ ├── SMU.cpython-39.pyc │ ├── SMUFrame.cpython-39.pyc │ ├── SMUParameters.cpython-39.pyc │ ├── TestParameters.cpython-39.pyc │ ├── autoMeasure.cpython-39.pyc │ ├── autoMeasurePanel.cpython-39.pyc │ ├── autoMeasureProgressDialog.cpython-39.pyc │ ├── config.cpython-39.pyc │ ├── dummyLaserParameters.cpython-39.pyc │ ├── filterFrame.cpython-39.pyc │ ├── fineAlign.cpython-39.pyc │ ├── fineAlignDialog.cpython-39.pyc │ ├── fineAlignPanel.cpython-39.pyc │ ├── fineAlignSettings.cpython-39.pyc │ ├── hp816x_N77Det_instr.cpython-39.pyc │ ├── hp816x_N77Det_instrParameters.cpython-39.pyc │ ├── hp816x_instr.cpython-39.pyc │ ├── hp816x_instrParameters.cpython-39.pyc │ ├── instrumentFrame.cpython-39.pyc │ ├── instrumentFrame_withtabs.cpython-39.pyc │ ├── laserPanel.cpython-39.pyc │ ├── laserPanel_hometab.cpython-39.pyc │ ├── logWriter.cpython-39.pyc │ ├── measurementRoutines.cpython-39.pyc │ ├── myMatplotlibPanel.cpython-39.pyc │ ├── myMatplotlibPanel_pyplot.cpython-39.pyc │ ├── outputlogPanel.cpython-39.pyc │ └── pyOptomip.cpython-39.pyc ├── autoMeasure.py ├── autoMeasurePanel.py ├── autoMeasureProgressDialog.py ├── autoMeasureTestSuite.py ├── autoMeasureThread.py ├── autoMeasureThread2.py ├── documentationpanel.py ├── dummyCorvusFrame.py ├── dummyCorvusParameters.py ├── dummyCorvus_instr.py ├── dummyLaserPanel.py ├── dummyLaserParameters.py ├── dummyLaser_instr.py ├── filterFrame.py ├── fineAlign.py ├── fineAlignDialog.py ├── fineAlignPanel.py ├── fineAlignSettings.py ├── gpibComboBox.py ├── hp816x_N77Det_instr.py ├── hp816x_N77Det_instrParameters.py ├── hp816x_instr.py ├── hp816x_instrParameters.py ├── hyperlinktest.py ├── informationframes.py ├── instr_status.py ├── instrumentFrame.py ├── instrumentFrame_withtabs.py ├── ivSweepTestResults.txt ├── laserPanel.py ├── laserPanel_hometab.py ├── logWriter.py ├── measurementRoutines.py ├── myMatplotlibPanel.py ├── myMatplotlibPanel_pyplot.py ├── outputlogPanel.py ├── pyOptomip.bat ├── pyOptomip.pyw └── setup.py └── requirements.txt /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pyOptomip.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/pyOptomip.iml -------------------------------------------------------------------------------- /.idea/pyOptomip2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/pyOptomip2.iml -------------------------------------------------------------------------------- /.idea/pyOptomip3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/pyOptomip3.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Documentation/Assembly Instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/Documentation/Assembly Instructions.pdf -------------------------------------------------------------------------------- /Documentation/Instrument Information.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/Documentation/Instrument Information.pdf -------------------------------------------------------------------------------- /Documentation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/Documentation/LICENSE.txt -------------------------------------------------------------------------------- /Documentation/PyOptomip User's Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/Documentation/PyOptomip User's Guide.pdf -------------------------------------------------------------------------------- /Documentation/Troubleshooting Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/Documentation/Troubleshooting Guide.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/README.md -------------------------------------------------------------------------------- /SiEPIClab_Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/SiEPIClab_Color.png -------------------------------------------------------------------------------- /pyOptomip/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | **/__pycache__/ 3 | *.pyc -------------------------------------------------------------------------------- /pyOptomip/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyOptomip/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/misc.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/modules.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/pyOptomip.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/pyOptomip.iml -------------------------------------------------------------------------------- /pyOptomip/.idea/shelf/Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m__[Changes]/shelved.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/shelf/Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m__[Changes]/shelved.patch -------------------------------------------------------------------------------- /pyOptomip/.idea/shelf/Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m___Changes_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/shelf/Uncommitted_changes_before_Update_at_2022-10-03_10_47_a_m___Changes_.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/vcs.xml -------------------------------------------------------------------------------- /pyOptomip/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/.idea/workspace.xml -------------------------------------------------------------------------------- /pyOptomip/BSC203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/BSC203.py -------------------------------------------------------------------------------- /pyOptomip/BSC203MotorPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/BSC203MotorPanel.py -------------------------------------------------------------------------------- /pyOptomip/BSC203MotorParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/BSC203MotorParameters.py -------------------------------------------------------------------------------- /pyOptomip/CameraPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/CameraPanel.py -------------------------------------------------------------------------------- /pyOptomip/Changelog.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyOptomip/CorvusEco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/CorvusEco.py -------------------------------------------------------------------------------- /pyOptomip/CorvusEcoFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/CorvusEcoFrame.py -------------------------------------------------------------------------------- /pyOptomip/CorvusEcoParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/CorvusEcoParameters.py -------------------------------------------------------------------------------- /pyOptomip/ElectroOpticDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/ElectroOpticDevice.py -------------------------------------------------------------------------------- /pyOptomip/MGMotorPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/MGMotorPanel.py -------------------------------------------------------------------------------- /pyOptomip/MGMotorParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/MGMotorParameters.py -------------------------------------------------------------------------------- /pyOptomip/MGMotor_inst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/MGMotor_inst.py -------------------------------------------------------------------------------- /pyOptomip/N77Det_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/N77Det_instr.py -------------------------------------------------------------------------------- /pyOptomip/N77Det_instrParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/N77Det_instrParameters.py -------------------------------------------------------------------------------- /pyOptomip/Qontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/Qontrol.py -------------------------------------------------------------------------------- /pyOptomip/QontrolMotorPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/QontrolMotorPanel.py -------------------------------------------------------------------------------- /pyOptomip/QontrolMotorParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/QontrolMotorParameters.py -------------------------------------------------------------------------------- /pyOptomip/SMU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/SMU.py -------------------------------------------------------------------------------- /pyOptomip/SMUFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/SMUFrame.py -------------------------------------------------------------------------------- /pyOptomip/SMUParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/SMUParameters.py -------------------------------------------------------------------------------- /pyOptomip/SMUTestSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/SMUTestSuite.py -------------------------------------------------------------------------------- /pyOptomip/ScaleFactor.csv: -------------------------------------------------------------------------------- 1 | 0.8 2 | 0.8 3 | 1.1071487177940904 4 | -------------------------------------------------------------------------------- /pyOptomip/TestParameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/TestParameters.yaml -------------------------------------------------------------------------------- /pyOptomip/TestParameters_StandAlone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/TestParameters_StandAlone.py -------------------------------------------------------------------------------- /pyOptomip/TestParameters_revised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/TestParameters_revised.py -------------------------------------------------------------------------------- /pyOptomip/TestParameters_revised_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/TestParameters_revised_standalone.py -------------------------------------------------------------------------------- /pyOptomip/TestingParametersTemplate.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyOptomip/TestingParametersTestSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/TestingParametersTestSuite.py -------------------------------------------------------------------------------- /pyOptomip/__pycache__/CorvusEco.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/CorvusEco.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/CorvusEcoFrame.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/CorvusEcoFrame.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/CorvusEcoParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/CorvusEcoParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/ElectroOpticDevice.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/ElectroOpticDevice.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/MGMotorPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/MGMotorPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/MGMotorParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/MGMotorParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/MGMotor_inst.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/MGMotor_inst.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/N77Det_instrParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/N77Det_instrParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/Qontrol.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/Qontrol.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/QontrolMotorPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/QontrolMotorPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/QontrolMotorParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/QontrolMotorParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/SMU.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/SMU.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/SMUFrame.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/SMUFrame.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/SMUParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/SMUParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/TestParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/TestParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/autoMeasure.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/autoMeasure.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/autoMeasurePanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/autoMeasurePanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/autoMeasureProgressDialog.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/autoMeasureProgressDialog.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/dummyLaserParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/dummyLaserParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/filterFrame.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/filterFrame.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/fineAlign.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/fineAlign.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/fineAlignDialog.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/fineAlignDialog.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/fineAlignPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/fineAlignPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/fineAlignSettings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/fineAlignSettings.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/hp816x_N77Det_instr.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/hp816x_N77Det_instr.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/hp816x_N77Det_instrParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/hp816x_N77Det_instrParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/hp816x_instr.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/hp816x_instr.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/hp816x_instrParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/hp816x_instrParameters.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/instrumentFrame.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/instrumentFrame.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/instrumentFrame_withtabs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/instrumentFrame_withtabs.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/laserPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/laserPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/laserPanel_hometab.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/laserPanel_hometab.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/logWriter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/logWriter.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/measurementRoutines.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/measurementRoutines.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/myMatplotlibPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/myMatplotlibPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/myMatplotlibPanel_pyplot.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/myMatplotlibPanel_pyplot.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/outputlogPanel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/outputlogPanel.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/__pycache__/pyOptomip.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/__pycache__/pyOptomip.cpython-39.pyc -------------------------------------------------------------------------------- /pyOptomip/autoMeasure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasure.py -------------------------------------------------------------------------------- /pyOptomip/autoMeasurePanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasurePanel.py -------------------------------------------------------------------------------- /pyOptomip/autoMeasureProgressDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasureProgressDialog.py -------------------------------------------------------------------------------- /pyOptomip/autoMeasureTestSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasureTestSuite.py -------------------------------------------------------------------------------- /pyOptomip/autoMeasureThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasureThread.py -------------------------------------------------------------------------------- /pyOptomip/autoMeasureThread2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/autoMeasureThread2.py -------------------------------------------------------------------------------- /pyOptomip/documentationpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/documentationpanel.py -------------------------------------------------------------------------------- /pyOptomip/dummyCorvusFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyCorvusFrame.py -------------------------------------------------------------------------------- /pyOptomip/dummyCorvusParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyCorvusParameters.py -------------------------------------------------------------------------------- /pyOptomip/dummyCorvus_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyCorvus_instr.py -------------------------------------------------------------------------------- /pyOptomip/dummyLaserPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyLaserPanel.py -------------------------------------------------------------------------------- /pyOptomip/dummyLaserParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyLaserParameters.py -------------------------------------------------------------------------------- /pyOptomip/dummyLaser_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/dummyLaser_instr.py -------------------------------------------------------------------------------- /pyOptomip/filterFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/filterFrame.py -------------------------------------------------------------------------------- /pyOptomip/fineAlign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/fineAlign.py -------------------------------------------------------------------------------- /pyOptomip/fineAlignDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/fineAlignDialog.py -------------------------------------------------------------------------------- /pyOptomip/fineAlignPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/fineAlignPanel.py -------------------------------------------------------------------------------- /pyOptomip/fineAlignSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/fineAlignSettings.py -------------------------------------------------------------------------------- /pyOptomip/gpibComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/gpibComboBox.py -------------------------------------------------------------------------------- /pyOptomip/hp816x_N77Det_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/hp816x_N77Det_instr.py -------------------------------------------------------------------------------- /pyOptomip/hp816x_N77Det_instrParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/hp816x_N77Det_instrParameters.py -------------------------------------------------------------------------------- /pyOptomip/hp816x_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/hp816x_instr.py -------------------------------------------------------------------------------- /pyOptomip/hp816x_instrParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/hp816x_instrParameters.py -------------------------------------------------------------------------------- /pyOptomip/hyperlinktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/hyperlinktest.py -------------------------------------------------------------------------------- /pyOptomip/informationframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/informationframes.py -------------------------------------------------------------------------------- /pyOptomip/instr_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/instr_status.py -------------------------------------------------------------------------------- /pyOptomip/instrumentFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/instrumentFrame.py -------------------------------------------------------------------------------- /pyOptomip/instrumentFrame_withtabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/instrumentFrame_withtabs.py -------------------------------------------------------------------------------- /pyOptomip/ivSweepTestResults.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyOptomip/laserPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/laserPanel.py -------------------------------------------------------------------------------- /pyOptomip/laserPanel_hometab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/laserPanel_hometab.py -------------------------------------------------------------------------------- /pyOptomip/logWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/logWriter.py -------------------------------------------------------------------------------- /pyOptomip/measurementRoutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/measurementRoutines.py -------------------------------------------------------------------------------- /pyOptomip/myMatplotlibPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/myMatplotlibPanel.py -------------------------------------------------------------------------------- /pyOptomip/myMatplotlibPanel_pyplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/myMatplotlibPanel_pyplot.py -------------------------------------------------------------------------------- /pyOptomip/outputlogPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/outputlogPanel.py -------------------------------------------------------------------------------- /pyOptomip/pyOptomip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/pyOptomip.bat -------------------------------------------------------------------------------- /pyOptomip/pyOptomip.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/pyOptomip/pyOptomip.pyw -------------------------------------------------------------------------------- /pyOptomip/setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiEPIC/SiEPIClab/HEAD/requirements.txt --------------------------------------------------------------------------------