- Timestamp:
- Mar 30, 2012, 2:49:37 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20111122/ippToPsps/jython/fits.py
r32455 r33638 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.
