Skip to content
Snippets Groups Projects
Commit 9216f025 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Remove non-existant experiment.

parent a0ac8ac2
Branches
Tags
1 merge request!10Move to gtk3 and new command protocol
......@@ -183,61 +183,6 @@ class Chronoamp(ExpInterface):
for i in table:
self.model.append(i)
class EIS(ExpInterface):
"""Experiment class for EIS."""
id = 'eis'
experiment = exp.EISExp
def __init__(self):
"""Adds entry listings to superclass's self.entry dict"""
super(ExpInterface, self).__init__() # initialize GObject
self.name = "Impedance Spectroscopy"
self.entry = {} # to be used only for str parameters
self._params = None
self.window = Gtk.ScrolledWindow()
self.window.set_vexpand(True)
grid = Gtk.Grid()
grid.set_column_homogeneous(False)
entries = {'start' : 'Start (Hz)',
'stop' : 'Stop (Hz)',
'n_increments' : 'Number of steps',
'cycles' : 'Number of settling cycles'}
for n, i in enumerate(entries.items()):
key, value = i
grid.attach(Gtk.Label(label=value), 0, n, 1, 1)
self.entry[key] = Gtk.Entry()
grid.attach(self.entry[key], 1, n, 1, 1)
buttons = ('')
self.window.add(grid)
def get_window(self):
return self.window
def _fill_params(self):
super(EIS, self)._fill_params()
self._params['cyclic_true'] = False
def _get_params(self):
"""Updates self._params from UI."""
super(EIS, self)._get_params()
self._params['cyclic_true'] = self.builder.get_object(
'cyclic_checkbutton').get_active()
def _set_params(self):
"""Updates UI with new parameters."""
super(EIS, self)._set_params()
self.builder.get_object('cyclic_checkbutton').set_active(
self._params['cyclic_true'])
class LSV(ExpInterface):
"""Experiment class for LSV."""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment