Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 2936)
+++ trunk/MagicSoft/Mars/Changelog	(revision 2937)
@@ -4,4 +4,13 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/01/28: Thomas Bretz
+
+   * manalysis/MPedestalCam.cc:
+     - removed unwanted CheckBound from operators. CheckBounds is ONLY
+       ment for really old MC files and will be removed in the future
+       anyhow.
+
+
+
  2004/01/28: Sebastian Raducci
 
Index: trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc	(revision 2936)
+++ trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc	(revision 2937)
@@ -102,7 +102,4 @@
 MPedestalPix &MPedestalCam::operator[](Int_t i)
 {
-  if (!CheckBounds(i))
-    return *static_cast<MPedestalPix*>(NULL);
-
   return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
 }
@@ -114,7 +111,4 @@
 MPedestalPix &MPedestalCam::operator[](Int_t i) const
 {
-  if (!CheckBounds(i))
-    return *static_cast<MPedestalPix*>(NULL);
-
   return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
 }
