Index: trunk/MagicSoft/Mars/macros/MagicHillas.C
===================================================================
--- trunk/MagicSoft/Mars/macros/MagicHillas.C	(revision 1639)
+++ trunk/MagicSoft/Mars/macros/MagicHillas.C	(revision 1640)
@@ -111,4 +111,5 @@
     MHillasCalc    hcalc;
     MHillasSrcCalc csrc1;
+    MHillasSrcCalc csrc2;
 
     //
Index: trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc	(revision 1639)
+++ trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc	(revision 1640)
@@ -113,5 +113,5 @@
 
         // COBB: '<=' to skip entry=noise=0
-        if (entry <= fCleanLvl1 * noise)
+        if (entry <= fCleanLvl1 * noise / sqrt(fCam->GetPixRatio(i)))
             pix.SetPixelUnused();
 
@@ -260,5 +260,5 @@
         const Float_t noise = pix.GetErrorPhot();
 
-        if (entry <= fCleanLvl2 * noise)
+        if (entry <= fCleanLvl2 * noise / sqrt(fCam->GetPixRatio(i)))
             continue;
 
Index: trunk/MagicSoft/Mars/mgeom/MGeomPix.cc
===================================================================
--- trunk/MagicSoft/Mars/mgeom/MGeomPix.cc	(revision 1639)
+++ trunk/MagicSoft/Mars/mgeom/MGeomPix.cc	(revision 1640)
@@ -50,5 +50,5 @@
 // --------------------------------------------------------------------------
 //
-// Initialiyes one pixel
+// Initializes one pixel
 //
 MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fR(r)
@@ -59,5 +59,5 @@
 // --------------------------------------------------------------------------
 //
-// Return the area of the pixel. A hegagonal shape is assumed.
+// Return the area of the pixel. A hexagonal shape is assumed.
 //
 Float_t MGeomPix::GetA() const
@@ -68,7 +68,7 @@
 // --------------------------------------------------------------------------
 //
-// Initialiyes Next Neighbors.
+// Initializes Next Neighbors.
 //
-// WARNING: This function is public, but it is not ment for user access.
+// WARNING: This function is public, but it is not meant for user access.
 // It should only be used from geometry classes (like MGeomCam)
 //
