Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5501)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5502)
@@ -22,4 +22,8 @@
 
  2004/11/28: Markus Gaug
+
+   * mpedestal/MPedestalPix.cc
+     - removed (fPedestal>=0) in the IsValid() function since now, there 
+       can be valid pedestal Pix's with negative "pedestal".
 
    * msignal/MExtractor.cc
Index: trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc
===================================================================
--- trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc	(revision 5501)
+++ trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc	(revision 5502)
@@ -127,8 +127,8 @@
 // ------------------------------------------------------------------------
 //
-// Return kTRUE if pedestal AND pedestal rms is valid (>=0)
+// Return kTRUE if pedestal rms is valid (>=0)
 //
 Bool_t MPedestalPix::IsValid() const
 {
-    return fPedestal>=0 && fPedestalRms>=0;
+    return fPedestalRms>=0;
 }
