Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3230)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3231)
@@ -12,4 +12,6 @@
 	variables (more readable).
 
+
+
  2004/02/18: Hendrik Bartko
 
@@ -19,9 +21,15 @@
      - removed the files SignalCint.*
 
+    * mgui/MHexagon.cc
+      - added comment explaining the algorithm.
+
+
 
  2004/01/18: Thomas Bretz
 
-   * manalysis/MPedestalCam.h
+   * manalysis/MPedestalCam.[h,cc]:
      - Changed order of derivements - seems to be VERY important!
+     - changed GetSize from UInt_t to Int_t which is the type
+       of TClonesArray::GetSize() !
 
    * mfileio/MReadReports.cc:
Index: trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc	(revision 3230)
+++ trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc	(revision 3231)
@@ -58,5 +58,4 @@
 
     fArray = new TClonesArray("MPedestalPix", 1);
-    
 }
 
@@ -67,5 +66,5 @@
 MPedestalCam::~MPedestalCam()
 {
-  delete fArray;
+    delete fArray;
 }
 
@@ -86,7 +85,7 @@
 // Get the size of the MPedestalCam
 //
-UInt_t MPedestalCam::GetSize() const
-{
-  return fArray->GetEntriesFast();
+Int_t MPedestalCam::GetSize() const
+{
+    return fArray->GetEntriesFast();
 }
 
@@ -97,5 +96,5 @@
 MPedestalPix &MPedestalCam::operator[](Int_t i)
 {
-  return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
+    return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
 }
 
@@ -106,5 +105,5 @@
 const MPedestalPix &MPedestalCam::operator[](Int_t i) const
 {
-  return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
+    return *static_cast<MPedestalPix*>(fArray->UncheckedAt(i));
 }
 
@@ -113,11 +112,8 @@
 void MPedestalCam::Clear(Option_t *o)
 {
-
     fArray->ForEach(TObject, Clear)();
 
-    fTotalEntries     = 0;
-}
-
-
+    fTotalEntries = 0;
+}
 
 void MPedestalCam::Print(Option_t *o) const
Index: trunk/MagicSoft/Mars/manalysis/MPedestalCam.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MPedestalCam.h	(revision 3230)
+++ trunk/MagicSoft/Mars/manalysis/MPedestalCam.h	(revision 3231)
@@ -35,5 +35,5 @@
 
     // Getters
-    UInt_t  GetSize()         const;
+    Int_t  GetSize()         const;
     ULong_t GetTotalEntries() const { return fTotalEntries; }
 
