Index: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 8428)
+++ trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 8446)
@@ -1,4 +1,4 @@
 /* ======================================================================== *\
-! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.49 2007-04-20 08:55:17 tbretz Exp $
+! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.50 2007-04-25 14:39:41 tbretz Exp $
 ! --------------------------------------------------------------------------
 !
@@ -394,5 +394,4 @@
     
   Int_t count = 0;
-  Int_t full  = 0;
 
   for (Int_t i=0; i<GetSize(); i++)
@@ -401,24 +400,12 @@
         {
           *fLog << i << " ";
-	  full++;
           count ++;
         }
-      
-      if (count == 0)
-	continue;
-      
-      if (!(full % 25))
-	{
-	  full = 0;
-	  *fLog << endl;
-	}
-    }
-  *fLog << endl;
+    }
   *fLog << count << " normal pixels" << endl;
   *fLog << endl;
 
   *fLog << "Pixels unsuited for the whole run:" << endl;
-  
-  full  = 0;
+
   count = 0;
   for (Int_t i=0; i<GetSize(); i++)
@@ -427,25 +414,13 @@
         {
           *fLog << i << " ";
-	  full++;
           count ++;
         }
-      
-      if (count == 0)
-        continue;
-      
-      if (!(full % 25))
-	{
-	  full = 0;
-	  *fLog << endl;
-	}
-    }
-
-  *fLog << endl;
+    }
+
   *fLog << count << " unsuited pixels per run :-(" << endl;
   *fLog << endl;
-  
+
   *fLog << "Pixels unsuited for this event:" << endl;
 
-  full  = 0;
   count = 0;
   for (Int_t i=0; i<GetSize(); i++)
@@ -454,27 +429,15 @@
         {
           *fLog << i << " ";
-	  full++;
           count ++;
         }
-      
-      if (count == 0)
-        continue;
-      
-      if (!(full % 25))
-	{
-	  full  = 0;
-	  *fLog << endl;
-	}
-    }
-
-  *fLog << endl;
+    }
+
   *fLog << count << " unsuited pixels per event :-(" << endl;
   *fLog << endl;
-  
-  full  = 0;
+
   count = 0;
-  
+
   *fLog << all << "Pixels unreliable for the whole run:" << endl;
-  
+
   for (Int_t i=0; i<GetSize(); i++)
     {
@@ -482,19 +445,8 @@
         {
           *fLog << i << " ";
-	  full++;
           count ++;
         }
-      
-      if (count == 0)
-        continue;
-      
-      if (!(full % 25))
-	{
-	  full  = 0;
-	  *fLog << endl;
-	}
-    }
-  
-  *fLog << endl;
+    }
+
   *fLog << count << " unreliable pixels :-(" << endl;
   *fLog << endl;
@@ -502,5 +454,5 @@
   *fLog << all << "Unsuited pixels statistics:" << endl;
   *fLog << endl;
-  
+
   PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded");
   PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS");
@@ -519,5 +471,5 @@
   *fLog << all << "Unreliable pixels statistics:" << endl;
   *fLog << endl;
-  
+
   PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal Sigma smaller Pedestal RMS");
   PrintBadPixels(MBadPixelsPix::kHiGainNotFitted    ,"High Gain Signals could not be fitted");
@@ -554,5 +506,4 @@
   *fLog << "Pixels with " << text << ": " << endl;
   UInt_t count = 0;
-  UInt_t full  = 0;
 
   for (Int_t i=0; i<GetSize(); i++)
@@ -561,19 +512,8 @@
         {
           *fLog << i << " ";
-	  full++;
           count++;
         }
-      
-      if (count == 0)
-        continue;
-      
-      if (!(full % 25))
-	{
-	  full  = 0;
-	  *fLog << endl;
-	}
     }
   
-  *fLog << endl;
   *fLog << Form("%3i",count) << " pixels in total " << endl;
 }
