Remove hooke/plugin/results.py.
authorW. Trevor King <wking@drexel.edu>
Thu, 2 Sep 2010 14:12:59 +0000 (10:12 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 2 Sep 2010 14:12:59 +0000 (10:12 -0400)
I'm not sure what it was for in the first place.  Probably not a great
reason to remove it ;), but if it turns out to have been important, we
can always bring it back later.

hooke/plugin/__init__.py
hooke/plugin/results.py [deleted file]

index 3654bdec1544a36c059edf4027a688e1edee7800..af3dda5664578ac538e2a7d3fed8118bb7859273 100644 (file)
@@ -41,8 +41,6 @@ PLUGIN_MODULES = [
 #    ('multifit', True),
 #    ('pcluster', True),
     ('polymer_fit', True),
-#    ('procplots', True),
-#    ('review', True),
 #    ('showconvoluted', True),
 #    ('superimpose', True),
 #    ('tccd', True),
diff --git a/hooke/plugin/results.py b/hooke/plugin/results.py
deleted file mode 100644 (file)
index e7b67ce..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-
-'''
-results.py
-
-Results commands for Hooke.
-
-Copyright 2010 by Dr. Rolf Schmidt (Concordia University, Canada)
-
-This program is released under the GNU General Public License version 2.
-'''
-
-class resultsCommands(object):
-    '''
-    Results commands to show a certain type of results and to clear results
-    '''
-
-    def _plug_init(self):
-        pass
-
-    def do_clear_results(self):
-        '''
-        Deletes all fitting results from the curve.
-        '''
-        plot = self.GetActivePlot()
-        if plot is not None:
-            plot.results.clear()
-        self.UpdatePlot()
-
-
-    def do_show_results(self):
-        '''
-        Select which type of result should be displayed on the plot.
-        '''
-        self.results_str = self.GetStringFromConfig('results', 'show_results', 'result_type')
-        self.UpdatePlot()