Index: /trunk/psModules/src/camera/pmFPAConstruct.c
===================================================================
--- /trunk/psModules/src/camera/pmFPAConstruct.c	(revision 12768)
+++ /trunk/psModules/src/camera/pmFPAConstruct.c	(revision 12769)
@@ -1270,4 +1270,6 @@
                 fprintf(fd, "row0: %d\n", readout->row0);
                 psImage *image = readout->image; // The image
+                psImage *mask = readout->mask; // The mask
+                psImage *weight = readout->weight; // The weight
                 psList *bias = readout->bias; // The list of bias images
                 if (image) {
@@ -1288,4 +1290,16 @@
                     psFree(biasIter);
                 }
+                if (mask) {
+                    INDENT(fd, 7);
+                    fprintf(fd, "Mask: [%d:%d,%d:%d] (%dx%d)\n", mask->col0, mask->col0 +
+                            mask->numCols, mask->row0, mask->row0 + mask->numRows, mask->numCols,
+                            mask->numRows);
+                }
+                if (weight) {
+                    INDENT(fd, 7);
+                    fprintf(fd, "Weight: [%d:%d,%d:%d] (%dx%d)\n", weight->col0, weight->col0 +
+                            weight->numCols, weight->row0, weight->row0 + weight->numRows, weight->numCols,
+                            weight->numRows);
+                }
             } // Iterating over cell
         } // Iterating over chip
