GRIFFINCollaboration / detectorSimulations_v10

Geant4 version 10 of the simulation code for the GRIFFIN array and it's suite of ancillary detection systems.
MIT License
9 stars 14 forks source link

Using G4 general particle source #89

Closed smayotte closed 3 months ago

smayotte commented 3 months ago

I am not sure my problem is with the detector simulations, but wanted to give asking here a shot anyways.

I have so far always used a setup like this in my run macro:

/gun/particle ion
/gun/ion 3 11 
/gun/energy 2 MeV
/gun/direction 0.0 0 1 
/gun/position 0 0 -100 nm

This works very well, the "/DetSys/gun" does not work for me for some reason. Now what I want to do is use the Geant4 general particle source like this:

/gps/particle ion
/gps/ion 3 11
/gps/energy 2 MeV
/gps/ang/type iso
/gps/direction 0 0 1
/gps/position 0 0 -100 mm

This is because I am trying to do some test with the particle distribution ("/gps/ang/type iso"). The problem is that geant4 says it created the desired ion (Li 3 11), but then when the run starts it throws a geantino and then the program crashes.

Any ideas would be welcome!

VinzenzBildstein commented 3 months ago

Have you tried running with the verbosity set high? Something like

/run/verbose 10
/event/verbose 10
/tracking/verbose 10

That should give you more information on where it crashes (first event? first interaction?), and maybe give a hint why it might be crashing.

The other thing to try is to run it with gdb to get a backtrace at the end, maybe that gives more information.

smayotte commented 3 months ago

I will look into running with gdb. Running with higher verbosity than two results in an error:

parameter out of range: level >=0 && level <=2
***** Illegal parameter (99) </run/verbose 3> *****

***** Batch is interrupted!! *****
VinzenzBildstein commented 3 months ago

Doing a quick grep -RI "parameter out of range:" on the geant4 source directory shows that this appears in two files, G4UIparameter.cc and G4UIcommand.cc. So it seems that you are giving some parameter in your input macro that causes this crash? You can try and comment out the block with gps commands, and if that runs, add them back in one by one. Or you could open the simulation in interactive mode (not provide any macro file), and then enter the commands of the macro file one by one to see if that shows you which one is the problem.

smayotte commented 3 months ago

The error shows up when I run with any verbosity higher than 2 because that is the maximum verbosity value.

Here's the output of my simulation with verbosity 2:

*************************************************************
 Geant4 version Name: geant4-10-02-patch-03 [MT]   (27-January-2017)
                      Copyright : Geant4 Collaboration
                      Reference : NIM A 506 (2003), 250-303
                            WWW : http://cern.ch/geant4
*************************************************************

***** Table : Nb of materials = 57 *****

 Material: G4_Galactic    density:  0.000 kg/m3   RadL: 204310101.835 pc   Nucl.Int.Length: 113427275.267 pc 
                       Imean:  21.800 eV   temperature:   2.73 K  pressure:   0.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.008 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:    G4_Pb    density: 11.350 g/cm3   RadL:   5.613 mm   Nucl.Int.Length:  18.248 cm 
                       Imean: 823.000 eV 

   --->  Element: Pb (Pb)   Z = 82.0   N =   207   A = 207.217 g/mole
         --->  Isotope: Pb204   Z = 82   N = 204   A = 203.97 g/mole   abundance:  1.400 %
         --->  Isotope: Pb206   Z = 82   N = 206   A = 205.97 g/mole   abundance: 24.100 %
         --->  Isotope: Pb207   Z = 82   N = 207   A = 206.98 g/mole   abundance: 22.100 %
         --->  Isotope: Pb208   Z = 82   N = 208   A = 207.98 g/mole   abundance: 52.400 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:   G4_lAr    density:  1.396 g/cm3   RadL:  14.003 cm   Nucl.Int.Length:  85.706 cm 
                       Imean: 188.000 eV 

   --->  Element: Ar (Ar)   Z = 18.0   N =    40   A = 39.948 g/mole
         --->  Isotope:  Ar36   Z = 18   N =  36   A =  35.97 g/mole   abundance:  0.337 %
         --->  Isotope:  Ar38   Z = 18   N =  38   A =  37.96 g/mole   abundance:  0.063 %
         --->  Isotope:  Ar40   Z = 18   N =  40   A =  39.96 g/mole   abundance: 99.600 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: G4_STAINLESS-STEEL    density:  8.000 g/cm3   RadL:   1.738 cm   Nucl.Int.Length:  16.678 cm 
                       Imean: 282.977 eV 

   --->  Element: Fe (Fe)   Z = 26.0   N =    56   A = 55.845 g/mole
         --->  Isotope:  Fe54   Z = 26   N =  54   A =  53.94 g/mole   abundance:  5.845 %
         --->  Isotope:  Fe56   Z = 26   N =  56   A =  55.93 g/mole   abundance: 91.754 %
         --->  Isotope:  Fe57   Z = 26   N =  57   A =  56.94 g/mole   abundance:  2.119 %
         --->  Isotope:  Fe58   Z = 26   N =  58   A =  57.93 g/mole   abundance:  0.282 %
          ElmMassFraction:  74.62 %  ElmAbundance  74.00 % 

   --->  Element: Cr (Cr)   Z = 24.0   N =    52   A = 51.996 g/mole
         --->  Isotope:  Cr50   Z = 24   N =  50   A =  49.95 g/mole   abundance:  4.345 %
         --->  Isotope:  Cr52   Z = 24   N =  52   A =  51.94 g/mole   abundance: 83.789 %
         --->  Isotope:  Cr53   Z = 24   N =  53   A =  52.94 g/mole   abundance:  9.501 %
         --->  Isotope:  Cr54   Z = 24   N =  54   A =  53.94 g/mole   abundance:  2.365 %
          ElmMassFraction:  16.90 %  ElmAbundance  18.00 % 

   --->  Element: Ni (Ni)   Z = 28.0   N =    59   A = 58.693 g/mole
         --->  Isotope:  Ni58   Z = 28   N =  58   A =  57.94 g/mole   abundance: 68.077 %
         --->  Isotope:  Ni60   Z = 28   N =  60   A =  59.93 g/mole   abundance: 26.223 %
         --->  Isotope:  Ni61   Z = 28   N =  61   A =  60.93 g/mole   abundance:  1.140 %
         --->  Isotope:  Ni62   Z = 28   N =  62   A =  61.93 g/mole   abundance:  3.635 %
         --->  Isotope:  Ni64   Z = 28   N =  64   A =  63.93 g/mole   abundance:  0.926 %
          ElmMassFraction:   8.48 %  ElmAbundance   8.00 % 

 Material: G4_CONCRETE    density:  2.300 g/cm3   RadL:  11.553 cm   Nucl.Int.Length:  41.212 cm 
                       Imean: 135.200 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.008 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   1.00 %  ElmAbundance  16.88 % 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.011 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:   0.10 %  ElmAbundance   0.14 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  52.91 %  ElmAbundance  56.25 % 

   --->  Element: Na (Na)   Z = 11.0   N =    23   A = 22.990 g/mole
         --->  Isotope:  Na23   Z = 11   N =  23   A =  22.99 g/mole   abundance: 100.000 %
          ElmMassFraction:   1.60 %  ElmAbundance   1.18 % 

   --->  Element: Mg (Mg)   Z = 12.0   N =    24   A = 24.305 g/mole
         --->  Isotope:  Mg24   Z = 12   N =  24   A =  23.98 g/mole   abundance: 78.990 %
         --->  Isotope:  Mg25   Z = 12   N =  25   A =  24.99 g/mole   abundance: 10.000 %
         --->  Isotope:  Mg26   Z = 12   N =  26   A =  25.98 g/mole   abundance: 11.010 %
          ElmMassFraction:   0.20 %  ElmAbundance   0.14 % 

   --->  Element: Al (Al)   Z = 13.0   N =    27   A = 26.982 g/mole
         --->  Isotope:  Al27   Z = 13   N =  27   A =  26.98 g/mole   abundance: 100.000 %
          ElmMassFraction:   3.39 %  ElmAbundance   2.14 % 

   --->  Element: Si (Si)   Z = 14.0   N =    28   A = 28.085 g/mole
         --->  Isotope:  Si28   Z = 14   N =  28   A =  27.98 g/mole   abundance: 92.230 %
         --->  Isotope:  Si29   Z = 14   N =  29   A =  28.98 g/mole   abundance:  4.683 %
         --->  Isotope:  Si30   Z = 14   N =  30   A =  29.97 g/mole   abundance:  3.087 %
          ElmMassFraction:  33.70 %  ElmAbundance  20.41 % 

   --->  Element: K (K)   Z = 19.0   N =    39   A = 39.098 g/mole
         --->  Isotope:   K39   Z = 19   N =  39   A =  38.96 g/mole   abundance: 93.258 %
         --->  Isotope:   K40   Z = 19   N =  40   A =  39.96 g/mole   abundance:  0.012 %
         --->  Isotope:   K41   Z = 19   N =  41   A =  40.96 g/mole   abundance:  6.730 %
          ElmMassFraction:   1.30 %  ElmAbundance   0.57 % 

   --->  Element: Ca (Ca)   Z = 20.0   N =    40   A = 40.078 g/mole
         --->  Isotope:  Ca40   Z = 20   N =  40   A =  39.96 g/mole   abundance: 96.941 %
         --->  Isotope:  Ca42   Z = 20   N =  42   A =  41.96 g/mole   abundance:  0.647 %
         --->  Isotope:  Ca43   Z = 20   N =  43   A =  42.96 g/mole   abundance:  0.135 %
         --->  Isotope:  Ca44   Z = 20   N =  44   A =  43.96 g/mole   abundance:  2.086 %
         --->  Isotope:  Ca46   Z = 20   N =  46   A =  45.95 g/mole   abundance:  0.004 %
         --->  Isotope:  Ca48   Z = 20   N =  48   A =  47.95 g/mole   abundance:  0.187 %
          ElmMassFraction:   4.40 %  ElmAbundance   1.87 % 

   --->  Element: Fe (Fe)   Z = 26.0   N =    56   A = 55.845 g/mole
         --->  Isotope:  Fe54   Z = 26   N =  54   A =  53.94 g/mole   abundance:  5.845 %
         --->  Isotope:  Fe56   Z = 26   N =  56   A =  55.93 g/mole   abundance: 91.754 %
         --->  Isotope:  Fe57   Z = 26   N =  57   A =  56.94 g/mole   abundance:  2.119 %
         --->  Isotope:  Fe58   Z = 26   N =  58   A =  57.93 g/mole   abundance:  0.282 %
          ElmMassFraction:   1.40 %  ElmAbundance   0.43 % 

 Material:    G4_Al    density:  2.699 g/cm3   RadL:   8.896 cm   Nucl.Int.Length:  38.894 cm 
                       Imean: 166.000 eV 

   --->  Element: Al (Al)   Z = 13.0   N =    27   A = 26.982 g/mole
         --->  Isotope:  Al27   Z = 13   N =  27   A =  26.98 g/mole   abundance: 100.000 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: G4_POLYETHYLENE (C_2H_4)_N-Polyethylene   density: 940.000 mg/cm3  RadL:  47.632 cm   Nucl.Int.Length:  71.933 cm 
                       Imean:  57.400 eV 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.011 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  85.63 %  ElmAbundance  33.33 % 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.008 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:  14.37 %  ElmAbundance  66.67 % 

 Material: G4_RUBBER_NEOPRENE    density:  1.230 g/cm3   RadL:  23.645 cm   Nucl.Int.Length:  68.441 cm 
                       Imean:  93.000 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.008 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   5.69 %  ElmAbundance  50.00 % 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.011 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  54.26 %  ElmAbundance  40.00 % 

   --->  Element: Cl (Cl)   Z = 17.0   N =    35   A = 35.453 g/mole
         --->  Isotope:  Cl35   Z = 17   N =  35   A =  34.97 g/mole   abundance: 75.780 %
         --->  Isotope:  Cl37   Z = 17   N =  37   A =  36.97 g/mole   abundance: 24.220 %
          ElmMassFraction:  40.04 %  ElmAbundance  10.00 % 

 Material: G4_ALUMINUM_OXIDE Al_2O_3   density:  3.970 g/cm3   RadL:   7.038 cm   Nucl.Int.Length:  24.268 cm 
                       Imean: 145.200 eV 

   --->  Element: Al (Al)   Z = 13.0   N =    27   A = 26.982 g/mole
         --->  Isotope:  Al27   Z = 13   N =  27   A =  26.98 g/mole   abundance: 100.000 %
          ElmMassFraction:  52.93 %  ElmAbundance  40.00 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  47.07 %  ElmAbundance  60.00 % 

 Material:   G4_BGO    density:  7.130 g/cm3   RadL:   1.118 cm   Nucl.Int.Length:  22.710 cm 
                       Imean: 534.100 eV 

   --->  Element: Bi (Bi)   Z = 83.0   N =   209   A = 208.980 g/mole
         --->  Isotope: Bi209   Z = 83   N = 209   A = 208.98 g/mole   abundance: 100.000 %
          ElmMassFraction:  67.10 %  ElmAbundance  21.05 % 

   --->  Element: Ge (Ge)   Z = 32.0   N =    73   A = 72.613 g/mole
         --->  Isotope:  Ge70   Z = 32   N =  70   A =  69.92 g/mole   abundance: 20.840 %
         --->  Isotope:  Ge72   Z = 32   N =  72   A =  71.92 g/mole   abundance: 27.540 %
         --->  Isotope:  Ge73   Z = 32   N =  73   A =  72.92 g/mole   abundance:  7.730 %
         --->  Isotope:  Ge74   Z = 32   N =  74   A =  73.92 g/mole   abundance: 36.280 %
         --->  Isotope:  Ge76   Z = 32   N =  76   A =  75.92 g/mole   abundance:  7.610 %
          ElmMassFraction:  17.49 %  ElmAbundance  15.79 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  15.41 %  ElmAbundance  63.16 % 

 Material: G4_CESIUM_IODIDE    density:  4.510 g/cm3   RadL:   1.860 cm   Nucl.Int.Length:  39.306 cm 
                       Imean: 553.100 eV 

   --->  Element: Cs (Cs)   Z = 55.0   N =   133   A = 132.905 g/mole
         --->  Isotope: Cs133   Z = 55   N = 133   A = 132.91 g/mole   abundance: 100.000 %
          ElmMassFraction:  51.15 %  ElmAbundance  50.00 % 

   --->  Element: I (I)   Z = 53.0   N =   127   A = 126.904 g/mole
         --->  Isotope:  I127   Z = 53   N = 127   A = 126.90 g/mole   abundance: 100.000 %
          ElmMassFraction:  48.85 %  ElmAbundance  50.00 % 

 Material:    G4_Ge    density:  5.323 g/cm3   RadL:   2.301 cm   Nucl.Int.Length:  27.431 cm 
                       Imean: 350.000 eV 

   --->  Element: Ge (Ge)   Z = 32.0   N =    73   A = 72.613 g/mole
         --->  Isotope:  Ge70   Z = 32   N =  70   A =  69.92 g/mole   abundance: 20.840 %
         --->  Isotope:  Ge72   Z = 32   N =  72   A =  71.92 g/mole   abundance: 27.540 %
         --->  Isotope:  Ge73   Z = 32   N =  73   A =  72.92 g/mole   abundance:  7.730 %
         --->  Isotope:  Ge74   Z = 32   N =  74   A =  73.92 g/mole   abundance: 36.280 %
         --->  Isotope:  Ge76   Z = 32   N =  76   A =  75.92 g/mole   abundance:  7.610 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:    G4_Cu    density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.588 cm 
                       Imean: 322.000 eV 

   --->  Element: Cu (Cu)   Z = 29.0   N =    64   A = 63.546 g/mole
         --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance: 69.170 %
         --->  Isotope:  Cu65   Z = 29   N =  65   A =  64.93 g/mole   abundance: 30.830 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: G4_SILICON_DIOXIDE SiO_2   density:  2.320 g/cm3   RadL:  11.658 cm   Nucl.Int.Length:  41.317 cm 
                       Imean: 139.200 eV 

   --->  Element: Si (Si)   Z = 14.0   N =    28   A = 28.085 g/mole
         --->  Isotope:  Si28   Z = 14   N =  28   A =  27.98 g/mole   abundance: 92.230 %
         --->  Isotope:  Si29   Z = 14   N =  29   A =  28.98 g/mole   abundance:  4.683 %
         --->  Isotope:  Si30   Z = 14   N =  30   A =  29.97 g/mole   abundance:  3.087 %
          ElmMassFraction:  46.74 %  ElmAbundance  33.33 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  53.26 %  ElmAbundance  66.67 % 

 Material:   G4_AIR    density:  1.205 mg/cm3  RadL: 303.921 m    Nucl.Int.Length: 710.095 m  
                       Imean:  85.700 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.011 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:   0.01 %  ElmAbundance   0.02 % 

   --->  Element: N (N)   Z =  7.0   N =    14   A = 14.007 g/mole
         --->  Isotope:   N14   Z =  7   N =  14   A =  14.00 g/mole   abundance: 99.632 %
         --->  Isotope:   N15   Z =  7   N =  15   A =  15.00 g/mole   abundance:  0.368 %
          ElmMassFraction:  75.53 %  ElmAbundance  78.44 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  23.18 %  ElmAbundance  21.07 % 

   --->  Element: Ar (Ar)   Z = 18.0   N =    40   A = 39.948 g/mole
         --->  Isotope:  Ar36   Z = 18   N =  36   A =  35.97 g/mole   abundance:  0.337 %
         --->  Isotope:  Ar38   Z = 18   N =  38   A =  37.96 g/mole   abundance:  0.063 %
         --->  Isotope:  Ar40   Z = 18   N =  40   A =  39.96 g/mole   abundance: 99.600 %
          ElmMassFraction:   1.28 %  ElmAbundance   0.47 % 

 Material: G4_SODIUM_IODIDE    density:  3.667 g/cm3   RadL:   2.588 cm   Nucl.Int.Length:  42.914 cm 
                       Imean: 452.000 eV 

   --->  Element: Na (Na)   Z = 11.0   N =    23   A = 22.990 g/mole
         --->  Isotope:  Na23   Z = 11   N =  23   A =  22.99 g/mole   abundance: 100.000 %
          ElmMassFraction:  15.34 %  ElmAbundance  50.00 % 

   --->  Element: I (I)   Z = 53.0   N =   127   A = 126.904 g/mole
         --->  Isotope:  I127   Z = 53   N = 127   A = 126.90 g/mole   abundance: 100.000 %
          ElmMassFraction:  84.66 %  ElmAbundance  50.00 % 

 Material:    G4_Tl    density: 11.720 g/cm3   RadL:   5.477 mm   Nucl.Int.Length:  17.591 cm 
                       Imean: 810.000 eV 

   --->  Element: Tl (Tl)   Z = 81.0   N =   204   A = 204.383 g/mole
         --->  Isotope: Tl203   Z = 81   N = 203   A = 202.97 g/mole   abundance: 29.524 %
         --->  Isotope: Tl205   Z = 81   N = 205   A = 204.97 g/mole   abundance: 70.476 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:      Air    density:  1.290 mg/cm3  RadL: 285.113 m    Nucl.Int.Length: 662.641 m  
                       Imean:  85.703 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: N (N)   Z =  7.0   N =    14   A = 14.007 g/mole
         --->  Isotope:   N14   Z =  7   N =  14   A =  14.00 g/mole   abundance: 99.632 %
         --->  Isotope:   N15   Z =  7   N =  15   A =  15.00 g/mole   abundance:  0.368 %
          ElmMassFraction:  70.00 %  ElmAbundance  72.72 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  30.00 %  ElmAbundance  27.28 % 

 Material: Vacuum_density_yoctogram_per_cm3    density:  0.000 kg/m3   RadL: 20472751.231 pc   Nucl.Int.Length: 11342727.527 pc 
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_nanogram_per_cm3    density:  0.000 kg/m3   RadL: 631723.095 km   Nucl.Int.Length: 350000.000 km 
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_10nanogram_per_cm3    density:  0.000 kg/m3   RadL: 63172.309 km   Nucl.Int.Length: 35000.000 km 
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_100nanogram_per_cm3    density:  0.000 kg/m3   RadL: 6317.231 km   Nucl.Int.Length: 3500.000 km 
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_microgram_per_cm3    density:  0.001 kg/m3   RadL: 631.723 km   Nucl.Int.Length: 350.000 km 
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_milligram_per_cm3    density:  1.000 mg/cm3  RadL: 631.723 m    Nucl.Int.Length: 350.000 m  
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_centigram_per_cm3    density: 10.000 mg/cm3  RadL:  63.172 m    Nucl.Int.Length:  35.000 m  
                       Imean:  19.200 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_decigram_per_cm3    density: 100.000 mg/cm3  RadL:   6.317 m    Nucl.Int.Length:   3.500 m  
                       Imean:  19.200 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Vacuum_density_gram_per_cm3    density:  1.000 g/cm3   RadL:  63.172 cm   Nucl.Int.Length:  35.000 cm 
                       Imean:  19.200 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.010 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:    Argon    density:  1.784 mg/cm3  RadL: 109.604 m    Nucl.Int.Length: 670.814 m  
                       Imean: 188.000 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: Ar (Ar)   Z = 18.0   N =    40   A = 39.948 g/mole
         --->  Isotope:  Ar36   Z = 18   N =  36   A =  35.97 g/mole   abundance:  0.337 %
         --->  Isotope:  Ar38   Z = 18   N =  38   A =  37.96 g/mole   abundance:  0.063 %
         --->  Isotope:  Ar40   Z = 18   N =  40   A =  39.96 g/mole   abundance: 99.600 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:       N2    density:  1.251 mg/cm3  RadL: 303.776 m    Nucl.Int.Length: 674.662 m  
                       Imean:  82.000 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: N (N)   Z =  7.0   N =    14   A = 14.007 g/mole
         --->  Isotope:   N14   Z =  7   N =  14   A =  14.00 g/mole   abundance: 99.632 %
         --->  Isotope:   N15   Z =  7   N =  15   A =  15.00 g/mole   abundance:  0.368 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:       O2    density:  1.429 mg/cm3  RadL: 239.612 m    Nucl.Int.Length: 617.212 m  
                       Imean:  95.000 eV   temperature: 293.15 K  pressure:   1.00 atm

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:   Vacuum    density:  0.000 kg/m3   RadL: 28324198.250 km   Nucl.Int.Length: 66174433.447 km 
                       Imean:  85.664 eV   temperature: 273.15 K  pressure:   0.00 atm

   --->  Element: N (N)   Z =  7.0   N =    14   A = 14.007 g/mole
         --->  Isotope:   N14   Z =  7   N =  14   A =  14.00 g/mole   abundance: 99.632 %
         --->  Isotope:   N15   Z =  7   N =  15   A =  15.00 g/mole   abundance:  0.368 %
          ElmMassFraction:  75.57 %  ElmAbundance  78.49 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  23.15 %  ElmAbundance  21.05 % 

   --->  Element: Ar (Ar)   Z = 18.0   N =    40   A = 39.948 g/mole
         --->  Isotope:  Ar36   Z = 18   N =  36   A =  35.97 g/mole   abundance:  0.337 %
         --->  Isotope:  Ar38   Z = 18   N =  38   A =  37.96 g/mole   abundance:  0.063 %
         --->  Isotope:  Ar40   Z = 18   N =  40   A =  39.96 g/mole   abundance: 99.600 %
          ElmMassFraction:   1.28 %  ElmAbundance   0.47 % 

 Material:    Water    density:  1.000 g/cm3   RadL:  36.051 cm   Nucl.Int.Length:  75.452 cm 
                       Imean:  68.998 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:  11.11 %  ElmAbundance  66.67 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  88.89 %  ElmAbundance  33.33 % 

 Material: Aluminum    density:  2.700 g/cm3   RadL:   8.893 cm   Nucl.Int.Length:  38.880 cm 
                       Imean: 166.000 eV 

   --->  Element: Al (Al)   Z = 13.0   N =    27   A = 26.982 g/mole
         --->  Isotope:  Al27   Z = 13   N =  27   A =  26.98 g/mole   abundance: 100.000 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Tungsten    density: 19.250 g/cm3   RadL:   3.513 mm   Nucl.Int.Length:  10.338 cm 
                       Imean: 727.000 eV 

   --->  Element: W (W)   Z = 74.0   N =   184   A = 183.840 g/mole
         --->  Isotope:  W180   Z = 74   N = 180   A = 179.95 g/mole   abundance:  0.120 %
         --->  Isotope:  W182   Z = 74   N = 182   A = 181.95 g/mole   abundance: 26.500 %
         --->  Isotope:  W183   Z = 74   N = 183   A = 182.95 g/mole   abundance: 14.310 %
         --->  Isotope:  W184   Z = 74   N = 184   A = 183.95 g/mole   abundance: 30.640 %
         --->  Isotope:  W186   Z = 74   N = 186   A = 185.95 g/mole   abundance: 28.430 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:  Silicon    density:  2.330 g/cm3   RadL:   9.366 cm   Nucl.Int.Length:  45.660 cm 
                       Imean: 173.000 eV 

   --->  Element: Si (Si)   Z = 14.0   N =    28   A = 28.085 g/mole
         --->  Isotope:  Si28   Z = 14   N =  28   A =  27.98 g/mole   abundance: 92.230 %
         --->  Isotope:  Si29   Z = 14   N =  29   A =  28.98 g/mole   abundance:  4.683 %
         --->  Isotope:  Si30   Z = 14   N =  30   A =  29.97 g/mole   abundance:  3.087 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:     Gold    density: 19.300 g/cm3   RadL:   3.348 mm   Nucl.Int.Length:  10.551 cm 
                       Imean: 790.000 eV 

   --->  Element: Au (Au)   Z = 79.0   N =   197   A = 196.967 g/mole
         --->  Isotope: Au197   Z = 79   N = 197   A = 196.97 g/mole   abundance: 100.000 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:     Lead    density: 11.350 g/cm3   RadL:   5.612 mm   Nucl.Int.Length:  18.247 cm 
                       Imean: 823.000 eV 

   --->  Element: Pb (Pb)   Z = 82.0   N =   207   A = 207.190 g/mole
         --->  Isotope: Pb204   Z = 82   N = 204   A = 203.97 g/mole   abundance:  1.400 %
         --->  Isotope: Pb206   Z = 82   N = 206   A = 205.97 g/mole   abundance: 24.100 %
         --->  Isotope: Pb207   Z = 82   N = 207   A = 206.98 g/mole   abundance: 22.100 %
         --->  Isotope: Pb208   Z = 82   N = 208   A = 207.98 g/mole   abundance: 52.400 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Germanium    density:  5.323 g/cm3   RadL:   2.302 cm   Nucl.Int.Length:  27.435 cm 
                       Imean: 350.000 eV 

   --->  Element: Ge (Ge)   Z = 32.0   N =    73   A = 72.640 g/mole
         --->  Isotope:  Ge70   Z = 32   N =  70   A =  69.92 g/mole   abundance: 20.840 %
         --->  Isotope:  Ge72   Z = 32   N =  72   A =  71.92 g/mole   abundance: 27.540 %
         --->  Isotope:  Ge73   Z = 32   N =  73   A =  72.92 g/mole   abundance:  7.730 %
         --->  Isotope:  Ge74   Z = 32   N =  74   A =  73.92 g/mole   abundance: 36.280 %
         --->  Isotope:  Ge76   Z = 32   N =  76   A =  75.92 g/mole   abundance:  7.610 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material: Lanthanum_Bromide    density:  5.080 g/cm3   RadL:   1.959 cm   Nucl.Int.Length:  31.628 cm 
                       Imean: 391.912 eV 

   --->  Element: La (La)   Z = 57.0   N =   139   A = 138.905 g/mole
         --->  Isotope: La138   Z = 57   N = 138   A = 137.91 g/mole   abundance:  0.090 %
         --->  Isotope: La139   Z = 57   N = 139   A = 138.91 g/mole   abundance: 99.910 %
          ElmMassFraction:  36.69 %  ElmAbundance  25.00 % 

   --->  Element: Br (Br)   Z = 35.0   N =    80   A = 79.904 g/mole
         --->  Isotope:  Br79   Z = 35   N =  79   A =  78.92 g/mole   abundance: 50.690 %
         --->  Isotope:  Br81   Z = 35   N =  81   A =  80.92 g/mole   abundance: 49.310 %
          ElmMassFraction:  63.31 %  ElmAbundance  75.00 % 

 Material: Cerium_Doped_Lanthanum_Bromide    density:  5.080 g/cm3   RadL:   1.934 cm   Nucl.Int.Length:  31.813 cm 
                       Imean: 397.430 eV 

   --->  Element: La (La)   Z = 57.0   N =   139   A = 138.905 g/mole
         --->  Isotope: La138   Z = 57   N = 138   A = 137.91 g/mole   abundance:  0.090 %
         --->  Isotope: La139   Z = 57   N = 139   A = 138.91 g/mole   abundance: 99.910 %
          ElmMassFraction:  34.85 %  ElmAbundance  24.14 % 

   --->  Element: Br (Br)   Z = 35.0   N =    80   A = 79.904 g/mole
         --->  Isotope:  Br79   Z = 35   N =  79   A =  78.92 g/mole   abundance: 50.690 %
         --->  Isotope:  Br81   Z = 35   N =  81   A =  80.92 g/mole   abundance: 49.310 %
          ElmMassFraction:  60.15 %  ElmAbundance  72.42 % 

   --->  Element: Ce (Ce)   Z = 58.0   N =   140   A = 140.116 g/mole
         --->  Isotope: Ce136   Z = 58   N = 136   A = 135.91 g/mole   abundance:  0.185 %
         --->  Isotope: Ce138   Z = 58   N = 138   A = 137.91 g/mole   abundance:  0.251 %
         --->  Isotope: Ce140   Z = 58   N = 140   A = 139.91 g/mole   abundance: 88.450 %
         --->  Isotope: Ce142   Z = 58   N = 142   A = 141.91 g/mole   abundance: 11.114 %
          ElmMassFraction:   5.00 %  ElmAbundance   3.43 % 

 Material: Hevimetal    density: 19.000 g/cm3   RadL:   3.956 mm   Nucl.Int.Length:   9.573 cm 
                       Imean: 596.134 eV 

   --->  Element: Ta (Ta)   Z = 73.0   N =   181   A = 180.950 g/mole
         --->  Isotope: Ta180   Z = 73   N = 180   A = 179.95 g/mole   abundance:  0.012 %
         --->  Isotope: Ta181   Z = 73   N = 181   A = 180.95 g/mole   abundance: 99.988 %
          ElmMassFraction:  80.00 %  ElmAbundance  57.14 % 

   --->  Element: Ni (Ni)   Z = 28.0   N =    59   A = 58.690 g/mole
         --->  Isotope:  Ni58   Z = 28   N =  58   A =  57.94 g/mole   abundance: 68.077 %
         --->  Isotope:  Ni60   Z = 28   N =  60   A =  59.93 g/mole   abundance: 26.223 %
         --->  Isotope:  Ni61   Z = 28   N =  61   A =  60.93 g/mole   abundance:  1.140 %
         --->  Isotope:  Ni62   Z = 28   N =  62   A =  61.93 g/mole   abundance:  3.635 %
         --->  Isotope:  Ni64   Z = 28   N =  64   A =  63.93 g/mole   abundance:  0.926 %
          ElmMassFraction:  13.00 %  ElmAbundance  28.63 % 

   --->  Element: Cu (Cu)   Z = 29.0   N =    64   A = 63.546 g/mole
         --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance: 69.170 %
         --->  Isotope:  Cu65   Z = 29   N =  65   A =  64.93 g/mole   abundance: 30.830 %
          ElmMassFraction:   7.00 %  ElmAbundance  14.24 % 

 Material: Liquid_N2    density: 804.000 mg/cm3  RadL:  47.249 cm   Nucl.Int.Length:   1.049 m  
                       Imean:  82.000 eV 

   --->  Element: N (N)   Z =  7.0   N =    14   A = 14.007 g/mole
         --->  Isotope:   N14   Z =  7   N =  14   A =  14.00 g/mole   abundance: 99.632 %
         --->  Isotope:   N15   Z =  7   N =  15   A =  15.00 g/mole   abundance:  0.368 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:   Delrin    density:  1.400 g/cm3   RadL:  27.461 cm   Nucl.Int.Length:  55.189 cm 
                       Imean:  73.275 eV 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  40.02 %  ElmAbundance  25.00 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  53.31 %  ElmAbundance  25.00 % 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   6.66 %  ElmAbundance  50.00 % 

 Material: Beryllium    density:  1.848 g/cm3   RadL:  35.275 cm   Nucl.Int.Length:  39.413 cm 
                       Imean:  63.700 eV 

   --->  Element: Be (Be)   Z =  4.0   N =     9   A =  9.012 g/mole
         --->  Isotope:   Be9   Z =  4   N =   9   A =   9.01 g/mole   abundance: 100.000 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:   Copper    density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.588 cm 
                       Imean: 322.000 eV 

   --->  Element: Cu (Cu)   Z = 29.0   N =    64   A = 63.546 g/mole
         --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance: 69.170 %
         --->  Isotope:  Cu65   Z = 29   N =  65   A =  64.93 g/mole   abundance: 30.830 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

 Material:      BGO    density:  7.300 g/cm3   RadL:   1.092 cm   Nucl.Int.Length:  22.182 cm 
                       Imean: 473.785 eV 

   --->  Element: Bi (Bi)   Z = 83.0   N =   209   A = 208.980 g/mole
         --->  Isotope: Bi209   Z = 83   N = 209   A = 208.98 g/mole   abundance: 100.000 %
          ElmMassFraction:  67.10 %  ElmAbundance  21.05 % 

   --->  Element: Ge (Ge)   Z = 32.0   N =    73   A = 72.640 g/mole
         --->  Isotope:  Ge70   Z = 32   N =  70   A =  69.92 g/mole   abundance: 20.840 %
         --->  Isotope:  Ge72   Z = 32   N =  72   A =  71.92 g/mole   abundance: 27.540 %
         --->  Isotope:  Ge73   Z = 32   N =  73   A =  72.92 g/mole   abundance:  7.730 %
         --->  Isotope:  Ge74   Z = 32   N =  74   A =  73.92 g/mole   abundance: 36.280 %
         --->  Isotope:  Ge76   Z = 32   N =  76   A =  75.92 g/mole   abundance:  7.610 %
          ElmMassFraction:  17.49 %  ElmAbundance  15.79 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  15.41 %  ElmAbundance  63.16 % 

 Material: CesiumIodide    density:  4.510 g/cm3   RadL:   1.860 cm   Nucl.Int.Length:  39.306 cm 
                       Imean: 489.470 eV 

   --->  Element: Cs (Cs)   Z = 55.0   N =   133   A = 132.910 g/mole
         --->  Isotope: Cs133   Z = 55   N = 133   A = 132.91 g/mole   abundance: 100.000 %
          ElmMassFraction:  51.16 %  ElmAbundance  50.00 % 

   --->  Element: I (I)   Z = 53.0   N =   127   A = 126.900 g/mole
         --->  Isotope:  I127   Z = 53   N = 127   A = 126.90 g/mole   abundance: 100.000 %
          ElmMassFraction:  48.84 %  ElmAbundance  50.00 % 

 Material:    BC404    density:  1.032 g/cm3   RadL:  49.624 cm   Nucl.Int.Length:  46.341 cm 
                       Imean:  30.092 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:  52.40 %  ElmAbundance  92.97 % 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  47.60 %  ElmAbundance   7.03 % 

 Material:    Mylar    density:  1.397 g/cm3   RadL:  28.587 cm   Nucl.Int.Length:  56.065 cm 
                       Imean:  75.967 eV 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  62.52 %  ElmAbundance  45.45 % 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   4.16 %  ElmAbundance  36.36 % 

   --->  Element: O (O)   Z =  8.0   N =    16   A = 15.999 g/mole
         --->  Isotope:   O16   Z =  8   N =  16   A =  15.99 g/mole   abundance: 99.757 %
         --->  Isotope:   O17   Z =  8   N =  17   A =  17.00 g/mole   abundance:  0.038 %
         --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:  0.205 %
          ElmMassFraction:  33.32 %  ElmAbundance  18.18 % 

 Material:    NdFeB    density:  7.450 g/cm3   RadL:   1.541 cm   Nucl.Int.Length:  19.207 cm 
                       Imean: 330.671 eV 

   --->  Element: Nd (Nd)   Z = 60.0   N =   144   A = 144.242 g/mole
         --->  Isotope: Nd142   Z = 60   N = 142   A = 141.91 g/mole   abundance: 27.200 %
         --->  Isotope: Nd143   Z = 60   N = 143   A = 142.91 g/mole   abundance: 12.200 %
         --->  Isotope: Nd144   Z = 60   N = 144   A = 143.91 g/mole   abundance: 23.800 %
         --->  Isotope: Nd145   Z = 60   N = 145   A = 144.91 g/mole   abundance:  8.300 %
         --->  Isotope: Nd146   Z = 60   N = 146   A = 145.91 g/mole   abundance: 17.200 %
         --->  Isotope: Nd148   Z = 60   N = 148   A = 147.92 g/mole   abundance:  5.700 %
         --->  Isotope: Nd150   Z = 60   N = 150   A = 149.92 g/mole   abundance:  5.600 %
          ElmMassFraction:  26.68 %  ElmAbundance  11.76 % 

   --->  Element: Fe (Fe)   Z = 26.0   N =    56   A = 55.845 g/mole
         --->  Isotope:  Fe54   Z = 26   N =  54   A =  53.94 g/mole   abundance:  5.845 %
         --->  Isotope:  Fe56   Z = 26   N =  56   A =  55.93 g/mole   abundance: 91.754 %
         --->  Isotope:  Fe57   Z = 26   N =  57   A =  56.94 g/mole   abundance:  2.119 %
         --->  Isotope:  Fe58   Z = 26   N =  58   A =  57.93 g/mole   abundance:  0.282 %
          ElmMassFraction:  72.32 %  ElmAbundance  82.35 % 

   --->  Element: B (B)   Z =  5.0   N =    11   A = 10.811 g/mole
         --->  Isotope:   B10   Z =  5   N =  10   A =  10.01 g/mole   abundance: 19.900 %
         --->  Isotope:   B11   Z =  5   N =  11   A =  11.01 g/mole   abundance: 80.100 %
          ElmMassFraction:   1.00 %  ElmAbundance   5.88 % 

 Material:   Teflon    density:  2.200 g/cm3   RadL:  15.838 cm   Nucl.Int.Length:  40.831 cm 
                       Imean: 105.352 eV 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  24.02 %  ElmAbundance  33.33 % 

   --->  Element: F (F)   Z =  9.0   N =    19   A = 18.998 g/mole
         --->  Isotope:   F19   Z =  9   N =  19   A =  19.00 g/mole   abundance: 100.000 %
          ElmMassFraction:  75.98 %  ElmAbundance  66.67 % 

 Material:   Si(Li)    density:  2.330 g/cm3   RadL:   9.366 cm   Nucl.Int.Length:  45.660 cm 
                       Imean: 172.998 eV 

   --->  Element: Si (Si)   Z = 14.0   N =    28   A = 28.085 g/mole
         --->  Isotope:  Si28   Z = 14   N =  28   A =  27.98 g/mole   abundance: 92.230 %
         --->  Isotope:  Si29   Z = 14   N =  29   A =  28.98 g/mole   abundance:  4.683 %
         --->  Isotope:  Si30   Z = 14   N =  30   A =  29.97 g/mole   abundance:  3.087 %
          ElmMassFraction: 100.00 %  ElmAbundance 100.00 % 

   --->  Element: Li (Li)   Z =  3.0   N =     7   A =  6.940 g/mole
         --->  Isotope:   Li6   Z =  3   N =   6   A =   6.02 g/mole   abundance:  7.590 %
         --->  Isotope:   Li7   Z =  3   N =   7   A =   7.02 g/mole   abundance: 92.410 %
          ElmMassFraction:   0.00 %  ElmAbundance   0.00 % 

 Material:    Plate    density: 55.840 g/cm3   RadL:   2.466 mm   Nucl.Int.Length:   2.399 cm 
                       Imean: 285.841 eV 

   --->  Element: Fe (Fe)   Z = 26.0   N =    56   A = 55.845 g/mole
         --->  Isotope:  Fe54   Z = 26   N =  54   A =  53.94 g/mole   abundance:  5.845 %
         --->  Isotope:  Fe56   Z = 26   N =  56   A =  55.93 g/mole   abundance: 91.754 %
         --->  Isotope:  Fe57   Z = 26   N =  57   A =  56.94 g/mole   abundance:  2.119 %
         --->  Isotope:  Fe58   Z = 26   N =  58   A =  57.93 g/mole   abundance:  0.282 %
          ElmMassFraction:  90.00 %  ElmAbundance  90.06 % 

   --->  Element: Cr (Cr)   Z = 24.0   N =    52   A = 51.996 g/mole
         --->  Isotope:  Cr50   Z = 24   N =  50   A =  49.95 g/mole   abundance:  4.345 %
         --->  Isotope:  Cr52   Z = 24   N =  52   A =  51.94 g/mole   abundance: 83.789 %
         --->  Isotope:  Cr53   Z = 24   N =  53   A =  52.94 g/mole   abundance:  9.501 %
         --->  Isotope:  Cr54   Z = 24   N =  54   A =  53.94 g/mole   abundance:  2.365 %
          ElmMassFraction:   9.00 %  ElmAbundance   9.67 % 

   --->  Element: Pb (Pb)   Z = 82.0   N =   207   A = 207.200 g/mole
         --->  Isotope: Pb204   Z = 82   N = 204   A = 203.97 g/mole   abundance:  1.400 %
         --->  Isotope: Pb206   Z = 82   N = 206   A = 205.97 g/mole   abundance: 24.100 %
         --->  Isotope: Pb207   Z = 82   N = 207   A = 206.98 g/mole   abundance: 22.100 %
         --->  Isotope: Pb208   Z = 82   N = 208   A = 207.98 g/mole   abundance: 52.400 %
          ElmMassFraction:   1.00 %  ElmAbundance   0.27 % 

 Material:      NaI    density:  3.670 g/cm3   RadL:   2.586 cm   Nucl.Int.Length:  42.878 cm 
                       Imean: 452.000 eV 

   --->  Element: Na (Na)   Z = 11.0   N =    23   A = 22.990 g/mole
         --->  Isotope:  Na23   Z = 11   N =  23   A =  22.99 g/mole   abundance: 100.000 %
          ElmMassFraction:  15.34 %  ElmAbundance  50.00 % 

   --->  Element: I (I)   Z = 53.0   N =   127   A = 126.900 g/mole
         --->  Isotope:  I127   Z = 53   N = 127   A = 126.90 g/mole   abundance: 100.000 %
          ElmMassFraction:  84.66 %  ElmAbundance  50.00 % 

 Material: G4_SODIUM_IODIDE_PLUS_Tl    density:  3.667 g/cm3   RadL:   2.587 cm   Nucl.Int.Length:  42.924 cm 
                       Imean: 400.270 eV 

   --->  Element: Na (Na)   Z = 11.0   N =    23   A = 22.990 g/mole
         --->  Isotope:  Na23   Z = 11   N =  23   A =  22.99 g/mole   abundance: 100.000 %
          ElmMassFraction:  15.32 %  ElmAbundance  49.98 % 

   --->  Element: I (I)   Z = 53.0   N =   127   A = 126.904 g/mole
         --->  Isotope:  I127   Z = 53   N = 127   A = 126.90 g/mole   abundance: 100.000 %
          ElmMassFraction:  84.58 %  ElmAbundance  49.98 % 

   --->  Element: Tl (Tl)   Z = 81.0   N =   204   A = 204.383 g/mole
         --->  Isotope: Tl203   Z = 81   N = 203   A = 202.97 g/mole   abundance: 29.524 %
         --->  Isotope: Tl205   Z = 81   N = 205   A = 204.97 g/mole   abundance: 70.476 %
          ElmMassFraction:   0.10 %  ElmAbundance   0.04 % 

 Material:    BC537    density: 954.000 mg/cm3  RadL:  49.410 cm   Nucl.Int.Length:  70.957 cm 
                       Imean:  66.015 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   0.06 %  ElmAbundance   0.44 % 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  85.73 %  ElmAbundance  50.15 % 

   --->  Element: Deuterium (D)   Z =  1.0   N =     2   A =  2.020 g/mole
         --->  Isotope:    De   Z =  1   N =   2   A =   2.02 g/mole   abundance: 100.000 %
          ElmMassFraction:  14.20 %  ElmAbundance  49.41 % 

 Material:   BC501A    density: 874.000 mg/cm3  RadL:  50.327 cm   Nucl.Int.Length:  81.931 cm 
                       Imean:  63.467 eV 

   --->  Element: H (H)   Z =  1.0   N =     1   A =  1.000 g/mole
         --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance: 99.989 %
         --->  Isotope:    H2   Z =  1   N =   2   A =   2.01 g/mole   abundance:  0.011 %
          ElmMassFraction:   9.25 %  ElmAbundance  55.04 % 

   --->  Element: C (C)   Z =  6.0   N =    12   A = 12.010 g/mole
         --->  Isotope:   C12   Z =  6   N =  12   A =  12.00 g/mole   abundance: 98.930 %
         --->  Isotope:   C13   Z =  6   N =  13   A =  13.00 g/mole   abundance:  1.070 %
          ElmMassFraction:  90.75 %  ElmAbundance  44.96 % 

### Adding tracking cuts for neutron  TimeCut(ns)= 10000  KinEnergyCut(MeV)= 0
/home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten
### PhysicsList::ConstructProcess is done
world cuts are set
              Decay,   RadioactiveDecay
Not building BGO 
Not building BGO 
Not building BGO 
Not building BGO 
Not building BGO 
Not building BGO 
Not building BGO 
Not building BGO 
Building DESCANT...
BuildCanVolume
BuildDetectorVolume
res_scale = 20
X 1060.66 Y 0 Z 1060.66
X 1051.35 Y 242.724 Z 1041.99
X 1051.35 Y -242.724 Z 1041.99
X 1010.28 Y 471.1 Z 1003.7
X 1010.28 Y -471.1 Z 1003.7
X 1208.91 Y 105.766 Z 881.678
X 1208.91 Y -105.766 Z 881.678
X 941.26 Y 659.078 Z 964.181
X 783.662 Y 657.57 Z 1097.03
X 615.655 Y 660.209 Z 1197.95
BuildSquarePiece
BuildTrianglePiece
BuildLargeRingFrame
BuildRodPiece
BuildFloor
/run/verbose 2
/event/verbose 2
/tracking/verbose 2
/run/setCut 150 fm
world cuts are set
/run/particle/dumpCutValues
/run/initialize
/gps/particle ion
/gps/ion 3 11
G4IonTable::CreateIon() : create ion of Li11  3, 11 encoding=1000030110
/gps/energy 2 MeV
/gps/ang/type planar
/gps/direction 0 0 1
/gps/position 0 0 -100 nm
/run/beamOn 3

### ===  Deexcitation model UAtomDeexcitation is activated for 1 region:
          DefaultRegionForTheWorld

### === G4UAtomicDeexcitation::InitialiseForNewRun()
### ===  PIXE model for hadrons: Empirical
### ===  PIXE model for e+-:     Livermore

phot:   for  gamma    SubType= 12  BuildTable= 0
      LambdaPrime table from 200 keV to 10 TeV in 154 bins 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
 LivermorePhElectric :  Emin=        0 eV    Emax=       10 TeV   AngularGenSauterGavrila  FluoActive

compt:   for  gamma    SubType= 13  BuildTable= 1
      Lambda table from 100 eV  to 1 MeV, 20 bins per decade, spline: 1
      LambdaPrime table from 1 MeV to 10 TeV in 140 bins 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    LivermoreCompton :  Emin=        0 eV    Emax=       10 TeV  FluoActive

conv:   for  gamma    SubType= 14  BuildTable= 1
      Lambda table from 1.022 MeV to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
 LivermoreConversion :  Emin=        0 eV    Emax=       80 GeV
     BetheHeitlerLPM :  Emin=       80 GeV   Emax=       10 TeV

Rayl:   for  gamma    SubType= 11  BuildTable= 1
      Lambda table from 100 eV  to 100 keV, 20 bins per decade, spline: 0
      LambdaPrime table from 100 keV to 10 TeV in 160 bins 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   LivermoreRayleigh :  Emin=        0 eV    Emax=       10 TeV   CullenGenerator

msc:   for e-    SubType= 10
      RangeFactor= 0.02, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=      100 MeV  Table with 120 bins Emin=    100 eV    Emax=    100 MeV
        WentzelVIUni :  Emin=      100 MeV   Emax=       10 TeV  Table with 100 bins Emin=    100 MeV   Emax=     10 TeV

eIoni:   for  e-    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
       LowEnergyIoni :  Emin=        0 eV    Emax=      100 keV   deltaVI
        MollerBhabha :  Emin=      100 keV   Emax=       10 TeV   deltaVI

eBrem:   for  e-    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      LPM flag: 1 for E > 1 GeV,  HighEnergyThreshold(GeV)= 10000
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           LowEnBrem :  Emin=        0 eV    Emax=        1 GeV   AngularGen2BS
            eBremLPM :  Emin=        1 GeV   Emax=       10 TeV   DipBustGen

CoulombScat:   for  e-, integral: 1     SubType= 1  BuildTable= 1
      Lambda table from 100 MeV to 10 TeV, 20 bins per decade, spline: 1
      180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
  eCoulombScattering :  Emin=      100 MeV   Emax=       10 TeV

msc:   for e+    SubType= 10
      RangeFactor= 0.02, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=      100 MeV  Table with 120 bins Emin=    100 eV    Emax=    100 MeV
        WentzelVIUni :  Emin=      100 MeV   Emax=       10 TeV  Table with 100 bins Emin=    100 MeV   Emax=     10 TeV

eIoni:   for  e+    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
        MollerBhabha :  Emin=        0 eV    Emax=       10 TeV   deltaVI

eBrem:   for  e+    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      LPM flag: 1 for E > 1 GeV,  HighEnergyThreshold(GeV)= 10000
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
             eBremSB :  Emin=        0 eV    Emax=        1 GeV   DipBustGen
            eBremLPM :  Emin=        1 GeV   Emax=       10 TeV   DipBustGen

annihil:   for  e+, integral: 1     SubType= 5  BuildTable= 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            eplus2gg :  Emin=        0 eV    Emax=       10 TeV

CoulombScat:   for  e+, integral: 1     SubType= 1  BuildTable= 1
      Lambda table from 100 MeV to 10 TeV, 20 bins per decade, spline: 1
      180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
  eCoulombScattering :  Emin=      100 MeV   Emax=       10 TeV

msc:   for proton    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  proton    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               Bragg :  Emin=        0 eV    Emax=        2 MeV   deltaVI
          BetheBloch :  Emin=        2 MeV   Emax=       10 TeV   deltaVI

hBrems:   for  proton    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  proton    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 13x1001; from 7.50618 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

nuclearStopping:   for  proton    SubType= 8  BuildTable= 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   ICRU49NucStopping :  Emin=        0 eV    Emax=        1 MeV

msc:   for GenericIon    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV

ionIoni:   for  GenericIon    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
         ParamICRU73 :  Emin=        0 eV    Emax=       10 TeV   deltaVI

nuclearStopping:   for  GenericIon    SubType= 8  BuildTable= 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   ICRU49NucStopping :  Emin=        0 eV    Emax=        1 MeV

### ===  Deexcitation model UAtomDeexcitation is activated for 1 region:
          DefaultRegionForTheWorld

### === G4UAtomicDeexcitation::InitialiseForNewRun()
### ===  PIXE model for hadrons: Empirical
### ===  PIXE model for e+-:     Livermore

msc:   for alpha    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

ionIoni:   for  alpha    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            BraggIon :  Emin=        0 eV    Emax=   7.9452 MeV   deltaVI
          BetheBloch :  Emin=   7.9452 MeV   Emax=       10 TeV   deltaVI

nuclearStopping:   for  alpha    SubType= 8  BuildTable= 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   ICRU49NucStopping :  Emin=        0 eV    Emax=        1 MeV

msc:   for anti_proton    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  anti_proton    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            ICRU73QO :  Emin=        0 eV    Emax=        2 MeV   deltaVI
          BetheBloch :  Emin=        2 MeV   Emax=       10 TeV   deltaVI

hBrems:   for  anti_proton    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  anti_proton    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 13x1001; from 7.50618 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

nuclearStopping:   for  anti_proton    SubType= 8  BuildTable= 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
   ICRU49NucStopping :  Emin=        0 eV    Emax=        1 MeV

msc:   for kaon+    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  kaon+    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               Bragg :  Emin=        0 eV    Emax=  1.05231 MeV   deltaVI
          BetheBloch :  Emin=  1.05231 MeV   Emax=       10 TeV   deltaVI

hBrems:   for  kaon+    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  kaon+    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 14x1001; from 3.94942 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

msc:   for kaon-    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  kaon-    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            ICRU73QO :  Emin=        0 eV    Emax=  1.05231 MeV   deltaVI
          BetheBloch :  Emin=  1.05231 MeV   Emax=       10 TeV   deltaVI

hBrems:   for  kaon-    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  kaon-    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 14x1001; from 3.94942 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

msc:   for mu+    SubType= 10
      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
        WentzelVIUni :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

muIoni:   for  mu+    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               Bragg :  Emin=        0 eV    Emax=      200 keV   deltaVI
          BetheBloch :  Emin=      200 keV   Emax=        1 GeV   deltaVI
        MuBetheBloch :  Emin=        1 GeV   Emax=       10 TeV

muBrems:   for  mu+    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
              MuBrem :  Emin=        0 eV    Emax=       10 TeV

muPairProd:   for  mu+    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 17x1001; from 1 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
          muPairProd :  Emin=        0 eV    Emax=       10 TeV

CoulombScat:   for  mu+, integral: 1     SubType= 1  BuildTable= 1
      Lambda table from threshold  to 10 TeV, 20 bins per decade, spline: 1
      180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
  eCoulombScattering :  Emin=        0 eV    Emax=       10 TeV

msc:   for mu-    SubType= 10
      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
        WentzelVIUni :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

muIoni:   for  mu-    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            ICRU73QO :  Emin=        0 eV    Emax=      200 keV   deltaVI
          BetheBloch :  Emin=      200 keV   Emax=        1 GeV   deltaVI
        MuBetheBloch :  Emin=        1 GeV   Emax=       10 TeV

muBrems:   for  mu-    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
              MuBrem :  Emin=        0 eV    Emax=       10 TeV

muPairProd:   for  mu-    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 17x1001; from 1 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
          muPairProd :  Emin=        0 eV    Emax=       10 TeV

CoulombScat:   for  mu-, integral: 1     SubType= 1  BuildTable= 1
      Lambda table from threshold  to 10 TeV, 20 bins per decade, spline: 1
      180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
  eCoulombScattering :  Emin=        0 eV    Emax=       10 TeV
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten
/home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Inelastic
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /home/apollo/Research/programs/geant4/ifd-install/share/Geant4-10.2.3/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten

msc:   for pi+    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  pi+    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               Bragg :  Emin=        0 eV    Emax=  297.505 keV   deltaVI
          BetheBloch :  Emin=  297.505 keV   Emax=       10 TeV   deltaVI

hBrems:   for  pi+    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  pi+    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 16x1001; from 1.11656 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

msc:   for pi-    SubType= 10
      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            UrbanMsc :  Emin=        0 eV    Emax=       10 TeV  Table with 220 bins Emin=    100 eV    Emax=     10 TeV

hIoni:   for  pi-    SubType= 2
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
            ICRU73QO :  Emin=        0 eV    Emax=  297.505 keV   deltaVI
          BetheBloch :  Emin=  297.505 keV   Emax=       10 TeV   deltaVI

hBrems:   for  pi-    SubType= 3
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
               hBrem :  Emin=        0 eV    Emax=       10 TeV

hPairProd:   for  pi-    SubType= 4
      dE/dx and range tables from 100 eV  to 10 TeV in 220 bins
      Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
      Sampling table 16x1001; from 1.11656 GeV to 10 TeV 
      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
           hPairProd :  Emin=        0 eV    Emax=       10 TeV

====================================================================
                  HADRONIC PROCESSES SUMMARY (verbose level 1)

---------------------------------------------------
                           Hadronic Processes for neutron

  Process: hadElastic
        Model:             hElasticCHIPS: 19.5 MeV ---> 100 TeV
        Model:          NeutronHPElastic: 0 eV  ---> 20 MeV
     Cr_sctns:        NeutronHPElasticXS: 0 eV  ---> 20 MeV
     Cr_sctns:        G4NeutronElasticXS: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: neutronInelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 19.9 MeV ---> 5 GeV
        Model:        NeutronHPInelastic: 0 eV  ---> 20 MeV
     Cr_sctns:      NeutronHPInelasticXS: 0 eV  ---> 20 MeV
     Cr_sctns:       Barashenkov-Glauber: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: nCapture
        Model:          NeutronHPCapture: 0 eV  ---> 20 MeV
        Model:               nRadCapture: 19.9 MeV ---> 100 TeV
     Cr_sctns:        NeutronHPCaptureXS: 0 eV  ---> 20 MeV
     Cr_sctns:        G4NeutronCaptureXS: 0 eV  ---> 100 TeV
     Cr_sctns:        NeutronHPCaptureXS: 0 eV  ---> 20 MeV
     Cr_sctns:          GheishaCaptureXS: 0 eV  ---> 100 TeV

  Process: nFission
        Model:          NeutronHPFission: 0 eV  ---> 20 MeV
        Model:                G4LFission: 19.9 MeV ---> 2.88022e+295 J  
     Cr_sctns:        NeutronHPFissionXS: 0 eV  ---> 20 MeV
     Cr_sctns:          GheishaFissionXS: 0 eV  ---> 100 TeV

  Process: nKiller

---------------------------------------------------
                           Hadronic Processes for GenericIon

  Process: ionInelastic
        Model:  Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
        Model:                      FTFP: 2 GeV/n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for He3

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: He3Inelastic
        Model:  Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
        Model:                      FTFP: 2 GeV/n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for alpha

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: alphaInelastic
        Model:  Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
        Model:                      FTFP: 2 GeV/n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for anti_He3

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
        Model:              AntiAElastic: 100 MeV/n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_He3Inelastic
        Model:                      FTFP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hFritiofCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for anti_alpha

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
        Model:              AntiAElastic: 100 MeV/n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_alphaInelastic
        Model:                      FTFP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hFritiofCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for anti_deuteron

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
        Model:              AntiAElastic: 100 MeV/n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_deuteronInelastic
        Model:                      FTFP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hFritiofCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for anti_neutron

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_neutronInelastic
        Model:                      FTFP: 0 eV  ---> 100 TeV
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for anti_proton

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 100.1 MeV
        Model:              AntiAElastic: 100 MeV ---> 100 TeV
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_protonInelastic
        Model:                      FTFP: 0 eV  ---> 100 TeV
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hFritiofCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for anti_triton

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
        Model:              AntiAElastic: 100 MeV/n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: anti_tritonInelastic
        Model:                      FTFP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:              AntiAGlauber: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hFritiofCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for deuteron

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: dInelastic
        Model:  Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
        Model:                      FTFP: 2 GeV/n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for e+

  Process: positronNuclear
        Model:   G4ElectroVDNuclearModel: 0 eV  ---> 1 PeV
     Cr_sctns:          ElectroNuclearXS: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for e-

  Process: electronNuclear
        Model:   G4ElectroVDNuclearModel: 0 eV  ---> 1 PeV
     Cr_sctns:          ElectroNuclearXS: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for gamma

  Process: photonNuclear
        Model:            BertiniCascade: 0 eV  ---> 3.5 GeV
        Model:           TheoFSGenerator: 3 GeV ---> 100 TeV
     Cr_sctns:            PhotoNuclearXS: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for kaon+

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: kaon+Inelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 0 eV  ---> 5 GeV
     Cr_sctns:            Glauber-Gribov: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for kaon-

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: kaon-Inelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 0 eV  ---> 5 GeV
     Cr_sctns:            Glauber-Gribov: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hBertiniCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for lambda

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: lambdaInelastic
        Model:            BertiniCascade: 0 eV  ---> 6 GeV
        Model:                      FTFP: 2 GeV ---> 100 TeV
     Cr_sctns:   ChipsHyperonInelasticXS: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for mu+

  Process: muonNuclear
        Model:      G4MuonVDNuclearModel: 0 eV  ---> 1 PeV
     Cr_sctns:     KokoulinMuonNuclearXS: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for mu-

  Process: muonNuclear
        Model:      G4MuonVDNuclearModel: 0 eV  ---> 1 PeV
     Cr_sctns:     KokoulinMuonNuclearXS: 0 eV  ---> 100 TeV

  Process: muMinusCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for pi+

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 1.0001 GeV
        Model:           hElasticGlauber: 1 GeV ---> 100 TeV
     Cr_sctns:       Barashenkov-Glauber: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: pi+Inelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 0 eV  ---> 5 GeV
     Cr_sctns:      G4CrossSectionPairGG: 0 eV  ---> 100 TeV
                         G4CrossSectionPairGG: G4PiNuclearCrossSection cross sections 
                           below 91 GeV, Glauber-Gribov above 
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for pi-

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV  ---> 1.0001 GeV
        Model:           hElasticGlauber: 1 GeV ---> 100 TeV
     Cr_sctns:       Barashenkov-Glauber: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: pi-Inelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 0 eV  ---> 5 GeV
     Cr_sctns:      G4CrossSectionPairGG: 0 eV  ---> 100 TeV
                         G4CrossSectionPairGG: G4PiNuclearCrossSection cross sections 
                           below 91 GeV, Glauber-Gribov above 
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

  Process: hBertiniCaptureAtRest

---------------------------------------------------
                           Hadronic Processes for proton

  Process: hadElastic
        Model:             hElasticCHIPS: 0 eV  ---> 100 TeV
     Cr_sctns:      ChipsProtonElasticXS: 0 eV  ---> 100 TeV
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: protonInelastic
        Model:                      FTFP: 4 GeV ---> 100 TeV
        Model:            BertiniCascade: 0 eV  ---> 5 GeV
     Cr_sctns:       Barashenkov-Glauber: 0 eV  ---> 100 TeV
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

---------------------------------------------------
                           Hadronic Processes for triton

  Process: hadElastic
        Model:              hElasticLHEP: 0 eV /n ---> 100 TeV/n
     Cr_sctns:            GheishaElastic: 0 eV  ---> 100 TeV

  Process: tInelastic
        Model:  Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
        Model:                      FTFP: 2 GeV/n ---> 100 TeV/n
     Cr_sctns: Glauber-Gribov nucleus nucleus: 0 eV  ---> 2.88022e+295 J  
     Cr_sctns:          GheishaInelastic: 0 eV  ---> 100 TeV

================================================================

Region <DefaultRegionForTheWorld> --  -- appears in <World> world volume
 This region is in the mass world.
 Root logical volume(s) : World 
 Pointers : G4VUserRegionInformation[0], G4UserLimits[0], G4FastSimulationManager[0], G4UserSteppingAction[0]
 Materials : G4_AIR G4_Ge Vacuum G4_Cu Aluminum Liquid_N2 Air G4_Al G4_SILICON_DIOXIDE G4_Pb BC537 BC404 Mylar G4_STAINLESS-STEEL G4_CONCRETE 
 Production cuts :   gamma 1 mm      e- 1 mm      e+ 1 mm  proton 1 nm 

Region <DefaultRegionForParallelWorld> --  -- is not associated to any world.
 Root logical volume(s) : 
 Pointers : G4VUserRegionInformation[0], G4UserLimits[0], G4FastSimulationManager[0], G4UserSteppingAction[0]
 Materials : 
 Production cuts :   gamma 1 mm      e- 1 mm      e+ 1 mm  proton 1 nm 

========= Table of registered couples ==============================

Index : 0     used in the geometry : Yes
 Material : G4_AIR
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  990 eV     e-  990 eV     e+  990 eV  proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 1     used in the geometry : Yes
 Material : G4_Ge
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  20.6438 keV    e-  871.74 keV    e+  831.682 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 2     used in the geometry : Yes
 Material : Vacuum
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  990 eV     e-  990 eV     e+  990 eV  proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 3     used in the geometry : Yes
 Material : G4_Cu
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  24.7508 keV    e-  1.39534 MeV    e+  1.31345 MeV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 4     used in the geometry : Yes
 Material : Aluminum
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  6.90363 keV    e-  598.345 keV    e+  570.85 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 5     used in the geometry : Yes
 Material : Liquid_N2
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  2.53643 keV    e-  276.265 keV    e+  270.751 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 6     used in the geometry : Yes
 Material : Air
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  990 eV     e-  990 eV     e+  990 eV  proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 7     used in the geometry : Yes
 Material : G4_Al
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  6.90363 keV    e-  598.345 keV    e+  570.85 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 8     used in the geometry : Yes
 Material : G4_SILICON_DIOXIDE
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  5.68122 keV    e-  555.71 keV    e+  540.972 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 9     used in the geometry : Yes
 Material : G4_Pb
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  101.843 keV    e-  1.36749 MeV    e+  1.27862 MeV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 10     used in the geometry : Yes
 Material : BC537
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  2.27786 keV    e-  320.282 keV    e+  309.699 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 11     used in the geometry : Yes
 Material : BC404
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  1.87453 keV    e-  482.57 keV    e+  466.625 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 12     used in the geometry : Yes
 Material : Mylar
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  3.02067 keV    e-  419.056 keV    e+  405.209 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 13     used in the geometry : Yes
 Material : G4_STAINLESS-STEEL
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  20.9232 keV    e-  1.31345 MeV    e+  1.22809 MeV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

Index : 14     used in the geometry : Yes
 Material : G4_CONCRETE
 Range cuts        :  gamma  1 mm     e-  1 mm     e+  1 mm  proton 1 nm 
 Energy thresholds :  gamma  5.79691 keV    e-  555.71 keV    e+  540.972 keV proton 0.1 eV 
 Region(s) which use this couple : 
    DefaultRegionForTheWorld

====================================================================

Start closing geometry.
G4GeometryManager::ReportVoxelStats -- Voxel Statistics

    Total memory consumed for geometry optimisation:   2035 kByte
    Total CPU time elapsed for geometry optimisation: 0.53 seconds

    Voxelisation: top CPU users:
    Percent   Total CPU    System CPU       Memory  Volume
    -------   ----------   ----------     --------  ----------
     100.00         0.53         0.00         2036k World

    Voxelisation: top memory users:
    Percent     Memory      Heads    Nodes   Pointers    Total CPU    Volume
    -------   --------     ------   ------   --------   ----------    ----------
     100.00       2035k      2357    21995     107396         0.53    World
### Run 0 starts.
### Run 0 start.
... create Root directory for histograms : histo - done
... create Root directory for ntuples : ntuple - done
... open Root analysis file : g4out.root - done
... create Root H1 : astats_particle_type_in_each_step - done
... create Root H1 : astats_particle_type_in_each_event - done
... create Root H1 : gridcell_electron_ekin_det0 - done
... create Root H1 : gridcell_electron_ekin_det1 - done
... create Root H1 : gridcell_electron_ekin_det2 - done
... create Root H1 : gridcell_electron_ekin_det3 - done
... create Root H1 : gridcell_electron_ekin_det4 - done
... create Root H1 : gridcell_electron_ekin_det5 - done
... create Root H1 : gridcell_electron_ekin_det6 - done
... create Root H1 : gridcell_electron_ekin_det7 - done
... create Root H1 : gridcell_electron_ekin_det8 - done
... create Root H1 : gridcell_electron_ekin_det9 - done
... create Root H1 : gridcell_electron_ekin_det10 - done
... create Root H1 : gridcell_electron_ekin_det11 - done
... create Root H1 : gridcell_electron_ekin_det12 - done
... create Root H1 : gridcell_electron_ekin_det13 - done
... create Root H1 : gridcell_electron_ekin_det14 - done
... create Root H1 : gridcell_electron_ekin_det15 - done
... create Root H1 : gridcell_electron_ekin_det16 - done
... create Root H1 : gridcell_electron_ekin_det17 - done
... create Root H1 : gridcell_electron_ekin_det18 - done
... create Root H1 : gridcell_electron_ekin_det19 - done
... create Root H1 : gridcell_electron_trackl_det0 - done
... create Root H1 : gridcell_electron_trackl_det1 - done
... create Root H1 : gridcell_electron_trackl_det2 - done
... create Root H1 : gridcell_electron_trackl_det3 - done
... create Root H1 : gridcell_electron_trackl_det4 - done
... create Root H1 : gridcell_electron_trackl_det5 - done
... create Root H1 : gridcell_electron_trackl_det6 - done
... create Root H1 : gridcell_electron_trackl_det7 - done
... create Root H1 : gridcell_electron_trackl_det8 - done
... create Root H1 : gridcell_electron_trackl_det9 - done
... create Root H1 : gridcell_electron_trackl_det10 - done
... create Root H1 : gridcell_electron_trackl_det11 - done
... create Root H1 : gridcell_electron_trackl_det12 - done
... create Root H1 : gridcell_electron_trackl_det13 - done
... create Root H1 : gridcell_electron_trackl_det14 - done
... create Root H1 : gridcell_electron_trackl_det15 - done
... create Root H1 : gridcell_electron_trackl_det16 - done
... create Root H1 : gridcell_electron_trackl_det17 - done
... create Root H1 : gridcell_electron_trackl_det18 - done
... create Root H1 : gridcell_electron_trackl_det19 - done
... create Root H1 : gridcell_gamma_ekin_det0 - done
... create Root H1 : gridcell_gamma_ekin_det1 - done
... create Root H1 : gridcell_gamma_ekin_det2 - done
... create Root H1 : gridcell_gamma_ekin_det3 - done
... create Root H1 : gridcell_gamma_ekin_det4 - done
... create Root H1 : gridcell_gamma_ekin_det5 - done
... create Root H1 : gridcell_gamma_ekin_det6 - done
... create Root H1 : gridcell_gamma_ekin_det7 - done
... create Root H1 : gridcell_gamma_ekin_det8 - done
... create Root H1 : gridcell_gamma_ekin_det9 - done
... create Root H1 : gridcell_gamma_ekin_det10 - done
... create Root H1 : gridcell_gamma_ekin_det11 - done
... create Root H1 : gridcell_gamma_ekin_det12 - done
... create Root H1 : gridcell_gamma_ekin_det13 - done
... create Root H1 : gridcell_gamma_ekin_det14 - done
... create Root H1 : gridcell_gamma_ekin_det15 - done
... create Root H1 : gridcell_gamma_ekin_det16 - done
... create Root H1 : gridcell_gamma_ekin_det17 - done
... create Root H1 : gridcell_gamma_ekin_det18 - done
... create Root H1 : gridcell_gamma_ekin_det19 - done
... create Root H1 : gridcell_gamma_trackl_det0 - done
... create Root H1 : gridcell_gamma_trackl_det1 - done
... create Root H1 : gridcell_gamma_trackl_det2 - done
... create Root H1 : gridcell_gamma_trackl_det3 - done
... create Root H1 : gridcell_gamma_trackl_det4 - done
... create Root H1 : gridcell_gamma_trackl_det5 - done
... create Root H1 : gridcell_gamma_trackl_det6 - done
... create Root H1 : gridcell_gamma_trackl_det7 - done
... create Root H1 : gridcell_gamma_trackl_det8 - done
... create Root H1 : gridcell_gamma_trackl_det9 - done
... create Root H1 : gridcell_gamma_trackl_det10 - done
... create Root H1 : gridcell_gamma_trackl_det11 - done
... create Root H1 : gridcell_gamma_trackl_det12 - done
... create Root H1 : gridcell_gamma_trackl_det13 - done
... create Root H1 : gridcell_gamma_trackl_det14 - done
... create Root H1 : gridcell_gamma_trackl_det15 - done
... create Root H1 : gridcell_gamma_trackl_det16 - done
... create Root H1 : gridcell_gamma_trackl_det17 - done
... create Root H1 : gridcell_gamma_trackl_det18 - done
... create Root H1 : gridcell_gamma_trackl_det19 - done
... create Root H1 : gridcell_neutron_ekin_det0 - done
... create Root H1 : gridcell_neutron_ekin_det1 - done
... create Root H1 : gridcell_neutron_ekin_det2 - done
... create Root H1 : gridcell_neutron_ekin_det3 - done
... create Root H1 : gridcell_neutron_ekin_det4 - done
... create Root H1 : gridcell_neutron_ekin_det5 - done
... create Root H1 : gridcell_neutron_ekin_det6 - done
... create Root H1 : gridcell_neutron_ekin_det7 - done
... create Root H1 : gridcell_neutron_ekin_det8 - done
... create Root H1 : gridcell_neutron_ekin_det9 - done
... create Root H1 : gridcell_neutron_ekin_det10 - done
... create Root H1 : gridcell_neutron_ekin_det11 - done
... create Root H1 : gridcell_neutron_ekin_det12 - done
... create Root H1 : gridcell_neutron_ekin_det13 - done
... create Root H1 : gridcell_neutron_ekin_det14 - done
... create Root H1 : gridcell_neutron_ekin_det15 - done
... create Root H1 : gridcell_neutron_ekin_det16 - done
... create Root H1 : gridcell_neutron_ekin_det17 - done
... create Root H1 : gridcell_neutron_ekin_det18 - done
... create Root H1 : gridcell_neutron_ekin_det19 - done
... create Root H1 : gridcell_neutron_trackl_det0 - done
... create Root H1 : gridcell_neutron_trackl_det1 - done
... create Root H1 : gridcell_neutron_trackl_det2 - done
... create Root H1 : gridcell_neutron_trackl_det3 - done
... create Root H1 : gridcell_neutron_trackl_det4 - done
... create Root H1 : gridcell_neutron_trackl_det5 - done
... create Root H1 : gridcell_neutron_trackl_det6 - done
... create Root H1 : gridcell_neutron_trackl_det7 - done
... create Root H1 : gridcell_neutron_trackl_det8 - done
... create Root H1 : gridcell_neutron_trackl_det9 - done
... create Root H1 : gridcell_neutron_trackl_det10 - done
... create Root H1 : gridcell_neutron_trackl_det11 - done
... create Root H1 : gridcell_neutron_trackl_det12 - done
... create Root H1 : gridcell_neutron_trackl_det13 - done
... create Root H1 : gridcell_neutron_trackl_det14 - done
... create Root H1 : gridcell_neutron_trackl_det15 - done
... create Root H1 : gridcell_neutron_trackl_det16 - done
... create Root H1 : gridcell_neutron_trackl_det17 - done
... create Root H1 : gridcell_neutron_trackl_det18 - done
... create Root H1 : gridcell_neutron_trackl_det19 - done
... create Root H1 : griffin_crystal_sup_edep - done
... create Root H1 : griffin_crystal_sup_edep_cry - done
... create Root H1 : griffin_crystal_sup_edep_sum - done
... create Root H1 : griffin_crystal_sup_edep_det0 - done
... create Root H1 : griffin_crystal_sup_edep_det1 - done
... create Root H1 : griffin_crystal_sup_edep_det2 - done
... create Root H1 : griffin_crystal_sup_edep_det3 - done
... create Root H1 : griffin_crystal_sup_edep_det4 - done
... create Root H1 : griffin_crystal_sup_edep_det5 - done
... create Root H1 : griffin_crystal_sup_edep_det6 - done
... create Root H1 : griffin_crystal_sup_edep_det7 - done
... create Root H1 : griffin_crystal_sup_edep_det8 - done
... create Root H1 : griffin_crystal_sup_edep_det9 - done
... create Root H1 : griffin_crystal_sup_edep_det10 - done
... create Root H1 : griffin_crystal_sup_edep_det11 - done
... create Root H1 : griffin_crystal_sup_edep_det12 - done
... create Root H1 : griffin_crystal_sup_edep_det13 - done
... create Root H1 : griffin_crystal_sup_edep_det14 - done
... create Root H1 : griffin_crystal_sup_edep_det15 - done
... create Root H1 : griffin_crystal_sup_edep_det0_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det1_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det2_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det3_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det4_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det5_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det6_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det7_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det8_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det9_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det10_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det11_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det12_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det13_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det14_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det15_cry0 - done
... create Root H1 : griffin_crystal_sup_edep_det0_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det1_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det2_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det3_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det4_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det5_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det6_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det7_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det8_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det9_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det10_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det11_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det12_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det13_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det14_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det15_cry1 - done
... create Root H1 : griffin_crystal_sup_edep_det0_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det1_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det2_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det3_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det4_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det5_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det6_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det7_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det8_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det9_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det10_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det11_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det12_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det13_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det14_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det15_cry2 - done
... create Root H1 : griffin_crystal_sup_edep_det0_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det1_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det2_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det3_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det4_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det5_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det6_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det7_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det8_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det9_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det10_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det11_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det12_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det13_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det14_cry3 - done
... create Root H1 : griffin_crystal_sup_edep_det15_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep - done
... create Root H1 : griffin_crystal_unsup_edep_cry - done
... create Root H1 : griffin_crystal_unsup_edep_sum - done
... create Root H1 : griffin_crystal_unsup_edep_det0 - done
... create Root H1 : griffin_crystal_unsup_edep_det1 - done
... create Root H1 : griffin_crystal_unsup_edep_det2 - done
... create Root H1 : griffin_crystal_unsup_edep_det3 - done
... create Root H1 : griffin_crystal_unsup_edep_det4 - done
... create Root H1 : griffin_crystal_unsup_edep_det5 - done
... create Root H1 : griffin_crystal_unsup_edep_det6 - done
... create Root H1 : griffin_crystal_unsup_edep_det7 - done
... create Root H1 : griffin_crystal_unsup_edep_det8 - done
... create Root H1 : griffin_crystal_unsup_edep_det9 - done
... create Root H1 : griffin_crystal_unsup_edep_det10 - done
... create Root H1 : griffin_crystal_unsup_edep_det11 - done
... create Root H1 : griffin_crystal_unsup_edep_det12 - done
... create Root H1 : griffin_crystal_unsup_edep_det13 - done
... create Root H1 : griffin_crystal_unsup_edep_det14 - done
... create Root H1 : griffin_crystal_unsup_edep_det15 - done
... create Root H1 : griffin_crystal_unsup_edep_det0_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det1_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det2_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det3_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det4_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det5_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det6_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det7_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det8_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det9_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det10_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det11_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det12_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det13_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det14_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det15_cry0 - done
... create Root H1 : griffin_crystal_unsup_edep_det0_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det1_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det2_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det3_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det4_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det5_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det6_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det7_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det8_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det9_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det10_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det11_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det12_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det13_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det14_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det15_cry1 - done
... create Root H1 : griffin_crystal_unsup_edep_det0_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det1_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det2_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det3_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det4_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det5_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det6_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det7_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det8_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det9_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det10_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det11_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det12_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det13_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det14_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det15_cry2 - done
... create Root H1 : griffin_crystal_unsup_edep_det0_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det1_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det2_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det3_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det4_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det5_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det6_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det7_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det8_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det9_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det10_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det11_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det12_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det13_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det14_cry3 - done
... create Root H1 : griffin_crystal_unsup_edep_det15_cry3 - done
... create Root H1 : labr_crystal_edep - done
... create Root H1 : labr_crystal_edep_sum - done
... create Root H1 : labr_crystal_edep_det0 - done
... create Root H1 : labr_crystal_edep_det1 - done
... create Root H1 : labr_crystal_edep_det2 - done
... create Root H1 : labr_crystal_edep_det3 - done
... create Root H1 : labr_crystal_edep_det4 - done
... create Root H1 : labr_crystal_edep_det5 - done
... create Root H1 : labr_crystal_edep_det6 - done
... create Root H1 : labr_crystal_edep_det7 - done
... create Root H1 : labr_crystal_edep_det8 - done
... create Root H1 : labr_crystal_edep_det9 - done
... create Root H1 : labr_crystal_edep_det10 - done
... create Root H1 : labr_crystal_edep_det11 - done
... create Root H1 : labr_crystal_edep_det12 - done
... create Root H1 : labr_crystal_edep_det13 - done
... create Root H1 : labr_crystal_edep_det14 - done
... create Root H1 : labr_crystal_edep_det15 - done
... create Root H1 : labr_crystal_edep_det16 - done
... create Root H1 : labr_crystal_edep_det17 - done
... create Root H1 : labr_crystal_edep_det18 - done
... create Root H1 : labr_crystal_edep_det19 - done
... create Root H1 : ancillary_bgo_crystal_edep - done
... create Root H1 : ancillary_bgo_crystal_edep_sum - done
... create Root H1 : ancillary_bgo_crystal_edep_det0 - done
... create Root H1 : ancillary_bgo_crystal_edep_det1 - done
... create Root H1 : ancillary_bgo_crystal_edep_det2 - done
... create Root H1 : ancillary_bgo_crystal_edep_det3 - done
... create Root H1 : ancillary_bgo_crystal_edep_det4 - done
... create Root H1 : ancillary_bgo_crystal_edep_det5 - done
... create Root H1 : ancillary_bgo_crystal_edep_det6 - done
... create Root H1 : ancillary_bgo_crystal_edep_det7 - done
... create Root H1 : ancillary_bgo_crystal_edep_det8 - done
... create Root H1 : ancillary_bgo_crystal_edep_det9 - done
... create Root H1 : ancillary_bgo_crystal_edep_det10 - done
... create Root H1 : ancillary_bgo_crystal_edep_det11 - done
... create Root H1 : ancillary_bgo_crystal_edep_det12 - done
... create Root H1 : ancillary_bgo_crystal_edep_det13 - done
... create Root H1 : ancillary_bgo_crystal_edep_det14 - done
... create Root H1 : ancillary_bgo_crystal_edep_det15 - done
... create Root H1 : ancillary_bgo_crystal_edep_det16 - done
... create Root H1 : ancillary_bgo_crystal_edep_det17 - done
... create Root H1 : ancillary_bgo_crystal_edep_det18 - done
... create Root H1 : ancillary_bgo_crystal_edep_det19 - done
... create Root H1 : sodiumIodide_crystal_edep - done
... create Root H1 : sodiumIodide_crystal_edep_sum - done
... create Root H1 : sodiumIodide_crystal_edep_det0 - done
... create Root H1 : sodiumIodide_crystal_edep_det1 - done
... create Root H1 : sodiumIodide_crystal_edep_det2 - done
... create Root H1 : sodiumIodide_crystal_edep_det3 - done
... create Root H1 : sodiumIodide_crystal_edep_det4 - done
... create Root H1 : sodiumIodide_crystal_edep_det5 - done
... create Root H1 : sodiumIodide_crystal_edep_det6 - done
... create Root H1 : sodiumIodide_crystal_edep_det7 - done
... create Root H1 : sodiumIodide_crystal_edep_det8 - done
... create Root H1 : sodiumIodide_crystal_edep_det9 - done
... create Root H1 : sodiumIodide_crystal_edep_det10 - done
... create Root H1 : sodiumIodide_crystal_edep_det11 - done
... create Root H1 : sodiumIodide_crystal_edep_det12 - done
... create Root H1 : sodiumIodide_crystal_edep_det13 - done
... create Root H1 : sodiumIodide_crystal_edep_det14 - done
... create Root H1 : sodiumIodide_crystal_edep_det15 - done
... create Root H1 : sodiumIodide_crystal_edep_det16 - done
... create Root H1 : sodiumIodide_crystal_edep_det17 - done
... create Root H1 : sodiumIodide_crystal_edep_det18 - done
... create Root H1 : sodiumIodide_crystal_edep_det19 - done
... create Root H1 : sceptar_edep - done
... create Root H1 : sceptar_edep_sum - done
... create Root H1 : sceptar_edep_det0 - done
... create Root H1 : sceptar_edep_det1 - done
... create Root H1 : sceptar_edep_det2 - done
... create Root H1 : sceptar_edep_det3 - done
... create Root H1 : sceptar_edep_det4 - done
... create Root H1 : sceptar_edep_det5 - done
... create Root H1 : sceptar_edep_det6 - done
... create Root H1 : sceptar_edep_det7 - done
... create Root H1 : sceptar_edep_det8 - done
... create Root H1 : sceptar_edep_det9 - done
... create Root H1 : sceptar_edep_det10 - done
... create Root H1 : sceptar_edep_det11 - done
... create Root H1 : sceptar_edep_det12 - done
... create Root H1 : sceptar_edep_det13 - done
... create Root H1 : sceptar_edep_det14 - done
... create Root H1 : sceptar_edep_det15 - done
... create Root H1 : sceptar_edep_det16 - done
... create Root H1 : sceptar_edep_det17 - done
... create Root H1 : sceptar_edep_det18 - done
... create Root H1 : sceptar_edep_det19 - done
... create Root H1 : Eightpi_crystal_edep - done
... create Root H1 : Eightpi_crystal_edep_sum - done
... create Root H1 : Eightpi_crystal_edep_det0 - done
... create Root H1 : Eightpi_crystal_edep_det1 - done
... create Root H1 : Eightpi_crystal_edep_det2 - done
... create Root H1 : Eightpi_crystal_edep_det3 - done
... create Root H1 : Eightpi_crystal_edep_det4 - done
... create Root H1 : Eightpi_crystal_edep_det5 - done
... create Root H1 : Eightpi_crystal_edep_det6 - done
... create Root H1 : Eightpi_crystal_edep_det7 - done
... create Root H1 : Eightpi_crystal_edep_det8 - done
... create Root H1 : Eightpi_crystal_edep_det9 - done
... create Root H1 : Eightpi_crystal_edep_det10 - done
... create Root H1 : Eightpi_crystal_edep_det11 - done
... create Root H1 : Eightpi_crystal_edep_det12 - done
... create Root H1 : Eightpi_crystal_edep_det13 - done
... create Root H1 : Eightpi_crystal_edep_det14 - done
... create Root H1 : Eightpi_crystal_edep_det15 - done
... create Root H1 : Eightpi_crystal_edep_det16 - done
... create Root H1 : Eightpi_crystal_edep_det17 - done
... create Root H1 : Eightpi_crystal_edep_det18 - done
... create Root H1 : Eightpi_crystal_edep_det19 - done
... create Root H1 : spice_crystal_edep - done
... create Root H1 : spice_crystal_edep_sum - done
... create Root H1 : spice_crystal_edep_det0 - done
... create Root H1 : spice_crystal_edep_det1 - done
... create Root H1 : spice_crystal_edep_det2 - done
... create Root H1 : spice_crystal_edep_det3 - done
... create Root H1 : spice_crystal_edep_det4 - done
... create Root H1 : spice_crystal_edep_det5 - done
... create Root H1 : spice_crystal_edep_det6 - done
... create Root H1 : spice_crystal_edep_det7 - done
... create Root H1 : spice_crystal_edep_det8 - done
... create Root H1 : spice_crystal_edep_det9 - done
... create Root H1 : spice_crystal_edep_det10 - done
... create Root H1 : spice_crystal_edep_det11 - done
... create Root H1 : spice_crystal_edep_det12 - done
... create Root H1 : spice_crystal_edep_det13 - done
... create Root H1 : spice_crystal_edep_det14 - done
... create Root H1 : spice_crystal_edep_det15 - done
... create Root H1 : spice_crystal_edep_det16 - done
... create Root H1 : spice_crystal_edep_det17 - done
... create Root H1 : spice_crystal_edep_det18 - done
... create Root H1 : spice_crystal_edep_det19 - done
... create Root H1 : paces_crystal_edep - done
... create Root H1 : paces_crystal_edep_sum - done
... create Root H1 : paces_crystal_edep_det0 - done
... create Root H1 : paces_crystal_edep_det1 - done
... create Root H1 : paces_crystal_edep_det2 - done
... create Root H1 : paces_crystal_edep_det3 - done
... create Root H1 : paces_crystal_edep_det4 - done
... create Root H1 : paces_crystal_edep_det5 - done
... create Root H1 : paces_crystal_edep_det6 - done
... create Root H1 : paces_crystal_edep_det7 - done
... create Root H1 : paces_crystal_edep_det8 - done
... create Root H1 : paces_crystal_edep_det9 - done
... create Root H1 : paces_crystal_edep_det10 - done
... create Root H1 : paces_crystal_edep_det11 - done
... create Root H1 : paces_crystal_edep_det12 - done
... create Root H1 : paces_crystal_edep_det13 - done
... create Root H1 : paces_crystal_edep_det14 - done
... create Root H1 : paces_crystal_edep_det15 - done
... create Root H1 : paces_crystal_edep_det16 - done
... create Root H1 : paces_crystal_edep_det17 - done
... create Root H1 : paces_crystal_edep_det18 - done
... create Root H1 : paces_crystal_edep_det19 - done
... create Root ntuple : ntuple ntupleId 0 - done
... create Root ntuple T column : eventNumber ntupleId 0 - done
... create Root ntuple T column : trackID ntupleId 0 - done
... create Root ntuple T column : parentID ntupleId 0 - done
... create Root ntuple T column : stepNumber ntupleId 0 - done
... create Root ntuple T column : particleType ntupleId 0 - done
... create Root ntuple T column : processType ntupleId 0 - done
... create Root ntuple T column : systemID ntupleId 0 - done
... create Root ntuple T column : cryNumber ntupleId 0 - done
... create Root ntuple T column : detNumber ntupleId 0 - done
... create Root ntuple T column : depEnergy ntupleId 0 - done
... create Root ntuple T column : posx ntupleId 0 - done
... create Root ntuple T column : posy ntupleId 0 - done
... create Root ntuple T column : posz ntupleId 0 - done
... create Root ntuple T column : time ntupleId 0 - done
... create Root ntuple T column : targetZ ntupleId 0 - done
... create Root ntuple T column : numScintPhotons ntupleId 0 - done
... create Root ntuple T column : numQuartzPhotons ntupleId 0 - done
... create Root ntuple T column : eDepD ntupleId 0 - done
... create Root ntuple T column : eDepC ntupleId 0 - done
... create Root ntuple T column : eDepP ntupleId 0 - done
... create Root ntuple T column : eDepA ntupleId 0 - done
... create Root ntuple T column : eDepE ntupleId 0 - done
... create Root ntuple T column : eDepN ntupleId 0 - done
... create Root ntuple T column : eDepOther ntupleId 0 - done
... create Root ntuple T column : eDepBe ntupleId 0 - done
... create Root ntuple T column : eDepB ntupleId 0 - done
... create Root ntuple T column : eDepT ntupleId 0 - done
... create Root ntuple T column : eDepG ntupleId 0 - done
... create Root ntuple T column : lab_angle ntupleId 0 - done
... finish Root ntuple : ntuple ntupleId 0 - done

----> Histogram Tree is opened in g4out.root
=====================================
  G4EventManager::ProcessOneEvent()  
=====================================
 ---> Ev.#     0 :: 0.00 % 
particle:   geantino
MeV dEdx
0   0
0.001   0
0.002   0
0.003   0
0.004   0
0.005   0
0.006   0
0.007   0
0.008   0
0.009   0
0.01    0
0.011   0
0.012   0
0.013   0
0.014   0
0.015   0
0.016   0
0.017   0
0.018   0
0.019   0
0.02    0
0.021   0
0.022   0
0.023   0
0.024   0
0.025   0
0.026   0
0.027   0
0.028   0
0.029   0
0.03    0
0.031   0
0.032   0
0.033   0
0.034   0
0.035   0
0.036   0
0.037   0
0.038   0
0.039   0
0.04    0
0.041   0
0.042   0
0.043   0
0.044   0
0.045   0
0.046   0
0.047   0
0.048   0
0.049   0
0.05    0
0.051   0
0.052   0
0.053   0
0.054   0
0.055   0
0.056   0
0.057   0
0.058   0
0.059   0
0.06    0
0.061   0
0.062   0
0.063   0
0.064   0
0.065   0
0.066   0
0.067   0
0.068   0
0.069   0
0.07    0
0.071   0
0.072   0
0.073   0
0.074   0
0.075   0
0.076   0
0.077   0
0.078   0
0.079   0
0.08    0
0.081   0
0.082   0
0.083   0
0.084   0
0.085   0
0.086   0
0.087   0
0.088   0
0.089   0
0.09    0
0.091   0
0.092   0
0.093   0
0.094   0
0.095   0
0.096   0
0.097   0
0.098   0
0.099   0
0.1 0
0.101   0
0.102   0
0.103   0
0.104   0
0.105   0
0.106   0
0.107   0
0.108   0
0.109   0
0.11    0
0.111   0
0.112   0
0.113   0
0.114   0
0.115   0
0.116   0
0.117   0
0.118   0
0.119   0
0.12    0
0.121   0
0.122   0
0.123   0
0.124   0
0.125   0
0.126   0
0.127   0
0.128   0
0.129   0
0.13    0
0.131   0
0.132   0
0.133   0
0.134   0
0.135   0
0.136   0
0.137   0
0.138   0
0.139   0
0.14    0
0.141   0
0.142   0
0.143   0
0.144   0
0.145   0
0.146   0
0.147   0
0.148   0
0.149   0
0.15    0
0.151   0
0.152   0
0.153   0
0.154   0
0.155   0
0.156   0
0.157   0
0.158   0
0.159   0
0.16    0
0.161   0
0.162   0
0.163   0
0.164   0
0.165   0
0.166   0
0.167   0
0.168   0
0.169   0
0.17    0
0.171   0
0.172   0
0.173   0
0.174   0
0.175   0
0.176   0
0.177   0
0.178   0
0.179   0
0.18    0
0.181   0
0.182   0
0.183   0
0.184   0
0.185   0
0.186   0
0.187   0
0.188   0
0.189   0
0.19    0
0.191   0
0.192   0
0.193   0
0.194   0
0.195   0
0.196   0
0.197   0
0.198   0
0.199   0
0.2 0
0.201   0
0.202   0
0.203   0
0.204   0
0.205   0
0.206   0
0.207   0
0.208   0
0.209   0
0.21    0
0.211   0
0.212   0
0.213   0
0.214   0
0.215   0
0.216   0
0.217   0
0.218   0
0.219   0
0.22    0
0.221   0
0.222   0
0.223   0
0.224   0
0.225   0
0.226   0
0.227   0
0.228   0
0.229   0
0.23    0
0.231   0
0.232   0
0.233   0
0.234   0
0.235   0
0.236   0
0.237   0
0.238   0
0.239   0
0.24    0
0.241   0
0.242   0
0.243   0
0.244   0
0.245   0
0.246   0
0.247   0
0.248   0
0.249   0
0.25    0
0.251   0
0.252   0
0.253   0
0.254   0
0.255   0
0.256   0
0.257   0
0.258   0
0.259   0
0.26    0
0.261   0
0.262   0
0.263   0
0.264   0
0.265   0
0.266   0
0.267   0
0.268   0
0.269   0
0.27    0
0.271   0
0.272   0
0.273   0
0.274   0
0.275   0
0.276   0
0.277   0
0.278   0
0.279   0
0.28    0
0.281   0
0.282   0
0.283   0
0.284   0
0.285   0
0.286   0
0.287   0
0.288   0
0.289   0
0.29    0
0.291   0
0.292   0
0.293   0
0.294   0
0.295   0
0.296   0
0.297   0
0.298   0
0.299   0
0.3 0
0.301   0
0.302   0
0.303   0
0.304   0
0.305   0
0.306   0
0.307   0
0.308   0
0.309   0
0.31    0
0.311   0
0.312   0
0.313   0
0.314   0
0.315   0
0.316   0
0.317   0
0.318   0
0.319   0
0.32    0
0.321   0
0.322   0
0.323   0
0.324   0
0.325   0
0.326   0
0.327   0
0.328   0
0.329   0
0.33    0
0.331   0
0.332   0
0.333   0
0.334   0
0.335   0
0.336   0
0.337   0
0.338   0
0.339   0
0.34    0
0.341   0
0.342   0
0.343   0
0.344   0
0.345   0
0.346   0
0.347   0
0.348   0
0.349   0
0.35    0
0.351   0
0.352   0
0.353   0
0.354   0
0.355   0
0.356   0
0.357   0
0.358   0
0.359   0
0.36    0
0.361   0
0.362   0
0.363   0
0.364   0
0.365   0
0.366   0
0.367   0
0.368   0
0.369   0
0.37    0
0.371   0
0.372   0
0.373   0
0.374   0
0.375   0
0.376   0
0.377   0
0.378   0
0.379   0
0.38    0
0.381   0
0.382   0
0.383   0
0.384   0
0.385   0
0.386   0
0.387   0
0.388   0
0.389   0
0.39    0
0.391   0
0.392   0
0.393   0
0.394   0
0.395   0
0.396   0
0.397   0
0.398   0
0.399   0
0.4 0
0.401   0
0.402   0
0.403   0
0.404   0
0.405   0
0.406   0
0.407   0
0.408   0
0.409   0
0.41    0
0.411   0
0.412   0
0.413   0
0.414   0
0.415   0
0.416   0
0.417   0
0.418   0
0.419   0
0.42    0
0.421   0
0.422   0
0.423   0
0.424   0
0.425   0
0.426   0
0.427   0
0.428   0
0.429   0
0.43    0
0.431   0
0.432   0
0.433   0
0.434   0
0.435   0
0.436   0
0.437   0
0.438   0
0.439   0
0.44    0
0.441   0
0.442   0
0.443   0
0.444   0
0.445   0
0.446   0
0.447   0
0.448   0
0.449   0
0.45    0
0.451   0
0.452   0
0.453   0
0.454   0
0.455   0
0.456   0
0.457   0
0.458   0
0.459   0
0.46    0
0.461   0
0.462   0
0.463   0
0.464   0
0.465   0
0.466   0
0.467   0
0.468   0
0.469   0
0.47    0
0.471   0
0.472   0
0.473   0
0.474   0
0.475   0
0.476   0
0.477   0
0.478   0
0.479   0
0.48    0
0.481   0
0.482   0
0.483   0
0.484   0
0.485   0
0.486   0
0.487   0
0.488   0
0.489   0
0.49    0
0.491   0
0.492   0
0.493   0
0.494   0
0.495   0
0.496   0
0.497   0
0.498   0
0.499   0
0.5 0
0.501   0
0.502   0
0.503   0
0.504   0
0.505   0
0.506   0
0.507   0
0.508   0
0.509   0
0.51    0
0.511   0
0.512   0
0.513   0
0.514   0
0.515   0
0.516   0
0.517   0
0.518   0
0.519   0
0.52    0
0.521   0
0.522   0
0.523   0
0.524   0
0.525   0
0.526   0
0.527   0
0.528   0
0.529   0
0.53    0
0.531   0
0.532   0
0.533   0
0.534   0
0.535   0
0.536   0
0.537   0
0.538   0
0.539   0
0.54    0
0.541   0
0.542   0
0.543   0
0.544   0
0.545   0
0.546   0
0.547   0
0.548   0
0.549   0
0.55    0
0.551   0
0.552   0
0.553   0
0.554   0
0.555   0
0.556   0
0.557   0
0.558   0
0.559   0
0.56    0
0.561   0
0.562   0
0.563   0
0.564   0
0.565   0
0.566   0
0.567   0
0.568   0
0.569   0
0.57    0
0.571   0
0.572   0
0.573   0
0.574   0
0.575   0
0.576   0
0.577   0
0.578   0
0.579   0
0.58    0
0.581   0
0.582   0
0.583   0
0.584   0
0.585   0
0.586   0
0.587   0
0.588   0
0.589   0
0.59    0
0.591   0
0.592   0
0.593   0
0.594   0
0.595   0
0.596   0
0.597   0
0.598   0
0.599   0
0.6 0
0.601   0
0.602   0
0.603   0
0.604   0
0.605   0
0.606   0
0.607   0
0.608   0
0.609   0
0.61    0
0.611   0
0.612   0
0.613   0
0.614   0
0.615   0
0.616   0
0.617   0
0.618   0
0.619   0
0.62    0
0.621   0
0.622   0
0.623   0
0.624   0
0.625   0
0.626   0
0.627   0
0.628   0
0.629   0
0.63    0
0.631   0
0.632   0
0.633   0
0.634   0
0.635   0
0.636   0
0.637   0
0.638   0
0.639   0
0.64    0
0.641   0
0.642   0
0.643   0
0.644   0
0.645   0
0.646   0
0.647   0
0.648   0
0.649   0
0.65    0
0.651   0
0.652   0
0.653   0
0.654   0
0.655   0
0.656   0
0.657   0
0.658   0
0.659   0
0.66    0
0.661   0
0.662   0
0.663   0
0.664   0
0.665   0
0.666   0
0.667   0
0.668   0
0.669   0
0.67    0
0.671   0
0.672   0
0.673   0
0.674   0
0.675   0
0.676   0
0.677   0
0.678   0
0.679   0
0.68    0
0.681   0
0.682   0
0.683   0
0.684   0
0.685   0
0.686   0
0.687   0
0.688   0
0.689   0
0.69    0
0.691   0
0.692   0
0.693   0
0.694   0
0.695   0
0.696   0
0.697   0
0.698   0
0.699   0
0.7 0
0.701   0
0.702   0
0.703   0
0.704   0
0.705   0
0.706   0
0.707   0
0.708   0
0.709   0
0.71    0
0.711   0
0.712   0
0.713   0
0.714   0
0.715   0
0.716   0
0.717   0
0.718   0
0.719   0
0.72    0
0.721   0
0.722   0
0.723   0
0.724   0
0.725   0
0.726   0
0.727   0
0.728   0
0.729   0
0.73    0
0.731   0
0.732   0
0.733   0
0.734   0
0.735   0
0.736   0
0.737   0
0.738   0
0.739   0
0.74    0
0.741   0
0.742   0
0.743   0
0.744   0
0.745   0
0.746   0
0.747   0
0.748   0
0.749   0
0.75    0
0.751   0
0.752   0
0.753   0
0.754   0
0.755   0
0.756   0
0.757   0
0.758   0
0.759   0
0.76    0
0.761   0
0.762   0
0.763   0
0.764   0
0.765   0
0.766   0
0.767   0
0.768   0
0.769   0
0.77    0
0.771   0
0.772   0
0.773   0
0.774   0
0.775   0
0.776   0
0.777   0
0.778   0
0.779   0
0.78    0
0.781   0
0.782   0
0.783   0
0.784   0
0.785   0
0.786   0
0.787   0
0.788   0
0.789   0
0.79    0
0.791   0
0.792   0
0.793   0
0.794   0
0.795   0
0.796   0
0.797   0
0.798   0
0.799   0
0.8 0
0.801   0
0.802   0
0.803   0
0.804   0
0.805   0
0.806   0
0.807   0
0.808   0
0.809   0
0.81    0
0.811   0
0.812   0
0.813   0
0.814   0
0.815   0
0.816   0
0.817   0
0.818   0
0.819   0
0.82    0
0.821   0
0.822   0
0.823   0
0.824   0
0.825   0
0.826   0
0.827   0
0.828   0
0.829   0
0.83    0
0.831   0
0.832   0
0.833   0
0.834   0
0.835   0
0.836   0
0.837   0
0.838   0
0.839   0
0.84    0
0.841   0
0.842   0
0.843   0
0.844   0
0.845   0
0.846   0
0.847   0
0.848   0
0.849   0
0.85    0
0.851   0
0.852   0
0.853   0
0.854   0
0.855   0
0.856   0
0.857   0
0.858   0
0.859   0
0.86    0
0.861   0
0.862   0
0.863   0
0.864   0
0.865   0
0.866   0
0.867   0
0.868   0
0.869   0
0.87    0
0.871   0
0.872   0
0.873   0
0.874   0
0.875   0
0.876   0
0.877   0
0.878   0
0.879   0
0.88    0
0.881   0
0.882   0
0.883   0
0.884   0
0.885   0
0.886   0
0.887   0
0.888   0
0.889   0
0.89    0
0.891   0
0.892   0
0.893   0
0.894   0
0.895   0
0.896   0
0.897   0
0.898   0
0.899   0
0.9 0
0.901   0
0.902   0
0.903   0
0.904   0
0.905   0
0.906   0
0.907   0
0.908   0
0.909   0
0.91    0
0.911   0
0.912   0
0.913   0
0.914   0
0.915   0
0.916   0
0.917   0
0.918   0
0.919   0
0.92    0
0.921   0
0.922   0
0.923   0
0.924   0
0.925   0
0.926   0
0.927   0
0.928   0
0.929   0
0.93    0
0.931   0
0.932   0
0.933   0
0.934   0
0.935   0
0.936   0
0.937   0
0.938   0
0.939   0
0.94    0
0.941   0
0.942   0
0.943   0
0.944   0
0.945   0
0.946   0
0.947   0
0.948   0
0.949   0
0.95    0
0.951   0
0.952   0
0.953   0
0.954   0
0.955   0
0.956   0
0.957   0
0.958   0
0.959   0
0.96    0
0.961   0
0.962   0
0.963   0
0.964   0
0.965   0
0.966   0
0.967   0
0.968   0
0.969   0
0.97    0
0.971   0
0.972   0
0.973   0
0.974   0
0.975   0
0.976   0
0.977   0
0.978   0
0.979   0
0.98    0
0.981   0
0.982   0
0.983   0
0.984   0
0.985   0
0.986   0
0.987   0
0.988   0
0.989   0
0.99    0
0.991   0
0.992   0
0.993   0
0.994   0
0.995   0
0.996   0
0.997   0
0.998   0
0.999   0
1   0
1 vertices passed from G4Event.
Primary particle (geantino) --- Transfered with momentum (0,0,0)
A new track 0x5d560229f980 (trackID 1, parentID 0) is passed to G4StackManager.
1 primaries are passed from G4EventTransformer.
!!!!!!! Now start processing an event !!!!!!!
### pop requested out of 1 stacked tracks.
Track 0x5d560229f980 (trackID 1, parentID 0) is passed to G4TrackingManager.

*********************************************************************************************************
* G4Track Information:   Particle = geantino,   Track ID = 1,   Parent ID = 0
*********************************************************************************************************

Step#    X(mm)    Y(mm)    Z(mm) KinE(MeV)  dE(MeV) StepLeng TrackLeng  NextVolume ProcName
    0        0        0        0         0        0        0         0       World initStep
    1        0        0        0         0        0        0         0       World User Limit

 *** Break *** segmentation violation

===========================================================
There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0  0x00007e44bc8ea3ea in __GI___wait4 (pid=46277, stat_loc=stat_loc
entry=0x7ffea533a898, options=options
entry=0, usage=usage
entry=0x0) at ../sysdeps/unix/sysv/linux/wait4.c:30
#1  0x00007e44bc8ea3ab in __GI___waitpid (pid=<optimized out>, stat_loc=stat_loc
entry=0x7ffea533a898, options=options
entry=0) at ./posix/waitpid.c:38
#2  0x00007e44bc850bdb in do_system (line=<optimized out>) at ../sysdeps/posix/system.c:171
#3  0x00007e44bfd19b04 in TUnixSystem::StackTrace() () from /home/apollo/Research/programs/root/6.24.08-install/lib/root/libCore.so
#4  0x00007e44bfd16e05 in TUnixSystem::DispatchSignals(ESignals) () from /home/apollo/Research/programs/root/6.24.08-install/lib/root/libCore.so
#5  <signal handler called>
#6  0x00007e44bcd4eba4 in std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare(char const*) const () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#7  0x00005d559e5f9685 in G4String::operator==(char const*) const ()
#8  0x00005d559e64149c in SteppingAction::UserSteppingAction(G4Step const*) ()
#9  0x00007e44bf5e043d in G4SteppingManager::Stepping (this=0x5d559fed72a0) at /home/apollo/Research/programs/geant4/ifd-source/source/tracking/src/G4SteppingManager.cc:243
#10 0x00007e44bf5eb97c in G4TrackingManager::ProcessOneTrack (this=0x5d559fed7260, apValueG4Track=apValueG4Track
entry=0x5d560229f980) at /home/apollo/Research/programs/geant4/ifd-source/source/tracking/src/G4TrackingManager.cc:126
#11 0x00007e44bffc9216 in G4EventManager::DoProcessing (this=0x5d559fed71c0, anEvent=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/event/src/G4EventManager.cc:184
#12 0x00007e44c005b41b in G4RunManager::ProcessOneEvent (this=0x5d559f932750, i_event=0) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:399
#13 0x00007e44c005b2eb in G4RunManager::DoEventLoop (this=0x5d559f932750, n_event=3, macroFile=<optimized out>, n_select=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:367
#14 0x00007e44c0059292 in G4RunManager::BeamOn (this=0x5d559f932750, n_event=3, macroFile=0x0, n_select=-1) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:273
#15 0x00007e44c006fdb1 in G4RunMessenger::SetNewValue (this=this
entry=0x5d559ff56be0, command=command
entry=0x5d559ff570b0, newValue=...) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunMessenger.cc:376
#16 0x00007e44bd31fbb6 in G4UIcommand::DoIt (this=this
entry=0x5d559ff570b0, parameterList=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIcommand.cc:230
#17 0x00007e44bd3346a0 in G4UImanager::ApplyCommand (this=0x5d559f8c2870, aCmd=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:523
#18 0x00007e44bd310251 in G4UIbatch::ExecCommand (this=this
entry=0x5d559ffd3e50, command=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIbatch.cc:170
#19 0x00007e44bd31167a in G4UIbatch::SessionStart (this=this
entry=0x5d559ffd3e50) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIbatch.cc:215
#20 0x00007e44bd334db6 in G4UImanager::ExecuteMacroFile (this=this
entry=0x5d559f8c2870, fileName=0x7ffea533eb60 "livermore.mac") at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:296
#21 0x00007e44bd327a27 in G4UIcontrolMessenger::SetNewValue (this=this
entry=0x5d559f8c2ca0, command=command
entry=0x5d559f8c34f0, newValue=...) at /usr/include/c++/11/bits/basic_string.h:194
#22 0x00007e44bd31fbb6 in G4UIcommand::DoIt (this=this
entry=0x5d559f8c34f0, parameterList=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIcommand.cc:230
#23 0x00007e44bd3346a0 in G4UImanager::ApplyCommand (this=0x5d559f8c2870, aCmd=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:523
#24 0x00005d559e5b1343 in main ()
===========================================================

The lines below might hint at the cause of the crash.
You may get help by asking at the ROOT forum https://root.cern.ch/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern.ch/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#6  0x00007e44bcd4eba4 in std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare(char const*) const () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#7  0x00005d559e5f9685 in G4String::operator==(char const*) const ()
#8  0x00005d559e64149c in SteppingAction::UserSteppingAction(G4Step const*) ()
#9  0x00007e44bf5e043d in G4SteppingManager::Stepping (this=0x5d559fed72a0) at /home/apollo/Research/programs/geant4/ifd-source/source/tracking/src/G4SteppingManager.cc:243
#10 0x00007e44bf5eb97c in G4TrackingManager::ProcessOneTrack (this=0x5d559fed7260, apValueG4Track=apValueG4Track
entry=0x5d560229f980) at /home/apollo/Research/programs/geant4/ifd-source/source/tracking/src/G4TrackingManager.cc:126
#11 0x00007e44bffc9216 in G4EventManager::DoProcessing (this=0x5d559fed71c0, anEvent=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/event/src/G4EventManager.cc:184
#12 0x00007e44c005b41b in G4RunManager::ProcessOneEvent (this=0x5d559f932750, i_event=0) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:399
#13 0x00007e44c005b2eb in G4RunManager::DoEventLoop (this=0x5d559f932750, n_event=3, macroFile=<optimized out>, n_select=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:367
#14 0x00007e44c0059292 in G4RunManager::BeamOn (this=0x5d559f932750, n_event=3, macroFile=0x0, n_select=-1) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunManager.cc:273
#15 0x00007e44c006fdb1 in G4RunMessenger::SetNewValue (this=this
entry=0x5d559ff56be0, command=command
entry=0x5d559ff570b0, newValue=...) at /home/apollo/Research/programs/geant4/ifd-source/source/run/src/G4RunMessenger.cc:376
#16 0x00007e44bd31fbb6 in G4UIcommand::DoIt (this=this
entry=0x5d559ff570b0, parameterList=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIcommand.cc:230
#17 0x00007e44bd3346a0 in G4UImanager::ApplyCommand (this=0x5d559f8c2870, aCmd=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:523
#18 0x00007e44bd310251 in G4UIbatch::ExecCommand (this=this
entry=0x5d559ffd3e50, command=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIbatch.cc:170
#19 0x00007e44bd31167a in G4UIbatch::SessionStart (this=this
entry=0x5d559ffd3e50) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIbatch.cc:215
#20 0x00007e44bd334db6 in G4UImanager::ExecuteMacroFile (this=this
entry=0x5d559f8c2870, fileName=0x7ffea533eb60 "livermore.mac") at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:296
#21 0x00007e44bd327a27 in G4UIcontrolMessenger::SetNewValue (this=this
entry=0x5d559f8c2ca0, command=command
entry=0x5d559f8c34f0, newValue=...) at /usr/include/c++/11/bits/basic_string.h:194
#22 0x00007e44bd31fbb6 in G4UIcommand::DoIt (this=this
entry=0x5d559f8c34f0, parameterList=...) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UIcommand.cc:230
#23 0x00007e44bd3346a0 in G4UImanager::ApplyCommand (this=0x5d559f8c2870, aCmd=<optimized out>) at /home/apollo/Research/programs/geant4/ifd-source/source/intercoms/src/G4UImanager.cc:523
#24 0x00005d559e5b1343 in main ()
===========================================================

WARNING - Attempt to delete the logical volume store while geometry closed !
WARNING - Attempt to delete the physical volume store while geometry closed !
WARNING - Attempt to delete the region store while geometry closed !
VinzenzBildstein commented 3 months ago

Have you tried commenting out parts of the macro to see what line makes it fail?

And I tried testing this issue, but when I replace the normal /gun/ commands in 60Co.mac with the commands you give, it fails right away with /gps/particle ion saying that this command is not found?

Can you post the full macro you are using to get this error?

smayotte commented 3 months ago

I knew it was failing because I wasn't using the general particle source correctly. To be honest I just asked ChatGPT and it pointed me in the right direction :D In the PrimaryGeneratorAction.cc I had to set useGPS = true; instead of false. It seems to be running now, so this can be closed.