aboutsummaryrefslogtreecommitdiffstats
path: root/.tcsh/heainit.csh
blob: c1a8a0496d08e3219b336fa5891d8cd6fb1abe8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/csh
#
# HEASOFT settings
#
unset printexitvalue

set HEA_STATE=`echo $PATH | tr ':' '\n' | grep 'heasoft'`
if ( "x${HEA_STATE}" == "x" ) then
    source $HEADAS/headas-init.csh
endif
unset HEA_STATE
# set HEA_LDLIB="`echo $LD_LIBRARY_PATH | tr ':' '\n' | grep 'heasoft' | head -n 1`"

exit 0