IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28222 for trunk/ippTasks


Ignore:
Timestamp:
Jun 4, 2010, 1:44:20 PM (16 years ago)
Author:
watersc1
Message:

Updates to nightly science processing to queue detrend verify runs for a sampling of the detrend data for that date. It's set to off for the time being, until the config file information is finalized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/nightly_stacks.pro

    r27860 r28222  
    55macro nightly.stacks.on
    66    ns.initday.on
     7    ns.detrends.off
    78    ns.registration.on
    89    ns.burntool.on
     
    1314macro nightly.stacks.off
    1415    ns.initday.off
     16    ns.detrends.off
    1517    ns.registration.off
    1618    ns.burntool.off
     
    2123macro ns.on
    2224    ns.initday.on
     25    ns.detrends.off
    2326    ns.registration.on
    2427    ns.burntool.on
     
    2932macro ns.off
    3033    ns.initday.off
     34    ns.detrends.off
    3135    ns.registration.off
    3236    ns.burntool.off
     
    4145end
    4246
     47macro ns.detrends.on
     48  task ns.detrends.load
     49    active true
     50  end
     51end
     52
    4353macro ns.registration.on
    4454  task ns.registration.load
     
    7686macro ns.initday.off
    7787  task ns.initday.load
     88    active false
     89  end
     90end
     91
     92macro ns.detrends.off
     93  task ns.detrends.load
    7894    active false
    7995  end
     
    186202  #operation times out?
    187203  task.exit    timeout
     204    showcommand timeout
     205  end
     206end
     207
     208#
     209# Queue off any possible detrend verification runs
     210#
     211task              ns.detrends.load
     212  host            local
     213  periods         -poll $LOADPOLL
     214  periods         -exec $LOADEXEC
     215  periods         -timeout 30
     216  trange          23:00:00 24:00:00 -nmax 1
     217  npending        1
     218
     219  task.exec
     220    stdout $LOGDIR/ns.detrends.log
     221    stdout $LOGDIR/ns.detrends.log
     222    $today = `date +%Y-%m-%d`
     223
     224    command automate_stacks.pl --queue_detrends --date $today
     225  end
     226 
     227  task.exit       0
     228    # nothign to do here
     229  end
     230  # locked list
     231  task.exit       default
     232    showcommand failure
     233  end
     234  task.exit       crash
     235    showcommand crash
     236  end
     237  # operation times out
     238  task.exit       timeout
    188239    showcommand timeout
    189240  end
Note: See TracChangeset for help on using the changeset viewer.