Index: fact/tools/pyscripts/tools/fbsl.py
===================================================================
--- fact/tools/pyscripts/tools/fbsl.py	(revision 12819)
+++ fact/tools/pyscripts/tools/fbsl.py	(revision 12820)
@@ -9,4 +9,6 @@
 from myhisto import *
 from hist import *
+
+import sys
 
 year, month, day = 2011, 11, 24
@@ -42,5 +44,4 @@
 bslMeanValues = np.zeros( ( nsteps, rd.NPIX) )
 
-
 def loopEvents( first, last, hist):
     """
@@ -48,5 +49,6 @@
     """
     for ev in range( first, last ):
-        print 'Event', ev
+        if ev%100 == 0: print 'Event', ev
+        
         rd.next()
         # rd.CorrectBaseline()
@@ -80,6 +82,7 @@
 
     pixstephist = hist_array( rd.NPIX, 400, -99.5, 100.5,
-                          'bsl_pix', 'Pixel Baseline',
+                          'bsl_pix_step', 'Pixel Baseline',
                           'sample value in mV', 'Entries / 0.5 mV' )  
+    
     loopEvents( evranges[step], evranges[step+1], pixstephist )
     pixhist.y[:,:] += pixstephist.y[:,:] 
