IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10803


Ignore:
Timestamp:
Dec 17, 2006, 10:10:36 AM (20 years ago)
Author:
eugene
Message:

message cleanup

Location:
trunk/psphot/src
Files:
7 edited

Legend:

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

    r10801 r10803  
    116116    }
    117117    psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "measure aperture residuals for %d objects (%d skipped, %d failed, %ld invalid)\n",
    118               psTimerMark ("psphot"), Npsf, Nskip, Nfail, sources->n - Npsf - Nskip - Nfail);
     118              Npsf, Nskip, Nfail, sources->n - Npsf - Nskip - Nfail);
    119119
    120120    fclose (f);
     
    333333    psMetadataAdd (recipe, PS_LIST_TAIL, "NAPMIFIT", PS_DATA_S32 | PS_META_REPLACE, "ap residual scatter", psf->nApResid);
    334334
    335     psLogMsg ("psphot.apresid", PS_LOG_INFO, "measure full-frame aperture residual: %f sec\n", psTimerMark ("psphot"));
    336     psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "aperture residual: %f +/- %f : %f bias, %f skysat (%d of %d used)\n",
    337               psf->ApResid, psf->dApResid, psf->skyBias, psf->skySat, Nkeep, Npsf);
     335    psLogMsg ("psphot.apresid", PS_LOG_INFO, "measure full-frame aperture residuals for %d of %d objects: %f sec\n",
     336              psTimerMark ("psphot"), Nkeep, Npsf);
     337    psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "aperture residual: %f +/- %f : %f bias, %f skysat\n",
     338              psf->ApResid, psf->dApResid, psf->skyBias, psf->skySat);
    338339    psLogMsg ("psphot.apresid", PS_LOG_MINUTIA, "apresid trends: %f %f %f %f %f\n",
    339340              1e3*psf->ApTrend->coeff[1][0][0][0],
  • trunk/psphot/src/psphotBasicDeblend.c

    r10801 r10803  
    120120        psFree (contour);
    121121    }
    122     psLogMsg ("psphot.deblend", PS_LOG_INFO, "identified %d blended objects (%f sec)\n", Nblend, psTimerMark ("psphot"));
     122    psLogMsg ("psphot.deblend", PS_LOG_INFO, "identified %d blended objects: %f sec\n", Nblend, psTimerMark ("psphot"));
    123123
    124124    psFree (SN);
  • trunk/psphot/src/psphotFindPeaks.c

    r10801 r10803  
    4646        }
    4747    }
    48     psLogMsg ("psphot", PS_LOG_MINUTIA, "built S/N map: %f sec\n", psTimerMark ("psphot"));
     48    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed image: %f sec\n", psTimerMark ("psphot"));
    4949
     50    psTimerStart ("psphot");
    5051    // set peak threshold
    5152    NSIGMA = psMetadataLookupF32 (&status, recipe, "PEAKS_NSIGMA_LIMIT");
  • trunk/psphot/src/psphotGuessModels.c

    r10801 r10803  
    3737    source->modelPSF = modelPSF;
    3838  }
    39   psLogMsg ("psphot.models", 4, "built models: %f (%ld objects)\n", psTimerMark ("psphot"), sources->n);
     39  psLogMsg ("psphot.models", 4, "built models for %ld objects: %f sec\n", sources->n, psTimerMark ("psphot"));
    4040  return true;
    4141}
  • trunk/psphot/src/psphotParseCamera.c

    r10792 r10803  
    105105        for (int i = 0; i < chips->n; i++) {
    106106            int chipNum = atoi(chips->data[i]);
    107             fprintf (stderr, "select chip %d\n", chipNum);
    108107            if (! pmFPASelectChip(input->fpa, chipNum, false)) {
    109108                psError(PS_ERR_IO, false, "Chip number %d doesn't exist in camera.\n", chipNum);
  • trunk/psphot/src/psphotReplaceUnfit.c

    r10801 r10803  
    5050      source->mode &= ~PM_SOURCE_MODE_SUBTRACTED;
    5151    }
    52     psLogMsg ("psphot.replace", PS_LOG_INFO, "replace models: %f sec (%ld objects)\n", psTimerMark ("psphot"), sources->n);
     52    psLogMsg ("psphot.replace", PS_LOG_INFO, "replace models for %ld objects: %f sec\n", sources->n, psTimerMark ("psphot"));
    5353    return true;
    5454}
  • trunk/psphot/src/psphotRoughClass.c

    r10801 r10803  
    2424    psphotDumpMoments (recipe, sources);
    2525
    26     psLogMsg ("psphot.roughclass", PS_LOG_INFO, "rough classification (%f sec)\n", psTimerMark ("psphot"));
     26    psLogMsg ("psphot.roughclass", PS_LOG_INFO, "rough classification: %f sec\n", psTimerMark ("psphot"));
    2727
    2828    return true;
Note: See TracChangeset for help on using the changeset viewer.