IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26567 for trunk/ippTasks


Ignore:
Timestamp:
Jan 12, 2010, 2:07:51 PM (17 years ago)
Author:
bills
Message:

Make update processing compatible with magic. Fix some bugs in update for the warp stage
Make script changes to implement update for diff stage.
Change value of 'magicked' in the various runs and files to contain the value
the magic_id of the magicRun that corresponds to the streaks file used for desreaking.

Location:
trunk/ippTasks
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/chip.pro

    r25693 r26567  
    138138    book getword chipPendingImfile $pageName state -var RUN_STATE
    139139
    140     if ("$RAW_MAGICKED" == "T")
    141         $MAGICKED_ARG = "--magicked"
     140    if ($RAW_MAGICKED > 0)
     141        $MAGICKED_ARG = "--magicked $RAW_MAGICKED"
    142142    else
    143143        $MAGICKED_ARG = ""
  • trunk/ippTasks/diff.pro

    r25570 r26567  
    155155    book getword diffSkyfile $pageName bothways -var BOTHWAYS
    156156    book getword diffSkyfile $pageName workdir -var WORKDIR_TEMPLATE
     157    book getword diffSkyfile $pageName state -var RUN_STATE
    157158    book getword diffSkyfile $pageName dbname -var DBNAME
    158159
     
    171172    stderr $LOGDIR/diff.skycell.log
    172173
    173     $run = diff_skycell.pl --threads @MAX_THREADS@ --diff_id $DIFF_ID --skycell_id $SKYCELL_ID --diff_skyfile_id $DIFF_SKYFILE_ID --outroot $outroot --redirect-output
     174    $run = diff_skycell.pl --threads @MAX_THREADS@ --diff_id $DIFF_ID --skycell_id $SKYCELL_ID --diff_skyfile_id $DIFF_SKYFILE_ID --outroot $outroot --redirect-output --run-state $RUN_STATE
    174175    if ("$BOTHWAYS" == "T")
    175176       $run = $run --inverse
  • trunk/ippTasks/dist.cleanup.pro

    r26087 r26567  
    4848
    4949  stdout NULL
    50   stderr $LOGDIR/dist.cleanup.log
     50  stderr $LOGDIR/dist.cleanup.load.log
    5151
    5252  task.exec
    5353    if ($LABEL:n == 0) break
    54     $run = disttool -pendingcleanup
     54    $run = disttool -pendingcleanup -all
    5555    if ($DB:n == 0)
    5656      option DEFAULT
     
    9898  periods      -poll $RUNPOLL
    9999  periods      -exec $RUNEXEC
    100   periods      -timeout 60
     100  periods      -timeout 600
    101101  active       false
    102102
  • trunk/ippTasks/warp.pro

    r25693 r26567  
    295295    book getword warpPendingSkyCell $pageName state -var RUN_STATE
    296296    book getword warpPendingSkyCell $pageName magicked -var CHIP_MAGICKED
    297     if ("$CHIP_MAGICKED" == "T")
    298         $MAGICKED_ARG = "--magicked"
     297    if ($CHIP_MAGICKED > 0)
     298        $MAGICKED_ARG = "--magicked $CHIP_MAGICKED"
    299299    else
    300300        $MAGICKED_ARG = ""
Note: See TracChangeset for help on using the changeset viewer.