IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23599


Ignore:
Timestamp:
Mar 30, 2009, 10:16:46 AM (17 years ago)
Author:
Paul Price
Message:

Fixing syntax error.

Location:
branches/pap/ppSub/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/ppSub/src/ppSub.h

    r23195 r23599  
    6363/// Photometry stage 1: measure the PSF from the minuend image
    6464bool ppSubMakePSF(pmConfig *config,       ///< Configuration
     65                  psMetadata *stats,    ///< Statistics, for output
    6566                  const pmFPAview *view ///< View of active readout
    6667    );
  • branches/pap/ppSub/src/ppSubMakePSF.c

    r23597 r23599  
    2222#include "ppSub.h"
    2323
    24 bool ppSubMakePSF(pmConfig *config, const pmFPAview *view)
     24bool ppSubMakePSF(pmConfig *config, psMetadata *stats, const pmFPAview *view)
    2525{
    2626    psAssert(config, "Require configuration");
  • branches/pap/ppSub/src/ppSubReadout.c

    r21524 r23599  
    4040    }
    4141
    42     if (!ppSubMakePSF(config, view)) {
     42    if (!ppSubMakePSF(config, stats, view)) {
    4343        psError(PS_ERR_UNKNOWN, false, "Unable to generate PSF.");
    4444        return false;
Note: See TracChangeset for help on using the changeset viewer.