File indexing completed on 2026-04-09 07:48:56
0001
0002
0003 default=remote
0004 arg=${1:-$default}
0005
0006 if [ "$arg" == "remote" ]; then
0007 export OPTICKS_KEY=$OPTICKS_KEY_REMOTE
0008 export OPTICKS_GEOCACHE_PREFIX=$HOME/.opticks
0009 elif [ "$arg" == "old" ]; then
0010 export OPTICKS_KEY=$OPTICKS_KEY_OLD
0011 elif [ "$arg" == "new" ]; then
0012 export OPTICKS_KEY=$OPTICKS_KEY_NEW
0013 elif [ "$arg" == "asis" ]; then
0014 echo $msg using OPTICKS_KEY : $OPTICKS_KEY
0015 fi
0016
0017 ipython -i CSGFoundry.py
0018