Index: fact/tools/pyscripts/pyfact/plotters.py
===================================================================
--- fact/tools/pyscripts/pyfact/plotters.py	(revision 13128)
+++ fact/tools/pyscripts/pyfact/plotters.py	(revision 13129)
@@ -34,25 +34,4 @@
         plt.draw()
             
-def _test_SimplePlotter():
-    """ test of maintaining two independant plotter instances """
-    plt.ion()
-    
-    x = np.linspace(0., 10.)
-    plot1 = SimplePlotter('plot1', x, 'r')
-    print 'plot1.fig.number: ', plot1.fig.number
-    plot2 = SimplePlotter('plot2', x, 'g.')
-    print 'plot2.fig.number: ', plot2.fig.number
-    
-    plot1(np.sin(x) * 7.)
-    plot2(x*x)
-    
-    raw_input('next')
-    
-    plot1(np.cos(x) * 3.)
-    plot2(x)
-    
-    raw_input('next')
-
-
 class Plotter(object):
     """ simple x-y plot """
@@ -321,4 +300,23 @@
         plt.draw()
             
+def _test_SimplePlotter():
+    """ test of maintaining two independant plotter instances """
+    plt.ion()
+    
+    x = np.linspace(0., 10.)
+    plot1 = SimplePlotter('plot1', x, 'r')
+    print 'plot1.fig.number: ', plot1.fig.number
+    plot2 = SimplePlotter('plot2', x, 'g.')
+    print 'plot2.fig.number: ', plot2.fig.number
+    
+    plot1(np.sin(x) * 7.)
+    plot2(x*x)
+    
+    raw_input('next')
+    
+    plot1(np.cos(x) * 3.)
+    plot2(x)
+    
+    raw_input('next')
 
 
