#!/bin/csh
#
# usage: armar_runreo icsfilename
#
# script to run qreou (the REORDER program)
#
# the SCRATCH environment variable points to your directory containing:
#   your input radar data file
#   your output file(s) containing gridded data
#   and scratch disk space for the program on the order of several magabytes
#
setenv SCRATCH /home/disk/hail2/yuter/reorder/armar
#
# the input should be redirected to the file containing 
#   the Input Control String
# and if you want a permanent record of the run, 
#   the output should be redirected to a file
#
# the "nice +10" keeps you from hogging the machine and thus incurring
#   the wrath of other users
#
#
#rm 930118_testreo_ground1.log 
set atime = `/usr/bin/date  "+%m%d%H%M"`
/home/disk/hail/meso/bin/qreou < $1 >! mlb_reorder.run.$atime".log"
unset atime   
#
# end script

