Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9349)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9350)
@@ -50,4 +50,7 @@
      - Use the new Resize function of MPhotonEvent to make sure
        that the memory is not allocated forever.
+
+   * mimage/MHHillas.cc, mimage/MMHillas.Ext.cc, mimage/MHHillasSrc.cc:
+     - converted default binning from mm to deg
 
 
Index: trunk/MagicSoft/Mars/mimage/MHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 9349)
+++ trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 9350)
@@ -74,7 +74,7 @@
     fTitle = title ? title : "Source independent image parameters";
 
-    fLength  = new TH1F("Length", "Length of Ellipse",               100,   0, 296.7);
-    fWidth   = new TH1F("Width",  "Width of Ellipse",                100,   0, 296.7);
-    fDistC   = new TH1F("DistC",  "Distance from center of camera",  100,   0, 445);
+    fLength  = new TH1F("Length", "Length of Ellipse",               100,   0, 1.0);
+    fWidth   = new TH1F("Width",  "Width of Ellipse",                100,   0, 1.0);
+    fDistC   = new TH1F("DistC",  "Distance from center of camera",  100,   0, 1.5);
     fDelta   = new TH1F("Delta",  "Angle (Main axis - x-axis)",      101, -90,  90);
 
@@ -114,5 +114,5 @@
     bins.Apply(*fSize);
 
-    fCenter = new TH2F("Center", "Center of gravity", 51, -445, 445, 51, -445, 445);
+    fCenter = new TH2F("Center", "Center of gravity", 51, -1.5, 1.5, 51, -1.5, 1.5);
     fCenter->SetDirectory(NULL);
     fCenter->SetXTitle("x [mm]");
Index: trunk/MagicSoft/Mars/mimage/MHHillasExt.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillasExt.cc	(revision 9349)
+++ trunk/MagicSoft/Mars/mimage/MHHillasExt.cc	(revision 9350)
@@ -122,12 +122,12 @@
     MBinning binsx, binsy;
 
-    binsx.SetEdges(51, -326, 326);
+    binsx.SetEdges(51, -1.1, 1.1);
     binsx.Apply(fHM3Long);
     binsx.Apply(fHM3Trans);
 
-    binsx.SetEdges(51, -593, 593);
+    binsx.SetEdges(51, -2.0, 2.0);
     binsx.Apply(fHAsym);
 
-    binsx.SetEdges(100,     0,  445);
+    binsx.SetEdges(100,     0,  1.5);
     binsy.SetEdges(100, -0.04, 0.04);
     MH::SetBinning(&fHSlopeL, &binsx, &binsy);
Index: trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc	(revision 9349)
+++ trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc	(revision 9350)
@@ -75,7 +75,7 @@
     //
     fAlpha    = new TH1F("Alpha",    "Alpha of Ellipse",                 90,   -90,  90);
-    fDist     = new TH1F("Dist",     "Dist of Ellipse",                  70,     0, 623);
+    fDist     = new TH1F("Dist",     "Dist of Ellipse",                  70,     0, 2.1);
     fCosDA    = new TH1F("CosDA",    "cos(Delta,Alpha) of Ellipse",     101,    -1,   1);
-    fDCA      = new TH1F("DCA",      "Distance of closest aproach",     101,  -500, 500);
+    fDCA      = new TH1F("DCA",      "Distance of closest aproach",     101,  -1.7, 1.7);
     fDCADelta = new TH1F("DCADelta", "Angle between shower and x-axis",  80,     0, 360);
 
