Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/advanced/CaTS/scripts/run.sh

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 #!/bin/bash -l 
  2 msg="=== $BASH_SOURCE :"
  3 
  4 ./check.sh 
  5 [ $? -ne 0 ] && echo $msg check failed && exit 1
  6 
  7 extra_logging(){
  8     # switch on extra logging for these classes
  9     export G4Opticks=INFO
 10     export OpMgr=INFO
 11     export OpPropagator=INFO
 12     export OpEngine=INFO
 13     export OScene=INFO
 14     export OEvent=INFO
 15     export OSensorLib=INFO
 16 }
 17 #extra_logging
 18 
 19 genstep_skips(){
 20     # from okc:OpticksGentep.h
 21     local OpticksGenstep_G4Cerenkov_1042=1
 22     local OpticksGenstep_G4Scintillation_1042=2
 23     local OpticksGenstep_DsG4Cerenkov_r3971=3
 24     local OpticksGenstep_DsG4Scintillation_r3971=4
 25     local OpticksGenstep_TORCH=5
 26     # uncomment one of the below to skip cerenkov OR scintillation gensteps at G4Opticks collection
 27     #export OPTICKS_SKIP_GENCODE=${OpticksGenstep_G4Cerenkov_1042},${OpticksGenstep_DsG4Cerenkov_r3971}
 28     #export OPTICKS_SKIP_GENCODE=${OpticksGenstep_G4Scintillation_1042},${OpticksGenstep_DsG4Scintillation_r3971}
 29 }
 30 genstep_skips
 31 
 32 
 33 # defines the embedded commandline picking between production and devlopment(with lots of .npy saves)
 34 #export OPTICKS_EMBEDDED_COMMANDLINE="dev"
 35 export OPTICKS_EMBEDDED_COMMANDLINE="pro"
 36 
 37 # appends to the embedded commandline
 38 #export OPTICKS_EMBEDDED_COMMANDLINE_EXTRA="--rngmax 10 --trivial"   # trivial changes the generate.cu kernel 
 39 export OPTICKS_EMBEDDED_COMMANDLINE_EXTRA="--rngmax 100"
 40 
 41 
 42 #SY=50
 43 #SY=100
 44 SY=5000
 45 #SY=10000
 46 #SY=50000
 47 
 48 cmd="CaTS $PWD/gdml/G4Opticks_$SY.gdml macros/muon_noIO.mac"
 49 #cmd="gdb -ex r --args $cmd"   # uncomment to run under debugger
 50 
 51 echo $cmd
 52 eval $cmd