#!/bin/csh -f

cat << DESC_END
-----------------------------------------------------------------
 GRAPE-DR model1800 configuration program
   usage: config1800 [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}
${rootpath}/gdr/test/configsub 1 ${freqM}
${rootpath}/gdr/test/configsub 2 ${freqM}
${rootpath}/gdr/test/configsub 3 ${freqM}
