diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 15:47:05 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 15:47:05 +0800 |
commit | a804d0436a98faffb6d3179697aaee9473548593 (patch) | |
tree | 451fc2388c626a37d162905601bd5a5e5c4cf6e0 /.tcsh/ciaoinit.csh | |
parent | dba767e8ff1599a0b4cf8fb3dc06ac0cce727748 (diff) | |
download | dotfiles-a804d0436a98faffb6d3179697aaee9473548593.tar.bz2 |
Update tcsh configurations
* Clean up tcshrc
* Clean up tcshrc.local
* Update tcsh/{ciaoinit,heainit}.csh
Diffstat (limited to '.tcsh/ciaoinit.csh')
-rw-r--r-- | .tcsh/ciaoinit.csh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.tcsh/ciaoinit.csh b/.tcsh/ciaoinit.csh index 3079cdc..8aa292b 100644 --- a/.tcsh/ciaoinit.csh +++ b/.tcsh/ciaoinit.csh @@ -2,20 +2,17 @@ # # CIAO settings # -unset printexitvalue -set HEA_STATE="`echo $PATH | tr ':' '\n' | grep 'heasoft'`" set CIAO_STATE="`echo $PATH | tr ':' '\n' | grep 'ciao'`" -if ( "x${HEA_STATE}" == "x" ) then - heainit -endif if ( "x${CIAO_STATE}" == "x" ) then source $CIAO_PATH/bin/ciao.csh else source $CIAO_PATH/bin/ciao.csh -o endif -unset HEA_STATE unset CIAO_STATE +setenv CIAO_LD_LIBRARY_PATH "${ASCDS_INSTALL}/lib:${ASCDS_INSTALL}/ots/lib:${ASCDS_INSTALL}/ots/lib/vtk-5.10" +setenv ASCDS_IMAGER_PATH "${ASCDS_INSTALL}/ots/saord" + exit 0 |