aboutsummaryrefslogtreecommitdiffstats
path: root/_tcsh/ciaoinit.csh
diff options
context:
space:
mode:
Diffstat (limited to '_tcsh/ciaoinit.csh')
-rw-r--r--_tcsh/ciaoinit.csh18
1 files changed, 18 insertions, 0 deletions
diff --git a/_tcsh/ciaoinit.csh b/_tcsh/ciaoinit.csh
new file mode 100644
index 0000000..8aa292b
--- /dev/null
+++ b/_tcsh/ciaoinit.csh
@@ -0,0 +1,18 @@
+#!/bin/csh -
+#
+# CIAO settings
+#
+
+set CIAO_STATE="`echo $PATH | tr ':' '\n' | grep 'ciao'`"
+if ( "x${CIAO_STATE}" == "x" ) then
+ source $CIAO_PATH/bin/ciao.csh
+else
+ source $CIAO_PATH/bin/ciao.csh -o
+endif
+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
+