Index: trunk/ippTools/src/pxframes.c
===================================================================
--- trunk/ippTools/src/pxframes.c	(revision 6668)
+++ trunk/ippTools/src/pxframes.c	(revision 6669)
@@ -116,4 +116,5 @@
 } 
 
+PX_FRAME_SEARCH(pzPendingFrame, pzPendingExp, pzPendingImfile);
 PX_FRAME_SEARCH(newFrame, newExp, newImfile);
 PX_FRAME_SEARCH(rawDetrendFrame, rawDetrendExp, rawImfile);
Index: trunk/ippTools/src/pztool.c
===================================================================
--- trunk/ippTools/src/pztool.c	(revision 6668)
+++ trunk/ippTools/src/pztool.c	(revision 6669)
@@ -88,4 +88,18 @@
 {
     PS_ASSERT_PTR_NON_NULL(config, false);
+
+    psArray *new = pzPendingFrameSearch(config);
+    if (!new) {
+        psError(PS_ERR_UNKNOWN, false, "no pzPendingFrames found");
+        return false;
+    }
+
+    bool status = pzPendingFramePrint(stdout, config, new);
+    if (!status) {
+        psError(PS_ERR_UNKNOWN, false, "pzPendingFramePrint() failed");
+        return false;
+    }
+
+    return true;
 }
 
