Index: trunk/ippToPsps/jython/initbatch.py
===================================================================
--- trunk/ippToPsps/jython/initbatch.py	(revision 32004)
+++ trunk/ippToPsps/jython/initbatch.py	(revision 32005)
@@ -43,30 +43,16 @@
        self.outputFitsPath = self.localOutPath + "/" + self.outputFitsFile
 
-
-'''
-Start of program.
-'''
-
-if len(sys.argv) > 1: CONFIG  = sys.argv[1]
-else:
-    print "** Usage: " + sys.argv[0] + " <configPath>"
-    sys.exit(1)
+    '''
+    Empty implementation
+    '''
+    def importIppTables(self, filter=""):
+        self.logger.debug("importIppTables method here to satidfy base-class")
 
 
-# set up logging
-logging.config.fileConfig("logging.conf")
-logging.setLoggerClass(PSLogger)
-logger = logging.getLogger("ippToPspsLog")
-logger.setLevel(logging.INFO)
+    '''
+    Implementing base class method, though not necessary
+    '''
+    def populatePspsTables(self):
+        self.logger.debug("No processing required for this batch type")
+        return 1
 
-# open config file
-configDoc = ElementTree(file=CONFIG)
-
-# create database objects
-gpc1Db = Gpc1Db(logger, configDoc)
-ippToPspsDb = IppToPspsDb(logger, configDoc)
-
-initBatch = InitBatch(logger, CONFIG, configDoc, gpc1Db, ippToPspsDb)
-initBatch.createEmptyPspsTables()
-initBatch.exportPspsTablesToFits()
-initBatch.writeBatchManifest()
