Changeset 34990
- Timestamp:
- Jan 19, 2013, 6:55:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20121219/ippToPsps/jython/setupScratchDb.py
r34953 r34990 42 42 # install IN tables 43 43 self.logger.infoPair("Installing", "initialization tables") 44 tables = stilts.treads("../config/IN/tables.vot") 44 if self.configDir is None: 45 tables = stilts.treads("../config/tables.IN.vot") 46 else: 47 tablepath = self.configDir + "tables.IN.vot" 48 tables = stilts.treads(tablepath) 49 45 50 for table in tables: 46 51 # EAM TEST I/O … … 48 53 self.logger.debug("Creating IN table: " + table.name) 49 54 table.write(self.scratchDb.url + '#' + table.name) 55 56 # create basic DVO tables 57 self.logger.infoPair("Installing", "initialization tables") 58 self.scratchDb.createDvoTables() 50 59 51 60 '''
Note:
See TracChangeset
for help on using the changeset viewer.
