IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23282 for trunk


Ignore:
Timestamp:
Mar 11, 2009, 4:29:49 PM (18 years ago)
Author:
bills
Message:

change -promoteexp to -advanceexp

Location:
trunk/ippTasks
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/chip.pro

    r23230 r23282  
    2929    active true
    3030  end
    31   task chip.promoteexp
     31  task chip.advanceexp
    3232    active true
    3333  end
    … …  
    4141    active false
    4242  end
    43   task chip.promoteexp
     43  task chip.advanceexp
    4444    active false
    4545  end
    … …  
    207207
    208208# this variable will cycle through the known database names
    209 $chip_promote_DB = 0
    210 
    211 # promote exposures for which all imfiles have completed processing
     209$chip_advance_DB = 0
     210
     211# advance exposures for which all imfiles have completed processing
    212212# sets the exposure state to full and queues warp processing if requested
    213 task           chip.promoteexp
     213task           chip.advanceexp
    214214  host         local
    215215
    … …  
    220220
    221221  stdout NULL
    222   stderr $LOGDIR/chip.promoteexp.log
    223 
    224   task.exec
    225     $run = chiptool -promoteexp -limit 10
     222  stderr $LOGDIR/chip.advanceexp.log
     223
     224  task.exec
     225    $run = chiptool -advanceexp -limit 10
    226226    if ($DB:n == 0)
    227227      option DEFAULT
    228228    else
    229229      # save the DB name for the exit tasks
    230       option $DB:$chip_promote_DB
    231       $run = $run -dbname $DB:$chip_promote_DB
    232       $chip_promote_DB ++
    233       if ($chip_promote_DB >= $DB:n) set chip_promote_DB = 0
     230      option $DB:$chip_advance_DB
     231      $run = $run -dbname $DB:$chip_advance_DB
     232      $chip_advance_DB ++
     233      if ($chip_advance_DB >= $DB:n) set chip_advance_DB = 0
    234234    end
    235235    add_poll_args run
  • trunk/ippTasks/fake.pro

    r23230 r23282  
    2626    active true
    2727  end
    28   task fake.promoteexp
     28  task fake.advanceexp
    2929    active true
    3030  end
    … …  
    3838    active false
    3939  end
    40   task fake.promoteexp
     40  task fake.advanceexp
    4141    active false
    4242  end
    … …  
    190190end
    191191
    192 # promote exposures for which all imfiles have completed processing
     192# advance exposures for which all imfiles have completed processing
    193193# sets the exposure state to full and queues warp processing if requested
    194 $fake_promote_DB = 0
    195 task           fake.promoteexp
     194$fake_advance_DB = 0
     195task           fake.advanceexp
    196196  host         local
    197197
    … …  
    202202
    203203  stdout NULL
    204   stderr $LOGDIR/fake.promoteexp.log
    205 
    206   task.exec
    207     $run = faketool -promoteexp -limit 10
     204  stderr $LOGDIR/fake.advanceexp.log
     205
     206  task.exec
     207    $run = faketool -advanceexp -limit 10
    208208    if ($DB:n == 0)
    209209      option DEFAULT
    210210    else
    211211      # save the DB name for the exit tasks
    212       option $DB:$fake_promote_DB
    213       $run = $run -dbname $DB:$fake_promote_DB
    214       $fake_promote_DB ++
    215       if ($fake_promote_DB >= $DB:n) set fake_promote_DB = 0
     212      option $DB:$fake_advance_DB
     213      $run = $run -dbname $DB:$fake_advance_DB
     214      $fake_advance_DB ++
     215      if ($fake_advance_DB >= $DB:n) set fake_advance_DB = 0
    216216    end
    217217    add_poll_args run
Note: See TracChangeset for help on using the changeset viewer.