#! /bin/csh -f 

#set variable
	set nors = $1
	set fn = $2

#find directory 
	if ( $fn !="" ) then 
		cd $fn	
  	endif

#execution
	if ( -e r04 && -e f09 && -e f39 ) then

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/nrhomin.exe 
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/srhomin.exe 
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wrhomin.exe 
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/urhomin.exe 
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/grhomin.exe 
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hrhomin.exe 
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/irhomin.exe 
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jrhomin.exe 
		else 
			echo  "rhomin [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

		rm r12 
		cd   
	else
		echo  " r04 or f09 or f39  not exist "
		exit
	endif
