IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 14, 2008, 5:30:32 PM (18 years ago)
Author:
Paul Price
Message:

Turn off measurement of the aperture trend.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackPhotometry.c

    r16605 r17698  
    1515    pmFPACopy(photFile->fpa, readout->parent->parent->parent);
    1616
     17    {
     18        // Need to ensure aperture residual is not calculated
     19        psMetadata *recipe = psMetadataLookupMetadata(NULL, config->recipes, PSPHOT_RECIPE); // Recipe
     20        psMetadataItem *item = psMetadataLookup(recipe, "MEASURE.APTREND"); // Item determining aptrend
     21        if (!item) {
     22            psWarning("Unable to find MEASURE.APTREND in psphot recipe");
     23            psErrorClear();
     24        } else {
     25            item->data.B = false;
     26        }
     27    }
     28
    1729    if (!psphotReadout(config, view)) {
    1830        // Clear the error, so that the output files are written.
Note: See TracChangeset for help on using the changeset viewer.