Changeset 33259 for trunk/ippToPsps/jython/fits.py
- Timestamp:
- Feb 14, 2012, 12:02:48 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/fits.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/fits.py
r32455 r33259 15 15 16 16 ''' 17 def __init__(self, logger, doc, originalPath):17 def __init__(self, logger, config, originalPath): 18 18 19 19 # set class variables 20 20 self.originalPath = originalPath 21 21 self.logger = logger 22 self. doc = doc22 self.config = config 23 23 self.header = None 24 self.localDir = self.doc.find("localOutPath").text25 24 26 25 # does this file even exist? … … 31 30 # ok, we have a file, now copy it locally to save on NFS overhead 32 31 self.logger.debugPair("FITS file", self.originalPath) 33 #self.localCopyPath = self. localDir+ "/temp.fits"32 #self.localCopyPath = self.config.basePath + "/temp.fits" 34 33 #shutil.copy2(self.originalPath, self.localCopyPath) 35 34
Note:
See TracChangeset
for help on using the changeset viewer.
