ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/JSOC/proj/workflow/scripts/fill_mdi_gaps.csh
Revision: 1.1
Committed: Sun Jan 2 22:13:25 2011 UTC (12 years, 8 months ago) by phil
Content type: application/x-csh
Branch: MAIN
CVS Tags: Ver_6-0, Ver_6-1, Ver_6-2, Ver_6-3, Ver_6-4, Ver_9-1, Ver_5-14, Ver_5-13, Ver_LATEST, Ver_9-3, Ver_9-41, Ver_9-2, Ver_8-8, Ver_8-2, Ver_8-3, Ver_8-0, Ver_8-1, Ver_8-6, Ver_8-7, Ver_8-4, Ver_8-5, Ver_7-1, Ver_7-0, Ver_9-5, Ver_9-4, Ver_8-10, Ver_8-11, Ver_8-12, Ver_9-0, HEAD
Log Message:
Initial commit, copied from ~phil/workflow/scripts

File Contents

# Content
1 #! /bin/csh -f
2
3 # echo starting $0 $*
4
5 if ($?WORKFLOW_ROOT) then
6 set WFDIR = $WORKFLOW_DATA
7 set WFCODE = $WORKFLOW_ROOT
8 else
9 echo Need WORKFLOW_ROOT variable to be set.
10 exit 1
11 endif
12
13 foreach ATTR (TYPE WANTLOW WANTHIGH GATE)
14 set ATTRTXT = `grep $ATTR ticket`
15 set $ATTRTXT
16 end
17
18 set PRODUCT = `cat $WFDIR/gates/$GATE/product`
19
20 set_gaps_missing ds=$PRODUCT low=$WANTLOW high=$WANTHIGH
21
22 exit $status
23