Index: /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 3471)
+++ /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 3472)
@@ -160,6 +160,75 @@
 void MBadPixelsCam::Print(Option_t *o) const
 {
+
     *fLog << all << GetDescriptor() << ":" << endl;
-    fArray->ForEach(TObject, Print)();
+    
+    *fLog << all << "Pixels without problems:" << endl;
+    *fLog << all << endl;
+
+    Int_t count = 0;
+
+    for (Int_t i=0; i<GetSize(); i++)
+      {
+        if ((*this)[i].IsSuitableRun())
+          {
+            *fLog << i << " ";
+            count ++;
+          }
+
+        if (count == 0)
+          continue;
+
+        if (!(count % 25))
+          *fLog << endl;
+      }
+    *fLog << endl;
+    *fLog << all << count << " normal pixels :-))" << endl;    
+    *fLog << endl;
+    count = 0;
+
+
+    *fLog << all << "Pixels unsuited for the whole run:" << endl;
+    *fLog << all << endl;
+
+    for (Int_t i=0; i<GetSize(); i++)
+      {
+        if ((*this)[i].IsUnsuitableRun())
+          {
+            *fLog << i << " ";
+            count ++;
+          }
+
+        if (count == 0)
+          continue;
+
+        if (!(count % 25))
+          *fLog << endl;
+      }
+    *fLog << endl;
+    *fLog << all << count << " unsuited pixels :-(" << endl;    
+    *fLog << endl;
+
+    count = 0;
+
+    *fLog << all << "Pixels unreliable for the whole run:" << endl;
+    *fLog << all << endl;
+
+    for (Int_t i=0; i<GetSize(); i++)
+      {
+        if ((*this)[i].IsUnreliableRun())
+          {
+            *fLog << i << " ";
+            count ++;
+          }
+        
+        if (count == 0)
+          continue;
+
+        if (!(count % 25))
+          *fLog << endl;
+      }
+    *fLog << endl;
+    *fLog << all << count << " unreliable pixels :-(" << endl;    
+    *fLog << endl;
 }
 
Index: /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc	(revision 3471)
+++ /trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc	(revision 3472)
@@ -88,4 +88,5 @@
 }
 
+
 /****************************************************************************
            This is a collection of possible defects for later use
