diff --git a/dstat_interface/interface/exp_int.py b/dstat_interface/interface/exp_int.py index 83ebfac7460b5d458d849f156de49ea728fa2aec..397fe91bcc1c2dfb393d54cd3168604c2c31d79e 100755 --- a/dstat_interface/interface/exp_int.py +++ b/dstat_interface/interface/exp_int.py @@ -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."""