Index: /trunk/ippToPsps/jython/fits.py
===================================================================
--- /trunk/ippToPsps/jython/fits.py	(revision 32454)
+++ /trunk/ippToPsps/jython/fits.py	(revision 32455)
@@ -31,11 +31,12 @@
        # 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"
-       shutil.copy2(self.originalPath, self.localCopyPath)
+       #self.localCopyPath = self.localDir + "/temp.fits"
+       #shutil.copy2(self.originalPath, self.localCopyPath)
 
        # open the local copy and parse the ridiculou plain-text header
-       self.file = open(self.localCopyPath)
+       #self.file = open(self.localCopyPath)
+       self.file = open(self.originalPath)
        self.header = self.parseHeader()
-       self.logger.debugPair("FITS local copy", self.localCopyPath)
+       #self.logger.debugPair("FITS local copy", self.localCopyPath)
        self.logger.debugPair("FITS primary header", "%d cards found" % len(self.header))
 
@@ -53,5 +54,6 @@
     '''
     def getPath(self):
-        return self.localCopyPath
+        #return self.localCopyPath
+        return self.originalPath
 
     '''
