IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33501 for trunk/ippToPsps


Ignore:
Timestamp:
Mar 13, 2012, 10:48:48 AM (14 years ago)
Author:
rhenders
Message:

including a path to the czar plots dir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/jython/config.py

    r33358 r33501  
    88
    99'''
    10 A class encapsulating the ippToPsps config file
     10A class encapsulating a ippToPsps configuration. This information is stored in the 'config' table
     11of the ipptopsps database, but there are some higher level config details in the 'settings.xml' file
    1112'''
    1213class Config(object):
     
    2728        self.settingsDoc = ElementTree(file=self.settingsPath)
    2829        self.logPath = self.settingsDoc.find("logPath").text
    29 
     30        self.czarPlotsPath = self.settingsDoc.find("czarPlotsPath").text
    3031
    3132        # this is the border (in degrees) that we place around any loading box of
    3233        # PS1 pointings to ensure we pull a large enough area out of DVO
    33         self.BORDER = 1.6
     34        self.BORDER = 1.65
    3435        self.isLoaded = False
    3536
     
    4647            self.logger.infoPair("Loading epoch", self.epoch)
    4748            self.logger.infoPair("Data release", "%d" % self.dataRelease)
    48             self.logger.infoBool("Test mode?", self.test)
    49             self.logger.infoBool("Forcing?", self.force)
    50             self.logger.infoBool("Reporting NULLS?", self.reportNulls)
    5149            for batchType in self.batchTypes: self.logger.infoPair("Queuing batch type", batchType)
    5250        except:
Note: See TracChangeset for help on using the changeset viewer.