- Timestamp:
- Jan 31, 2013, 12:21:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20121219/ippToPsps/jython/config.py
r34971 r35075 13 13 class Config(object): 14 14 15 16 15 ''' 17 16 Constructor … … 26 25 27 26 # self.configdir is set in ipptopsps.jy on init based on env(IPPTOPSPS_DATA) 27 # for test purposes, an uninstalled system may use the config information from 28 # a relative path 28 29 if self.configDir is None: 29 30 self.settingsPath = "../config/settings.xml" # TODO … … 35 36 self.settingsDoc = ElementTree(file=self.settingsPath) 36 37 self.logPath = self.settingsDoc.find("logPath").text 38 39 # XXX this is poor -- the czartool stuff is not related to 40 # ipptopsps and should be moved elsewhere 37 41 self.czarPlotsPath = self.settingsDoc.find("czarPlotsPath").text 38 42 39 43 # this is the border (in degrees) that we place around any loading box of 40 44 # PS1 pointings to ensure we pull a large enough area out of DVO 45 # XXX this is a poor place to put this information -- it is completely gpc-specific. 46 # probably should go elsewhere 41 47 self.BORDER = 1.65 42 48 self.isLoaded = False
Note:
See TracChangeset
for help on using the changeset viewer.
