IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18448


Ignore:
Timestamp:
Jul 9, 2008, 12:38:31 PM (18 years ago)
Author:
eugene
Message:

chiptool now uses new state names: new (for run), full (for stop), and others for the cleanup / update steps

Location:
trunk/ippTools
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/notes.txt

    r17710 r18448  
     1
     22008.07.09 EAM
     3
     4  In order to implement the 'cleanup' and 'update' strategies, we have
     5  changed the state names and defined addtional states as follows:
     6
     7  * new          : entry is unprocessed (was 'run')
     8  * full         : entry is processed and has all output data products (was 'done')
     9  * goto_cleaned : entry should be processed by the 'cleanup' system
     10  * cleaned      : entry has been processed by the 'cleanup' system --
     11                   some output data products are now missing.
     12                   
     13  * goto_full    : entry should be re-processed by the 'update' system
     14  * full         : entry has been re-processed by the 'update' system
     15 
     16  * goto_purged  : entry should be processed by the 'cleanup' ssytem
     17                   to purge all output data
     18  * purged       : entry has been purged
     19
     20
     21
     222008.05.16 EAM
    123
    224caltool
     
    426  * add the -region
    527  * change 'catdir' to 'dvo_id'
    6   *     
  • trunk/ippTools/share/difftool_inputskyfile.sql

    r18029 r18448  
    3434        AND fakeRun.state = 'stop'
    3535        AND camRun.state = 'stop'
    36         AND chipRun.state = 'stop'
     36        AND chipRun.state = 'full'
    3737    UNION
    3838    SELECT
     
    7070        AND fakeRun.state = 'stop'
    7171        AND camRun.state = 'stop'
    72         AND chipRun.state = 'stop'
     72        AND chipRun.state = 'full'
    7373    ) as Foo
  • trunk/ippTools/share/difftool_todiffskyfile.sql

    r18029 r18448  
    2929  AND fakeRun.state = 'stop'
    3030  AND camRun.state = 'stop'
    31   AND chipRun.state = 'stop'
     31  AND chipRun.state = 'full'
    3232  AND diffSkyfile.diff_id IS NULL
  • trunk/ippTools/share/faketool_find_camrun.sql

    r18029 r18448  
    3333    WHERE
    3434        camRun.state = 'stop'
    35         AND chipRun.state = 'stop'
     35        AND chipRun.state = 'full'
    3636) as Foo
  • trunk/ippTools/share/faketool_find_pendingexp.sql

    r18029 r18448  
    2727        fakeRun.state = 'run'
    2828        AND camRun.state = 'stop'
    29         AND chipRun.state = 'stop'
     29        AND chipRun.state = 'full'
    3030        AND fakeMask.label IS NULL
    3131        AND fakeProcessedImfile.fake_id IS NULL
  • trunk/ippTools/share/warptool_imfile.sql

    r18124 r18448  
    2424    AND fakeRun.state = 'stop'
    2525    AND camRun.state = 'stop'
    26     AND chipRun.state = 'stop'
     26    AND chipRun.state = 'full'
    2727
  • trunk/ippTools/share/warptool_scmap.sql

    r18029 r18448  
    2222    fakeRun.state = 'stop'
    2323    AND camRun.state = 'stop'
    24     AND chipRun.state = 'stop'
     24    AND chipRun.state = 'full'
  • trunk/ippTools/share/warptool_tooverlap.sql

    r18029 r18448  
    2525    AND fakeRun.state = 'stop'
    2626    AND camRun.state = 'stop'
    27     AND chipRun.state = 'stop'
     27    AND chipRun.state = 'full'
    2828    AND warpSkyCellMap.warp_id IS NULL
    2929    AND warpMask.label IS NULL
  • trunk/ippTools/share/warptool_towarped.sql

    r18029 r18448  
    3030    AND fakeRun.state = 'stop'
    3131    AND camRun.state = 'stop'
    32     AND chipRun.state = 'stop'
     32    AND chipRun.state = 'full'
    3333    AND warpSkyfile.warp_id IS NULL
    3434    AND warpSkyfile.skycell_id IS NULL
Note: See TracChangeset for help on using the changeset viewer.