Index: /fact/tools/pyscripts/tools/fbsl.py
===================================================================
--- /fact/tools/pyscripts/tools/fbsl.py	(revision 13147)
+++ /fact/tools/pyscripts/tools/fbsl.py	(revision 13148)
@@ -1,3 +1,3 @@
-#!/usr/bin/python
+#!/usr/bin/python -tt
 #
 # Werner Lustermann
@@ -6,5 +6,5 @@
 import numpy as np
 
-import pyfact_rename
+import pyfact
 from myhisto import *
 from hist import *
Index: /fact/tools/pyscripts/tools/plot3.py
===================================================================
--- /fact/tools/pyscripts/tools/plot3.py	(revision 13147)
+++ /fact/tools/pyscripts/tools/plot3.py	(revision 13148)
@@ -1,3 +1,3 @@
-#!/usr/bin/python
+#!/usr/bin/python -tt
 #
 # Werner Lustermann
@@ -5,5 +5,5 @@
 #
 import numpy as np
-from pyfact_rename import RawData
+from pyfact import RawData
 from plotter import Plotter
 from drs_spikes import DRSSpikes
@@ -30,5 +30,5 @@
 remove_spikes = DRSSpikes(7., user_action=spike_ana, debug=False)
 raw_data_plot = Plotter('raw_data', x, 'g.', 
-			xlabel='slice in logical pipeline', ylabel='amplitude in mV')
+            xlabel='slice in logical pipeline', ylabel='amplitude in mV')
 rem_spikes_plot = Plotter('rem_spikes', x, 'r.', xlabel='slice in logical pipeline', 
                           ylabel='amplitude in mV')
@@ -57,7 +57,7 @@
         data, scell, tt = run.next()
     if inp != 'q':
-    	print data[ch, 0:20]
-    	raw_data_plot(data[ch,:])
-	# fdata = remove_spikes(data)
-	# rem_spikes_plot(fdata[ch,:])
+        print data[ch, 0:20]
+        raw_data_plot(data[ch,:])
+        # fdata = remove_spikes(data)
+        # rem_spikes_plot(fdata[ch,:])
 
