#! /bin/csh -f 

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

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

#execution
	if ( -e l04 && -e l05 && -e f09 && -e f39 ) then

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/nlvlshm.exe 
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/slvlshm.exe 
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wlvlshm.exe 
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/ulvlshm.exe 
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/glvlshm.exe 
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hlvlshm.exe 
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/ilvlshm.exe 
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jlvlshm.exe 
		else 
			echo  "lvlshm [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

		$dvdir/object/lvlplt.exe
		rm l10
		rm l33 
		rm l35
		cd   
	else
		echo  " l04 or l05 or f09 or f39  not exist "
		exit
	endif
