IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37466 for trunk/psphot/src


Ignore:
Timestamp:
Oct 8, 2014, 10:12:08 AM (12 years ago)
Author:
bills
Message:

Initial check in of psphot galaxy parameter measurements.

Location:
trunk/psphot/src
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/Makefile.am

    r37321 r37466  
    260260        psphotSetNFrames.c             \
    261261        psphotSourceMemory.c           \
    262         psphotChipParams.c
     262        psphotChipParams.c              \
     263        psphotGalaxyParams.c
    263264
    264265# not currently used
  • trunk/psphot/src/psphot.h

    r37321 r37466  
    137137bool            psphotExtendedSourceFitsReadout (pmConfig *config, const pmFPAview *view, const char *filerule, int index, psMetadata *recipe);
    138138bool            psphotExtendedSourceFits_Threaded (psThreadJob *job);
     139
     140bool            psphotGalaxyParams (pmConfig *config, const pmFPAview *view, const char *filerule);
     141bool            psphotGalaxyParamsReadout (pmConfig *config, const pmFPAview *view, const char *filerule, int index, psMetadata *recipe);
     142bool            psphotGalaxyParams_Threaded (psThreadJob *job);
    139143
    140144bool            psphotApResid (pmConfig *config, const pmFPAview *view, const char *filerule);
  • trunk/psphot/src/psphotReadout.c

    r36623 r37466  
    325325    psphotExtendedSourceAnalysis (config, view, filerule); // pass 1 (detections->allSources)
    326326    psphotExtendedSourceFits (config, view, filerule); // pass 1 (detections->allSources)
     327    // measure some parameters for galaxy science
     328    psphotGalaxyParams (config, view, filerule);
    327329    psphotRadialApertures(config, view, filerule, 0);
    328330
  • trunk/psphot/src/psphotSetThreads.c

    r37321 r37466  
    9292    psFree(task);
    9393
     94    task = psThreadTaskAlloc("PSPHOT_GALAXY_PARAMS", 8);
     95    task->function = &psphotGalaxyParams_Threaded;
     96    psThreadTaskAdd(task);
     97    psFree(task);
     98
    9499    return true;
    95100}
  • trunk/psphot/src/psphotStackReadout.c

    r36630 r37466  
    342342    psphotExtendedSourceFits (config, view, STACK_RAW); // pass 1 (detections->allSources)
    343343
     344    // measure some parameters for galxy science
     345    psphotGalaxyParams (config, view, STACK_RAW); // pass 1 (detections->allSources)
    344346    // create source children for the OUT filerule (for radial aperture photometry and output)
    345347    // NOTE: The new source children have image arrays pointing to the readout associated with
Note: See TracChangeset for help on using the changeset viewer.