IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 29, 2015, 5:28:11 PM (11 years ago)
Author:
eugene
Message:

fix typos and other minor issues with forced galaxy stuff

File:
1 edited

Legend:

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

    r38969 r39008  
    1717from datastore import Datastore
    1818from batch import Batch
    19 from dvodetections import DvoDetections
     19from dvo import Dvo
    2020
    2121from initbatch import InitBatch
     
    102102        except: return ret
    103103           
    104         self.dvoDetections = DvoDetections(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb, self.gpc1Db)
    105 #       self.dvoDetections = DvoDetections(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb)
     104        self.dvo = Dvo(self.logger, self.config, self.skychunk, self.ippToPspsDb, self.scratchDb, self.gpc1Db)
    106105
    107106        return ret
     
    173172                    if (batchType == "P2" or batchType == "ST" or batchType =="DF" or batchType == "FW"):
    174173                        if self.config.resetDvo or not self.ippToPspsDb.isBoxIngested(boxId, self.scratchDb.dbHost):
    175                             if not self.dvoDetections.nativeIngestDetections(boxId, boxDim):
     174                            if not self.dvo.nativeIngestDetections(boxId, boxDim):
    176175                                self.logger.error("Unable to ingest detections with nativeIngest")
    177176                                return False
Note: See TracChangeset for help on using the changeset viewer.