Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:03

0001 #!/bin/bash -l 
0002 usage(){ cat << EOU
0003 
0004 Have moved to spreading this functionality to the separate scripts 
0005 rather than this central way 
0006 
0007 EOU
0008 }
0009 
0010 
0011 msg="=== $BASH_SOURCE :"
0012 
0013 executable=${EXECUTABLE:-CSGOptiXSimtraceTest}
0014 
0015 if [ -n "$cfbase" ]; then 
0016     new_src_base=$cfbase/$EXECUTABLE
0017 else
0018     opticks_key_remote_dir=$(opticks-key-remote-dir)
0019     new_src_base=$HOME/$opticks_key_remote_dir/CSG_GGeo/$EXECUTABLE
0020 fi
0021 
0022 export SRC_BASE=$new_src_base
0023 
0024 #echo $msg SRC_BASE $SRC_BASE
0025 
0026 pub.py $* --digestprefix 
0027 
0028 
0029