IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 31, 2013, 12:21:01 PM (14 years ago)
Author:
eugene
Message:

adding notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20121219/ippToPsps/jython/config.py

    r34971 r35075  
    1313class Config(object):
    1414
    15 
    1615    '''
    1716    Constructor
     
    2625
    2726        # 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
    2829        if self.configDir is None:
    2930          self.settingsPath = "../config/settings.xml" # TODO
     
    3536        self.settingsDoc = ElementTree(file=self.settingsPath)
    3637        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
    3741        self.czarPlotsPath = self.settingsDoc.find("czarPlotsPath").text
    3842
    3943        # this is the border (in degrees) that we place around any loading box of
    4044        # 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
    4147        self.BORDER = 1.65
    4248        self.isLoaded = False
Note: See TracChangeset for help on using the changeset viewer.