Changeset 31352
- Timestamp:
- Apr 22, 2011, 4:17:56 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/batch.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/batch.py
r31350 r31352 336 336 def importIppTables(self, filter): 337 337 338 self.logger.info("Attempting to import tables from input FITS file") 338 339 tables = stilts.treads(self.inputFitsPath) 339 self.logger.info("Attempting to import tables from input FITS file")340 340 341 341 count = 0 … … 346 346 self.logger.info(" Reading IPP table " + table.name + " from FITS file") 347 347 table = stilts.tpipe(table, cmd='explodeall') 348 349 # drop any previous tables before import 350 self.scratchDb.dropTable(table.name) 348 351 349 352 # IPP FITS files are littered with infinities, so remove these … … 439 442 return True 440 443 444 ''' 445 Checks whether this batch has already been processed and published. To be implemented by all subclasses 446 ''' 447 def alreadyProcessed(self): 448 self.logger.info("Not implemented") 449 450 451
Note:
See TracChangeset
for help on using the changeset viewer.
