# csh script for running GENESIS
echo making executables ...
make f=$1 ga.$1
echo running ga.$1 $2 ...
ga.$1 $2
echo making report ...
if (x$2 == x) then
  echo rep for ga.$1 > rep
  date >> rep
  echo ' ' >> rep
  report >> rep
else
  echo rep.$2 for ga.$1 > rep.$2
  date >> rep.$2
  echo ' ' >> rep.$2
  report $2 >> rep.$2
endif
echo done.
