Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:50:28

0001 #!/bin/bash -l 
0002 
0003 arg=${1:-ana}
0004 
0005 sym=A
0006 SYM=${SYM:-$sym}
0007 
0008 case $SYM in 
0009   A) N=0 ;;
0010   B) N=1 ;;
0011 esac
0012 
0013 if [ "$SYM" == "A" ]; then 
0014 
0015   pid=813
0016 
0017 elif [ "$SYM" == "B" ]; then 
0018 
0019   #pid=748
0020   pid=892
0021 
0022 fi 
0023 
0024 
0025 #opt=ast,nrm
0026 opt=idx,nrm
0027 
0028 
0029 
0030 export TOPLINE="N=$N ${SYM}PID=$pid ${SYM}OPT=$opt BGC=yellow FOCUS=0,0,255 ./U4SimtraceTest.sh"
0031 TOPLINE="$TOPLINE $arg"
0032 eval $TOPLINE
0033 
0034