Index: /branches/pap/ppSub/src/ppSub.h
===================================================================
--- /branches/pap/ppSub/src/ppSub.h	(revision 23598)
+++ /branches/pap/ppSub/src/ppSub.h	(revision 23599)
@@ -63,4 +63,5 @@
 /// Photometry stage 1: measure the PSF from the minuend image
 bool ppSubMakePSF(pmConfig *config,       ///< Configuration
+                  psMetadata *stats,    ///< Statistics, for output
                   const pmFPAview *view ///< View of active readout
     );
Index: /branches/pap/ppSub/src/ppSubMakePSF.c
===================================================================
--- /branches/pap/ppSub/src/ppSubMakePSF.c	(revision 23598)
+++ /branches/pap/ppSub/src/ppSubMakePSF.c	(revision 23599)
@@ -22,5 +22,5 @@
 #include "ppSub.h"
 
-bool ppSubMakePSF(pmConfig *config, const pmFPAview *view)
+bool ppSubMakePSF(pmConfig *config, psMetadata *stats, const pmFPAview *view)
 {
     psAssert(config, "Require configuration");
Index: /branches/pap/ppSub/src/ppSubReadout.c
===================================================================
--- /branches/pap/ppSub/src/ppSubReadout.c	(revision 23598)
+++ /branches/pap/ppSub/src/ppSubReadout.c	(revision 23599)
@@ -40,5 +40,5 @@
     }
 
-    if (!ppSubMakePSF(config, view)) {
+    if (!ppSubMakePSF(config, stats, view)) {
         psError(PS_ERR_UNKNOWN, false, "Unable to generate PSF.");
         return false;
