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/psphotFindFootprints.c

    r19869 r20453  
    55    bool status;
    66
    7     psTimerStart ("footprints");
     7    psTimerStart ("psphot.footprints");
    88
    99    int npixMin = psMetadataLookupS32(&status, recipe, "FOOTPRINT_NPIXMIN");
     
    4040    psFree (detections->peaks);
    4141
    42     psLogMsg ("psphot", PS_LOG_DETAIL, "found %ld footprints: %f sec\n", footprints->n, psTimerMark ("footprints"));
     42    psLogMsg ("psphot", PS_LOG_MINUTIA, "found %ld footprints: %f sec\n", footprints->n, psTimerMark ("psphot.footprints"));
    4343
    4444    // optionally grow footprints isotropically by growRadius pixels
    4545    if (growRadius > 0) {
    4646        psArray *tmp = pmFootprintArrayGrow(footprints, growRadius);
    47         psLogMsg ("psphot", PS_LOG_DETAIL, "grow footprint coverage by %d pixels, %ld footprints become %ld footprints: %f sec\n", growRadius, footprints->n, tmp->n, psTimerMark ("footprints"));
     47        psLogMsg ("psphot", PS_LOG_MINUTIA, "grow footprint coverage by %d pixels, %ld footprints become %ld footprints: %f sec\n", growRadius, footprints->n, tmp->n, psTimerMark ("psphot.footprints"));
    4848        psFree(footprints);
    4949        footprints = tmp;
     
    5757
    5858        psArray *mergedFootprints = pmFootprintArraysMerge(detections->footprints, footprints, includePeaks);
    59         psLogMsg ("psphot", PS_LOG_DETAIL, "merged %ld new footprints with %ld existing ones: %f sec\n", footprints->n, detections->footprints->n, psTimerMark ("footprints"));
     59        psLogMsg ("psphot", PS_LOG_MINUTIA, "merged %ld new footprints with %ld existing ones: %f sec\n", footprints->n, detections->footprints->n, psTimerMark ("psphot.footprints"));
    6060
    6161        psFree(footprints);
     
    6868    psphotCullPeaks(readout->image, readout->weight, recipe, detections->footprints);
    6969    detections->peaks = pmFootprintArrayToPeaks(detections->footprints);
    70     psLogMsg ("psphot", PS_LOG_INFO, "%ld peaks, %ld total footprints: %f sec\n", detections->peaks->n, detections->footprints->n, psTimerMark ("footprints"));
     70    psLogMsg ("psphot", PS_LOG_INFO, "%ld peaks, %ld total footprints: %f sec\n", detections->peaks->n, detections->footprints->n, psTimerMark ("psphot.footprints"));
    7171
    7272    return detections;
Note: See TracChangeset for help on using the changeset viewer.