IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24883 for trunk/ippTools/share


Ignore:
Timestamp:
Jul 21, 2009, 2:42:19 PM (17 years ago)
Author:
bills
Message:

Added mode to magictool to censor a magicRun. This is used if unmasked streaks
are found.
This causes any magicDSRuns associated to have the state set to censored
and any de-streaked files to be queued for reverting.

Location:
trunk/ippTools/share
Files:
5 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/Makefile.am

    r24882 r24883  
    137137     flatcorr_dropcamera.sql \
    138138     magictool_addmask.sql \
     139     magictool_censor_raw.sql \
     140     magictool_censor_chip.sql \
     141     magictool_censor_camera.sql \
     142     magictool_censor_warp.sql \
     143     magictool_censor_diff.sql \
    139144     magictool_create_tmp_warpcomplete.sql \
    140145     magictool_definebyquery_insert.sql \
  • trunk/ippTools/share/magicdstool_torevert_camera.sql

    r24689 r24883  
    1919    JOIN rawExp using(exp_id)
    2020WHERE magicDSRun.stage = 'camera'
    21     AND magicDSRun.state = 'new'
     21    AND (magicDSRun.state = 'new' OR magicDSRun.state = 'censored')
    2222    AND magicDSFile.fault > 0
  • trunk/ippTools/share/magicdstool_torevert_chip.sql

    r24689 r24883  
    1818    JOIN rawExp using(exp_id)
    1919WHERE magicDSRun.stage = 'chip'
    20     AND magicDSRun.state = 'new'
     20    AND (magicDSRun.state = 'new' OR magicDSRun.state = 'censored')
    2121    AND magicDSFile.fault > 0
  • trunk/ippTools/share/magicdstool_torevert_diff.sql

    r24882 r24883  
    1818    JOIN rawExp USING(exp_id)
    1919WHERE magicDSRun.stage = 'diff'
    20     AND magicDSRun.state = 'new'
     20    AND (magicDSRun.state = 'new' OR magicDSRun.state = 'censored')
    2121    AND magicDSFile.fault > 0
  • trunk/ippTools/share/magicdstool_torevert_raw.sql

    r24689 r24883  
    1818                      AND rawImfile.tmp_class_id = summitImfile.class_id)
    1919WHERE magicDSRun.stage = 'raw'
    20     AND magicDSRun.state = 'new'
     20    AND (magicDSRun.state = 'new' OR magicDSRun.state = 'censored')
    2121    AND magicDSFile.fault > 0
  • trunk/ippTools/share/magicdstool_torevert_warp.sql

    r24689 r24883  
    2121    JOIN rawExp USING(exp_id)
    2222WHERE magicDSRun.stage = 'warp'
    23     AND magicDSRun.state = 'new'
     23    AND (magicDSRun.state = 'new' OR magicDSRun.state = 'censored')
    2424    AND magicDSFile.fault > 0
Note: See TracChangeset for help on using the changeset viewer.