IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27200


Ignore:
Timestamp:
Mar 4, 2010, 5:47:58 PM (16 years ago)
Author:
watersc1
Message:

Added break points to escape out of the heavy processing stages if we are currently attempting to burntool data. This should allow burntool to finish faster and have fewer errors.

Location:
trunk/ippTasks
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/camera.pro

    r26950 r27200  
    143143    if ($N == 0) break
    144144    if ($NETWORK == 0) break
     145    if ($BURNTOOLING == 1) break
    145146   
    146147    # look for new images in camPendingExp (pantaskState == INIT)
  • trunk/ippTasks/chip.pro

    r27005 r27200  
    133133    if ($N == 0) break
    134134    if ($NETWORK == 0) break
     135    if ($BURNTOOLING == 1) break
    135136   
    136137    # look for new images in chipPendingImfile (pantaskState == INIT)
  • trunk/ippTasks/diff.pro

    r27021 r27200  
    166166    if ($N == 0) break
    167167    if ($NETWORK == 0) break
    168    
     168    if ($BURNTOOLING == 1) break
     169
    169170    # look for new images in diffSkyfile (pantaskState == INIT)
    170171    book getpage diffSkyfile 0 -var pageName -key pantaskState INIT
  • trunk/ippTasks/nightly_stacks.pro

    r27181 r27200  
    318318
    319319     if ("$ns_STATE" != "QUEUECHIPS") break
     320     $BURNTOOLING = 0
    320321     $run = automate_stacks.pl --queue_chips --date $date
    321322     command $run
     
    533534    if ($ns_RburnPAGE >= $Npages) set ns_RburnPAGE = 0
    534535    if (("$ns_STATE" != "QUEUEBURNING")&&("$ns_STATE" != "BURNING")) break
     536    $BURNTOOLING = 1
    535537    # Find out where in the list of jobs we are
    536538    book getword nsBurntool $date btN -var btN
  • trunk/ippTasks/pantasks.pro

    r27005 r27200  
    44if ($?NEBULOUS == 0)      set NEBULOUS = 0
    55if ($?NETWORK == 0)       set NETWORK = 1
     6if ($?BURNTOOLING == 0)   set BURNTOOLING = 0
    67if ($?PARALLEL == 0)      set PARALLEL = 1
    78if ($?VERBOSE == 0)       set VERBOSE = 1
  • trunk/ippTasks/stack.pro

    r27008 r27200  
    161161    if ($N == 0) break
    162162    if ($NETWORK == 0) break
    163    
     163    if ($BURNTOOLING == 1) break
     164
    164165    # look for new images in stackSumSkyfile (pantaskState == INIT)
    165166    book getpage stackSumSkyfile 0 -var pageName -key pantaskState INIT
  • trunk/ippTasks/warp.pro

    r27125 r27200  
    171171    if ($N == 0) break
    172172    if ($NETWORK == 0) break
    173    
     173    if ($BURNTOOLING == 1) break
     174
    174175    # look for new images in warpInputExp (pantaskState == INIT)
    175176    book getpage warpInputExp 0 -var pageName -key pantaskState INIT
Note: See TracChangeset for help on using the changeset viewer.