Index: trunk/MagicSoft/Mars/mimage/MHNewImagePar2.h
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHNewImagePar2.h	(revision 9340)
+++ trunk/MagicSoft/Mars/mimage/MHNewImagePar2.h	(revision 9341)
@@ -20,7 +20,4 @@
     TH1F fHistBorder2;  //
 
-    Float_t fMm2Deg;
-    Bool_t  fUseMmScale;
-
 public:
     MHNewImagePar2(const char *name=NULL, const char *title=NULL);
Index: trunk/MagicSoft/Mars/mimage/MHVsSize.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHVsSize.cc	(revision 9340)
+++ trunk/MagicSoft/Mars/mimage/MHVsSize.cc	(revision 9341)
@@ -59,5 +59,5 @@
 //
 MHVsSize::MHVsSize(const char *name, const char *title)
-    : fHillas(NULL), fHillasExt(NULL), fNewImagePar(NULL), fMm2Deg(1), fUseMmScale(kTRUE)
+    : fGeom(0), fHillas(0), fHillasExt(0), fNewImagePar(0)
 {
     //
@@ -88,18 +88,18 @@
     fM3Long.SetXTitle("Size [phe]");
 
-    fLength.SetYTitle("Length [mm]");
-    fWidth.SetYTitle("Width [mm]");
-    fDist.SetYTitle("Distance [mm]");
+    fLength.SetYTitle("Length [\\circ]");
+    fWidth.SetYTitle("Width [\\circ]");
+    fDist.SetYTitle("Distance [\\circ]");
     fConc1.SetYTitle("Conc1 [ratio]");
-    fArea.SetYTitle("Conc1 [mm^{2}]");
-    fM3Long.SetYTitle("M3Long [mm]");
+    fArea.SetYTitle("Area [\\circ^{2}]");
+    fM3Long.SetYTitle("M3Long [\\circ]");
 
     MBinning binse, binsl, binsd, binsc, binsa, binsm;
     binse.SetEdgesLog( 50,   10, 1e5);
-    binsl.SetEdges(   100,    0, 296.7/2);
-    binsd.SetEdges(   100,    0, 600);
+    binsl.SetEdges(   100,    0, 0.5);
+    binsd.SetEdges(   100,    0, 2.0);
     binsc.SetEdgesLog(100, 3e-3, 1);
-    binsa.SetEdges(   100,    0, 445*45);
-    binsm.SetEdges(   100, -445, 445);
+    binsa.SetEdges(   100,    0, 0.25);
+    binsm.SetEdges(   100, -1.5, 1.5);
 
     MH::SetBinning(&fLength, &binse, &binsl);
@@ -130,11 +130,9 @@
 Bool_t MHVsSize::SetupFill(const MParList *plist)
 {
-    MGeomCam *geom = (MGeomCam*)plist->FindObject("MGeomCam");
-    if (!geom)
-        *fLog << warn << GetDescriptor() << ": No Camera Geometry available. Using mm-scale for histograms." << endl;
-    else
-    {
-        fMm2Deg = geom->GetConvMm2Deg();
-        SetMmScale(kFALSE);
+    fGeom = (MGeomCam*)plist->FindObject("MGeomCam");
+    if (!fGeom)
+    {
+        *fLog << err << "MGeomCam not found... abort." << endl;
+        return kFALSE;
     }
 
@@ -173,68 +171,4 @@
 // --------------------------------------------------------------------------
 //
-// Use this function to setup your own conversion factor between degrees
-// and millimeters. The conversion factor should be the one calculated in
-// MGeomCam. Use this function with Caution: You could create wrong values
-// by setting up your own scale factor.
-//
-void MHVsSize::SetMm2Deg(Float_t mmdeg)
-{
-    if (mmdeg<0)
-    {
-        *fLog << warn << dbginf << "Warning - Conversion factor < 0 - nonsense. Ignored." << endl;
-        return;
-    }
-
-    if (fMm2Deg>=0)
-        *fLog << warn << dbginf << "Warning - Conversion factor already set. Overwriting" << endl;
-
-    fMm2Deg = mmdeg;
-}
-
-// --------------------------------------------------------------------------
-//
-// With this function you can convert the histogram ('on the fly') between
-// degrees and millimeters.
-//
-void MHVsSize::SetMmScale(Bool_t mmscale)
-{
-    if (fUseMmScale == mmscale)
-        return;
-
-    if (fMm2Deg<0)
-    {
-        *fLog << warn << dbginf << "Warning - Sorry, no conversion factor for conversion available." << endl;
-        return;
-    }
-
-    const Double_t scale = mmscale ? 1./fMm2Deg : fMm2Deg;
-    MH::ScaleAxis(&fLength, 1, scale);
-    MH::ScaleAxis(&fWidth,  1, scale);
-    MH::ScaleAxis(&fDist,   1, scale);
-    MH::ScaleAxis(&fM3Long, 1, scale);
-    MH::ScaleAxis(&fArea,   1, scale*scale);
-
-    if (mmscale)
-    {
-        fLength.SetYTitle("Length [mm]");
-        fWidth.SetYTitle("Width [mm]");
-        fDist.SetYTitle("Distance [mm]");
-        fArea.SetYTitle("Area [mm^{2}]");
-        fM3Long.SetYTitle("M3Long [mm]");
-    }
-    else
-    {
-        fLength.SetYTitle("Length [\\circ]");
-        fWidth.SetYTitle("Width [\\circ]");
-        fDist.SetYTitle("Distance [\\circ]");
-        fArea.SetYTitle("Area [\\circ^{2}]");
-        fM3Long.SetYTitle("M3Long [\\circ]");
-    }
-
-    fUseMmScale = mmscale;
-}
-
-// --------------------------------------------------------------------------
-//
 // Fill the histograms with data from a MHillas-Container.
 // Be careful: Only call this with an object of type MHillas
@@ -249,5 +183,5 @@
     }
 
-    const Double_t scale = fUseMmScale ? 1 : fMm2Deg;
+    const Double_t scale = fGeom->GetConvMm2Deg();
 
     fLength.Fill(fHillas->GetSize(), scale*fHillas->GetLength(),     w);
Index: trunk/MagicSoft/Mars/mimage/MHVsSize.h
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHVsSize.h	(revision 9340)
+++ trunk/MagicSoft/Mars/mimage/MHVsSize.h	(revision 9341)
@@ -10,4 +10,5 @@
 #endif
 
+class MGeomCam;
 class MHillas;
 class MHillasExt;
@@ -17,4 +18,5 @@
 {
 private:
+    MGeomCam     *fGeom;        //! Conversion from mm to deg
     MHillas      *fHillas;      //!
     MHillasExt   *fHillasExt;   //!
@@ -30,12 +32,6 @@
     TH2F fArea;    // 
 
-    Float_t fMm2Deg;
-    Bool_t  fUseMmScale;
-
 public:
     MHVsSize(const char *name=NULL, const char *title=NULL);
-
-    void SetMmScale(Bool_t mmscale=kTRUE);
-    virtual void SetMm2Deg(Float_t mmdeg);
 
     Bool_t SetupFill(const MParList *pList);
