Index: trunk/ippToPsps/jython/forcedwarpbatch.py
===================================================================
--- trunk/ippToPsps/jython/forcedwarpbatch.py	(revision 40011)
+++ trunk/ippToPsps/jython/forcedwarpbatch.py	(revision 40187)
@@ -657,4 +657,5 @@
         # each of the "populate*" methods below add their tables to the list:
         self.tablesToExport=[]
+        tables = [] # list of tables to calculate min/max objid on...
     
         for num in self.number:    
@@ -675,7 +676,8 @@
                 raise
             self.tablesToExport.append(myTable)
-
-            self.logger.infoPair("setting min/max objid from", myTable)
-            self.setMinMaxObjID([myTable])
+            tables.append(myTable)
+            #self.logger.infoPair("setting min/max objid from", myTable)
+ 
+            #self.setMinMaxObjID([myTable])
 
             # populateForcedWarpMeasurement also populates ForcedWarpMasked (from ForcedWarpMeasurement)
@@ -697,7 +699,9 @@
             self.populateForcedWarpToImage(num)
             self.tablesToExport.append(myTable)
+        self.logger.infoPair("setting min/max objid from", "all the fw tables")
+        self.setMinMaxObjID(tables)
+        self.logger.infoPair("finishing","populatePspsTables")
+
             
-            self.logger.infoPair("finishing","populatePspsTables")
-
 
         return True
