#! /bin/csh -f 

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

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

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

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/ncontrd.exe 
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/scontrd.exe 
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wcontrd.exe 
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/ucontrd.exe 
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/gcontrd.exe 
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hcontrd.exe 
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/icontrd.exe 
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jcontrd.exe 
		else 
			echo  "contrd [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

		rm c06
		cd   
	else
		echo  " c04d or f09 or f39 not exist "
		exit
	endif

