Changeset 37350
- Timestamp:
- Sep 3, 2014, 1:25:44 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-20140813/ippToPsps/jython
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140813/ippToPsps/jython/config.py
r37246 r37350 27 27 self.camera = "gpc1" 28 28 self.onebatch = False 29 self.loopBatch = False 29 30 30 31 if sys.argv.count("-test"): … … 61 62 self.onebatch = True 62 63 sys.argv.remove("-one-batch") 64 65 if sys.argv.count("-loop"): 66 self.loopBatch = True 67 sys.argv.remove("-loop") 63 68 64 69 ## name of the top-level jython script -
branches/eam_branches/ipp-20140813/ippToPsps/jython/loader.py
r37246 r37350 78 78 self.onePassOnly = 1 79 79 80 # set a poll time of about 1 minute 81 self.parsePollTimeArg("0.0166") 80 if self.config.loopBatch: 81 self.parsePollTimeArg("0.0166") 82 else: 83 self.parsePollTimeArg("0.0") 82 84 83 85 self.skychunk.printAll() -
branches/eam_branches/ipp-20140813/ippToPsps/jython/scratchdb.py
r37309 r37350 509 509 flags INT, \ 510 510 PRIMARY KEY (imageID, ippDetectID), \ 511 KEY (objID, detectID) \511 KEY (objID, detectID), \ 512 512 KEY (objID, ippDetectID) \ 513 513 )"
Note:
See TracChangeset
for help on using the changeset viewer.
