Index: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 7011)
+++ trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc	(revision 7012)
@@ -448,4 +448,5 @@
   *fLog << endl;
   
+  PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded");
   PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS");
   PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal smaller 3 Pedestal RMS");
@@ -458,4 +459,6 @@
   PrintBadPixels(MBadPixelsPix::kHiGainOverFlow,"High-Gain Histogram Overflow");
   PrintBadPixels(MBadPixelsPix::kLoGainOverFlow,"Low-Gain Histogram Overflow");
+  PrintBadPixels(MBadPixelsPix::kDeadPedestalRms,"Presumably dead from Ped. Rms");
+  PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times");
 
   *fLog << endl;
@@ -559,4 +562,5 @@
 
         (*this)[idx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun);
+        (*this)[idx].SetUncalibrated(MBadPixelsPix::kPreviouslyExcluded);
     }
 }
Index: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
===================================================================
--- trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h	(revision 7011)
+++ trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h	(revision 7012)
@@ -31,4 +31,5 @@
     // All types are initialized to normal behaviour
     enum UncalibratedType_t {
+      kPreviouslyExcluded       = BIT(0),
       kHiGainNotFitted          = BIT(1),
       kLoGainNotFitted          = BIT(2), 
@@ -52,5 +53,7 @@
       kLoGainOverFlow           = BIT(20),
       kHiLoNotFitted            = BIT(21),
-      kHiLoOscillating          = BIT(22)
+      kHiLoOscillating          = BIT(22),
+      kDeadPedestalRms          = BIT(23),
+      kFluctuatingArrivalTimes  = BIT(24)
     };
     
@@ -101,5 +104,8 @@
       if (IsUncalibrated( kHiGainOverFlow      )) return 7;
       if (IsUncalibrated( kLoGainOverFlow      )) return 8;
-      return 9;
+      if (IsUncalibrated( kDeadPedestalRms     )) return 9;
+      if (IsUncalibrated( kFluctuatingArrivalTimes )) return 10;
+      if (IsUncalibrated( kPreviouslyExcluded      )) return 11;
+      return 12;
     }
     
Index: trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc	(revision 7011)
+++ trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc	(revision 7012)
@@ -18,5 +18,5 @@
 !   Author(s): Thomas Bretz, 4/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
 !
-!   Copyright: MAGIC Software Development, 2003-2004
+!   Copyright: MAGIC Software Development, 2003-2005
 !
 !
@@ -474,5 +474,5 @@
 
     // Add copyright notice
-    l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2004");
+    l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2005");
     fList->Add(l);
     f->AddFrame(l, layb);
