Index: trunk/psphot/src/psphotSignificanceImage.c
===================================================================
--- trunk/psphot/src/psphotSignificanceImage.c	(revision 35559)
+++ trunk/psphot/src/psphotSignificanceImage.c	(revision 35688)
@@ -102,7 +102,9 @@
                 smooth_wt->data.F32[j][i] = 0.0;
             } else {
-		// XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right??
-		float v2 = value + PS_SQR(value/100.0);
-                smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i];
+	      // XXX the value of 100 here (or 1000 before) must depend on the FWHM of the smoothing kernel, right??
+	      //	      float v2 = value + PS_SQR(value/100.0);
+	      // CZW 2013-06-20: I don't think this hack was helping.
+	      float v2 = value;
+	      smooth_wt->data.F32[j][i] = factor * PS_SQR(v2) / smooth_wt->data.F32[j][i];
             }
         }
