Import Geant4 11.3.2 source tree

This commit is contained in:
Gabriele Cosmo
2025-04-28 13:52:33 +02:00
parent df176550b3
commit 20a218bbe1
266 changed files with 8007 additions and 7819 deletions
@@ -12,7 +12,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,32 +26,6 @@
########################################
########## COMPILER & FLAGS
########################################
######### C++ compiler and flags
CXX_COMP := g++
CXX_FLAGS := -std=c++17 -O2 -g -Wall -pedantic -malign-double
######### Fortran compiler and flags
F_COMP := gfortran
F_FLAGS := -g -Wall -pedantic
######### Linker flag
LD_FLAGS := -lgfortran
######### Check compilers collection version
IS_CXX_COMP_GT_7 := $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 7)
ifneq "$(IS_CXX_COMP_GT_7)" "1"
$(error "gcc suite version = $(shell gcc -dumpversion). Only versions >= 7 are supported!")
endif
########################################
########## EXTERNAL DEPENDENCIES
########################################
@@ -88,6 +62,32 @@ G4_LIBRARIES := $(shell geant4-config --libs)
########################################
########## COMPILER & FLAGS
########################################
######### C++ compiler and flags
CXX_COMP := g++
CXX_FLAGS := $(shell fluka-config --cppflags)
######### Fortran compiler and flags
F_COMP := gfortran
F_FLAGS := $(shell fluka-config --fflags)
######### Linker flag
LD_FLAGS := -lgfortran
######### Check compilers collection version
IS_CXX_COMP_GT_7 := $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 7)
ifneq "$(IS_CXX_COMP_GT_7)" "1"
$(error "gcc suite version = $(shell gcc -dumpversion). Only versions >= 7 are supported!")
endif
########################################
########## PROJECT DIRECTORIES
########################################
@@ -117,7 +117,8 @@ CLEAN_DIR := $(OBJ_DIR) $(BIN_DIR)
######### FORTRAN SOURCE
F_SRC_DIR := $(SRC_DIR)/fluka4_wrapper/fortran/procedures \
$(SRC_DIR)/cpp_fortran_bridges/fortran
F_INCLUDE := -I$(FLUKA_INCLUDE_DIR) -J$(FLUKA_INCLUDE_DIR)
F_SRC := $(foreach src_dir, $(F_SRC_DIR), $(wildcard $(src_dir)/*.f))
F_OBJ := $(addprefix $(OBJ_DIR)/, $(notdir $(F_SRC:.f=.o)))
@@ -297,7 +298,7 @@ $(OBJ_DIR)/%.o: $(1)/%.f
@echo
@echo "Building $$(notdir $$@) for core FLUKA5 FORTRAN source:"
@[ -d $$(@D) ] || mkdir -p $$(@D)
$(F_COMP) -DG4_USE_FLUKA $(F_FLAGS) -c $$< -o $$@
$(F_COMP) -DG4_USE_FLUKA $(F_FLAGS) $(F_INCLUDE) -c $$< -o $$@
@echo "Built $$(notdir $$@) successfully."
endef
$(foreach src_dir, $(F_SRC_DIR), $(eval $(call F_BUILD_template, $(src_dir))))
@@ -0,0 +1,41 @@
subroutine declare_commons()
INCLUDE 'dblprc.inc'
INCLUDE 'dimpar.inc'
INCLUDE 'iounit.inc'
EXTERNAL BDINPT, BDTRNS, BDHDR1, BDHDR2, BDHDR3, BDPART, BDPRDC,
& BDGNSC, BDNOPT, BDEVAP, BDPWXS, BDPREE, BDESJE, HADINI
INCLUDE 'beamcm.inc'
INCLUDE 'blnkcm.inc'
INCLUDE 'caslim.inc'
INCLUDE 'cmelds.inc'
INCLUDE 'cmphnu.inc'
INCLUDE 'ctitle.inc'
INCLUDE 'currpt.inc'
INCLUDE 'evaflg.inc'
INCLUDE 'evapix.inc'
INCLUDE 'fheavy.inc'
INCLUDE 'flkmat.inc'
INCLUDE 'genflg.inc'
INCLUDE 'genstk.inc'
INCLUDE 'genthr.inc'
INCLUDE 'isotop.inc'
INCLUDE 'ncsfta.inc'
INCLUDE 'ndnicm.inc'
INCLUDE 'nucdat.inc'
INCLUDE 'nucflg.inc'
INCLUDE 'nucgeo.inc'
INCLUDE 'nucpot.inc'
INCLUDE 'nuinfo.inc'
INCLUDE 'paprop.inc'
INCLUDE 'parevt.inc'
INCLUDE 'part2.inc'
INCLUDE 'phnccm.inc'
INCLUDE 'resnuc.inc'
INCLUDE 'sgtbcm.inc'
INCLUDE 'sumcou.inc'
INCLUDE 'thrscm.inc'
end
@@ -69,7 +69,6 @@
# include "sgtbcm.h"
# include "sumcou.h"
# include "thrscm.h"
# include "usryld.h"
// clang-format on
# endif
@@ -370,8 +370,8 @@ void setNuclearInelasticFinalState(G4HadFinalState* const finalState,
const G4int targetA = targetNucleus.GetA_asInt();
const G4int targetZ = targetNucleus.GetZ_asInt();
const auto& projectileDirection = projectile.GetMomentumDirection();
/*G4double txx = projectileDirection.x();
/*const auto& projectileDirection = projectile.GetMomentumDirection();
G4double txx = projectileDirection.x();
G4double tyy = projectileDirection.y();
G4double tzz = projectileDirection.z();*/
// Should NOT propagate the track/projectile's direction (dir) from Geant4:
@@ -4,6 +4,9 @@ See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
which **must** added in reverse chronological order (newest at the top). It must **not**
be used as a substitute for writing good git commit messages!
## 2025-03-21 Gabrielle Hugo (FlukaCern-V11-02-02)
- Ensure compatibility with FLUKA v4-5.0: make the link time resolution of COMMON blocks
(declared as external structs in the C++ source) compatible with the new FLUKA version.
## 2024-11-15 Gabrielle Hugo (FlukaCern-V11-02-01)
- Should NOT propagate the track/projectile's direction (dir) from Geant4 to the FLUKA event generator,
@@ -10,7 +10,7 @@
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -145,6 +145,6 @@ Average (per event) number of triton 0.3
Final random number = 0.548214
Processed 10 events (collisions) in 2.846340e-01 seconds. Average: 28.4634 ms / event.
Processed 10 events (collisions) in 2.253800e-02 seconds. Average: 2.2538 ms / event.
=== End of test ===
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -837,7 +837,7 @@ EventAction: Event # 0 started
Run terminated.
Run Summary
Number of events processed : 10
User=0.010000s Real=0.008291s Sys=0.000000s
User=0.010000s Real=0.007642s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started
### Fill Cross Sections for proton off Al
+6 -6
View File
@@ -10,7 +10,7 @@
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -613,7 +613,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
### Run 0 starts.
### Run 0 start
Initialisation time: User=0.530000s Real=1.875655s Sys=0.010000s
Initialisation time: User=0.310000s Real=0.367647s Sys=0.010000s
EventAction: Event #0 started
EventAction: Event #10 started
EventAction: Event #20 started
@@ -627,8 +627,8 @@ EventAction: Event #90 started
Run terminated.
Run Summary
Number of events processed : 100
User=0.040000s Real=0.174720s Sys=0.000000s
RunAction::EndOfRunAction: User=0.040000s Real=0.174859s Sys=0.000000s
User=0.030000s Real=0.021907s Sys=0.000000s
RunAction::EndOfRunAction: User=0.030000s Real=0.021949s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started
========================================================
@@ -660,8 +660,8 @@ Average number of pion leak 0
#
G4 kernel has come to Quit state.
Deleting G4Run (id:0)
UserDetectorConstruction deleted 0xa58b20
UserPhysicsList deleted 0xa7bd88
UserDetectorConstruction deleted 0x1a38ef0
UserPhysicsList deleted 0x1a5c158
UserActionInitialization deleted 0
UserWorkerInitialization deleted 0
UserWorkerThreadInitialization deleted 0
+2 -2
View File
@@ -10,7 +10,7 @@
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -883,7 +883,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
User=0.100000s Real=0.103984s Sys=0.000000s
User=0.070000s Real=0.174204s Sys=0.000000s
RunAction: End of run action is starting
HistoManager: End of run actions are started
========================================================
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -340,7 +340,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
User=0.090000s Real=0.091263s Sys=0.000000s
User=0.050000s Real=0.051463s Sys=0.000000s
The run is 10000 proton of 10 MeV through 10 m of Molybdenum98 (density: 10.28 g/cm3 )
+5 -5
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -166,7 +166,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000
User=7.810000s Real=7.843820s Sys=0.000000s
User=4.970000s Real=7.828092s Sys=0.000000s
The run is 1000 neutron of 2 MeV through 50 cm of Water_ts (density: 1 g/cm3 )
@@ -192,9 +192,9 @@ Run Summary
----------------------------------------
G4 kernel has come to Quit state.
Deleting G4Run (id:0)
UserDetectorConstruction deleted 0x1dec600
UserPhysicsList deleted 0x2091f50
UserActionInitialization deleted 0x2201050
UserDetectorConstruction deleted 0x24aa660
UserPhysicsList deleted 0x2750320
UserActionInitialization deleted 0x28bf420
UserWorkerInitialization deleted 0
UserWorkerThreadInitialization deleted 0
UserRunAction deleted.
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -118,7 +118,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=63.170000s Real=75.210476s Sys=0.030000s
User=37.160000s Real=41.384977s Sys=0.000000s
---> The run is 1000 proton of 5 GeV through calorimeter
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -383,7 +383,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
User=5.920000s Real=6.358507s Sys=0.000000s
User=3.910000s Real=4.560082s Sys=0.000000s
The run is 10000 neutron of 14.1 MeV through 30 cm of Li7 (density: 1.85 g/cm3 )
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -383,7 +383,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
User=3.950000s Real=3.964955s Sys=0.000000s
User=2.490000s Real=3.345023s Sys=0.000000s
======================== run summary =====================
+2 -2
View File
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -786,7 +786,7 @@ Index : 3 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
User=4.190000s Real=5.971232s Sys=0.000000s
User=2.600000s Real=5.020905s Sys=0.000000s
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
Dynamic pools deleted: 11 / Total memory freed: 0.1 MB
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -397,7 +397,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
User=2.280000s Real=4.825274s Sys=0.010000s
User=1.300000s Real=1.318959s Sys=0.000000s
The run is 10000 Am241 of 0 eV within BeO (D = 3 cm L = 6 cm )
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
**************************************************************
Geant4 version Name: geant4-11-03-patch-01 (21-March-2025)
Geant4 version Name: geant4-11-03-patch-02 (25-April-2025)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -815,7 +815,7 @@ Index : 3 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
User=40.050000s Real=40.391368s Sys=0.010000s
User=23.950000s Real=24.015439s Sys=0.030000s
=============== Run::PrintInfo() =============== RunID = 0
@@ -829,143 +829,143 @@ Run Summary
Number of events = 100
Conversion factor: fluence from mm^-2 to cm^-2 = 100
Particle fluence in unit of cm^-2 :
case= 0 downstream all 0.00183635
case= 1 downstream electron 5.90755e-05
case= 2 downstream gamma 0.00110318
case= 3 downstream muon 0
case= 4 downstream neutrino 8.95895e-05
case= 5 downstream pion 1.29784e-05
case= 6 downstream neutron 0.000566815
case= 7 downstream proton 4.7026e-06
case= 0 downstream all 0.000878129
case= 1 downstream electron 1.57291e-05
case= 2 downstream gamma 0.000360917
case= 3 downstream muon 1.16001e-06
case= 4 downstream neutrino 0.00010504
case= 5 downstream pion 7.63435e-06
case= 6 downstream neutron 0.000381658
case= 7 downstream proton 4.85498e-06
case= 8 downstream ion 0
case= 9 downstream otherMeson 0
case= 9 downstream otherMeson 1.1352e-06
case= 10 downstream otherBaryon 0
case= 11 downstream below 20 MeV all 0.00159825
case= 12 downstream below 20 MeV electron 4.54287e-05
case= 13 downstream below 20 MeV gamma 0.0010492
case= 11 downstream below 20 MeV all 0.000715175
case= 12 downstream below 20 MeV electron 1.3012e-05
case= 13 downstream below 20 MeV gamma 0.000351922
case= 14 downstream below 20 MeV muon 0
case= 15 downstream below 20 MeV neutrino 7.26366e-06
case= 15 downstream below 20 MeV neutrino 1.26891e-05
case= 16 downstream below 20 MeV pion 0
case= 17 downstream below 20 MeV neutron 0.000496361
case= 18 downstream below 20 MeV proton 0
case= 17 downstream below 20 MeV neutron 0.000336987
case= 18 downstream below 20 MeV proton 5.65115e-07
case= 19 downstream below 20 MeV ion 0
case= 20 downstream below 20 MeV otherMeson 0
case= 21 downstream below 20 MeV otherBaryon 0
case= 22 downstream above 20 MeV all 0.000238093
case= 23 downstream above 20 MeV electron 1.36467e-05
case= 24 downstream above 20 MeV gamma 5.39849e-05
case= 25 downstream above 20 MeV muon 0
case= 26 downstream above 20 MeV neutrino 8.23258e-05
case= 27 downstream above 20 MeV pion 1.29784e-05
case= 28 downstream above 20 MeV neutron 7.04544e-05
case= 29 downstream above 20 MeV proton 4.7026e-06
case= 22 downstream above 20 MeV all 0.000162954
case= 23 downstream above 20 MeV electron 2.71715e-06
case= 24 downstream above 20 MeV gamma 8.99503e-06
case= 25 downstream above 20 MeV muon 1.16001e-06
case= 26 downstream above 20 MeV neutrino 9.23512e-05
case= 27 downstream above 20 MeV pion 7.63435e-06
case= 28 downstream above 20 MeV neutron 4.46711e-05
case= 29 downstream above 20 MeV proton 4.28986e-06
case= 30 downstream above 20 MeV ion 0
case= 31 downstream above 20 MeV otherMeson 0
case= 31 downstream above 20 MeV otherMeson 1.1352e-06
case= 32 downstream above 20 MeV otherBaryon 0
case= 33 side all 0.000666344
case= 34 side electron 1.12104e-06
case= 35 side gamma 9.7969e-05
case= 33 side all 0.000673919
case= 34 side electron 2.0723e-06
case= 35 side gamma 0.00011181
case= 36 side muon 0
case= 37 side neutrino 0.000163298
case= 38 side pion 1.48152e-07
case= 39 side neutron 0.000403406
case= 40 side proton 2.47253e-07
case= 37 side neutrino 0.000171229
case= 38 side pion 0
case= 39 side neutron 0.000388361
case= 40 side proton 4.46494e-07
case= 41 side ion 0
case= 42 side otherMeson 1.55277e-07
case= 42 side otherMeson 0
case= 43 side otherBaryon 0
case= 44 side below 20 MeV all 0.000489445
case= 45 side below 20 MeV electron 1.12104e-06
case= 46 side below 20 MeV gamma 9.77572e-05
case= 44 side below 20 MeV all 0.000484632
case= 45 side below 20 MeV electron 2.0723e-06
case= 46 side below 20 MeV gamma 0.000111705
case= 47 side below 20 MeV muon 0
case= 48 side below 20 MeV neutrino 1.22211e-05
case= 48 side below 20 MeV neutrino 1.25457e-05
case= 49 side below 20 MeV pion 0
case= 50 side below 20 MeV neutron 0.000378345
case= 51 side below 20 MeV proton 0
case= 50 side below 20 MeV neutron 0.000358114
case= 51 side below 20 MeV proton 1.94874e-07
case= 52 side below 20 MeV ion 0
case= 53 side below 20 MeV otherMeson 0
case= 54 side below 20 MeV otherBaryon 0
case= 55 side above 20 MeV all 0.000176899
case= 55 side above 20 MeV all 0.000189287
case= 56 side above 20 MeV electron 0
case= 57 side above 20 MeV gamma 2.11739e-07
case= 57 side above 20 MeV gamma 1.04346e-07
case= 58 side above 20 MeV muon 0
case= 59 side above 20 MeV neutrino 0.000151077
case= 60 side above 20 MeV pion 1.48152e-07
case= 61 side above 20 MeV neutron 2.50604e-05
case= 62 side above 20 MeV proton 2.47253e-07
case= 59 side above 20 MeV neutrino 0.000158683
case= 60 side above 20 MeV pion 0
case= 61 side above 20 MeV neutron 3.02475e-05
case= 62 side above 20 MeV proton 2.5162e-07
case= 63 side above 20 MeV ion 0
case= 64 side above 20 MeV otherMeson 1.55277e-07
case= 64 side above 20 MeV otherMeson 0
case= 65 side above 20 MeV otherBaryon 0
case= 66 upstream all 0.00589607
case= 67 upstream electron 4.0302e-05
case= 68 upstream gamma 0.00170139
case= 66 upstream all 0.00576049
case= 67 upstream electron 3.29356e-05
case= 68 upstream gamma 0.00157364
case= 69 upstream muon 0
case= 70 upstream neutrino 0.000389809
case= 71 upstream pion 6.9671e-06
case= 72 upstream neutron 0.00375043
case= 73 upstream proton 7.1685e-06
case= 70 upstream neutrino 0.000386949
case= 71 upstream pion 5.1595e-06
case= 72 upstream neutron 0.00376098
case= 73 upstream proton 8.30795e-07
case= 74 upstream ion 0
case= 75 upstream otherMeson 0
case= 76 upstream otherBaryon 0
case= 77 upstream below 20 MeV all 0.00535822
case= 78 upstream below 20 MeV electron 3.92413e-05
case= 79 upstream below 20 MeV gamma 0.00168766
case= 77 upstream below 20 MeV all 0.00521417
case= 78 upstream below 20 MeV electron 2.92415e-05
case= 79 upstream below 20 MeV gamma 0.00156097
case= 80 upstream below 20 MeV muon 0
case= 81 upstream below 20 MeV neutrino 3.88188e-05
case= 81 upstream below 20 MeV neutrino 3.60509e-05
case= 82 upstream below 20 MeV pion 0
case= 83 upstream below 20 MeV neutron 0.00359015
case= 84 upstream below 20 MeV proton 2.34373e-06
case= 83 upstream below 20 MeV neutron 0.00358791
case= 84 upstream below 20 MeV proton 0
case= 85 upstream below 20 MeV ion 0
case= 86 upstream below 20 MeV otherMeson 0
case= 87 upstream below 20 MeV otherBaryon 0
case= 88 upstream above 20 MeV all 0.000537857
case= 89 upstream above 20 MeV electron 1.0607e-06
case= 90 upstream above 20 MeV gamma 1.37296e-05
case= 88 upstream above 20 MeV all 0.000546317
case= 89 upstream above 20 MeV electron 3.69403e-06
case= 90 upstream above 20 MeV gamma 1.26728e-05
case= 91 upstream above 20 MeV muon 0
case= 92 upstream above 20 MeV neutrino 0.00035099
case= 93 upstream above 20 MeV pion 6.9671e-06
case= 94 upstream above 20 MeV neutron 0.000160285
case= 95 upstream above 20 MeV proton 4.82477e-06
case= 92 upstream above 20 MeV neutrino 0.000350898
case= 93 upstream above 20 MeV pion 5.1595e-06
case= 94 upstream above 20 MeV neutron 0.000173062
case= 95 upstream above 20 MeV proton 8.30795e-07
case= 96 upstream above 20 MeV ion 0
case= 97 upstream above 20 MeV otherMeson 0
case= 98 upstream above 20 MeV otherBaryon 0
-------------------------------------------------------------
Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV]
case= 0 calorimeter all 65154.5 4.1586 270952
case= 1 calorimeter electron 48288.5 1.63645 79021.8
case= 2 calorimeter gamma 14296.3 5.42681 77583.1
case= 3 calorimeter muon 6.31 15.3881 97.0988
case= 4 calorimeter neutrino 18.89 37.0255 699.411
case= 5 calorimeter pion 59.11 1160.27 68583.6
case= 6 calorimeter neutron 961.84 18.9436 18220.7
case= 7 calorimeter proton 221.79 60.096 13328.7
case= 8 calorimeter ion 1296.17 0.937154 1214.71
case= 9 calorimeter otherMeson 4.29 2564.78 11002.9
case= 10 calorimeter otherBaryon 1.31 915.718 1199.59
case= 11 calorimeter below 20 MeV all 64020.2 0.667123 42709.4
case= 12 calorimeter below 20 MeV electron 47846.8 0.455098 21775
case= 13 calorimeter below 20 MeV gamma 13898.8 1.21451 16880.2
case= 14 calorimeter below 20 MeV muon 5.87 4.14586 24.3362
case= 15 calorimeter below 20 MeV neutrino 1.56 14.6107 22.7928
case= 16 calorimeter below 20 MeV pion 1.25 11.9441 14.9301
case= 17 calorimeter below 20 MeV neutron 836.71 2.66863 2232.87
case= 18 calorimeter below 20 MeV proton 143.97 8.05436 1159.59
case= 19 calorimeter below 20 MeV ion 1284.98 0.464689 597.116
case= 20 calorimeter below 20 MeV otherMeson 0.32 5.21989 1.67037
case= 21 calorimeter below 20 MeV otherBaryon 0.06 14.7555 0.885333
case= 22 calorimeter above 20 MeV all 1134.24 201.229 228242
case= 23 calorimeter above 20 MeV electron 441.74 129.594 57246.8
case= 24 calorimeter above 20 MeV gamma 397.51 152.708 60703
case= 25 calorimeter above 20 MeV muon 0.44 165.37 72.7626
case= 26 calorimeter above 20 MeV neutrino 17.33 39.0432 676.619
case= 27 calorimeter above 20 MeV pion 57.86 1185.08 68568.7
case= 28 calorimeter above 20 MeV neutron 125.13 127.77 15987.8
case= 29 calorimeter above 20 MeV proton 77.82 156.375 12169.1
case= 30 calorimeter above 20 MeV ion 11.19 55.1917 617.595
case= 31 calorimeter above 20 MeV otherMeson 3.97 2771.1 11001.3
case= 32 calorimeter above 20 MeV otherBaryon 1.25 958.964 1198.71
case= 0 calorimeter all 64109.8 4.09878 262772
case= 1 calorimeter electron 47448.1 1.55651 73853.4
case= 2 calorimeter gamma 13982.1 5.1653 72221.8
case= 3 calorimeter muon 6.58 17.3728 114.313
case= 4 calorimeter neutrino 19.63 36.438 715.279
case= 5 calorimeter pion 62.24 1073.37 66806.6
case= 6 calorimeter neutron 1003.26 19.3107 19373.6
case= 7 calorimeter proton 230.16 61.5418 14164.5
case= 8 calorimeter ion 1351.78 0.928336 1254.91
case= 9 calorimeter otherMeson 4.59 2739.71 12575.3
case= 10 calorimeter otherBaryon 1.32 1281.91 1692.12
case= 11 calorimeter below 20 MeV all 63005.6 0.666917 42019.5
case= 12 calorimeter below 20 MeV electron 47028.3 0.452148 21263.8
case= 13 calorimeter below 20 MeV gamma 13605.5 1.21394 16516.2
case= 14 calorimeter below 20 MeV muon 6.13 4.13308 25.3358
case= 15 calorimeter below 20 MeV neutrino 1.63 14.4583 23.5671
case= 16 calorimeter below 20 MeV pion 1.39 11.9336 16.5878
case= 17 calorimeter below 20 MeV neutron 872.4 2.66922 2328.63
case= 18 calorimeter below 20 MeV proton 149.91 8.08882 1212.6
case= 19 calorimeter below 20 MeV ion 1339.97 0.470056 629.86
case= 20 calorimeter below 20 MeV otherMeson 0.31 7.27977 2.25673
case= 21 calorimeter below 20 MeV otherBaryon 0.07 10.1999 0.713996
case= 22 calorimeter above 20 MeV all 1104.19 199.922 220752
case= 23 calorimeter above 20 MeV electron 419.78 125.279 52589.6
case= 24 calorimeter above 20 MeV gamma 376.66 147.894 55705.6
case= 25 calorimeter above 20 MeV muon 0.45 197.727 88.9773
case= 26 calorimeter above 20 MeV neutrino 18 38.4284 691.712
case= 27 calorimeter above 20 MeV pion 60.85 1097.62 66790
case= 28 calorimeter above 20 MeV neutron 130.86 130.254 17045
case= 29 calorimeter above 20 MeV proton 80.25 161.394 12951.9
case= 30 calorimeter above 20 MeV ion 11.81 52.9251 625.046
case= 31 calorimeter above 20 MeV otherMeson 4.28 2937.62 12573
case= 32 calorimeter above 20 MeV otherBaryon 1.25 1353.12 1691.4
=============================================================
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
Dynamic pools deleted: 11 / Total memory freed: 0.24 MB
Dynamic pools deleted: 11 / Total memory freed: 0.25 MB
============================================================
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff