Index: trunk/psphot/src/find_peaks.c
===================================================================
--- trunk/psphot/src/find_peaks.c	(revision 4642)
+++ trunk/psphot/src/find_peaks.c	(revision 4901)
@@ -21,9 +21,10 @@
     psTimerStart ("psphot");
 
-    // find the peaks in the smoothed image 
+    // set peak threshold
     NSIGMA    = psMetadataLookupF32 (&status, config, "PEAK_NSIGMA");
     threshold = NSIGMA*sky->sampleStdev + sky->sampleMean;
     psLogMsg ("psphot", 3, "threshold: %f DN\n", threshold);
 
+    // find the peaks in the smoothed image 
     psArray *peaks = pmFindImagePeaks (smooth, threshold);
     if (peaks == NULL) psAbort ("find peaks", "no peaks found");
@@ -31,5 +32,5 @@
 
     // make this optional
-    DumpPeaks (peaks, "peaks.dat");
+    // DumpPeaks (peaks, "peaks.dat");
 
     psLogMsg ("psphot", 3, "%d peaks: %f sec\n", peaks->n, psTimerMark ("psphot"));
