#! /bin/csh -f 

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

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

#execution
	if ( -e f03 && -e f05 ) then

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/nmadanal.exe
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/smadanal.exe
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wmadanal.exe
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/umadanal.exe
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/gmadanal.exe
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hmadanal.exe
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/imadanal.exe
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jmadanal.exe
		else 
			echo  "madanal [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

	else
		echo  " f03 or f05  not exist "
		exit
	endif
