Index: trunk/MagicSoft/Mars/mgui/MGeomCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mgui/MGeomCam.cc	(revision 1330)
+++ trunk/MagicSoft/Mars/mgui/MGeomCam.cc	(revision 1334)
@@ -50,5 +50,5 @@
 //
 MGeomCam::MGeomCam(UInt_t npix, Float_t dist, const char *name, const char *title)
-    : fNumPixels(npix), fCamDist(dist), fMm2Deg(kRad2Deg/(dist*1000))
+    : fNumPixels(npix), fCamDist(dist), fConvMm2Deg(kRad2Deg/(dist*1000))
 {
     fName  = name  ? name  : "MGeomCam";
Index: trunk/MagicSoft/Mars/mgui/MGeomCam.h
===================================================================
--- trunk/MagicSoft/Mars/mgui/MGeomCam.h	(revision 1330)
+++ trunk/MagicSoft/Mars/mgui/MGeomCam.h	(revision 1334)
@@ -18,5 +18,5 @@
 
     Float_t  fCamDist;    // [m] Average distance of the camera from the mirror
-    Float_t  fMm2Deg;     // conversion factor to convert mm in the camera plain into degrees
+    Float_t  fConvMm2Deg; // conversion factor to convert mm in the camera plain into degrees
 
     TObjArray *fPixels;   // Array of singel pixels storing the geometry
@@ -32,5 +32,5 @@
 
     Float_t GetCameraDist() const { return fCamDist; }
-    Float_t GetConvMm2Deg() const { return fMm2Deg; }
+    Float_t GetConvMm2Deg() const { return fConvMm2Deg; }
 
     UInt_t  GetNumPixels() const { return fNumPixels; }
