IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 28, 2008, 3:05:05 PM (18 years ago)
Author:
eugene
Message:

cleanup timer marks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotSignificanceImage.c

    r20286 r20453  
    1111
    1212    // smooth the image and weight map
    13     psTimerStart ("smooth");
     13    psTimerStart ("psphot.smooth");
    1414
    1515    // XXX we can a) choose fft to convolve if needed and b) multithread fftw
     
    4545    psImage *smooth_im = psImageCopy(NULL, readout->image, PS_TYPE_F32);
    4646    psImageSmoothMask(smooth_im, smooth_im, readout->mask, maskVal, SIGMA_SMTH, NSIGMA_SMTH, minGauss);
    47     psLogMsg("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark("smooth"));
     47    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark("psphot.smooth"));
    4848
    4949    // Smooth the weight, applying the mask as we go.  The variance is smoothed by the PSF^2,
     
    5757    psImageSmoothMask(smooth_wt, smooth_wt, readout->mask, maskVal, SIGMA_SMTH * M_SQRT1_2,
    5858                      NSIGMA_SMTH, minGauss);
    59     psLogMsg("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark("smooth"));
     59    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark("psphot.smooth"));
    6060
    6161    psImage *mask = readout->mask;
     
    116116        }
    117117    }
    118     psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark("smooth"));
     118    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark("psphot.smooth"));
    119119
    120120    // optionally save example images under trace
Note: See TracChangeset for help on using the changeset viewer.