Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/bin/bash -l 
0002 usage(){ cat << EON
0003 pr.sh
0004 ======
0005 
0006 When just looking at plots can use argumentless invokation
0007 which will pop up two windows for N=0 and N=1::
0008 
0009    ./pr.sh 
0010 
0011 When capturing screenshots for presentation need to use N=0 or N=1 
0012 for the auto-book-keeping to work, eg::
0013 
0014     N=0 ./pr.sh 
0015     N=1 ./pr.sh 
0016 
0017 Then whilst each window is showing::
0018 
0019     ./pr.sh mpcap 
0020     PUB="some_comment" ./pr.sh mppub
0021 
0022 EON
0023 }
0024 
0025 DIR=$(dirname $BASH_SOURCE)
0026 #export TIGHT=1
0027 
0028 #defarg="run_pr"
0029 defarg="pr"
0030 arg=${1:-$defarg}
0031 
0032 $DIR/U4SimulateTest.sh $arg
0033