IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32606


Ignore:
Timestamp:
Nov 3, 2011, 5:35:16 AM (15 years ago)
Author:
eugene
Message:

add function to measure outer scale of galaxies

Location:
branches/eam_branches/ipp-20110906/psphot/src
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20110906/psphot/src/Makefile.am

    r32348 r32606  
    185185        psphotKronMasked.c             \
    186186        psphotKronIterate.c            \
     187        psphotRadialProfileWings.c     \
    187188        psphotDeblendSatstars.c        \
    188189        psphotMosaicSubimage.c         \
  • branches/eam_branches/ipp-20110906/psphot/src/psphot.h

    r32348 r32606  
    466466bool psphotKronIterate_Threaded (psThreadJob *job);
    467467
     468bool psphotRadialProfileWings (pmConfig *config, const pmFPAview *view, const char *filerule);
     469bool psphotRadialProfileWingsReadout(pmConfig *config, psMetadata *recipe, const pmFPAview *view, pmReadout *readout, psArray *sources);
     470bool psphotRadialProfileWings_Threaded (psThreadJob *job);
     471
    468472bool psphotStackObjectsSelectForAnalysis (pmConfig *config, const pmFPAview *view, const char *filerule, psArray *objects);
    469473
  • branches/eam_branches/ipp-20110906/psphot/src/psphotReadout.c

    r32348 r32606  
    190190    psphotDumpChisqs (config, view, filerule);
    191191
     192    // measure the radial profiles to the sky
     193    psphotRadialProfileWings (config, view, filerule);
     194
    192195    // re-measure the kron mags with models subtracted.  this pass uses a circular window of size PSF_MOMENTS_RADIUS (same window used to measure the psf-scale moments)
    193196   
  • branches/eam_branches/ipp-20110906/psphot/src/psphotSetThreads.c

    r32348 r32606  
    5555    psFree(task);
    5656
     57    task = psThreadTaskAlloc("PSPHOT_RADIAL_PROFILE_WINGS", 5);
     58    task->function = &psphotRadialProfileWings_Threaded;
     59    psThreadTaskAdd(task);
     60    psFree(task);
     61
    5762    return true;
    5863}
Note: See TracChangeset for help on using the changeset viewer.