IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2013, 10:52:06 AM (13 years ago)
Author:
bills
Message:

Only queue chipBackgrounRuns for chipRun's that have camRuns that completed
with good quality (0).
This aviods proceeding with bad data and also insures that the camRun has finished
when the chipBackgrounRun happens. This will allow us to update the astrometry
with the cam stage solution.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/bgtool_definechip.sql

    r32680 r35074  
    33FROM chipRun
    44JOIN rawExp USING(exp_id)
     5JOIN camRun USING(chip_id)
     6JOIN camProcessedExp USING(cam_id)
    57LEFT JOIN chipBackgroundRun USING(chip_id)
    68WHERE chipRun.state = 'full'
     9AND camRun.state = 'full'
     10AND camProcessedExp.quality = 0
Note: See TracChangeset for help on using the changeset viewer.