#!/bin/sh

# make the grap file for the data for a mode
#
# usage: makegrap info_file org

if [ $# != 2 ]
   then
	echo usage: makegrap info_file org
	exit 1
fi

INFO=$1
ORG=$2
H=/usr/rtesting/results/analize

/bin/rm -f plotit.grap

for i in *-s.res
   do
	PROTO=`basename $i -s.res`
	$H/grapit $H $INFO $PROTO $ORG
done
