Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3447)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3448)
@@ -43,4 +43,5 @@
      - small modifications for better readability
      - remove Getters for calibration methods
+     - added flag "UnReliableRun" in fInfo[0]
 
    * mcalib/MCalibrationChargeCam.cc
Index: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h
===================================================================
--- trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h	(revision 3447)
+++ trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h	(revision 3448)
@@ -20,5 +20,6 @@
     enum UnsuitableType_t {
         kUnsuitableRun    = BIT(1),
-        kUnsuitableEvt    = BIT(2)
+        kUnsuitableEvt    = BIT(2),
+        kUnReliableRun    = BIT(3)
     };
 
@@ -60,4 +61,7 @@
     void   SetUnsuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) { fInfo[0] |=  typ; }
     void   SetSuitableEvt(UnsuitableType_t typ=kUnsuitableEvt)   { fInfo[0] &= ~typ; }
+
+    void   SetUnreliableRun(UnsuitableType_t typ=kUnreliableRun) { fInfo[0] |=  typ; }
+    void   SetReliableRun(UnsuitableType_t typ=kUnreliableRun)   { fInfo[0] &= ~typ; }
 
     // Calibration
@@ -103,4 +107,7 @@
     Bool_t IsUnsuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) const { return   fInfo[0]&typ; }
     Bool_t IsSuitableEvt(UnsuitableType_t typ=kUnsuitableEvt) const   { return !(fInfo[0]&typ); }
+
+    Bool_t IsUnreliableRun(UnsuitableType_t typ=kUnreliableRun) const { return   fInfo[0]&typ; }
+    Bool_t IsReliableRun(UnsuitableType_t typ=kUnreliableRun) const   { return !(fInfo[0]&typ); }
 
     Bool_t IsOK() const  { return fInfo[0]==0; }
