Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/bin/bash -l 
0002 usage(){ cat << EOU
0003 U4SimtracePlot.sh
0004 ===================
0005 
0006 Checking U4Navigator Simtrace SEvt 
0007 (which are very different to the old SSimtrace.h solid-centric SEvt) 
0008 
0009 These navigator Simtrace SEvt are written by U4SimulateTest.sh 
0010 only when the below envvar is set::
0011 
0012    export U4Recorder__EndOfRunAction_Simtrace=1
0013 
0014 EOU
0015 }
0016 
0017 
0018 geom=FewPMT
0019 evt=999
0020 
0021 export VERSION=${N:-0}
0022 export GEOM=${GEOM:-$geom}
0023 export GEOMFOLD=/tmp/$USER/opticks/GEOM/$GEOM
0024 export EVT=${EVT:-$evt}
0025 export FOLD=$GEOMFOLD/U4SimulateTest/ALL/$EVT
0026 
0027 DIR=$(dirname $BASH_SOURCE)
0028 ${IPYTHON:-ipython} --pdb -i $DIR/U4SimtracePlot.py 
0029 
0030 
0031