MG: update create_dwa.csh

This commit is contained in:
Vahagn Khachatryan
2014-12-03 11:27:57 +04:00
parent f9deeef3a8
commit b276b6b58c

View File

@@ -5,16 +5,23 @@ if ( $1 == '' ) then
exit
endif
if ( $2 == '' ) then
echo 'VCO is not specified.'
exit
endif
if ( $2 != 'aoi' && $2 != 'aoi-dbg' ) then
echo 'VCO is unknown.'
exit
endif
set VVCO=$2
mkdir -p $1
cd $1
setenv DWA `pwd`
if ( $2 != '' ) then
set VVCO=$VCO-$2
else
set VVCO=$VCO
endif
ic_dwa -lv $IWA $DWA $VVCO
######################