IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 5:13:31 PM (20 years ago)
Author:
eugene
Message:

fixes to psTrace name spaces

File:
1 edited

Legend:

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

    r9270 r9576  
    5252        // skip sources which are insignificant flux?
    5353        if (source->modelPSF->params->data.F32[1] < 0.1) {
    54             psTrace ("psphotBlendFit", 5, "skipping near-zero source: %f, %f : %f\n",
     54            psTrace ("psphot", 5, "skipping near-zero source: %f, %f : %f\n",
    5555                     source->modelPSF->params->data.F32[1],
    5656                     source->modelPSF->params->data.F32[2],
     
    6565        // try fitting PSFs, then try extended sources
    6666        if (psphotFitBlend (readout, source, psf)) {
    67             psTrace ("psphotBlendFit", 5, "source at %7.1f, %7.1f is psf", source->moments->x, source->moments->y);
     67            psTrace ("psphot", 5, "source at %7.1f, %7.1f is psf", source->moments->x, source->moments->y);
    6868            Npsf ++;
    6969            continue;
    7070        }
    7171        if (psphotFitBlob (readout, source, sources, psf)) {
    72             psTrace ("psphotBlendFit", 5, "source at %7.1f, %7.1f is ext", source->moments->x, source->moments->y);
     72            psTrace ("psphot", 5, "source at %7.1f, %7.1f is ext", source->moments->x, source->moments->y);
    7373            Next ++;
    7474            continue;
    7575        }
    7676
    77         psTrace ("psphotBlendFit", 5, "source at %7.1f, %7.1f failed", source->moments->x, source->moments->y);
     77        psTrace ("psphot", 5, "source at %7.1f, %7.1f failed", source->moments->x, source->moments->y);
    7878        Nfail ++;
    7979
     
    8484    }
    8585
    86     psLogMsg ("psphot", 3, "fit models: %f sec for %d objects (%d psf, %d ext, %d failed, %ld skipped)\n", psTimerMark ("psphot"), Nfit, Npsf, Next, Nfail, sources->n - Nfit);
     86    psLogMsg ("psphot.psphotBlendFit", 3, "fit models: %f sec for %d objects (%d psf, %d ext, %d failed, %ld skipped)\n", psTimerMark ("psphot"), Nfit, Npsf, Next, Nfail, sources->n - Nfit);
    8787    return (true);
    8888}
Note: See TracChangeset for help on using the changeset viewer.