Index: branches/pap/ppStack/src/ppStackCamera.c
===================================================================
--- branches/pap/ppStack/src/ppStackCamera.c	(revision 25780)
+++ branches/pap/ppStack/src/ppStackCamera.c	(revision 25787)
@@ -294,4 +294,25 @@
         targetPSF->save = true;
     }
+
+#if 0
+    // Unconvolved stack
+    pmFPAfile *unConv = pmFPAfileDefineOutput(config, fpa, "PPSTACK.OUTPUT.UNCONV");
+    psFree(fpa);                        // Drop reference
+    if (!unConv) {
+        psError(PS_ERR_IO, false, _("Unable to generate output file from PPSTACK.OUTPUT.UNCONV"));
+        return false;
+    }
+    if (unConv->type != PM_FPA_FILE_IMAGE) {
+        psError(PS_ERR_IO, true, "PPSTACK.OUTPUT.UNCONV is not of type IMAGE");
+        return false;
+    }
+    unConv->save = true;
+
+    if (!pmFPAAddSourceFromFormat(fpa, "Stack", unConv->format)) {
+        psError(PS_ERR_UNKNOWN, false, "Unable to generate output FPA.");
+        psFree(fpa);
+        return false;
+    }
+#endif
 
     // Output JPEGs
