Skip to content
Snippets Groups Projects
Commit 8948c486 authored by esarrey's avatar esarrey
Browse files

Fixing inputs

parent fd5994d7
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,6 @@ from pymeasure.display.Qt import QtWidgets
from src.ui import UIWindow, UserManualTab, LiveTab, MotorsTab
from src.procedures import B_Sweep, X_Sweep, Y_Sweep
class MainWindow(UIWindow):
"""
......@@ -36,11 +35,10 @@ class MainWindow(UIWindow):
"""
def __init__(self):
super().__init__(
procedure_class=[B_Sweep, X_Sweep, Y_Sweep],
procedure_class=[B_Sweep, X_Sweep],
inputs=[
['acq_time', 'freq', 'b_min', 'b_max', 'b_step', 'x', 'y', 'full_hyste'],
['acq_time', 'freq', 'x_min', 'x_max', 'x_step', 'y', 'field'],
['acq_time', 'freq', 'y_min', 'y_max', 'y_step', 'x', 'field']
['acq_time','freq','rate','lockin_bw','mod_amp','b_min','b_max','b_step','x','y','full_hyste'],
['acq_time','freq','rate','lockin_bw','mod_amp','x_min','x_max','x_step','y','B']
],
displays=['acq_time', 'freq'],
x_axis='Iteration',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment