Index: /branches/eam_branch_20080324/psphot/src/psphotFindPeaks.c
===================================================================
--- /branches/eam_branch_20080324/psphot/src/psphotFindPeaks.c	(revision 17349)
+++ /branches/eam_branch_20080324/psphot/src/psphotFindPeaks.c	(revision 17350)
@@ -11,5 +11,5 @@
 
     // smooth the image and weight map
-    psTimerStart ("psphot");
+    psTimerStart ("peaks");
 
     // XXX if we have been supplied a PSF, we can use that to set the FWHM_X,FWHM_Y values
@@ -32,10 +32,10 @@
     psImage *smooth_im = psImageCopy (NULL, readout->image, PS_TYPE_F32);
     psImageSmoothMaskF32 (smooth_im, readout->mask, maskVal, SIGMA_SMTH, NSIGMA_SMTH);
-    psLogMsg ("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark ("psphot"));
+    psLogMsg ("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark ("peaks"));
 
     // smooth the weight, applying the mask as we go
     psImage *smooth_wt = psImageCopy (NULL, readout->weight, PS_TYPE_F32);
     psImageSmoothMaskF32 (smooth_wt, readout->mask, maskVal, SIGMA_SMTH/sqrt(2), NSIGMA_SMTH);
-    psLogMsg ("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark ("psphot"));
+    psLogMsg ("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark ("peaks"));
 
     psImage *mask = readout->mask;
@@ -61,5 +61,5 @@
         }
     }
-    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark ("psphot"));
+    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark ("peaks"));
 
     // optionally save example images under trace
@@ -70,5 +70,5 @@
     }
 
-    psTimerStart ("psphot");
+    psTimerStart ("peaks");
     // set peak threshold
 
@@ -140,5 +140,5 @@
         pmPeaksWriteText (peaks, output);
     }
-    psLogMsg ("psphot", PS_LOG_INFO, "%ld peaks: %f sec\n", peaks->n, psTimerMark ("psphot"));
+    psLogMsg ("psphot", PS_LOG_INFO, "%ld peaks: %f sec\n", peaks->n, psTimerMark ("peaks"));
 
     // If they asked us to return a set of pmFootprints, not a raw pmPeak list,
@@ -167,5 +167,5 @@
         peaks = footprints;             // well, you know what I mean
 
-	psLogMsg ("psphot", PS_LOG_INFO, "%ld footprints: %f sec\n", peaks->n, psTimerMark ("psphot"));
+	psLogMsg ("psphot", PS_LOG_INFO, "%ld footprints: %f sec\n", peaks->n, psTimerMark ("peaks"));
     }
 
