Index: /branches/eam_branches/ipp-20121219/ippToPsps/jython/setupScratchDb.py
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/jython/setupScratchDb.py	(revision 34989)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/jython/setupScratchDb.py	(revision 34990)
@@ -42,5 +42,10 @@
         # install IN tables
         self.logger.infoPair("Installing", "initialization tables")
-        tables = stilts.treads("../config/IN/tables.vot")
+        if self.configDir is None:
+            tables = stilts.treads("../config/tables.IN.vot")
+        else:
+            tablepath = self.configDir + "tables.IN.vot"
+            tables = stilts.treads(tablepath)
+
         for table in tables:
             # EAM TEST I/O
@@ -48,4 +53,8 @@
             self.logger.debug("Creating IN table: " + table.name)
             table.write(self.scratchDb.url + '#' + table.name)
+
+        # create basic DVO tables
+        self.logger.infoPair("Installing", "initialization tables")
+        self.scratchDb.createDvoTables()
 
     '''
