IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 22, 2006, 5:35:51 PM (20 years ago)
Author:
Paul Price
Message:

Explicitly doing stats on output file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageLoop.c

    r9952 r10164  
    9393            // Perform statistics on the detrended cell
    9494            if (stats) {
    95                 ppStats(stats, input->fpa, view, config);
     95                bool mdok;              // Status of MD lookup
     96                pmFPAfile *output = psMetadataLookupPtr(&mdok, config->files, "PPIMAGE.OUTPUT");
     97                if (!mdok || !output) {
     98                    psError(PS_ERR_UNEXPECTED_NULL, true, "Unable to find file PPIMAGE.OUTPUT.\n");
     99                    return false;
     100                }
     101                ppStats(stats, output->fpa, view, config);
    96102            }
    97103
Note: See TracChangeset for help on using the changeset viewer.