Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/bin/bash
0002 usage(){ cat << EOU
0003 G4CXTest_raindrop_simtrace.sh
0004 ==============================
0005 
0006 ::
0007 
0008    ~/o/g4cx/tests/G4CXTest_raindrop_simtrace.sh
0009 
0010 
0011 Note that definition of the world volume is grotty.
0012 Probably Geant4 does not like intersecting from
0013 origins outside world.
0014 
0015 EOU
0016 }
0017 
0018 cd $(dirname $(realpath $BASH_SOURCE))
0019 
0020 #export CEGS=16:0:9:2000
0021 export CEGS=11:0:11:2000
0022 
0023 defarg=run_tra
0024 arg=${1:-$defarg}
0025 
0026 B_SIMTRACE=1 ./G4CXTest_raindrop.sh $arg
0027 
0028