Changeset 32001 for trunk/ippToPsps/jython/batch.py
- Timestamp:
- Aug 3, 2011, 12:37:58 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/batch.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/batch.py
r31985 r32001 35 35 def __init__(self, 36 36 logger, 37 configPath, 37 38 doc, 38 39 gpc1Db, … … 45 46 self.everythingOK = False 46 47 self.readHeader = False 48 self.configPath = configPath 47 49 self.doc = doc 48 50 self.fits = fits … … 65 67 # get dvo info from config 66 68 dvoName = self.doc.find("dvo/name").text 69 dvoGpc1Label = self.doc.find("dvo/gpc1Label").text 67 70 self.dvoLocation = self.doc.find("dvo/location").text 68 71 self.useFullTables = int(self.doc.find("dvo/useFullTables").text) … … 90 93 self.id, 91 94 survey, 92 dvo Name,95 dvoGpc1Label, 93 96 self.datastore.product) 94 97 … … 429 432 430 433 # TODO path to DVO prog hardcoded temporarily 431 cmd = "../src/dvograbber " + self. dvoLocation434 cmd = "../src/dvograbber " + self.configPath + " " + self.dvoLocation 432 435 self.logger.infoPair("Running DVO", cmd) 433 436 p = Popen(cmd, shell=True, stdout=PIPE)
Note:
See TracChangeset
for help on using the changeset viewer.
