#!/bin/csh -f

cat << DESC_END
-----------------------------------------------------------------
 GRAPE-DR model450 configuration program
   usage: config450 [freqM]
-----------------------------------------------------------------
DESC_END

set cmdname  = $0:t;
set rootpath = $0:h/../..
pushd $rootpath >/dev/null
set rootpath = `pwd`
popd >/dev/null

if ($#argv == 1) then
  set freqM = $1
else
  set freqM = 32
endif

${rootpath}/gdr/test/configsub 0 ${freqM}
