Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 6349)
+++ trunk/MagicSoft/Mars/Changelog	(revision 6350)
@@ -58,4 +58,8 @@
      - removed an obsolete line
      - removed a debug line which should not be there
+
+   * mimage/MHillas.h:
+     - added new Getter GetDeist0 returning the distance to the 
+       camera center
 
 
Index: trunk/MagicSoft/Mars/mimage/MHillas.h
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHillas.h	(revision 6349)
+++ trunk/MagicSoft/Mars/mimage/MHillas.h	(revision 6350)
@@ -37,10 +37,11 @@
     void Paint(Option_t *opt=NULL);
 
-    Float_t GetLength() const { return fLength; }
-    Float_t GetWidth() const  { return fWidth; }
-    Float_t GetDelta() const  { return fDelta; }
-    Float_t GetSize() const   { return fSize; }
-    Float_t GetMeanX() const  { return fMeanX; }
-    Float_t GetMeanY() const  { return fMeanY; }
+    Float_t  GetLength() const { return fLength; }
+    Float_t  GetWidth() const  { return fWidth; }
+    Float_t  GetDelta() const  { return fDelta; }
+    Float_t  GetSize() const   { return fSize; }
+    Float_t  GetMeanX() const  { return fMeanX; }
+    Float_t  GetMeanY() const  { return fMeanY; }
+    Double_t GetDist0() const  { return TMath::Hypot(fMeanX, fMeanY); } // return distance to center
 
     TVector2 GetMean() const;
