Index: trunk/ippToPsps/jython/fits.py
===================================================================
--- trunk/ippToPsps/jython/fits.py	(revision 31975)
+++ trunk/ippToPsps/jython/fits.py	(revision 32036)
@@ -29,5 +29,5 @@
 
        # ok, we have a file, now copy it locally to save on NFS overhead
-       self.logger.infoPair("FITS file", self.originalPath)
+       self.logger.debugPair("FITS file", self.originalPath)
        self.localCopyPath = self.localDir + "/temp.fits"
        shutil.copy2(self.originalPath, self.localCopyPath)
@@ -36,9 +36,15 @@
        self.file = open(self.localCopyPath)
        self.header = self.parseHeader()
-       self.logger.infoPair("FITS local copy", self.localCopyPath)
-       self.logger.infoPair("FITS primary header", "%d cards found" % len(self.header))
+       self.logger.debugPair("FITS local copy", self.localCopyPath)
+       self.logger.debugPair("FITS primary header", "%d cards found" % len(self.header))
 
        # move file pointer back to the start of the file
        self.rewindToStart()
+
+    '''
+    Returns count of 'cards' found in primary header
+    '''
+    def getPrimaryHeaderCardCount(self):
+        return len(self.header)
 
     '''
@@ -47,4 +53,10 @@
     def getPath(self):
         return self.localCopyPath
+
+    '''
+    Returns the path to the LOCAL COPY of this FITS file
+    '''
+    def getOriginalPath(self):
+        return self.originalPath
 
     '''
