IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 20, 2006, 8:57:16 PM (21 years ago)
Author:
eugene
Message:

modifications to support psphot on pmReadout with full IPP config files

File:
1 edited

Legend:

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

    r5993 r6117  
    7171
    7272*/
     73
     74bool psphotMagnitudes (psMetadata *config, psArray *sources, pmPSF *psf) {
     75
     76    bool status;
     77
     78    float RADIUS = psMetadataLookupF32 (&status, config, "AP_RADIUS");
     79    for (int i = 0; i < sources->n; i++) {
     80        pmSource *source = (pmSource *) sources->data[i];
     81        pmSourceMagnitudes (source, psf, RADIUS);
     82    }   
     83    return true;
     84}
     85
Note: See TracChangeset for help on using the changeset viewer.