Index: trunk/psModules/src/imcombine/pmReadoutCombine.c
===================================================================
--- trunk/psModules/src/imcombine/pmReadoutCombine.c	(revision 7802)
+++ trunk/psModules/src/imcombine/pmReadoutCombine.c	(revision 7849)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-07-04 00:19:11 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-07-08 05:21:12 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -18,4 +18,5 @@
 #include "pmFPA.h"
 #include "pmFPAMaskWeight.h"
+#include "pmConceptsAverage.h"
 
 #include "pmReadoutCombine.h"
@@ -396,6 +397,14 @@
     psFree(mask);
     psFree(weights);
-
     psFree(stats);
+
+    // Update the "concepts"
+    psList *inputCells = psListAlloc(NULL); // List of cells
+    for (long i = 0; i < inputs->n; i++) {
+        pmReadout *readout = inputs->data[i]; // Readout of interest
+        psListAdd(inputCells, PS_LIST_TAIL, readout->parent);
+    }
+    pmConceptsAverageCells(output->parent, inputCells, 0, 0, NULL, NULL);
+    psFree(inputCells);
 
     return true;
