Index: trunk/ippToPsps/jython/fits.py
===================================================================
--- trunk/ippToPsps/jython/fits.py	(revision 32455)
+++ trunk/ippToPsps/jython/fits.py	(revision 33259)
@@ -15,12 +15,11 @@
 
     '''
-    def __init__(self, logger, doc, originalPath):
+    def __init__(self, logger, config, originalPath):
 
        # set class variables
        self.originalPath = originalPath
        self.logger = logger
-       self.doc = doc
+       self.config = config
        self.header = None
-       self.localDir = self.doc.find("localOutPath").text
 
        # does this file even exist?
@@ -31,5 +30,5 @@
        # ok, we have a file, now copy it locally to save on NFS overhead
        self.logger.debugPair("FITS file", self.originalPath)
-       #self.localCopyPath = self.localDir + "/temp.fits"
+       #self.localCopyPath = self.config.basePath + "/temp.fits"
        #shutil.copy2(self.originalPath, self.localCopyPath)
 
