diff --git a/CMakeLists.txt b/CMakeLists.txt index 24a2a81dcda928025bceae18c397e4fefcf41aeb..808984400dc3d0dabb323d7c07801e4d74db1788 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ project(Geant4 HOMEPAGE_URL "https://geant4.cern.ch") set(${PROJECT_NAME}_VERSION_MAJOR 11) set(${PROJECT_NAME}_VERSION_MINOR 3) -set(${PROJECT_NAME}_VERSION_PATCH 1) +set(${PROJECT_NAME}_VERSION_PATCH 2) set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}") # - Prepend our own CMake Modules to the search path diff --git a/ReleaseNotes/Patch.11.3-2.txt b/ReleaseNotes/Patch.11.3-2.txt new file mode 100644 index 0000000000000000000000000000000000000000..bdcfc9cf86977790a4d5f0f46b0790baa5bc7467 --- /dev/null +++ b/ReleaseNotes/Patch.11.3-2.txt @@ -0,0 +1,114 @@ + + Geant4 11.3 - patch-02 Release Notes + ------------------------------------ + + 25 April 2025 + +List of fixes included in this public patch since release 11.3.1: + + o Externals + --------- + + g4tools: + o Fixed compilation errors on Windows in glarea header, triggered when enabling + GL WIN32 support, as reported in problem report #2599. + + zlib: + o Fix in zutil.h to remove redundant block on macOS and allow for porting on + macOS-15.4 with clang-17.0.0. + + o Geometry + -------- + + management: + o In G4GeometryManager, removed redundant declaration of not implemented method + ChooseSequentialOptimisation(). + + o Global + ------ + + Added Scintillation, Cherenkov, Transition Radiation and Synchrotron Radiation + processes to G4PhysicsModelCatalog::Initialize(). + Addressing problem report #2651. + + Updated date and version for 11.3.2. + + o Parameterisations + ----------------- + + channeling: + o In G4VChannelingFastSimCrystalData::IonizationLosses(), fixed bug in the + electron ionisation loss correction formula. + + o Physics Lists + ------------- + + lists: + o In FTFP_BERT_ATL, use the default FTF tuning parameters, as for all other + reference physics lists. In order to enable the special FTF tune for ATLAS, + one can either use the following C++ call in user code: + G4FTFTunings::Instance()->SetTuneApplicabilityState( 4, 1 ); + or the UI command (before run-initialisation): + /process/had/models/ftf/selectTuneByIndex 4 + + o Processes - Decay + ----------------- + + Removed approximation in calculation of G4Decay path length. + Addressing problem report #2645. + + o Processes - Electromagnetic + --------------------------- + + utils: + o G4VAtomDeexcitation: fix to allow PIXE simulation. + Addressing problem report #2650. + o Fix in G4EmTableType header to make it self-consistent. + Reported in [GitHub PR#85](https://github.com/Geant4/geant4/pull/85). + + o Processes - Hadronic + -------------------- + + models/cascade: + o In G4CascadeFinalStateAlgorithm and G4NucleiModel, introduced the + possibility to enable behaviour as either in Geant4 version 11.3 + (default) or as in 11.2, according to the value of Boolean flags + through the call in G4HadronicParameters: + SetBertiniAs11_2( true ). + Also possible to configure the properties of nuclei of G4NucleiModel + through the call in G4HadronicParameters: + SetBertiniNucleiModelAs11_2( true ) + and the angular distribution of >= 4-body final-state emissions in + G4CascadeFinalStateAlgorithm, through the call in G4HadronicParameters: + SetBertiniAngularEmissionsAs11_2( true ). + Note that the default changes introduced in release 11.3 are to be + considered as a real improvement of the Bertini model, although some + degradation of thin-target data, in particular for the pion production + in HARP data, is observed. A retuning of the parameters of the model + will be likely necessary in the near future, based on these changes. + + util + o Added accessor and modifier in G4HadronicDeveloperParameters for + selecting the Bertini model mode as Geant4 version 11.3 (default) + or 11.2. + + o Visualization + ------------- + + OpenGL: + o Fixed compilation errors on Windows in G4OpenGLWin32Viewer, triggered + when enabling GL WIN32 support, as reported in problem report #2599. + + RayTracer: + o Fix in G4RayTracerXViewer for use of MT. + + o Examples + -------- + + extended/geometry/vecGeomNavigation + o Use G4cout for VecGeom logger output. + + extended/hadronic/FlukaCern + o 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. + + ---------------------------------------------------------------------------- + + Technical Notes + --------------- + + o This patch should be applied on top of release 11.3 series. + o Technical notes distributed for release 11.3 are also applicable and + valid for this patch. + +The code and rebuilt binary libraries for release 11.3.2 are available +through the Geant4 "Download" Web page. + +Please refer to the Geant4 User Documentation for further information about +using Geant4. diff --git a/examples/advanced/CaTS/CaTS.out b/examples/advanced/CaTS/CaTS.out index 3e516f0999336b9e1ec0aead4594765448d70889..9fff0398739c8aa108860aa60e679a167c6ab98f 100644 --- a/examples/advanced/CaTS/CaTS.out +++ b/examples/advanced/CaTS/CaTS.out @@ -38,7 +38,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 @@ -781,4 +781,4 @@ Correlated gamma emission flag 0 Max 2J for sampling of angular correlations 10 ======================================================================= writing Event: 0 -TimeTotal> 13.981 2.200 +TimeTotal> 2.324 1.420 diff --git a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out index 11c33da680758b28f049c1a8404a9d1cdf7d8ae3..af2d8039aafa7b4e2838eeb7702bfa66fdc2ce8a 100644 --- a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out +++ b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out @@ -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 @@ -1487,7 +1487,7 @@ Event 13268 Run terminated. Run Summary Number of events processed : 13269, effectively: 10 - User=4.980000s Real=5.031478s Sys=0.000000s + User=2.900000s Real=2.906851s Sys=0.000000s --- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)): 1 [ 1.0000, 0.8000) | 0.00100604 ( 1 / 994 ) | 0.00100604 ( 1 / 994 / 1229 ) diff --git a/examples/advanced/HGCal_testbeam/testbeam_electron.out b/examples/advanced/HGCal_testbeam/testbeam_electron.out index d29fb48a41622ba049423357961d9531a96da88f..06208bbd53e5a482a2bba6964f09fbb314afd403 100644 --- a/examples/advanced/HGCal_testbeam/testbeam_electron.out +++ b/examples/advanced/HGCal_testbeam/testbeam_electron.out @@ -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 diff --git a/examples/advanced/ICRP110_HumanPhantoms/ICRP110Phantoms.out b/examples/advanced/ICRP110_HumanPhantoms/ICRP110Phantoms.out index 9ce0399b18d04e75d03f24e4ae90a9f7c637fd7a..27bcbf677ec6456d158392b007f5aefad1a8efe2 100644 --- a/examples/advanced/ICRP110_HumanPhantoms/ICRP110Phantoms.out +++ b/examples/advanced/ICRP110_HumanPhantoms/ICRP110Phantoms.out @@ -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 diff --git a/examples/advanced/ICRP145_HumanPhantoms/ICRP145Phantoms.out b/examples/advanced/ICRP145_HumanPhantoms/ICRP145Phantoms.out index 62d0d2b1f51457cc3f80f39319e589ee32316fcf..21a103dcab11f573b3b021828fcd3dece7add5e5 100644 --- a/examples/advanced/ICRP145_HumanPhantoms/ICRP145Phantoms.out +++ b/examples/advanced/ICRP145_HumanPhantoms/ICRP145Phantoms.out @@ -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 diff --git a/examples/advanced/STCyclotron/STCyclotron.out b/examples/advanced/STCyclotron/STCyclotron.out index 4ec7ebaa08d82863e5882b691c0519f4dd683440..0f658137c91e9e40bbb08beb95ab2defbb9125be 100644 --- a/examples/advanced/STCyclotron/STCyclotron.out +++ b/examples/advanced/STCyclotron/STCyclotron.out @@ -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 @@ -159,14 +159,14 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10 - User=17.940000s Real=18.456672s Sys=0.010000s + User=10.450000s Real=10.453247s Sys=0.000000s ... write file : SolidTargetCyclotron.root - done ... close file : SolidTargetCyclotron.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xf14c50 -UserPhysicsList deleted 0xf1c1b0 -UserActionInitialization deleted 0x10a2b20 +UserDetectorConstruction deleted 0x9b7020 +UserPhysicsList deleted 0x9be580 +UserActionInitialization deleted 0xb44ef0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/air_shower/air_shower.out b/examples/advanced/air_shower/air_shower.out index 21607637238778d6f0ce9da06648abd860b61ef6..29213124a849bf220e50f3875b54b1986e22e64f 100644 --- a/examples/advanced/air_shower/air_shower.out +++ b/examples/advanced/air_shower/air_shower.out @@ -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 @@ -778,8 +778,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics ooo Run 0 starts (global). --------- Ranlux engine status --------- - Initial seed = 1742561474 - float_seed_table[] = 0.57739 0.703981 0.268808 0.267803 0.927248 0.120821 0.595837 0.0118513 0.322893 0.412143 0.647073 0.0984073 0.842813 0.474125 0.654698 0.176873 0.422134 0.350676 0.111626 0.678596 0.356478 0.258324 0.777584 0.370067 + Initial seed = 1745424550 + float_seed_table[] = 0.0719131 0.622099 0.693342 0.583129 0.453345 0.335303 0.892736 0.113858 0.0750468 0.936936 0.64502 0.915509 0.25001 0.0199363 0.842928 0.117684 0.0681565 0.30302 0.218614 0.764352 0.943045 0.0840406 0.921154 0.242968 i_lag = 23, j_lag = 9 carry = 0, count24 = 0 luxury = 3 nskip = 199 @@ -790,15 +790,15 @@ mu- Mono Plane Run terminated. Run Summary Number of events processed : 100 - User=0.950000s Real=0.948389s Sys=0.000000s + User=0.610000s Real=0.611277s Sys=0.000000s ### Run 0 (global) ended. Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x19f0b80 -UserPhysicsList deleted 0x1a31d28 -UserActionInitialization deleted 0x1bc6b90 +UserDetectorConstruction deleted 0x15c5f50 +UserPhysicsList deleted 0x16070f8 +UserActionInitialization deleted 0x179bf60 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. @@ -808,23 +808,23 @@ G4SDManager deleted. EventManager deleted. Units table cleared. TransportationManager deleted. -Total navigation history collections cleaned: 9 +Total navigation history collections cleaned: 10 G4RNGHelper object is deleted. ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.0115 MB +Pool ID '20G4NavigationLevelRep', size : 0.0135 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.024 MB +Pool ID '17G4DynamicParticle', size : 0.0231 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB Pool ID '16G4HitsCollection', size : 0.000961 MB -Pool ID '7G4Track', size : 0.0471 MB +Pool ID '7G4Track', size : 0.0461 MB Pool ID '18G4TouchableHistory', size : 0.000961 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB -Pool ID '15UltraOpticalHit', size : 0.000961 MB +Pool ID '15UltraOpticalHit', size : 0.00385 MB Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.091 MB +Dynamic pools deleted: 12 / Total memory freed: 0.094 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/amsEcal/run1.out b/examples/advanced/amsEcal/run1.out index 9c277d702b0f76f27e9b949d067362778d4f14c4..2dbef4a89edda57c2b29af910c4fcbbc88b94dd6 100644 --- a/examples/advanced/amsEcal/run1.out +++ b/examples/advanced/amsEcal/run1.out @@ -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 @@ -199,7 +199,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=2.840000s Real=2.855239s Sys=0.000000s + User=1.710000s Real=1.718713s Sys=0.000000s ------------------------------------------------------------- ---> The calorimeter is 9 Modules @@ -326,9 +326,9 @@ N=17 V[N]={2125414173700100552, 2142585805957254368, 76522162894449253, 17841580 --------------------------------------- G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x1edf200 -UserPhysicsList deleted 0x1f12df0 -UserActionInitialization deleted 0x2099880 +UserDetectorConstruction deleted 0x108b5d0 +UserPhysicsList deleted 0x10bf1c0 +UserActionInitialization deleted 0x1245c50 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/brachytherapy/brachytherapy.out b/examples/advanced/brachytherapy/brachytherapy.out index 97767f6c24276525eedaae20028f690e50069fa4..8d5237eea6b38b1bb62b82ef0560239815f11054 100644 --- a/examples/advanced/brachytherapy/brachytherapy.out +++ b/examples/advanced/brachytherapy/brachytherapy.out @@ -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 diff --git a/examples/advanced/composite_calorimeter/composite_calorimeter.out b/examples/advanced/composite_calorimeter/composite_calorimeter.out index bd79102c14dc4fb25f4590db910ecdd7f6684aca..41decc9baf58362137c6c9784ab48611fa9874a0 100644 --- a/examples/advanced/composite_calorimeter/composite_calorimeter.out +++ b/examples/advanced/composite_calorimeter/composite_calorimeter.out @@ -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 @@ -957,15 +957,15 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 20 - User=13.010000s Real=13.223118s Sys=0.050000s + User=7.050000s Real=7.069787s Sys=0.000000s ### Run 0 end. ... write file : ccal.root - done ... close file : ccal.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x13d9120 -UserPhysicsList deleted 0x13da2e0 -UserActionInitialization deleted 0x15959e0 +UserDetectorConstruction deleted 0xba44f0 +UserPhysicsList deleted 0xba56b0 +UserActionInitialization deleted 0xd60db0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. @@ -976,24 +976,24 @@ G4SDManager deleted. EventManager deleted. Units table cleared. TransportationManager deleted. -Total navigation history collections cleaned: 49 +Total navigation history collections cleaned: 56 G4RNGHelper object is deleted. ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.0731 MB +Pool ID '20G4NavigationLevelRep', size : 0.0798 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.0952 MB +Pool ID '17G4DynamicParticle', size : 0.0461 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB Pool ID '16G4HitsCollection', size : 0.000961 MB -Pool ID '7G4Track', size : 0.189 MB -Pool ID '18G4TouchableHistory', size : 0.00577 MB +Pool ID '7G4Track', size : 0.0913 MB +Pool ID '18G4TouchableHistory', size : 0.00673 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB -Pool ID '17G4ReactionProduct', size : 0.0125 MB -Pool ID '10G4Fragment', size : 0.00577 MB +Pool ID '17G4ReactionProduct', size : 0.0135 MB +Pool ID '10G4Fragment', size : 0.00481 MB Number of memory pools allocated: 13 of which, static: 0 -Dynamic pools deleted: 13 / Total memory freed: 0.39 MB +Dynamic pools deleted: 13 / Total memory freed: 0.25 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/dna/cellularPhantom/cellularPhantom.out b/examples/advanced/dna/cellularPhantom/cellularPhantom.out index 38a7c905deee475f47e4773d4e23f6bfbdd55579..1512df47a2b1f540437a2eda400a5a2f29e57945 100644 --- a/examples/advanced/dna/cellularPhantom/cellularPhantom.out +++ b/examples/advanced/dna/cellularPhantom/cellularPhantom.out @@ -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 @@ -745,7 +745,7 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 10000 - User=23.000000s Real=23.160859s Sys=0.000000s + User=13.710000s Real=13.788261s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/advanced/dna/dsbandrepair/dsbandrepair.out b/examples/advanced/dna/dsbandrepair/dsbandrepair.out index ad9c5fd1cea9ae188ba19491432e35b2b15419d2..d7eea8c21ae23963d135aaf958172bea90fd9c11 100644 --- a/examples/advanced/dna/dsbandrepair/dsbandrepair.out +++ b/examples/advanced/dna/dsbandrepair/dsbandrepair.out @@ -1,4 +1,4 @@ -Initial Seed for random engine: 1742561548 +Initial Seed for random engine: 1745424599 Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type... ############################################ @@ -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 diff --git a/examples/advanced/dna/moleculardna/moleculardna.out b/examples/advanced/dna/moleculardna/moleculardna.out index 6831f7be313bd0a4c451afb92854a003b60d325e..28089e696e16b59ca7e756deb5c61f69d8b3436d 100644 --- a/examples/advanced/dna/moleculardna/moleculardna.out +++ b/examples/advanced/dna/moleculardna/moleculardna.out @@ -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 @@ -630,21 +630,21 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 84655 kByte - Total CPU time elapsed for geometry optimisation: 39.94 seconds + Total CPU time elapsed for geometry optimisation: 24.66 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 50.08 20.00 0.11 42138k CellLogical - 49.72 19.86 0.10 42138k DNAPhysLV - 0.08 0.03 0.00 380k prism + 50.65 12.49 0.06 42138k CellLogical + 49.19 12.13 0.07 42138k DNAPhysLV + 0.04 0.01 0.00 380k prism Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 49.78 42137k 311671 314256 703064 20.00 CellLogical - 49.78 42137k 311671 314256 703064 19.86 DNAPhysLV - 0.45 379k 1273 3780 14482 0.03 prism + 49.78 42137k 311671 314256 703064 12.49 CellLogical + 49.78 42137k 311671 314256 703064 12.13 DNAPhysLV + 0.45 379k 1273 3780 14482 0.01 prism -------------------------------------------------------------------------------- ### Run 0 starts. @@ -662,14 +662,14 @@ DNAIndependentReactionTimeModel will be used ========================== Run terminated. Run Summary Number of events processed : 10 - User=1.340000s Real=1.353612s Sys=0.000000s + User=0.730000s Real=0.729839s Sys=0.010000s ... write file : molecular-dna.root - done ... close file : molecular-dna.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x17c1550 -UserPhysicsList deleted 0x18054a0 -UserActionInitialization deleted 0x183cb60 +UserDetectorConstruction deleted 0xf54920 +UserPhysicsList deleted 0xf98870 +UserActionInitialization deleted 0xfcff30 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/doiPET/doiPET.out b/examples/advanced/doiPET/doiPET.out index 1868512463536b26e3d54c3bebfd43b4f2802765..319303ec9832e770984a5191ff6cb3ca4c34e411 100644 --- a/examples/advanced/doiPET/doiPET.out +++ b/examples/advanced/doiPET/doiPET.out @@ -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 @@ -720,19 +720,19 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 475 kByte - Total CPU time elapsed for geometry optimisation: 0.01 seconds + Total CPU time elapsed for geometry optimisation: 0 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 100.00 0.01 0.00 69k world_logicalV + 0.00 0.00 0.00 69k world_logicalV 0.00 0.00 0.00 406k airBox_logicalV Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- 85.51 406k 931 5788 8898 0.00 airBox_logicalV - 14.49 68k 182 683 3080 0.01 world_logicalV + 14.49 68k 182 683 3080 0.00 world_logicalV -------------------------------------------------------------------------------- ### Run 0 starts. @@ -776,14 +776,14 @@ N=17 V[N]={87900885656017340, 2136126672992718976, 110623987125446578, 176001763 Run terminated. Run Summary Number of events processed : 1000000 - User=62.360000s Real=64.047427s Sys=0.980000s + User=35.620000s Real=41.058177s Sys=0.790000s ### End of Run (1000000 events) G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x9b56a0 -UserPhysicsList deleted 0x9f15a8 -UserActionInitialization deleted 0xb7f930 +UserDetectorConstruction deleted 0x203aa70 +UserPhysicsList deleted 0x2076978 +UserActionInitialization deleted 0x2204d00 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/eFLASH_radiotherapy/eFLASH_radiotherapy.out b/examples/advanced/eFLASH_radiotherapy/eFLASH_radiotherapy.out index 9a68f50d27789c320e4e0aa098ec5149029455d0..4c9942df9f7323dd4c119d7167780ae81cf3d49d 100644 --- a/examples/advanced/eFLASH_radiotherapy/eFLASH_radiotherapy.out +++ b/examples/advanced/eFLASH_radiotherapy/eFLASH_radiotherapy.out @@ -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 @@ -791,7 +791,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 200000 - User=443.100000s Real=451.280795s Sys=1.380000s + User=260.020000s Real=264.325032s Sys=1.280000s --------------------End of Global Run----------------------- The run was 200000 events /score/dumpQuantityToFile boxMesh_1 dose dose_longitudinal.out diff --git a/examples/advanced/eRosita/eRosita.out b/examples/advanced/eRosita/eRosita.out index bfeaf68695038555048a97cbe6734e5fe882870c..d3f13cf95e2a8abb53a7c4e8515aed1ad9a97696 100644 --- a/examples/advanced/eRosita/eRosita.out +++ b/examples/advanced/eRosita/eRosita.out @@ -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 @@ -530,14 +530,14 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000 - User=2.920000s Real=2.937346s Sys=0.000000s + User=1.820000s Real=1.822001s Sys=0.000000s --- Run 0 (master) end. Total number of events: 1000. - User=2.920000s Real=2.937592s Sys=0.000000s + User=1.820000s Real=1.822188s Sys=0.000000s G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x21ebaa0 -UserPhysicsList deleted 0x244ac50 -UserActionInitialization deleted 0x24553c0 +UserDetectorConstruction deleted 0x11caa70 +UserPhysicsList deleted 0x142a020 +UserActionInitialization deleted 0x1434790 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/exp_microdosimetry/exp_microdosimetry.out b/examples/advanced/exp_microdosimetry/exp_microdosimetry.out index afabd7dad744f2820f284e6a2f215f1009610a41..e2cbbc5bfab838c4a2a20dbc6b1ad09a040bfa64 100644 --- a/examples/advanced/exp_microdosimetry/exp_microdosimetry.out +++ b/examples/advanced/exp_microdosimetry/exp_microdosimetry.out @@ -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 diff --git a/examples/advanced/fastAerosol/fastAerosol.out b/examples/advanced/fastAerosol/fastAerosol.out index a8167d8ec7ddf5d0e76858cc7711b0f97ce7c9b1..ca8d4747f73e7d507653c02604b9f2167ca92946 100644 --- a/examples/advanced/fastAerosol/fastAerosol.out +++ b/examples/advanced/fastAerosol/fastAerosol.out @@ -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 @@ -875,12 +875,12 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 2 kByte - Total CPU time elapsed for geometry optimisation: 0.01 seconds + Total CPU time elapsed for geometry optimisation: 0 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 100.00 0.01 0.00 0k World + 0.00 0.00 0.00 0k World 0.00 0.00 0.00 1k detectorMesh_0 0.00 0.00 0.00 1k detectorMesh_1 @@ -889,7 +889,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics ------- -------- ------ ------ -------- ---------- ---------- 46.13 1k 1 20 20 0.00 detectorMesh_0 46.13 1k 1 20 20 0.00 detectorMesh_1 - 7.74 0k 1 2 4 0.01 World + 7.74 0k 1 2 4 0.00 World -------------------------------------------------------------------------------- ### Run 0 starts. @@ -13756,7 +13756,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=1.100000s Real=1.136850s Sys=0.030000s + User=0.830000s Real=0.852458s Sys=0.020000s --------------------End of Global Run----------------------- The run consists of 10 proton of 50 MeV @@ -13770,9 +13770,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xedaed0 -UserPhysicsList deleted 0xed7220 -UserActionInitialization deleted 0x1098ba0 +UserDetectorConstruction deleted 0x11a82b0 +UserPhysicsList deleted 0x11a4600 +UserActionInitialization deleted 0x1365f80 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/gammaknife/gammaknife.out b/examples/advanced/gammaknife/gammaknife.out index e16efe4fb02ebb97ed3b91ffcdf003d9aec4db15..fd0b621b24ec483fa6c4ba8c9c88fad7c3438d59 100644 --- a/examples/advanced/gammaknife/gammaknife.out +++ b/examples/advanced/gammaknife/gammaknife.out @@ -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 @@ -623,8 +623,8 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002239s Sys=0.000000s - User TOT = 0 Real TOT = 0.00244084 + User=0.000000s Real=0.001639s Sys=0.000000s + User TOT = 0 Real TOT = 0.00178135 Summary of Run 0 : /run/geometryModified @@ -693,8 +693,8 @@ Run 1 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001469s Sys=0.000000s - User TOT = 0 Real TOT = 0.00400722 + User=0.000000s Real=0.001180s Sys=0.010000s + User TOT = 0 Real TOT = 0.00303679 Summary of Run 1 : /run/geometryModified @@ -763,8 +763,8 @@ Run 2 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001236s Sys=0.000000s - User TOT = 0 Real TOT = 0.00533293 + User=0.000000s Real=0.001408s Sys=0.000000s + User TOT = 0 Real TOT = 0.00452491 Summary of Run 2 : /run/geometryModified @@ -833,8 +833,8 @@ Run 3 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001529s Sys=0.000000s - User TOT = 0 Real TOT = 0.00696296 + User=0.000000s Real=0.000905s Sys=0.000000s + User TOT = 0 Real TOT = 0.00549907 Summary of Run 3 : /run/geometryModified @@ -903,8 +903,8 @@ Run 4 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001348s Sys=0.000000s - User TOT = 0 Real TOT = 0.00839383 + User=0.000000s Real=0.000917s Sys=0.000000s + User TOT = 0 Real TOT = 0.00648679 Summary of Run 4 : /run/geometryModified @@ -973,8 +973,8 @@ Run 5 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001213s Sys=0.000000s - User TOT = 0 Real TOT = 0.00968917 + User=0.000000s Real=0.000947s Sys=0.000000s + User TOT = 0 Real TOT = 0.00749868 Summary of Run 5 : /run/geometryModified @@ -1043,8 +1043,8 @@ Run 6 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001201s Sys=0.000000s - User TOT = 0 Real TOT = 0.0109846 + User=0.000000s Real=0.000923s Sys=0.000000s + User TOT = 0 Real TOT = 0.00849387 Summary of Run 6 : /run/geometryModified @@ -1113,8 +1113,8 @@ Run 7 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001686s Sys=0.000000s - User TOT = 0 Real TOT = 0.0127626 + User=0.000000s Real=0.001437s Sys=0.000000s + User TOT = 0 Real TOT = 0.0100149 Summary of Run 7 : /run/geometryModified @@ -1183,8 +1183,8 @@ Run 8 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001168s Sys=0.010000s - User TOT = 0 Real TOT = 0.0140172 + User=0.000000s Real=0.000997s Sys=0.000000s + User TOT = 0 Real TOT = 0.0110934 Summary of Run 8 : /run/geometryModified @@ -1253,8 +1253,8 @@ Run 9 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001455s Sys=0.000000s - User TOT = 0 Real TOT = 0.0155808 + User=0.000000s Real=0.000850s Sys=0.000000s + User TOT = 0 Real TOT = 0.0120399 Summary of Run 9 : /run/geometryModified @@ -1323,8 +1323,8 @@ Run 10 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001182s Sys=0.000000s - User TOT = 0 Real TOT = 0.016849 + User=0.000000s Real=0.001022s Sys=0.000000s + User TOT = 0 Real TOT = 0.0131463 Summary of Run 10 : /run/geometryModified @@ -1393,8 +1393,8 @@ Run 11 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001158s Sys=0.000000s - User TOT = 0 Real TOT = 0.0180866 + User=0.000000s Real=0.001256s Sys=0.000000s + User TOT = 0 Real TOT = 0.0144722 Summary of Run 11 : /run/geometryModified @@ -1463,8 +1463,8 @@ Run 12 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001194s Sys=0.000000s - User TOT = 0 Real TOT = 0.0193666 + User=0.000000s Real=0.000930s Sys=0.010000s + User TOT = 0 Real TOT = 0.0154675 Summary of Run 12 : /run/geometryModified @@ -1533,8 +1533,8 @@ Run 13 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001323s Sys=0.000000s - User TOT = 0 Real TOT = 0.0207732 + User=0.000000s Real=0.000923s Sys=0.000000s + User TOT = 0 Real TOT = 0.0164648 Summary of Run 13 : /run/geometryModified @@ -1603,8 +1603,8 @@ Run 14 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001637s Sys=0.000000s - User TOT = 0 Real TOT = 0.0225052 + User=0.000000s Real=0.000924s Sys=0.000000s + User TOT = 0 Real TOT = 0.017462 Summary of Run 14 : /run/geometryModified @@ -1673,8 +1673,8 @@ Run 15 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001204s Sys=0.000000s - User TOT = 0 Real TOT = 0.0237942 + User=0.000000s Real=0.000795s Sys=0.000000s + User TOT = 0 Real TOT = 0.018323 Summary of Run 15 : /run/geometryModified @@ -1743,8 +1743,8 @@ Run 16 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001541s Sys=0.000000s - User TOT = 0 Real TOT = 0.0254192 + User=0.000000s Real=0.001164s Sys=0.000000s + User TOT = 0 Real TOT = 0.0195565 Summary of Run 16 : /run/geometryModified @@ -1813,8 +1813,8 @@ Run 17 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001695s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0272144 + User=0.000000s Real=0.001187s Sys=0.000000s + User TOT = 0 Real TOT = 0.0208311 Summary of Run 17 : /run/geometryModified @@ -1883,8 +1883,8 @@ Run 18 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001247s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0285551 + User=0.000000s Real=0.001002s Sys=0.000000s + User TOT = 0 Real TOT = 0.0219067 Summary of Run 18 : /run/geometryModified @@ -1953,8 +1953,8 @@ Run 19 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001222s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0298688 + User=0.010000s Real=0.001097s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0230812 Summary of Run 19 : /run/geometryModified @@ -2023,8 +2023,8 @@ Run 20 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001151s Sys=0.010000s - User TOT = 0.01 Real TOT = 0.0311208 + User=0.000000s Real=0.001061s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0242119 Summary of Run 20 : /run/geometryModified @@ -2093,8 +2093,8 @@ Run 21 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001247s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0324506 + User=0.000000s Real=0.001053s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0253368 Summary of Run 21 : /run/geometryModified @@ -2163,8 +2163,8 @@ Run 22 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001124s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.033662 + User=0.000000s Real=0.000971s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0263804 Summary of Run 22 : /run/geometryModified @@ -2233,8 +2233,8 @@ Run 23 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001353s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0351023 + User=0.000000s Real=0.001045s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0275054 Summary of Run 23 : /run/geometryModified @@ -2303,8 +2303,8 @@ Run 24 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001344s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.036531 + User=0.000000s Real=0.001173s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0287638 Summary of Run 24 : /run/geometryModified @@ -2373,8 +2373,8 @@ Run 25 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001129s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0377463 + User=0.000000s Real=0.001090s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0299265 Summary of Run 25 : /run/geometryModified @@ -2443,8 +2443,8 @@ Run 26 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001165s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0390106 + User=0.000000s Real=0.001406s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0314082 Summary of Run 26 : /run/geometryModified @@ -2513,8 +2513,8 @@ Run 27 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.000977s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0400739 + User=0.000000s Real=0.001079s Sys=0.010000s + User TOT = 0.01 Real TOT = 0.0325873 Summary of Run 27 : /run/geometryModified @@ -2583,8 +2583,8 @@ Run 28 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001541s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0417157 + User=0.000000s Real=0.001195s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0338751 Summary of Run 28 : /run/geometryModified @@ -2653,8 +2653,8 @@ Run 29 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001414s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0432116 + User=0.010000s Real=0.001132s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0350955 Summary of Run 29 : /run/geometryModified @@ -2723,8 +2723,8 @@ Run 30 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001166s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0444598 + User=0.000000s Real=0.001076s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0362388 Summary of Run 30 : /run/geometryModified @@ -2793,8 +2793,8 @@ Run 31 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001258s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0458021 + User=0.000000s Real=0.001013s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0373263 Summary of Run 31 : /run/geometryModified @@ -2863,8 +2863,8 @@ Run 32 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001233s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0471205 + User=0.000000s Real=0.001280s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0386856 Summary of Run 32 : /run/geometryModified @@ -2933,8 +2933,8 @@ Run 33 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001152s Sys=0.010000s - User TOT = 0.01 Real TOT = 0.0483657 + User=0.000000s Real=0.001404s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0401792 Summary of Run 33 : /run/geometryModified @@ -3003,8 +3003,8 @@ Run 34 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001222s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0496812 + User=0.000000s Real=0.001055s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0413201 Summary of Run 34 : /run/geometryModified @@ -3073,8 +3073,8 @@ Run 35 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001385s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0511514 + User=0.000000s Real=0.001174s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0425834 Summary of Run 35 : /run/geometryModified @@ -3143,8 +3143,8 @@ Run 36 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001130s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0523646 + User=0.000000s Real=0.001346s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0440152 Summary of Run 36 : /run/geometryModified @@ -3213,8 +3213,8 @@ Run 37 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001436s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0538805 + User=0.000000s Real=0.000966s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0450559 Summary of Run 37 : /run/geometryModified @@ -3283,8 +3283,8 @@ Run 38 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001217s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0551825 + User=0.000000s Real=0.001174s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0463127 Summary of Run 38 : /run/geometryModified @@ -3353,8 +3353,8 @@ Run 39 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001084s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0563709 + User=0.000000s Real=0.002058s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0484518 Summary of Run 39 : /run/geometryModified @@ -3423,8 +3423,8 @@ Run 40 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001579s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0580434 + User=0.010000s Real=0.001004s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0495346 Summary of Run 40 : /run/geometryModified @@ -3493,8 +3493,8 @@ Run 41 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001313s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0594428 + User=0.000000s Real=0.001404s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0510168 Summary of Run 41 : /run/geometryModified @@ -3563,8 +3563,8 @@ Run 42 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001219s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0607598 + User=0.000000s Real=0.001049s Sys=0.010000s + User TOT = 0.03 Real TOT = 0.0521514 Summary of Run 42 : /run/geometryModified @@ -3633,8 +3633,8 @@ Run 43 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001677s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.062534 + User=0.000000s Real=0.000931s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0531483 Summary of Run 43 : /run/geometryModified @@ -3703,8 +3703,8 @@ Run 44 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001365s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0639839 + User=0.000000s Real=0.001150s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0544012 Summary of Run 44 : /run/geometryModified @@ -3773,8 +3773,8 @@ Run 45 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001283s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0653513 + User=0.000000s Real=0.001388s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0558747 Summary of Run 45 : /run/geometryModified @@ -3843,8 +3843,8 @@ Run 46 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001317s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0667509 + User=0.000000s Real=0.001486s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0574438 Summary of Run 46 : /run/geometryModified @@ -3913,8 +3913,8 @@ Run 47 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001578s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0684105 + User=0.000000s Real=0.001264s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0587879 Summary of Run 47 : /run/geometryModified @@ -3983,8 +3983,8 @@ Run 48 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001434s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0699401 + User=0.000000s Real=0.001191s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0600595 Summary of Run 48 : /run/geometryModified @@ -4053,8 +4053,8 @@ Run 49 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001345s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0713782 + User=0.000000s Real=0.001184s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0613295 Summary of Run 49 : /run/geometryModified @@ -4123,8 +4123,8 @@ Run 50 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001158s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0726359 + User=0.010000s Real=0.001103s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0625023 Summary of Run 50 : /run/geometryModified @@ -4193,8 +4193,8 @@ Run 51 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001155s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0738766 + User=0.000000s Real=0.001068s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.063649 Summary of Run 51 : /run/geometryModified @@ -4263,8 +4263,8 @@ Run 52 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001758s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0757178 + User=0.000000s Real=0.000952s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0646752 Summary of Run 52 : /run/geometryModified @@ -4333,8 +4333,8 @@ Run 53 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001145s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0769437 + User=0.000000s Real=0.001018s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0657683 Summary of Run 53 : /run/geometryModified @@ -4403,8 +4403,8 @@ Run 54 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001403s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.078431 + User=0.000000s Real=0.000949s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0667994 Summary of Run 54 : /run/geometryModified @@ -4473,8 +4473,8 @@ Run 55 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001461s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0799782 + User=0.000000s Real=0.000945s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0678107 Summary of Run 55 : /run/geometryModified @@ -4543,8 +4543,8 @@ Run 56 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001256s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0813195 + User=0.000000s Real=0.001333s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0692223 Summary of Run 56 : /run/geometryModified @@ -4613,8 +4613,8 @@ Run 57 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001248s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0826631 + User=0.000000s Real=0.001249s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0705474 Summary of Run 57 : /run/geometryModified @@ -4683,8 +4683,8 @@ Run 58 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001360s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0841142 + User=0.000000s Real=0.000865s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0714772 Summary of Run 58 : /run/geometryModified @@ -4753,8 +4753,8 @@ Run 59 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001247s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0854533 + User=0.000000s Real=0.001098s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0726397 Summary of Run 59 : /run/geometryModified @@ -4823,8 +4823,8 @@ Run 60 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001224s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0867592 + User=0.000000s Real=0.000785s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0734912 Summary of Run 60 : /run/geometryModified @@ -4893,8 +4893,8 @@ Run 61 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001308s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0881536 + User=0.000000s Real=0.000905s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0744597 Summary of Run 61 : /run/geometryModified @@ -4963,8 +4963,8 @@ Run 62 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001350s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0895873 + User=0.010000s Real=0.001167s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.075691 Summary of Run 62 : /run/geometryModified @@ -5033,8 +5033,8 @@ Run 63 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001234s Sys=0.010000s - User TOT = 0.04 Real TOT = 0.0909057 + User=0.000000s Real=0.001053s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0768227 Summary of Run 63 : /run/geometryModified @@ -5103,8 +5103,8 @@ Run 64 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001167s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0921544 + User=0.000000s Real=0.001040s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0779404 Summary of Run 64 : /run/geometryModified @@ -5173,8 +5173,8 @@ Run 65 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001204s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0934484 + User=0.000000s Real=0.001377s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0794027 Summary of Run 65 : /run/geometryModified @@ -5243,8 +5243,8 @@ Run 66 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001276s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0948159 + User=0.000000s Real=0.001252s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0807453 Summary of Run 66 : /run/geometryModified @@ -5313,8 +5313,8 @@ Run 67 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001530s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0964271 + User=0.000000s Real=0.001197s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0820242 Summary of Run 67 : /run/geometryModified @@ -5383,8 +5383,8 @@ Run 68 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001139s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0976516 + User=0.000000s Real=0.001448s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0835545 Summary of Run 68 : /run/geometryModified @@ -5453,8 +5453,8 @@ Run 69 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001252s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0989926 + User=0.000000s Real=0.000968s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0846026 Summary of Run 69 : /run/geometryModified @@ -5523,8 +5523,8 @@ Run 70 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001260s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.100338 + User=0.000000s Real=0.001245s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0859115 Summary of Run 70 : /run/geometryModified @@ -5593,8 +5593,8 @@ Run 71 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001291s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.101711 + User=0.000000s Real=0.000912s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0868924 Summary of Run 71 : /run/geometryModified @@ -5663,8 +5663,8 @@ Run 72 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001151s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.102951 + User=0.000000s Real=0.000957s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0879123 Summary of Run 72 : /run/geometryModified @@ -5733,8 +5733,8 @@ Run 73 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001852s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.104894 + User=0.000000s Real=0.000779s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0887584 Summary of Run 73 : /run/geometryModified @@ -5803,8 +5803,8 @@ Run 74 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001213s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.106197 + User=0.000000s Real=0.002857s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0917025 Summary of Run 74 : /run/geometryModified @@ -5873,8 +5873,8 @@ Run 75 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001121s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.107403 + User=0.000000s Real=0.021956s Sys=0.010000s + User TOT = 0.05 Real TOT = 0.11378 Summary of Run 75 : /run/geometryModified @@ -5943,8 +5943,8 @@ Run 76 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001299s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.108784 + User=0.000000s Real=0.021598s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.135498 Summary of Run 76 : /run/geometryModified @@ -6013,8 +6013,8 @@ Run 77 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001633s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.1105 + User=0.000000s Real=0.020501s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.156119 Summary of Run 77 : /run/geometryModified @@ -6083,8 +6083,8 @@ Run 78 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001225s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.111815 + User=0.000000s Real=0.021972s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.178182 Summary of Run 78 : /run/geometryModified @@ -6153,8 +6153,8 @@ Run 79 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001493s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.113398 + User=0.000000s Real=0.020623s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.198912 Summary of Run 79 : /run/geometryModified @@ -6223,8 +6223,8 @@ Run 80 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001319s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.114798 + User=0.000000s Real=0.021781s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.220808 Summary of Run 80 : /run/geometryModified @@ -6293,8 +6293,8 @@ Run 81 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001260s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.116145 + User=0.000000s Real=0.021700s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.242628 Summary of Run 81 : /run/geometryModified @@ -6363,8 +6363,8 @@ Run 82 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001248s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.117476 + User=0.000000s Real=0.020794s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.263505 Summary of Run 82 : /run/geometryModified @@ -6433,8 +6433,8 @@ Run 83 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001194s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.118758 + User=0.000000s Real=0.021827s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.28541 Summary of Run 83 : /run/geometryModified @@ -6503,8 +6503,8 @@ Run 84 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001071s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.119913 + User=0.000000s Real=0.021926s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.307418 Summary of Run 84 : /run/geometryModified @@ -6573,8 +6573,8 @@ Run 85 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001526s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.121519 + User=0.000000s Real=0.020930s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.328441 Summary of Run 85 : /run/geometryModified @@ -6643,8 +6643,8 @@ Run 86 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001323s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.122926 + User=0.000000s Real=0.021704s Sys=0.010000s + User TOT = 0.05 Real TOT = 0.350239 Summary of Run 86 : /run/geometryModified @@ -6713,8 +6713,8 @@ Run 87 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001357s Sys=0.010000s - User TOT = 0.06 Real TOT = 0.124384 + User=0.000000s Real=0.020833s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.371175 Summary of Run 87 : /run/geometryModified @@ -6783,8 +6783,8 @@ Run 88 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001433s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.125912 + User=0.000000s Real=0.021941s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.393206 Summary of Run 88 : /run/geometryModified @@ -6853,8 +6853,8 @@ Run 89 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001591s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.127596 + User=0.000000s Real=0.021757s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.415058 Summary of Run 89 : /run/geometryModified @@ -6923,8 +6923,8 @@ Run 90 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001209s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.12889 + User=0.000000s Real=0.020755s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.435897 Summary of Run 90 : /run/geometryModified @@ -6993,8 +6993,8 @@ Run 91 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001130s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.130104 + User=0.000000s Real=0.021907s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.457921 Summary of Run 91 : /run/geometryModified @@ -7063,8 +7063,8 @@ Run 92 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001032s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.131235 + User=0.000000s Real=0.021760s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.479782 Summary of Run 92 : /run/geometryModified @@ -7133,8 +7133,8 @@ Run 93 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001322s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.132648 + User=0.000000s Real=0.020871s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.50075 Summary of Run 93 : /run/geometryModified @@ -7203,8 +7203,8 @@ Run 94 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001126s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.133866 + User=0.000000s Real=0.021841s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.522682 Summary of Run 94 : /run/geometryModified @@ -7273,8 +7273,8 @@ Run 95 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002313s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.136266 + User=0.010000s Real=0.021075s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.543866 Summary of Run 95 : /run/geometryModified @@ -7343,8 +7343,8 @@ Run 96 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001568s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.137942 + User=0.000000s Real=0.021683s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.565653 Summary of Run 96 : /run/geometryModified @@ -7413,8 +7413,8 @@ Run 97 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001206s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.139232 + User=0.000000s Real=0.020873s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.586608 Summary of Run 97 : /run/geometryModified @@ -7483,8 +7483,8 @@ Run 98 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001175s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.140498 + User=0.000000s Real=0.021950s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.608651 Summary of Run 98 : /run/geometryModified @@ -7553,8 +7553,8 @@ Run 99 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001471s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.142056 + User=0.000000s Real=0.021630s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.630387 Summary of Run 99 : /run/geometryModified @@ -7623,8 +7623,8 @@ Run 100 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.017588s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.159779 + User=0.000000s Real=0.020831s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.651302 Summary of Run 100 : /run/geometryModified @@ -7693,8 +7693,8 @@ Run 101 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020454s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.180343 + User=0.000000s Real=0.021763s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.673168 Summary of Run 101 : /run/geometryModified @@ -7763,8 +7763,8 @@ Run 102 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023725s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.204186 + User=0.000000s Real=0.021857s Sys=0.010000s + User TOT = 0.08 Real TOT = 0.695113 Summary of Run 102 : /run/geometryModified @@ -7833,8 +7833,8 @@ Run 103 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020537s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.224842 + User=0.000000s Real=0.020802s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.716015 Summary of Run 103 : /run/geometryModified @@ -7903,8 +7903,8 @@ Run 104 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021547s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.246504 + User=0.000000s Real=0.021962s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.738085 Summary of Run 104 : /run/geometryModified @@ -7973,8 +7973,8 @@ Run 105 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020495s Sys=0.010000s - User TOT = 0.09 Real TOT = 0.267128 + User=0.000000s Real=0.020518s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.758718 Summary of Run 105 : /run/geometryModified @@ -8043,8 +8043,8 @@ Run 106 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.021557s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.288811 + User=0.000000s Real=0.021560s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.780388 Summary of Run 106 : /run/geometryModified @@ -8113,8 +8113,8 @@ Run 107 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021530s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.310464 + User=0.000000s Real=0.021771s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.802248 Summary of Run 107 : /run/geometryModified @@ -8183,8 +8183,8 @@ Run 108 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020343s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.330924 + User=0.010000s Real=0.020861s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.823212 Summary of Run 108 : /run/geometryModified @@ -8253,8 +8253,8 @@ Run 109 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021649s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.3527 + User=0.000000s Real=0.021885s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.845187 Summary of Run 109 : /run/geometryModified @@ -8323,8 +8323,8 @@ Run 110 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021423s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.374247 + User=0.000000s Real=0.021665s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.866949 Summary of Run 110 : /run/geometryModified @@ -8393,8 +8393,8 @@ Run 111 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020359s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.394727 + User=0.000000s Real=0.020805s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.887834 Summary of Run 111 : /run/geometryModified @@ -8463,8 +8463,8 @@ Run 112 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021499s Sys=0.010000s - User TOT = 0.1 Real TOT = 0.416339 + User=0.000000s Real=0.021861s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.909783 Summary of Run 112 : /run/geometryModified @@ -8533,8 +8533,8 @@ Run 113 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021604s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.438071 + User=0.000000s Real=0.021902s Sys=0.010000s + User TOT = 0.09 Real TOT = 0.931778 Summary of Run 113 : /run/geometryModified @@ -8603,8 +8603,8 @@ Run 114 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020343s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.458537 + User=0.000000s Real=0.020730s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.95261 Summary of Run 114 : /run/geometryModified @@ -8673,8 +8673,8 @@ Run 115 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021463s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.480118 + User=0.010000s Real=0.021823s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.974521 Summary of Run 115 : /run/geometryModified @@ -8743,8 +8743,8 @@ Run 116 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021374s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.501615 + User=0.000000s Real=0.020958s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.995568 Summary of Run 116 : /run/geometryModified @@ -8813,8 +8813,8 @@ Run 117 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020496s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.522226 + User=0.000000s Real=0.021826s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.01747 Summary of Run 117 : /run/geometryModified @@ -8883,8 +8883,8 @@ Run 118 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023548s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.545904 + User=0.000000s Real=0.023014s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.04057 Summary of Run 118 : /run/geometryModified @@ -8953,8 +8953,8 @@ Run 119 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020532s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.566562 + User=0.000000s Real=0.025774s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.06643 Summary of Run 119 : /run/geometryModified @@ -9023,8 +9023,8 @@ Run 120 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021716s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.588391 + User=0.000000s Real=0.015637s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.08218 Summary of Run 120 : /run/geometryModified @@ -9093,8 +9093,8 @@ Run 121 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.021521s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.610024 + User=0.000000s Real=0.022000s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.10427 Summary of Run 121 : /run/geometryModified @@ -9163,8 +9163,8 @@ Run 122 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020473s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.63061 + User=0.000000s Real=0.020916s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.12528 Summary of Run 122 : /run/geometryModified @@ -9233,8 +9233,8 @@ Run 123 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021508s Sys=0.010000s - User TOT = 0.11 Real TOT = 0.652247 + User=0.000000s Real=0.021972s Sys=0.000000s + User TOT = 0.1 Real TOT = 1.14735 Summary of Run 123 : /run/geometryModified @@ -9303,8 +9303,8 @@ Run 124 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021536s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.673898 + User=0.010000s Real=0.020875s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.16832 Summary of Run 124 : /run/geometryModified @@ -9373,8 +9373,8 @@ Run 125 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020639s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.694654 + User=0.000000s Real=0.021831s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.19025 Summary of Run 125 : /run/geometryModified @@ -9443,8 +9443,8 @@ Run 126 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021376s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.716144 + User=0.000000s Real=0.020950s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.21129 Summary of Run 126 : /run/geometryModified @@ -9513,8 +9513,8 @@ Run 127 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.020533s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.736807 + User=0.000000s Real=0.021944s Sys=0.010000s + User TOT = 0.11 Real TOT = 1.23334 Summary of Run 127 : /run/geometryModified @@ -9583,8 +9583,8 @@ Run 128 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021516s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.758458 + User=0.000000s Real=0.020784s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.25422 Summary of Run 128 : /run/geometryModified @@ -9653,8 +9653,8 @@ Run 129 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021598s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.780167 + User=0.000000s Real=0.021784s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.27609 Summary of Run 129 : /run/geometryModified @@ -9723,8 +9723,8 @@ Run 130 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020568s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.800842 + User=0.000000s Real=0.021804s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.29798 Summary of Run 130 : /run/geometryModified @@ -9793,8 +9793,8 @@ Run 131 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021571s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.822532 + User=0.000000s Real=0.020830s Sys=0.000000s + User TOT = 0.11 Real TOT = 1.31889 Summary of Run 131 : /run/geometryModified @@ -9863,8 +9863,8 @@ Run 132 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021870s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.844519 + User=0.010000s Real=0.021911s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.34089 Summary of Run 132 : /run/geometryModified @@ -9933,8 +9933,8 @@ Run 133 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020348s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.864991 + User=0.000000s Real=0.021902s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.36287 Summary of Run 133 : /run/geometryModified @@ -10003,8 +10003,8 @@ Run 134 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021566s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.886675 + User=0.000000s Real=0.020861s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.38382 Summary of Run 134 : /run/geometryModified @@ -10073,8 +10073,8 @@ Run 135 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020388s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.907182 + User=0.000000s Real=0.026449s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.41035 Summary of Run 135 : /run/geometryModified @@ -10143,8 +10143,8 @@ Run 136 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023488s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.930782 + User=0.000000s Real=0.017051s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.42748 Summary of Run 136 : /run/geometryModified @@ -10213,8 +10213,8 @@ Run 137 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021630s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.952527 + User=0.000000s Real=0.020888s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.44846 Summary of Run 137 : /run/geometryModified @@ -10283,8 +10283,8 @@ Run 138 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020435s Sys=0.010000s - User TOT = 0.12 Real TOT = 0.973082 + User=0.000000s Real=0.021874s Sys=0.010000s + User TOT = 0.12 Real TOT = 1.47043 Summary of Run 138 : /run/geometryModified @@ -10353,8 +10353,8 @@ Run 139 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021481s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.99469 + User=0.000000s Real=0.021950s Sys=0.000000s + User TOT = 0.12 Real TOT = 1.49246 Summary of Run 139 : /run/geometryModified @@ -10423,8 +10423,8 @@ Run 140 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021486s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.0163 + User=0.010000s Real=0.020699s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.51326 Summary of Run 140 : /run/geometryModified @@ -10493,8 +10493,8 @@ Run 141 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020509s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.03692 + User=0.000000s Real=0.021990s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.53535 Summary of Run 141 : /run/geometryModified @@ -10563,8 +10563,8 @@ Run 142 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021514s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.05857 + User=0.000000s Real=0.020881s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.55631 Summary of Run 142 : /run/geometryModified @@ -10633,8 +10633,8 @@ Run 143 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021575s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.08027 + User=0.000000s Real=0.022009s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.57841 Summary of Run 143 : /run/geometryModified @@ -10703,8 +10703,8 @@ Run 144 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020416s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.10081 + User=0.000000s Real=0.021324s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.59981 Summary of Run 144 : /run/geometryModified @@ -10773,8 +10773,8 @@ Run 145 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023482s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.12441 + User=0.000000s Real=0.021445s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.62134 Summary of Run 145 : /run/geometryModified @@ -10843,8 +10843,8 @@ Run 146 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020618s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.14514 + User=0.000000s Real=0.021783s Sys=0.000000s + User TOT = 0.13 Real TOT = 1.64321 Summary of Run 146 : /run/geometryModified @@ -10913,8 +10913,8 @@ Run 147 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021351s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.16662 + User=0.000000s Real=0.020815s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.66412 Summary of Run 147 : /run/geometryModified @@ -10983,8 +10983,8 @@ Run 148 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021697s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.18844 + User=0.000000s Real=0.021911s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.68611 Summary of Run 148 : /run/geometryModified @@ -11053,8 +11053,8 @@ Run 149 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020507s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.20907 + User=0.000000s Real=0.022062s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.70826 Summary of Run 149 : /run/geometryModified @@ -11123,8 +11123,8 @@ Run 150 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021451s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.23065 + User=0.000000s Real=0.020783s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.72913 Summary of Run 150 : /run/geometryModified @@ -11193,8 +11193,8 @@ Run 151 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021511s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.25229 + User=0.000000s Real=0.021958s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.75117 Summary of Run 151 : /run/geometryModified @@ -11263,8 +11263,8 @@ Run 152 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020408s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.27281 + User=0.000000s Real=0.020794s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.77206 Summary of Run 152 : /run/geometryModified @@ -11333,8 +11333,8 @@ Run 153 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021514s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.29444 + User=0.000000s Real=0.021986s Sys=0.000000s + User TOT = 0.14 Real TOT = 1.79413 Summary of Run 153 : /run/geometryModified @@ -11403,8 +11403,8 @@ Run 154 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021516s Sys=0.000000s - User TOT = 0.12 Real TOT = 1.31605 + User=0.010000s Real=0.020811s Sys=0.000000s + User TOT = 0.15 Real TOT = 1.81505 Summary of Run 154 : /run/geometryModified @@ -11473,8 +11473,8 @@ Run 155 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020606s Sys=0.010000s - User TOT = 0.12 Real TOT = 1.33675 + User=0.000000s Real=0.021796s Sys=0.010000s + User TOT = 0.15 Real TOT = 1.83695 Summary of Run 155 : /run/geometryModified @@ -11543,8 +11543,8 @@ Run 156 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.021776s Sys=0.000000s - User TOT = 0.13 Real TOT = 1.35862 + User=0.000000s Real=0.020809s Sys=0.000000s + User TOT = 0.15 Real TOT = 1.85785 Summary of Run 156 : /run/geometryModified @@ -11613,8 +11613,8 @@ Run 157 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020661s Sys=0.000000s - User TOT = 0.13 Real TOT = 1.37936 + User=0.000000s Real=0.021789s Sys=0.000000s + User TOT = 0.15 Real TOT = 1.87973 Summary of Run 157 : /run/geometryModified @@ -11683,8 +11683,8 @@ Run 158 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021807s Sys=0.000000s - User TOT = 0.13 Real TOT = 1.40126 + User=0.000000s Real=0.020772s Sys=0.000000s + User TOT = 0.15 Real TOT = 1.90059 Summary of Run 158 : /run/geometryModified @@ -11753,8 +11753,8 @@ Run 159 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023785s Sys=0.000000s - User TOT = 0.13 Real TOT = 1.42514 + User=0.010000s Real=0.021985s Sys=0.000000s + User TOT = 0.16 Real TOT = 1.92266 Summary of Run 159 : /run/geometryModified @@ -11823,8 +11823,8 @@ Run 160 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020675s Sys=0.000000s - User TOT = 0.13 Real TOT = 1.44591 + User=0.000000s Real=0.021970s Sys=0.000000s + User TOT = 0.16 Real TOT = 1.94474 Summary of Run 160 : /run/geometryModified @@ -11893,8 +11893,8 @@ Run 161 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.021755s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.46777 + User=0.000000s Real=0.020813s Sys=0.000000s + User TOT = 0.16 Real TOT = 1.96565 Summary of Run 161 : /run/geometryModified @@ -11963,8 +11963,8 @@ Run 162 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020513s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.4884 + User=0.000000s Real=0.021871s Sys=0.000000s + User TOT = 0.16 Real TOT = 1.98761 Summary of Run 162 : /run/geometryModified @@ -12033,8 +12033,8 @@ Run 163 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021454s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.50997 + User=0.000000s Real=0.020842s Sys=0.000000s + User TOT = 0.16 Real TOT = 2.00855 Summary of Run 163 : /run/geometryModified @@ -12103,8 +12103,8 @@ Run 164 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021660s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.53176 + User=0.000000s Real=0.021939s Sys=0.000000s + User TOT = 0.16 Real TOT = 2.03058 Summary of Run 164 : /run/geometryModified @@ -12173,8 +12173,8 @@ Run 165 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020525s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.5524 + User=0.000000s Real=0.020724s Sys=0.000000s + User TOT = 0.16 Real TOT = 2.05139 Summary of Run 165 : /run/geometryModified @@ -12243,8 +12243,8 @@ Run 166 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021588s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.5741 + User=0.010000s Real=0.021683s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.07319 Summary of Run 166 : /run/geometryModified @@ -12313,8 +12313,8 @@ Run 167 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021548s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.59577 + User=0.000000s Real=0.022047s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.09552 Summary of Run 167 : /run/geometryModified @@ -12383,8 +12383,8 @@ Run 168 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020652s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.61653 + User=0.000000s Real=0.020426s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.11604 Summary of Run 168 : /run/geometryModified @@ -12453,8 +12453,8 @@ Run 169 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023643s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.6403 + User=0.000000s Real=0.021626s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.13775 Summary of Run 169 : /run/geometryModified @@ -12523,8 +12523,8 @@ Run 170 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020374s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.66079 + User=0.000000s Real=0.020801s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.15864 Summary of Run 170 : /run/geometryModified @@ -12593,8 +12593,8 @@ Run 171 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021710s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.68262 + User=0.000000s Real=0.021814s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.18057 Summary of Run 171 : /run/geometryModified @@ -12663,8 +12663,8 @@ Run 172 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021362s Sys=0.000000s - User TOT = 0.14 Real TOT = 1.7041 + User=0.000000s Real=0.021641s Sys=0.010000s + User TOT = 0.17 Real TOT = 2.20235 Summary of Run 172 : /run/geometryModified @@ -12733,8 +12733,8 @@ Run 173 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.024644s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.72886 + User=0.000000s Real=0.020561s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.22314 Summary of Run 173 : /run/geometryModified @@ -12803,8 +12803,8 @@ Run 174 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021449s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.75043 + User=0.000000s Real=0.021685s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.24497 Summary of Run 174 : /run/geometryModified @@ -12873,8 +12873,8 @@ Run 175 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020450s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.77101 + User=0.000000s Real=0.020649s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.26581 Summary of Run 175 : /run/geometryModified @@ -12943,8 +12943,8 @@ Run 176 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021518s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.79264 + User=0.000000s Real=0.021883s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.28779 Summary of Run 176 : /run/geometryModified @@ -13013,8 +13013,8 @@ Run 177 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.021516s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.81427 + User=0.000000s Real=0.020882s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.30877 Summary of Run 177 : /run/geometryModified @@ -13083,8 +13083,8 @@ Run 178 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020521s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.83491 + User=0.000000s Real=0.021884s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.33074 Summary of Run 178 : /run/geometryModified @@ -13153,8 +13153,8 @@ Run 179 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021482s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.8565 + User=0.000000s Real=0.020889s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.3517 Summary of Run 179 : /run/geometryModified @@ -13223,8 +13223,8 @@ Run 180 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021571s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.87818 + User=0.000000s Real=0.021977s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.37377 Summary of Run 180 : /run/geometryModified @@ -13293,8 +13293,8 @@ Run 181 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020324s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.89862 + User=0.000000s Real=0.021956s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.3958 Summary of Run 181 : /run/geometryModified @@ -13363,8 +13363,8 @@ Run 182 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021588s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.92033 + User=0.000000s Real=0.021107s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.41699 Summary of Run 182 : /run/geometryModified @@ -13433,8 +13433,8 @@ Run 183 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020409s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.94088 + User=0.000000s Real=0.021648s Sys=0.010000s + User TOT = 0.17 Real TOT = 2.43872 Summary of Run 183 : /run/geometryModified @@ -13503,8 +13503,8 @@ Run 184 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021531s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.96253 + User=0.000000s Real=0.020977s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.45978 Summary of Run 184 : /run/geometryModified @@ -13573,8 +13573,8 @@ Run 185 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021637s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.98428 + User=0.000000s Real=0.021781s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.48164 Summary of Run 185 : /run/geometryModified @@ -13643,8 +13643,8 @@ Run 186 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020570s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.00497 + User=0.000000s Real=0.021957s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.50368 Summary of Run 186 : /run/geometryModified @@ -13713,8 +13713,8 @@ Run 187 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021394s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.02648 + User=0.000000s Real=0.020919s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.52468 Summary of Run 187 : /run/geometryModified @@ -13783,8 +13783,8 @@ Run 188 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021472s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.04807 + User=0.000000s Real=0.021941s Sys=0.000000s + User TOT = 0.17 Real TOT = 2.54669 Summary of Run 188 : /run/geometryModified @@ -13853,8 +13853,8 @@ Run 189 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020566s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.06875 + User=0.010000s Real=0.020995s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.56777 Summary of Run 189 : /run/geometryModified @@ -13923,8 +13923,8 @@ Run 190 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021483s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.09034 + User=0.000000s Real=0.022040s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.58989 Summary of Run 190 : /run/geometryModified @@ -13993,8 +13993,8 @@ Run 191 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020667s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.11109 + User=0.000000s Real=0.021862s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.61185 Summary of Run 191 : /run/geometryModified @@ -14063,8 +14063,8 @@ Run 192 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.023858s Sys=0.010000s - User TOT = 0.16 Real TOT = 2.13507 + User=0.000000s Real=0.020869s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.6328 Summary of Run 192 : /run/geometryModified @@ -14133,8 +14133,8 @@ Run 193 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021474s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.15665 + User=0.000000s Real=0.021941s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.65482 Summary of Run 193 : /run/geometryModified @@ -14203,8 +14203,8 @@ Run 194 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020525s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.17729 + User=0.000000s Real=0.020934s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.67583 Summary of Run 194 : /run/geometryModified @@ -14273,8 +14273,8 @@ Run 195 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021532s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.19907 + User=0.000000s Real=0.021952s Sys=0.000000s + User TOT = 0.18 Real TOT = 2.69787 Summary of Run 195 : /run/geometryModified @@ -14343,8 +14343,8 @@ Run 196 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021685s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.22087 + User=0.010000s Real=0.021954s Sys=0.000000s + User TOT = 0.19 Real TOT = 2.7199 Summary of Run 196 : /run/geometryModified @@ -14413,8 +14413,8 @@ Run 197 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020478s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.24144 + User=0.000000s Real=0.020964s Sys=0.000000s + User TOT = 0.19 Real TOT = 2.74094 Summary of Run 197 : /run/geometryModified @@ -14483,8 +14483,8 @@ Run 198 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021660s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.26322 + User=0.000000s Real=0.022081s Sys=0.010000s + User TOT = 0.19 Real TOT = 2.76311 Summary of Run 198 : /run/geometryModified @@ -14553,8 +14553,8 @@ Run 199 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.020697s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.28403 + User=0.000000s Real=0.021588s Sys=0.000000s + User TOT = 0.19 Real TOT = 2.7848 Summary of Run 199 : /run/geometryModified @@ -14623,13 +14623,13 @@ Run 200 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021646s Sys=0.000000s - User TOT = 0.16 Real TOT = 2.30582 + User=0.000000s Real=0.020921s Sys=0.000000s + User TOT = 0.19 Real TOT = 2.8058 Summary of Run 200 : /score/dumpQuantityToFile boxMesh_1 eDep eDep_scorer.out Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== Number of memory pools allocated: 10 of which, static: 0 -Dynamic pools deleted: 10 / Total memory freed: 0.052 MB +Dynamic pools deleted: 10 / Total memory freed: 0.06 MB ============================================================ diff --git a/examples/advanced/gammaray_telescope/gammaraytel.out b/examples/advanced/gammaray_telescope/gammaraytel.out index 47f22725d9fa7b4fe20b1345c0d4356126b7c44a..7dd8906b592d0799472f52042a679ba2e29dd119 100644 --- a/examples/advanced/gammaray_telescope/gammaraytel.out +++ b/examples/advanced/gammaray_telescope/gammaraytel.out @@ -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 @@ -4744,7 +4744,7 @@ Number of digits in this event: 10 Run terminated. Run Summary Number of events processed : 100 - User=2.720000s Real=13.405098s Sys=0.030000s + User=1.530000s Real=1.929012s Sys=0.010000s End of Run 0 /gun/particle gamma /gun/energy 1 GeV @@ -8542,7 +8542,7 @@ Number of digits in this event: 71 Run terminated. Run Summary Number of events processed : 100 - User=36.310000s Real=36.978031s Sys=0.010000s + User=19.720000s Real=19.957187s Sys=0.010000s End of Run 1 /gun/particle e- /gun/energy 1 GeV @@ -17044,7 +17044,7 @@ Number of digits in this event: 47 Run terminated. Run Summary Number of events processed : 100 - User=36.880000s Real=37.177860s Sys=0.010000s + User=20.570000s Real=20.870871s Sys=0.020000s End of Run 2 Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/advanced/gorad/gorad.out b/examples/advanced/gorad/gorad.out index 23a13f0f17a88fafbbedfcf832b4b31ddc1ade9e..f2654a9b533a10ed65d7d71eb6496e0dc5874e68 100644 --- a/examples/advanced/gorad/gorad.out +++ b/examples/advanced/gorad/gorad.out @@ -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 @@ -220,7 +220,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=112.250000s Real=113.443120s Sys=0.010000s + User=68.930000s Real=69.415305s Sys=0.020000s /control/doifBatch /score/dumpAllQuantitiesToFile Probes Probes.csv /score/dumpAllQuantitiesToFile Probes Probes.csv # Mesh or volume name: Probes -- # Primitive scorer name: dose diff --git a/examples/advanced/hadrontherapy/hadrontherapy.out b/examples/advanced/hadrontherapy/hadrontherapy.out index ed9d00e7ca87938570cb84320e4b54677cd9e31f..4ff32a4d95652ada2f5cbfcc87842d478a8a5bcf 100644 --- a/examples/advanced/hadrontherapy/hadrontherapy.out +++ b/examples/advanced/hadrontherapy/hadrontherapy.out @@ -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 @@ -702,12 +702,12 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 500 - User=4.260000s Real=4.323517s Sys=0.040000s + User=2.780000s Real=2.827839s Sys=0.040000s Graphics systems deleted. Visualization Manager deleting... -The simulation took: 7.60809 s to run (real time) +The simulation took: 4.1506 s to run (real time) Dose is being written to Dose.out i j k Dose(Gy)================== Deleting memory pools =================== Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.42 MB +Dynamic pools deleted: 12 / Total memory freed: 0.4 MB ============================================================ diff --git a/examples/advanced/human_phantom/human_phantom.out b/examples/advanced/human_phantom/human_phantom.out index efc439478200d61ebfcd92a7f73564d6b2f6f46b..eacea6a5f9b21122daf0643acc447095e895b542 100644 --- a/examples/advanced/human_phantom/human_phantom.out +++ b/examples/advanced/human_phantom/human_phantom.out @@ -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 diff --git a/examples/advanced/iort_therapy/iort_therapy.out b/examples/advanced/iort_therapy/iort_therapy.out index 5a051d168ad99671b21060fdcd1461919c91e408..a07dd7629806884e0e3a068fc6310a8ed36a1aee 100644 --- a/examples/advanced/iort_therapy/iort_therapy.out +++ b/examples/advanced/iort_therapy/iort_therapy.out @@ -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 @@ -603,7 +603,7 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 2000 - User=7.640000s Real=7.965769s Sys=0.100000s + User=4.790000s Real=7.156374s Sys=0.110000s /score/dumpQuantityToFile boxMesh_1 dose dose.out Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out index f933f8673be9bde0db7322a88c36ee038d283541..140dc15f6e1d6acbf67c5d871922298dd2603ed2 100644 --- a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out +++ b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out @@ -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 @@ -932,13 +932,13 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 395 kByte - Total CPU time elapsed for geometry optimisation: 0.2 seconds + Total CPU time elapsed for geometry optimisation: 0.11 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 55.00 0.11 0.00 152k EmModuleLogical - 45.00 0.09 0.00 238k HadModuleLogical + 54.55 0.06 0.00 152k EmModuleLogical + 45.45 0.05 0.00 238k HadModuleLogical 0.00 0.00 0.00 4k Mother 0.00 0.00 0.00 0k CryostatLogical 0.00 0.00 0.00 0k LArgLogical @@ -949,8 +949,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 60.17 238k 1385 2370 3792 0.09 HadModuleLogical - 38.50 152k 1129 1152 2426 0.11 EmModuleLogical + 60.17 238k 1385 2370 3792 0.05 HadModuleLogical + 38.50 152k 1129 1152 2426 0.06 EmModuleLogical 0.93 3k 8 42 146 0.00 Mother 0.12 0k 1 7 8 0.00 SolidWLogical 0.12 0k 1 7 8 0.00 CuPlateLogical @@ -1313,14 +1313,14 @@ Edep in FCAL1 FCAl2 : 15685.5 0.881462 Run terminated. Run Summary Number of events processed : 18 - User=5.900000s Real=6.011224s Sys=0.000000s + User=3.670000s Real=3.796691s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x224a070 -UserPhysicsList deleted 0x224b280 -UserActionInitialization deleted 0x2406950 +UserDetectorConstruction deleted 0x1232440 +UserPhysicsList deleted 0x1233650 +UserActionInitialization deleted 0x13eed20 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/medical_linac/medical_linac.out b/examples/advanced/medical_linac/medical_linac.out index fc10fe11223ee895bffb49ab222ac73eea609d28..174fd347aad66345242458acf39d4ba2a334b6d0 100644 --- a/examples/advanced/medical_linac/medical_linac.out +++ b/examples/advanced/medical_linac/medical_linac.out @@ -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 diff --git a/examples/advanced/microbeam/microbeam.out b/examples/advanced/microbeam/microbeam.out index f7e8757a0b8a89c0cec872253658e26b3929f2a7..30e9eefc6630c9ae6d8cb5cc7df1aeddfe754882 100644 --- a/examples/advanced/microbeam/microbeam.out +++ b/examples/advanced/microbeam/microbeam.out @@ -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 @@ -807,7 +807,7 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1 ThetaMin(p) < Theta(degree) < 180, pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 100 TeV -##### Create analysis manager 0x1fb8bb0 +##### Create analysis manager 0xc2bbb0 Using analysis manager All Ntuples have been created -> Event # 1 generated diff --git a/examples/advanced/microelectronics/microelectronics.out b/examples/advanced/microelectronics/microelectronics.out index d77f224cd3cadda33d39abd7c183b9b1ef9cdcc3..6d4f578043b79368fbe563b38af280424a97ddfc 100644 --- a/examples/advanced/microelectronics/microelectronics.out +++ b/examples/advanced/microelectronics/microelectronics.out @@ -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 @@ -353,7 +353,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics -------------------------------------------------------------------------------- ### Run 0 starts. -##### Create analysis manager 0xce4250 +##### Create analysis manager 0x189c620 Using analysis manager ... set ntuple merging row mode : row-wise - done ... create file : microelectronics.root - done @@ -375,7 +375,7 @@ Elastic Cumulated Diff Cross : /cvmfs/geant4.cern.ch/share/data/G4EMLOW8.6.1/mic Run terminated. Run Summary Number of events processed : 10 - User=0.310000s Real=1.643581s Sys=0.010000s + User=0.150000s Real=0.152436s Sys=0.000000s ... write file : microelectronics.root - done ... close file : microelectronics.root - done ... clear all data - done @@ -388,9 +388,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xc94c50 -UserPhysicsList deleted 0xcaab60 -UserActionInitialization deleted 0xcdd770 +UserDetectorConstruction deleted 0x184d020 +UserPhysicsList deleted 0x1862f30 +UserActionInitialization deleted 0x1895b40 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/nanobeam/nanobeam.out b/examples/advanced/nanobeam/nanobeam.out index d5bab1fbdf5df20abb9c23aea5822bf8442f0b23..a8d82cfc57f30dde4ccad6ef718c9d1299b565e0 100644 --- a/examples/advanced/nanobeam/nanobeam.out +++ b/examples/advanced/nanobeam/nanobeam.out @@ -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 @@ -297,7 +297,7 @@ Index : 0 used in the geometry : Yes ================================================================== -##### Create analysis manager 0x932920 +##### Create analysis manager 0x5498f0 Using analysis manager Ntuple-1 created Ntuple-2 created diff --git a/examples/advanced/purging_magnet/purging_magnet.out b/examples/advanced/purging_magnet/purging_magnet.out index b53ac50149fb0f6ec81898b1851c0501e3b5367b..999a5fd13fc878b56ea6f6d6657b6efe41816e0e 100644 --- a/examples/advanced/purging_magnet/purging_magnet.out +++ b/examples/advanced/purging_magnet/purging_magnet.out @@ -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 diff --git a/examples/advanced/stim_pixe_tomography/stim_pixe_tomography.out b/examples/advanced/stim_pixe_tomography/stim_pixe_tomography.out index 66f8ac3d5ba2dae0af60b0f876f63dbc58f45759..44ee651239f9027994830ee1e8c35fc59c054242 100644 --- a/examples/advanced/stim_pixe_tomography/stim_pixe_tomography.out +++ b/examples/advanced/stim_pixe_tomography/stim_pixe_tomography.out @@ -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 @@ -906,7 +906,7 @@ Projection_index 0 Slice_index 0 Pixel_index 0 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000458s Sys=0.000000s + User=0.000000s Real=0.000316s Sys=0.000000s /gps/direction 1.000000 0.000000 0.000000 /gps/pos/centre -36.000000 -14.400000 0.000000 um /run/beamOn 20 @@ -936,7 +936,7 @@ Projection_index 0 Slice_index 0 Pixel_index 1 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.006447s Sys=0.000000s + User=0.000000s Real=0.003865s Sys=0.000000s /gps/direction 1.000000 0.000000 0.000000 /gps/pos/centre -36.000000 0.000000 0.000000 um /run/beamOn 20 @@ -966,7 +966,7 @@ Projection_index 0 Slice_index 0 Pixel_index 2 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.005826s Sys=0.000000s + User=0.000000s Real=0.003374s Sys=0.000000s /gps/direction 1.000000 0.000000 0.000000 /gps/pos/centre -36.000000 14.400000 0.000000 um /run/beamOn 20 @@ -996,7 +996,7 @@ Projection_index 0 Slice_index 0 Pixel_index 3 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.005871s Sys=0.000000s + User=0.000000s Real=0.003503s Sys=0.000000s /gps/direction 1.000000 0.000000 0.000000 /gps/pos/centre -36.000000 28.800000 0.000000 um /run/beamOn 20 @@ -1026,7 +1026,7 @@ Projection_index 0 Slice_index 0 Pixel_index 4 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000102s Sys=0.000000s + User=0.000000s Real=0.000049s Sys=0.000000s /gps/direction 0.809017 0.587785 0.000000 /gps/pos/centre -12.196397 -44.459959 0.000000 um /run/beamOn 20 @@ -1056,7 +1056,7 @@ Projection_index 1 Slice_index 0 Pixel_index 0 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000091s Sys=0.000000s + User=0.000000s Real=0.000047s Sys=0.000000s /gps/direction 0.809017 0.587785 0.000000 /gps/pos/centre -20.660504 -32.810114 0.000000 um /run/beamOn 20 @@ -1086,7 +1086,7 @@ Projection_index 1 Slice_index 0 Pixel_index 1 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.004448s Sys=0.000000s + User=0.000000s Real=0.002626s Sys=0.000000s /gps/direction 0.809017 0.587785 0.000000 /gps/pos/centre -29.124612 -21.160269 0.000000 um /run/beamOn 20 @@ -1116,7 +1116,7 @@ Projection_index 1 Slice_index 0 Pixel_index 2 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.007623s Sys=0.000000s + User=0.010000s Real=0.004446s Sys=0.000000s /gps/direction 0.809017 0.587785 0.000000 /gps/pos/centre -37.588719 -9.510424 0.000000 um /run/beamOn 20 @@ -1146,7 +1146,7 @@ Projection_index 1 Slice_index 0 Pixel_index 3 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.004586s Sys=0.000000s + User=0.000000s Real=0.002667s Sys=0.000000s /gps/direction 0.809017 0.587785 0.000000 /gps/pos/centre -46.052827 2.139420 0.000000 um /run/beamOn 20 @@ -1176,7 +1176,7 @@ Projection_index 1 Slice_index 0 Pixel_index 4 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000094s Sys=0.000000s + User=0.000000s Real=0.000047s Sys=0.000000s /gps/direction 0.309017 0.951057 0.000000 /gps/pos/centre 16.265816 -43.137724 0.000000 um /run/beamOn 20 @@ -1206,7 +1206,7 @@ Projection_index 2 Slice_index 0 Pixel_index 0 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000083s Sys=0.000000s + User=0.000000s Real=0.000043s Sys=0.000000s /gps/direction 0.309017 0.951057 0.000000 /gps/pos/centre 2.570602 -38.687879 0.000000 um /run/beamOn 20 @@ -1236,7 +1236,7 @@ Projection_index 2 Slice_index 0 Pixel_index 1 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.005911s Sys=0.000000s + User=0.000000s Real=0.003503s Sys=0.000000s /gps/direction 0.309017 0.951057 0.000000 /gps/pos/centre -11.124612 -34.238035 0.000000 um /run/beamOn 20 @@ -1266,7 +1266,7 @@ Projection_index 2 Slice_index 0 Pixel_index 2 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.006404s Sys=0.000000s + User=0.010000s Real=0.003652s Sys=0.000000s /gps/direction 0.309017 0.951057 0.000000 /gps/pos/centre -24.819826 -29.788190 0.000000 um /run/beamOn 20 @@ -1296,7 +1296,7 @@ Projection_index 2 Slice_index 0 Pixel_index 3 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.005571s Sys=0.000000s + User=0.000000s Real=0.003301s Sys=0.000000s /gps/direction 0.309017 0.951057 0.000000 /gps/pos/centre -38.515039 -25.338345 0.000000 um /run/beamOn 20 @@ -1326,7 +1326,7 @@ Projection_index 2 Slice_index 0 Pixel_index 4 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000104s Sys=0.000000s + User=0.000000s Real=0.000047s Sys=0.000000s /gps/direction -0.309017 0.951057 0.000000 /gps/pos/centre 38.515039 -25.338345 0.000000 um /run/beamOn 20 @@ -1356,7 +1356,7 @@ Projection_index 3 Slice_index 0 Pixel_index 0 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000085s Sys=0.000000s + User=0.000000s Real=0.000046s Sys=0.000000s /gps/direction -0.309017 0.951057 0.000000 /gps/pos/centre 24.819826 -29.788190 0.000000 um /run/beamOn 20 @@ -1386,7 +1386,7 @@ Projection_index 3 Slice_index 0 Pixel_index 1 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.005949s Sys=0.000000s + User=0.000000s Real=0.003460s Sys=0.000000s /gps/direction -0.309017 0.951057 0.000000 /gps/pos/centre 11.124612 -34.238035 0.000000 um /run/beamOn 20 @@ -1416,7 +1416,7 @@ Projection_index 3 Slice_index 0 Pixel_index 2 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.006176s Sys=0.000000s + User=0.010000s Real=0.003591s Sys=0.000000s /gps/direction -0.309017 0.951057 0.000000 /gps/pos/centre -2.570602 -38.687879 0.000000 um /run/beamOn 20 @@ -1446,7 +1446,7 @@ Projection_index 3 Slice_index 0 Pixel_index 3 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.006138s Sys=0.000000s + User=0.000000s Real=0.003705s Sys=0.000000s /gps/direction -0.309017 0.951057 0.000000 /gps/pos/centre -16.265816 -43.137724 0.000000 um /run/beamOn 20 @@ -1476,7 +1476,7 @@ Projection_index 3 Slice_index 0 Pixel_index 4 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000091s Sys=0.000000s + User=0.000000s Real=0.000057s Sys=0.000000s /gps/direction -0.809017 0.587785 0.000000 /gps/pos/centre 46.052827 2.139420 0.000000 um /run/beamOn 20 @@ -1506,7 +1506,7 @@ Projection_index 4 Slice_index 0 Pixel_index 0 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000084s Sys=0.000000s + User=0.000000s Real=0.000072s Sys=0.000000s /gps/direction -0.809017 0.587785 0.000000 /gps/pos/centre 37.588719 -9.510424 0.000000 um /run/beamOn 20 @@ -1536,7 +1536,7 @@ Projection_index 4 Slice_index 0 Pixel_index 1 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.004664s Sys=0.000000s + User=0.010000s Real=0.002708s Sys=0.000000s /gps/direction -0.809017 0.587785 0.000000 /gps/pos/centre 29.124612 -21.160269 0.000000 um /run/beamOn 20 @@ -1566,7 +1566,7 @@ Projection_index 4 Slice_index 0 Pixel_index 2 Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.007818s Sys=0.000000s + User=0.000000s Real=0.004665s Sys=0.000000s /gps/direction -0.809017 0.587785 0.000000 /gps/pos/centre 20.660504 -32.810114 0.000000 um /run/beamOn 20 @@ -1596,7 +1596,7 @@ Projection_index 4 Slice_index 0 Pixel_index 3 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.004427s Sys=0.000000s + User=0.000000s Real=0.002657s Sys=0.000000s /gps/direction -0.809017 0.587785 0.000000 /gps/pos/centre 12.196397 -44.459959 0.000000 um /run/beamOn 20 @@ -1626,7 +1626,7 @@ Projection_index 4 Slice_index 0 Pixel_index 4 Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000102s Sys=0.000000s + User=0.000000s Real=0.000049s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/advanced/underground_physics/alpha.out b/examples/advanced/underground_physics/alpha.out index 18156adc07fdba65d62ce72caa2167db6d9ca23e..19084d7e856b7d99c65b1fa61692ebd7db7e5dc8 100644 --- a/examples/advanced/underground_physics/alpha.out +++ b/examples/advanced/underground_physics/alpha.out @@ -1,4 +1,4 @@ Evt Eprim Etot LXe LXeTime PMT PMTTime Seed1 Seed2 First Flags # MeV MeV hits ns hits ns hit -0 5.4860 5.0030 1187 0x1.8952f5d9640cp-14 5134 0x1.7ff10b7bebc43p+4 1 35676552 alpha electron other +0 5.4860 5.0030 1187 0x1.8952f5d9640cp-14 5134 0x1.7ff10b7bebc43p+4 1 24797448 alpha electron other diff --git a/examples/advanced/underground_physics/gamma_1000.out b/examples/advanced/underground_physics/gamma_1000.out index 5fdbf23c0fd6c44336f91443e2c2d0b938f90a7f..baf6eaf929af7c94a2b50af2a4d97ff2a77b1d23 100644 --- a/examples/advanced/underground_physics/gamma_1000.out +++ b/examples/advanced/underground_physics/gamma_1000.out @@ -1,352 +1,352 @@ Evt Eprim Etot LXe LXeTime PMT PMTTime Seed1 Seed2 First Flags # MeV MeV hits ns hits ns hit -3 0.0600 0.0600 66 0x1.4f6fc8c708fa8p-15 54 0x1.382377b3d35bep+5 1 31429000 gamma gamma electron -5 0x1.eb851eb851eb9p-5 0x1.b116228134481p-6 24 0x1.30809e8074632p-15 22 0x1.384d91212ec7ap+5 1 31429000 gamma gamma electron -9 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 20 0x1.d734ca6f87d53p-14 28 0x1.d339b12d58062p+5 1 31429000 gamma gamma electron -14 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 59 0x1.6f517820463f2p-18 52 0x1.c93301b20aeb2p+5 1 31429000 gamma gamma electron -22 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.2b1cb06e9aef7p-10 57 0x1.7e73e500da077p+5 1 31429000 gamma gamma electron -28 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 27 0x1.b6dd046de66ebp-17 20 0x1.975e0d6280108p+5 1 31429000 gamma gamma electron -30 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.e223592ae219fp-18 47 0x1.541dc3e1ca937p+5 1 31429000 gamma gamma electron -35 0x1.eb851eb851eb9p-5 0x1.430bee4acbd65p-5 44 0x1.31b96ae605e99p-17 22 0x1.a23997fb7ecf1p+5 1 31429000 gamma gamma electron -37 0x1.eb851eb851eb9p-5 0x1.04e09015551aap-7 10 0x1.7a415f64c52cap-10 142 0x1.2c7defa5f2f7ep+5 1 31429000 gamma gamma electron -38 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.9f5f2b8c1b6a5p-10 63 0x1.7830090ea0548p+5 1 31429000 gamma gamma electron -39 0x1.eb851eb851eb9p-5 0x1.26c7554ecd418p-6 24 0x1.933d729fd3a4bp-16 19 0x1.6d9d1421c31c7p+5 1 31429000 gamma gamma electron -40 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 51 0x1.6f6c333c49d82p-18 59 0x1.5c624f30c7ddbp+5 1 31429000 gamma gamma electron -41 0x1.eb851eb851eb9p-5 0x1.76213bad5f9a4p-6 32 0x1.358ac3e8d8199p-13 22 0x1.f1c48b11c1639p+5 1 31429000 gamma gamma electron -45 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 49 0x1.6136c8fd827bcp-17 49 0x1.faa52ae8f918p+4 1 31429000 gamma gamma electron -46 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 57 0x1.0d11644ae2262p-17 52 0x1.7aa68cc12d7ddp+5 1 31429000 gamma gamma electron -56 0x1.eb851eb851eb9p-5 0x1.70043d2e74e38p-5 47 0x1.391aa76ba8dc8p-12 46 0x1.4c8a877fc026p+5 1 31429000 gamma gamma electron -59 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.c30e4fcba7009p-18 53 0x1.65ab6929030d3p+5 1 31429000 gamma gamma electron -62 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 13 0x1.a740ab8df6be4p-17 30 0x1.4f2328c2245cbp+5 1 31429000 gamma gamma electron -63 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 45 0x1.c14139b72af5dp-18 71 0x1.7a205e28924c8p+5 1 31429000 gamma gamma electron -64 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dd1p-6 33 0x1.ef90443cc0945p-17 25 0x1.6b4013dcf7776p+5 1 31429000 gamma gamma electron -66 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 43 0x1.b1167ff3043afp-18 90 0x1.71b051cff45b3p+5 1 31429000 gamma gamma electron -68 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 45 0x1.6ddd34bacdbaep-10 176 0x1.5ade2df69199ep+5 1 31429000 gamma gamma electron -69 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 58 0x1.1d9ef2d3effafp-17 54 0x1.2649fb40614c9p+5 1 31429000 gamma gamma electron -72 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 64 0x1.7660d4400a31ep-17 60 0x1.a1d13355242ebp+5 1 31429000 gamma gamma electron -74 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 65 0x1.9f6a202ac3fc3p-17 54 0x1.9477f1a640e2dp+5 1 31429000 gamma gamma electron -79 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 39 0x1.281a42ec441b1p-17 50 0x1.4f0e5f2347414p+5 1 31429000 gamma gamma electron -84 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.f209c584dedf7p-18 78 0x1.752f4e13563c2p+5 1 31429000 gamma gamma electron -85 0x1.eb851eb851eb9p-5 0x1.24da1e8343199p-6 17 0x1.f6384b9a04819p-18 18 0x1.6b953f0c3b735p+5 1 31429000 gamma gamma electron -87 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 32 0x1.10dd271fa9092p-17 37 0x1.a4bb7e56e2ee8p+5 1 31429000 gamma gamma electron -91 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 57 0x1.6b5c95595d762p-8 137 0x1.339ad044e7941p+5 1 31429000 gamma gamma electron -92 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 54 0x1.308afc89610e2p-15 61 0x1.a8727e6d3c881p+5 1 31429000 gamma gamma electron -93 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 58 0x1.206eee994eb57p-17 65 0x1.84c5d2fadd756p+5 1 31429000 gamma gamma electron -100 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 30 0x1.8d4fa61b3286cp-18 36 0x1.b73c177ae80f8p+5 1 31429000 gamma gamma electron -103 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 67 0x1.d83ff976b24a8p-17 45 0x1.c35800017baefp+5 1 31429000 gamma gamma electron -104 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 55 0x1.8753d7ebcdc13p-18 58 0x1.7778b1446794ep+5 1 31429000 gamma gamma electron -105 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 26 0x1.64f5b44c30d31p-16 25 0x1.50cc052da9fecp+5 1 31429000 gamma gamma electron -110 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.d6a1d9fec718bp-17 72 0x1.4a36d392169aep+5 1 31429000 gamma gamma electron -113 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 58 0x1.e6113cd4beeaep-18 61 0x1.393175f57858ap+5 1 31429000 gamma gamma electron -114 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 56 0x1.759f621d78334p-18 66 0x1.7b1c32ff81344p+5 1 31429000 gamma gamma electron -117 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 80 0x1.bf9a08ccf920bp-16 62 0x1.73545cf42d859p+5 1 31429000 gamma gamma electron -118 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 62 0x1.4777c0df7d3ddp-17 64 0x1.5e8a32bf79afbp+5 1 31429000 gamma gamma electron -119 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 62 0x1.3f590b0859761p-17 67 0x1.caa1fa2774bbep+5 1 31429000 gamma gamma electron -120 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 29 0x1.bc3feb4380406p-16 27 0x1.15de3354d6aabp+6 1 31429000 gamma gamma electron -121 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 57 0x1.74efb85768fa9p-18 43 0x1.52e6850a723ccp+5 1 31429000 gamma gamma electron -127 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 61 0x1.7280ad275d63bp-18 55 0x1.6a45bb2a846eep+5 1 31429000 gamma gamma electron -130 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 20 0x1.7bdc76d62ef39p-18 23 0x1.0a9ffb9d151ap+6 1 31429000 gamma gamma electron -131 0x1.eb851eb851eb9p-5 0x1.96973d49aa813p-7 12 0x1.2249f87f71516p-13 13 0x1.3a7cf6743ade9p+5 1 31429000 gamma gamma electron -137 0x1.eb851eb851eb9p-5 0x1.b11622813448p-6 30 0x1.c3eb0e1b14e7p-18 19 0x1.4e97266dcb701p+5 1 31429000 gamma gamma electron -140 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 64 0x1.b048d751382f6p-17 66 0x1.3c99fdee57062p+5 1 31429000 gamma gamma electron -141 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 53 0x1.6b7c0f64d1071p-18 72 0x1.59a50809c704fp+5 1 31429000 gamma gamma electron -142 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.600173cac3494p-16 67 0x1.45278d2bdf3f4p+5 1 31429000 gamma gamma electron -143 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 58 0x1.29254a9d03d43p-10 66 0x1.4a98939231021p+5 1 31429000 gamma gamma electron -145 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 49 0x1.993207a605485p-18 44 0x1.bc2f7468d4ca9p+5 1 31429000 gamma gamma electron -146 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 33 0x1.4784d715fe81fp-16 29 0x1.f77fbe9e87fe5p+5 1 31429000 gamma gamma electron -147 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 70 0x1.3633c6e26c8b5p-17 68 0x1.93cf93ccec301p+5 1 31429000 gamma gamma electron -149 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 55 0x1.aebe8055d04bfp-18 51 0x1.5a5476f7847f8p+5 1 31429000 gamma gamma electron -150 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 24 0x1.28a12e30040e2p-9 78 0x1.8f4b1d91f76a4p+5 1 31429000 gamma gamma electron -155 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 84 0x1.e8077ffd97e72p-17 38 0x1.762a58fe68d64p+5 1 31429000 gamma gamma electron -157 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 73 0x1.6b8da19688ab6p-16 53 0x1.c81bbb68a7d5ap+5 1 31429000 gamma gamma electron -158 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.21cfc7ab99e41p-17 74 0x1.5742994fefe32p+5 1 31429000 gamma gamma electron -160 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 20 0x1.d0e4d7140240ep-16 20 0x1.8f20d20efe804p+5 1 31429000 gamma gamma electron -163 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.176a9c2dfdc12p-17 51 0x1.6dcd493eab83fp+5 1 31429000 gamma gamma electron -165 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.78332bd35a5eep-17 74 0x1.3090b0f05f5d2p+5 1 31429000 gamma gamma electron -166 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.216878f586455p-8 67 0x1.8a2bc08bbb5bcp+5 1 31429000 gamma gamma electron -167 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 32 0x1.1ac7258623df8p-14 17 0x1.cb454c1b37fd9p+5 1 31429000 gamma gamma electron -168 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 36 0x1.2f15518948302p-16 23 0x1.6ccdc9086fc3dp+5 1 31429000 gamma gamma electron -172 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 53 0x1.3babc728b0914p-17 54 0x1.544fb1ab5edb1p+5 1 31429000 gamma gamma electron -173 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 69 0x1.81b0c4b44d976p-18 72 0x1.3acf5c6abfa2bp+5 1 31429000 gamma gamma electron -177 0x1.eb851eb851eb9p-5 0x1.d697c750f7292p-7 41 0x1.1956578dc32e8p-14 14 0x1.caf862e5affc7p+5 1 31429000 e- electron -178 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 62 0x1.10de584dd8643p-17 54 0x1.a430f7c5194ccp+5 1 31429000 gamma gamma electron -180 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 30 0x1.2559a354f302bp-16 30 0x1.4a469bf8698d9p+5 1 31429000 gamma gamma electron -185 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 87 0x1.a8a706469a48ap-13 55 0x1.8da62f68d69b4p+5 1 31429000 gamma gamma electron -187 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.14db8cd3fb143p-16 52 0x1.605e0cfa094fbp+5 1 31429000 gamma gamma electron -188 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.989fe1a69d8c7p-17 60 0x1.5772a35607f4p+5 1 31429000 gamma gamma electron -190 0x1.eb851eb851eb9p-5 0x1.47a8a09d99d97p-5 47 0x1.11e993153eec5p-17 29 0x1.4986f34272f7p+5 1 31429000 gamma gamma electron -191 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 44 0x1.e9fb73c5e604bp-18 44 0x1.28ed143d46f81p+5 1 31429000 gamma gamma electron -193 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 63 0x1.269b10df8aca8p-10 83 0x1.5615e62c6766cp+5 1 31429000 gamma gamma electron -194 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 46 0x1.6bdc492d20224p-17 57 0x1.290743872c0efp+5 1 31429000 gamma gamma electron -200 0x1.eb851eb851eb9p-5 0x1.b8928324e30e7p-7 16 0x1.6212fd8ceaa26p-13 14 0x1.6152cdaca65ap+5 1 31429000 gamma gamma electron -201 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 62 0x1.6378b69c1d103p-15 45 0x1.929c268da9c49p+5 1 31429000 gamma gamma electron -202 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.767460188e5c5p-17 48 0x1.38cd40c90c595p+5 1 31429000 gamma gamma electron -207 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 57 0x1.dde25219d77d2p-16 76 0x1.66fdd651e833cp+5 1 31429000 gamma gamma electron -209 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 61 0x1.782f71f3e159cp-18 59 0x1.6a07f828b43a3p+5 1 31429000 gamma gamma electron -213 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 24 0x1.9a55c18d54596p-18 32 0x1.87a23be0f001dp+5 1 31429000 gamma gamma electron -215 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 64 0x1.a3cfccc372cadp-18 40 0x1.7e919578e5672p+5 1 31429000 gamma gamma electron -219 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 71 0x1.73034606425f8p-9 59 0x1.75ed7b2bec846p+5 1 31429000 gamma gamma electron -221 0x1.eb851eb851eb9p-5 0x1.e39143d559ac8p-5 86 0x1.f1585774f741cp-17 60 0x1.522c5f7f87ca1p+5 1 31429000 gamma gamma electron -223 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.c47e65f9bd311p-18 55 0x1.70223357d5a47p+5 1 31429000 gamma gamma electron -227 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.c8ff156f56d58p-18 51 0x1.4c9095739cc29p+5 1 31429000 gamma gamma electron -228 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 66 0x1.752e8e7e2dcdep-18 45 0x1.56973c79428b2p+5 1 31429000 gamma gamma electron -229 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 62 0x1.86c514c701da5p-18 42 0x1.6d3b63fa4a2b3p+5 1 31429000 gamma gamma electron -231 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 20 0x1.580e46916bcdep-18 14 0x1.a11eccc9f8eabp+5 1 31429000 gamma gamma electron -232 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 53 0x1.85040d518d217p-16 73 0x1.7c96c3effa70dp+5 1 31429000 gamma gamma electron -234 0x1.eb851eb851eb9p-5 0x1.3fb5576541a33p-5 35 0x1.e2c7d7fb22da1p-17 27 0x1.1ec6ccd84b101p+5 1 31429000 gamma gamma electron -238 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 59 0x1.74412cfa225ecp-18 78 0x1.55b1a21274ef4p+5 1 31429000 gamma gamma electron -239 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 24 0x1.34ac09d70f518p-17 35 0x1.6b8a80ae08897p+5 1 31429000 gamma gamma electron -240 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 68 0x1.fec438aa91075p-16 71 0x1.5679d024f86b5p+5 1 31429000 gamma gamma electron -243 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 44 0x1.a7ab5b18e7df5p-16 56 0x1.8c17c15298183p+5 1 31429000 gamma gamma electron -244 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 57 0x1.74ff6dda25a38p-10 80 0x1.4a64e9e95526cp+5 1 31429000 gamma gamma electron -246 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 63 0x1.65990f9e6f56fp-16 61 0x1.9c481c715d49cp+5 1 31429000 gamma gamma electron -248 0x1.eb851eb851eb9p-5 0x1.b9f89da59fc2p-10 2 0x1.7a9334c03d7ep-18 4 0x1.0e34749060aecp+5 1 31429000 gamma gamma electron -253 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.9db1cd7ab5dc4p-15 53 0x1.b6a1ba424168cp+5 1 31429000 gamma gamma electron -255 0x1.eb851eb851eb9p-5 0x1.be85e22cb0623p-7 7 0x1.489eb481779acp-14 13 0x1.21333e76f1004p+6 1 31429000 gamma gamma electron -257 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 50 0x1.cf9782139b664p-18 58 0x1.5414071cfe461p+5 1 31429000 gamma gamma electron -258 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 28 0x1.c1ae4469bd3f6p-18 32 0x1.7b91c1dbf56bcp+5 1 31429000 gamma gamma electron -263 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.a58d64e798224p-10 144 0x1.846a416238439p+5 1 31429000 gamma gamma electron -265 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.685b3d65949f2p-18 65 0x1.7e41f87292123p+5 1 31429000 gamma gamma electron -268 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 53 0x1.61abd632b7617p-18 66 0x1.7813381c8bc69p+5 1 31429000 gamma gamma electron -271 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 37 0x1.ebc382d655d2dp-18 28 0x1.65fc61d4bd337p+5 1 31429000 gamma gamma electron -272 0x1.eb851eb851eb9p-5 0x1.b00e5024db81fp-6 23 0x1.4d643df5a0e95p-17 23 0x1.25cbc8833a6d2p+5 1 31429000 gamma gamma electron -273 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 36 0x1.7bd3ea0b4f8bap-18 25 0x1.09b9b9ae24915p+6 1 31429000 gamma gamma electron -275 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 25 0x1.218d9a7c16f58p-16 36 0x1.5e9b3b4c99c0bp+5 1 31429000 gamma gamma electron -280 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 66 0x1.0519bd975719dp-9 56 0x1.8cbe03aa9adb7p+5 1 31429000 gamma gamma electron -284 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 52 0x1.a918976875865p-18 79 0x1.2ba1aa3725a33p+5 1 31429000 gamma gamma electron -287 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 84 0x1.70e9873f629aap-14 47 0x1.7d646e3538837p+5 1 31429000 gamma gamma electron -291 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 64 0x1.98d552a0e3c64p-18 71 0x1.73b42532b5389p+5 1 31429000 gamma gamma electron -292 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.2867340876f87p-16 63 0x1.6cc4b9f894884p+5 1 31429000 gamma gamma electron -294 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 30 0x1.12de1a8c37dc1p-14 28 0x1.b68ff52e6a5d7p+5 1 31429000 gamma gamma electron -307 0x1.eb851eb851eb9p-5 0x1.9707ebddbd542p-6 51 0x1.0eeb3dcf787ap-17 29 0x1.83d5b70711a29p+5 1 31429000 gamma gamma electron -310 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 32 0x1.763b5a4aacd72p-13 25 0x1.4154c7358f11dp+5 1 31429000 gamma gamma electron -313 0x1.eb851eb851eb9p-5 0x1.b00e5024db81bp-6 24 0x1.d05392d74796fp-18 29 0x1.552e60a19edbp+5 1 31429000 gamma gamma electron -317 0x1.eb851eb851eb9p-5 0x1.1b8fa87f0faa9p-6 22 0x1.fd6c52134351bp-18 18 0x1.50df9784baf94p+5 1 31429000 gamma gamma electron -319 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 29 0x1.5765f78b1eff3p-18 29 0x1.54c54808ac68cp+5 1 31429000 gamma gamma electron -320 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 49 0x1.9cd33c385e69ap-18 60 0x1.6da50d94dec22p+5 1 31429000 gamma gamma electron -327 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 53 0x1.9f598dc173b05p-18 62 0x1.53ba4375ca1b5p+5 1 31429000 gamma gamma electron -329 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 42 0x1.ea525280765cdp-18 49 0x1.659e5164de99bp+5 1 31429000 gamma gamma electron -333 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 61 0x1.1870c876992f6p-17 46 0x1.0c43c0c92aa47p+5 1 31429000 gamma gamma electron -338 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 38 0x1.3a1c804acb768p-17 30 0x1.fa8ccad97f842p+4 1 31429000 gamma gamma electron -349 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 62 0x1.0006189fae3fep-16 41 0x1.abb66e5e59f59p+5 1 31429000 gamma gamma electron -351 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.c2159a37aa34dp-18 50 0x1.91414e165eb3cp+5 1 31429000 gamma gamma electron -353 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 55 0x1.6c171c5233edp-18 58 0x1.5a930e729b1a6p+5 1 31429000 gamma gamma electron -356 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.76115c21c6432p-18 66 0x1.9da15545c9aaap+5 1 31429000 gamma gamma electron -357 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.5855749eb73d8p-18 98 0x1.2c327a46dbdebp+5 1 31429000 gamma gamma electron -359 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 24 0x1.0adb23dcaa55cp-15 19 0x1.231b6ba63f437p+5 1 31429000 gamma gamma electron -362 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 83 0x1.f058762d6bee5p-18 56 0x1.ebb73a91d37fp+5 1 31429000 gamma gamma electron -364 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 57 0x1.3b9f0f9505781p-17 43 0x1.3a57116809b63p+5 1 31429000 gamma gamma electron -365 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 26 0x1.f10b6513bbc86p-18 31 0x1.5c32c1f5276b7p+5 1 31429000 gamma gamma electron -366 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 34 0x1.ae97682422f11p-18 22 0x1.63c2c9a50ca4fp+5 1 31429000 gamma gamma electron -371 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e9192fp-6 42 0x1.cd92313283cd4p-18 29 0x1.91bfac8fdb464p+5 1 31429000 gamma gamma electron -372 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 74 0x1.29127e2ffe247p-17 63 0x1.255df3ec36da5p+5 1 31429000 gamma gamma electron -373 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.83506b0bfdb8cp-18 49 0x1.b02ff0f43f029p+5 1 31429000 gamma gamma electron -374 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 37 0x1.6dc8e9d628685p-18 37 0x1.8bfe5a75361b4p+5 1 31429000 gamma gamma electron -375 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 51 0x1.a82230858bf1ap-18 77 0x1.61be32723fcbfp+5 1 31429000 gamma gamma electron -377 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 61 0x1.3d4a908077133p-16 77 0x1.c9f271b733e8cp+5 1 31429000 gamma gamma electron -378 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 21 0x1.cd36f102db6cp-18 20 0x1.4493b4f5512a7p+5 1 31429000 gamma gamma electron -380 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 73 0x1.94ef1334469dep-18 63 0x1.5609bf2103698p+5 1 31429000 gamma gamma electron -384 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 51 0x1.a97fd9a8d72e5p-18 53 0x1.6c1d3225445fdp+5 1 31429000 gamma gamma electron -385 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 48 0x1.93111bd03dab6p-17 57 0x1.450b239063797p+5 1 31429000 gamma gamma electron -388 0x1.eb851eb851eb9p-5 0x1.ae2659db83a0cp-6 42 0x1.9fefa0904d6cap-13 28 0x1.8015dde373a22p+5 1 31429000 gamma gamma electron -392 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 61 0x1.a1abbfd094b64p-18 61 0x1.8b44361b6b924p+5 1 31429000 gamma gamma electron -394 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 62 0x1.839f9b08b415ep-18 55 0x1.15779f8c4460bp+5 1 31429000 gamma gamma electron -396 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 27 0x1.61c521f9d042ap-18 33 0x1.79a3be99b9ff8p+5 1 31429000 gamma gamma electron -400 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.48e6915a52754p-15 57 0x1.4b4bd8c589716p+5 1 31429000 gamma gamma electron -402 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 42 0x1.7f69610ca5a44p-18 32 0x1.86ad9a7352f36p+5 1 31429000 gamma gamma electron -404 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.71796634a47b6p-18 31 0x1.2a04e25a274f8p+5 1 31429000 gamma gamma electron -405 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 72 0x1.42331287056c2p-15 57 0x1.b3ade5c19dc5ep+5 1 31429000 gamma gamma electron -406 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 49 0x1.64aabdbf87292p-8 128 0x1.7cdbda2a8381bp+5 1 31429000 gamma gamma electron -409 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 61 0x1.08524fd5f9c29p-17 60 0x1.8504a7567f51ap+5 1 31429000 gamma gamma electron -412 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.154a38889327p-15 60 0x1.1e045fc23565p+5 1 31429000 gamma gamma electron -418 0x1.eb851eb851eb9p-5 0x1.49e994d9b203bp-7 6 0x1.50da9395840a1p-17 11 0x1.9e566495e6309p+5 1 31429000 gamma gamma electron -422 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 52 0x1.054676fa67792p-17 56 0x1.86e9e8acbc08p+5 1 31429000 gamma gamma electron -424 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 44 0x1.80ab617337ef5p-18 63 0x1.b16d2d5d67187p+5 1 31429000 gamma gamma electron -425 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 58 0x1.51479ff824b78p-18 49 0x1.6684166b53bccp+5 1 31429000 gamma gamma electron -432 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 55 0x1.62dd808d02136p-18 77 0x1.96b640ba8ae18p+5 1 31429000 gamma gamma electron -433 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 39 0x1.06c9204575dc8p-13 32 0x1.755267de5d98p+5 1 31429000 gamma gamma electron -440 0x1.eb851eb851eb9p-5 0x1.29c4221f492f8p-6 37 0x1.1e569fd5d8cp-16 20 0x1.02b408d7e22fdp+5 1 31429000 e- electron -441 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 31 0x1.25777401382cap-14 31 0x1.beede7b805126p+5 1 31429000 gamma gamma electron -442 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.21b134521ee31p-17 63 0x1.2994b015cc1c1p+5 1 31429000 gamma gamma electron -444 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 64 0x1.836538e5c6367p-18 59 0x1.a58a6d0fd4003p+5 1 31429000 gamma gamma electron -445 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 34 0x1.a9b47caf272d9p-16 23 0x1.01b0c3eaddcdap+5 1 31429000 gamma gamma electron -447 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 22 0x1.b69521f1c013ep-17 22 0x1.786f51a292f98p+4 1 31429000 gamma gamma electron -449 0x1.eb851eb851eb9p-5 0x1.96ca31e652f23p-6 30 0x1.ef7edb909a706p-14 27 0x1.8801607431534p+5 1 31429000 e- electron -452 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.0779abea8e974p-17 42 0x1.3ea766218417ap+5 1 31429000 gamma gamma electron -456 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.2576e9b035ae4p-17 50 0x1.7b13c18537238p+5 1 31429000 gamma gamma electron -460 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 45 0x1.db4846c52041dp-15 66 0x1.9308ad87c02c4p+5 1 31429000 gamma gamma electron -469 0x1.eb851eb851eb9p-5 0x1.672ead9274e21p-5 42 0x1.6ef6b2a826084p-16 29 0x1.2d3d6b4007feep+5 1 31429000 gamma gamma electron -470 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 46 0x1.41d333a1f5f4bp-13 52 0x1.56056a3d54a96p+5 1 31429000 gamma gamma electron -472 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 38 0x1.a2357886fc044p-18 63 0x1.8b945a2b7fb83p+5 1 31429000 gamma gamma electron -473 0x1.eb851eb851eb9p-5 0x1.686437b7fd31ep-5 53 0x1.19589a4a1fce5p-15 47 0x1.a47cc240f5463p+5 1 31429000 gamma gamma electron -476 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 69 0x1.5971e6f9698f4p-17 51 0x1.8380da7333a62p+5 1 31429000 gamma gamma electron -482 0x1.eb851eb851eb9p-5 0x1.a34ca0c282c72p-6 26 0x1.d391d49bfb584p-17 29 0x1.b7e3d60a39748p+5 1 31429000 gamma gamma electron -485 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 19 0x1.3918e57e6f272p-16 29 0x1.5c3e79cef605bp+5 1 31429000 gamma gamma electron -490 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 28 0x1.608eab89740b3p-18 33 0x1.3ef251723dd77p+5 1 31429000 gamma gamma electron -491 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.16218a7b7ad1ap-17 45 0x1.62467e7ceea48p+5 1 31429000 gamma gamma electron -493 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 56 0x1.a05607b4bb2e9p-16 56 0x1.51ae3457ec80dp+5 1 31429000 gamma gamma electron -495 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 28 0x1.8a57dcba14c26p-18 24 0x1.6f8466c7fafdcp+5 1 31429000 gamma gamma electron -499 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 24 0x1.47c9b651a3fcp-10 33 0x1.d7cd062d1a1fbp+5 1 31429000 gamma gamma electron -500 0x1.eb851eb851eb9p-5 0x1.50aea3ecd9b2ap-5 42 0x1.09e38b7681b16p-9 114 0x1.63e16b6b2cb3dp+5 1 31429000 gamma gamma electron -508 0x1.eb851eb851eb9p-5 0x1.a34ca0c282c6fp-6 18 0x1.293c2bae957b9p-16 23 0x1.a8fc4c3fc5c14p+5 1 31429000 gamma gamma electron -510 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 50 0x1.4ff914b42058bp-18 45 0x1.a075174753f41p+5 1 31429000 gamma gamma electron -512 0x1.eb851eb851eb9p-5 0x1.d199d47307844p-6 43 0x1.f032962bc5c7ap-13 25 0x1.4fc95811ad83dp+5 1 31429000 e- electron -513 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 44 0x1.6d417ce63bb68p-18 61 0x1.62e043276f2dep+5 1 31429000 gamma gamma electron -516 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.eec5b4164f673p-18 49 0x1.a5ef31b8a264cp+5 1 31429000 gamma gamma electron -520 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 44 0x1.5aa6afed97465p-18 55 0x1.533214f4e13cp+5 1 31429000 gamma gamma electron -525 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.e6aefb3ddc456p-18 20 0x1.b3853c678ead1p+4 1 31429000 gamma gamma electron -527 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebdp-5 53 0x1.9b55da8cbe5a3p-15 58 0x1.670a95e22a60ap+5 1 31429000 gamma gamma electron -528 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 58 0x1.b4f75f73232b1p-17 54 0x1.c6a57f020b0a6p+5 1 31429000 gamma gamma electron -531 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 83 0x1.bab8dd326464dp-14 50 0x1.5f524c95c2612p+5 1 31429000 gamma gamma electron -534 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 42 0x1.5ef0727404c9dp-10 106 0x1.57d8706c490a6p+5 1 31429000 gamma gamma electron -535 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.5f8d95fc154c2p-18 58 0x1.a28ef20371015p+5 1 31429000 gamma gamma electron -536 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 25 0x1.f4731ad2ed3afp-17 25 0x1.612f38bd88c88p+5 1 31429000 gamma gamma electron -537 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.6f25345ec78f6p-18 66 0x1.57eb7e3aa72cep+5 1 31429000 gamma gamma electron -543 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.d38cf5868837p-10 156 0x1.6d061229d1cafp+5 1 31429000 gamma gamma electron -546 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 66 0x1.b4296520b03cp-18 53 0x1.88d24be2b223cp+5 1 31429000 gamma gamma electron -547 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 51 0x1.a05fc9b221b94p-18 80 0x1.5b00698d3949dp+5 1 31429000 gamma gamma electron -548 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 39 0x1.7b3cb982c33bbp-17 52 0x1.881b4df8307f4p+5 1 31429000 gamma gamma electron -549 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 35 0x1.53c6e6e7bda62p-17 65 0x1.006cf00723c7ap+5 1 31429000 gamma gamma electron -564 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.71786315c2605p-17 43 0x1.512f402a5f6d4p+5 1 31429000 gamma gamma electron -569 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 16 0x1.21f75efcf4705p-17 25 0x1.d4f96b552dc75p+5 1 31429000 gamma gamma electron -574 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 56 0x1.5f6e9eee3b002p-18 72 0x1.5f65ddb528aeap+5 1 31429000 gamma gamma electron -576 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 46 0x1.91eac9ff5cddbp-10 144 0x1.82172c0b3f161p+5 1 31429000 gamma gamma electron -577 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 38 0x1.6c277e1d8b51ap-9 141 0x1.79f1e26d49f51p+5 1 31429000 gamma gamma electron -579 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 64 0x1.611c3cb896cfcp-18 52 0x1.ab7d5f8269c83p+5 1 31429000 gamma gamma electron -580 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.8b4d0fbaa812dp-18 57 0x1.ce2fd9754d23ep+5 1 31429000 gamma gamma electron -590 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 47 0x1.b2eb48434e897p-18 64 0x1.62d9cb191512bp+5 1 31429000 gamma gamma electron -591 0x1.eb851eb851eb9p-5 0x1.be85e22cb0625p-7 16 0x1.93c41e7f53d7cp-16 14 0x1.5d45add0305ecp+5 1 31429000 gamma gamma electron -593 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 21 0x1.cfcf97d17ac2p-18 30 0x1.6d2cda9aa4c39p+5 1 31429000 gamma gamma electron -594 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.676c6c6be8f16p-18 51 0x1.8650e053f7b3cp+5 1 31429000 gamma gamma electron -595 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 55 0x1.aafaf594b5bfep-17 72 0x1.64d85373d959ep+5 1 31429000 gamma gamma electron -602 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 44 0x1.056b9e4d46b29p-15 32 0x1.4d447539e5cd7p+5 1 31429000 gamma gamma electron -605 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.591e5e71bf3c2p-18 66 0x1.72bebf5ae194bp+5 1 31429000 gamma gamma electron -614 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 60 0x1.e8de54142221cp-18 67 0x1.89beb37d6a15fp+5 1 31429000 gamma gamma electron -615 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 62 0x1.d5366f13599ep-16 59 0x1.5e814cd6fd8d6p+5 1 31429000 gamma gamma electron -624 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 60 0x1.82ed763459dddp-18 47 0x1.44a9f7bb4e4ffp+5 1 31429000 gamma gamma electron -625 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e9193p-6 26 0x1.9b5d01d7744bdp-18 23 0x1.87f063ad3540dp+5 1 31429000 gamma gamma electron -630 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 27 0x1.a00e1a0e988aap-18 27 0x1.787ad33ead2c3p+5 1 31429000 gamma gamma electron -632 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 33 0x1.30de8bc4d8fa5p-17 26 0x1.509f2a11f9c1bp+5 1 31429000 gamma gamma electron -633 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 34 0x1.967429f3c315dp-16 27 0x1.f1a9744585352p+5 1 31429000 gamma gamma electron -634 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 53 0x1.03cd11f1325cfp-17 52 0x1.75061570b13eap+5 1 31429000 gamma gamma electron -636 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.19d4031f6618ap-16 57 0x1.ba2fbcd0a2815p+5 1 31429000 gamma gamma electron -644 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.09e3c02fbcb1ap-9 69 0x1.ca907d13c1484p+5 1 31429000 gamma gamma electron -647 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 74 0x1.12fcbfd7edb4p-9 61 0x1.6120539d9757ap+5 1 31429000 gamma gamma electron -651 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 69 0x1.6abf2ffb36267p-18 59 0x1.14d366f1bf4d5p+5 1 31429000 gamma gamma electron -652 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.85f2dd3bafbe5p-18 26 0x1.00c67aa486dep+5 1 31429000 gamma gamma electron -661 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.381367c880524p-17 33 0x1.68f21f65b4cb5p+5 1 31429000 gamma gamma electron -662 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.1dec7fe361cd5p-17 50 0x1.c4c23fe4b1d1ep+5 1 31429000 gamma gamma electron -663 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 56 0x1.1b74f88069091p-16 62 0x1.52ba3e7b116bdp+5 1 31429000 gamma gamma electron -670 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 45 0x1.5888f11932c42p-18 62 0x1.5f7c966426b8dp+5 1 31429000 gamma gamma electron -675 0x1.eb851eb851eb9p-5 0x1.7300e3e2b079dp-7 24 0x1.30d251922abdep-15 10 0x1.4e95b4657a928p+5 1 31429000 e- electron -681 0x1.eb851eb851eb9p-5 0x1.3a140aa35f17dp-5 48 0x1.769b34c52a55ap-14 42 0x1.90ba914276c3ap+5 1 31429000 gamma gamma electron -684 0x1.eb851eb851eb9p-5 0x1.b8928324e30e3p-7 19 0x1.3f20ce11e71bfp-12 10 0x1.64a6ecd9bfdd1p+5 1 31429000 gamma gamma electron -688 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 76 0x1.9e7d2e252aa5dp-18 50 0x1.7657bc05eefabp+5 1 31429000 gamma gamma electron -689 0x1.eb851eb851eb9p-5 0x1.8acf8a81225b6p-6 55 0x1.43deda741e591p-17 22 0x1.2df562e88b70fp+5 1 31429000 gamma gamma electron -693 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 36 0x1.10fd55a0f2bbfp-16 21 0x1.53169f93d2323p+5 1 31429000 gamma gamma electron -696 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 67 0x1.88cd3e63ec9a6p-17 53 0x1.19757ef64aff2p+5 1 31429000 gamma gamma electron -701 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 54 0x1.7f789179dfb42p-10 154 0x1.840117b88aa42p+5 1 31429000 gamma gamma electron -705 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 71 0x1.f58d295ac9454p-10 162 0x1.6351c4f157011p+5 1 31429000 gamma gamma electron -707 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dc9p-6 25 0x1.bc0a20b7c59d4p-18 30 0x1.1a31eea76ba9fp+6 1 31429000 gamma gamma electron -709 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 33 0x1.32911b038c77fp-16 24 0x1.927a0ddd3b387p+5 1 31429000 gamma gamma electron -711 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.978923413b978p-18 59 0x1.7f5422c6441d3p+5 1 31429000 gamma gamma electron -714 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 49 0x1.887baf8a4f914p-18 65 0x1.65cbe95c53dc9p+5 1 31429000 gamma gamma electron -716 0x1.eb851eb851eb9p-5 0x1.07484ee2b3ae6p-5 41 0x1.8e38e6b561828p-17 32 0x1.d3850200b5666p+5 1 31429000 gamma gamma electron -717 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 44 0x1.49aecad4eceaap-17 26 0x1.8092c88c55641p+5 1 31429000 gamma gamma electron -721 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 22 0x1.85d03197dc11fp-17 31 0x1.985cbcaade145p+5 1 31429000 gamma gamma electron -725 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 65 0x1.b1c6945e8d18p-18 53 0x1.72f1131829a19p+5 1 31429000 gamma gamma electron -727 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.6bc24301e4b54p-10 84 0x1.5bd845e33be64p+5 1 31429000 gamma gamma electron -729 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcfp-6 28 0x1.4e6f52bc63392p-16 24 0x1.474933afc03a8p+5 1 31429000 gamma gamma electron -733 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebdp-5 75 0x1.f04fdd4e1bd5ap-18 58 0x1.1751ee4b33b93p+5 1 31429000 gamma gamma electron -737 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 70 0x1.aa5cdd1323dbap-17 49 0x1.3e19a95b76987p+5 1 31429000 gamma gamma electron -742 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 72 0x1.5689f74ab3808p-18 55 0x1.b8419cf58511cp+5 1 31429000 gamma gamma electron -743 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 49 0x1.156d5f7e37afbp-9 87 0x1.a48d39bdfaecdp+5 1 31429000 gamma gamma electron -744 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 26 0x1.69a0e049c8ad3p-17 32 0x1.2064391c8f683p+5 1 31429000 gamma gamma electron -749 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.731054925e3eap-17 32 0x1.37fb37eed17adp+5 1 31429000 gamma gamma electron -751 0x1.eb851eb851eb9p-5 0x1.33e67d739fee3p-6 37 0x1.99477c63a5b65p-11 18 0x1.6f4622557285ep+5 1 31429000 gamma gamma electron -753 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 70 0x1.95239af567d58p-16 56 0x1.77df45d88cfbep+5 1 31429000 gamma gamma electron -755 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 61 0x1.9ba440efc4b48p-18 64 0x1.7d0e7790b64dep+5 1 31429000 gamma gamma electron -756 0x1.eb851eb851eb9p-5 0x1.76deef0e4034ap-5 45 0x1.ba2c7360b90ecp-18 44 0x1.5a1a6a74763d7p+5 1 31429000 gamma gamma electron -758 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebep-5 65 0x1.68afd6b38a9a9p-10 72 0x1.3430cd0046c3dp+5 1 31429000 gamma gamma electron -759 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 48 0x1.7c76c397c9788p-17 54 0x1.4679888c7b01p+5 1 31429000 gamma gamma electron -760 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 29 0x1.9dd9e15212551p-10 80 0x1.6ef35e0f5462fp+5 1 31429000 gamma gamma electron -762 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 67 0x1.67fafcf79506ap-18 48 0x1.1eb169f29ad3dp+5 1 31429000 gamma gamma electron -764 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 60 0x1.ff2b130d13e34p-18 58 0x1.6e7cd6551991ap+5 1 31429000 gamma gamma electron -765 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 66 0x1.0ed2c4ee2933cp-17 48 0x1.33db64887f3d1p+5 1 31429000 gamma gamma electron -767 0x1.eb851eb851eb9p-5 0x1.be85e22cb0623p-7 16 0x1.576307331d9b9p-12 10 0x1.aaa68af20ba0ep+5 1 31429000 gamma gamma electron -768 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.57033f179327p-15 58 0x1.cabdb8605fa61p+5 1 31429000 gamma gamma electron -771 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.7c205f0d3c295p-18 63 0x1.379a52ecf1783p+5 1 31429000 gamma gamma electron -772 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 32 0x1.d67e393aa0332p-13 20 0x1.19e105fb856a8p+5 1 31429000 gamma gamma electron -773 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 52 0x1.848b22e21a9f9p-18 73 0x1.6cd5d510d5b91p+5 1 31429000 gamma gamma electron -774 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 65 0x1.6a31260bb6ap-17 59 0x1.a58a084c7f3edp+5 1 31429000 gamma gamma electron -776 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.aeeb1416ee71cp-18 72 0x1.5055fd83cf3b6p+5 1 31429000 gamma gamma electron -777 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 64 0x1.2b6b2eab33555p-17 46 0x1.a8511a812a6dfp+4 1 31429000 gamma gamma electron -780 0x1.eb851eb851eb9p-5 0x1.a113e15e5449p-6 22 0x1.6d10456674124p-18 26 0x1.aed4e549e5208p+5 1 31429000 gamma gamma electron -781 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dd1p-6 29 0x1.93c2323d091c9p-15 31 0x1.cbc7fffae232fp+5 1 31429000 gamma gamma electron -791 0x1.eb851eb851eb9p-5 0x1.baaeb29a46e9fp-5 50 0x1.06de761948a63p-13 43 0x1.c48224cb68f9p+5 1 31429000 e- electron -794 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 57 0x1.7d8f13fa149b4p-18 75 0x1.9db1145fc864cp+5 1 31429000 gamma gamma electron -798 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 39 0x1.5ba725b9f5768p-15 23 0x1.9cc4109cbeae6p+5 1 31429000 gamma gamma electron -803 0x1.eb851eb851eb9p-5 0x1.9600b0a947ddbp-5 61 0x1.adadc443e3ef7p-17 43 0x1.5071d2e2a550bp+5 1 31429000 gamma gamma electron -804 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 54 0x1.51e1d2e9183bfp-18 72 0x1.af142060a0c37p+5 1 31429000 gamma gamma electron -806 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 17 0x1.52d95d019a0c8p-18 34 0x1.547fb2e728dc3p+5 1 31429000 gamma gamma electron -810 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 31 0x1.0879ef5a4256ap-15 30 0x1.548be209f218cp+5 1 31429000 gamma gamma electron -813 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 37 0x1.cce023e99618p-18 22 0x1.327f50ef70b1dp+5 1 31429000 gamma gamma electron -818 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 25 0x1.5e1bb5d6fc63p-18 22 0x1.4d0f9c2dbd123p+5 1 31429000 gamma gamma electron -820 0x1.eb851eb851eb9p-5 0x1.b00e5024db818p-6 20 0x1.b661ebe12e0f8p-18 24 0x1.27170508c7165p+5 1 31429000 gamma gamma electron -824 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 63 0x1.7af36cf581a86p-10 64 0x1.5da18ab0268edp+5 1 31429000 gamma gamma electron -826 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 58 0x1.a1a0ef570edebp-18 53 0x1.499eda8cd213fp+5 1 31429000 gamma gamma electron -834 0x1.eb851eb851eb9p-5 0x1.b00e5024db81bp-6 27 0x1.06665ec7fcddbp-17 23 0x1.6ae39f17faf13p+5 1 31429000 gamma gamma electron -836 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 54 0x1.054414b4e85ccp-16 58 0x1.cafc2d53cfffp+5 1 31429000 gamma gamma electron -838 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 35 0x1.d92b3068f2d69p-18 23 0x1.abca2be727b6ap+5 1 31429000 gamma gamma electron -845 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.675af76b87e3p-16 66 0x1.9acefd9cc24cep+5 1 31429000 gamma gamma electron -846 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.f7d669faf48d9p-18 25 0x1.b7ee3cd38c2e1p+5 1 31429000 gamma gamma electron -851 0x1.eb851eb851eb9p-5 0x1.bda7037fb7192p-5 51 0x1.6ae547da56c1ap-11 46 0x1.752cc92234d24p+5 1 31429000 gamma gamma electron -852 0x1.eb851eb851eb9p-5 0x1.0d774c67b79f3p-6 22 0x1.d7b6d103e7ee8p-15 19 0x1.3da00ce9efcedp+5 1 31429000 gamma gamma electron -853 0x1.eb851eb851eb9p-5 0x1.2977ab57002b6p-5 46 0x1.b84a138108c62p-17 32 0x1.d1cebc4f0aa42p+5 1 31429000 e- electron -854 0x1.eb851eb851eb9p-5 0x1.4c08ed0e8bb43p-6 20 0x1.fa5c378759eb3p-17 22 0x1.890e4af578032p+5 1 31429000 gamma gamma electron -858 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 68 0x1.91322eddce0a2p-17 56 0x1.340e57a5e3972p+5 1 31429000 gamma gamma electron -864 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.021d9ba96e22fp-9 182 0x1.6851af4d80f67p+5 1 31429000 gamma gamma electron -865 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 47 0x1.a931899a5f2e3p-17 49 0x1.6204ed8eeda52p+5 1 31429000 gamma gamma electron -869 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 39 0x1.1df5df3de8079p-14 23 0x1.fab1cd918532p+4 1 31429000 gamma gamma electron -873 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.d02f33e38f543p-17 43 0x1.3364ca2ee2a92p+5 1 31429000 gamma gamma electron -875 0x1.eb851eb851eb9p-5 0x1.b00e5024db81dp-6 21 0x1.74132d0445e14p-16 37 0x1.ab170f515516ep+5 1 31429000 gamma gamma electron -876 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 33 0x1.c22b39593daa4p-14 29 0x1.8500ed7481809p+5 1 31429000 gamma gamma electron -877 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.82620e546e0a3p-18 55 0x1.1f4a6c11c907p+5 1 31429000 gamma gamma electron -880 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 49 0x1.60320483cc692p-18 65 0x1.385ec4dece9a2p+5 1 31429000 gamma gamma electron -882 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 38 0x1.b2230dffed7efp-14 35 0x1.8340ce2bbef22p+5 1 31429000 gamma gamma electron -884 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.c8c3ad17cc7e4p-9 108 0x1.75d748b209748p+5 1 31429000 gamma gamma electron -888 0x1.eb851eb851eb9p-5 0x1.b00e5024db819p-6 29 0x1.2ae8db33828fap-16 22 0x1.3b678e88506c8p+5 1 31429000 gamma gamma electron -889 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 65 0x1.3d842643e1fa5p-17 73 0x1.7190a6867237fp+5 1 31429000 gamma gamma electron -892 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 38 0x1.584c4c5b7661dp-17 30 0x1.a9070ff771bacp+5 1 31429000 gamma gamma electron -894 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 46 0x1.762024beb9a53p-18 25 0x1.9dff5ddad5908p+5 1 31429000 gamma gamma electron -896 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 71 0x1.7021babbf695bp-10 150 0x1.789cfa393bd57p+5 1 31429000 gamma gamma electron -900 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 57 0x1.4eb0ee06e8f92p-10 65 0x1.513318ef0a557p+5 1 31429000 gamma gamma electron -901 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 69 0x1.84c1de9c6d41ap-16 40 0x1.6bae3ce186d88p+5 1 31429000 gamma gamma electron -905 0x1.eb851eb851eb9p-5 0x1.4c08ed0e8bb4p-6 20 0x1.05e02c7e2917ep-14 13 0x1.d8696d73462aap+4 1 31429000 gamma gamma electron -906 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 29 0x1.053e9a448ee22p-16 27 0x1.849a5ac20e505p+5 1 31429000 gamma gamma electron -914 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 54 0x1.6e4c5cb9063b3p-18 52 0x1.adb736ab8e6b1p+5 1 31429000 gamma gamma electron -916 0x1.eb851eb851eb9p-5 0x1.b116228134481p-6 24 0x1.3d1b109a65ad8p-16 23 0x1.ceba7fc48a801p+4 1 31429000 gamma gamma electron -924 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 63 0x1.c342157c09c3fp-18 54 0x1.b3acf9443a438p+5 1 31429000 gamma gamma electron -925 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 49 0x1.889492c49bbe9p-10 66 0x1.7276e8a813c9ep+5 1 31429000 gamma gamma electron -936 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 65 0x1.5528b9f679c9ep-18 64 0x1.35bf18780e202p+5 1 31429000 gamma gamma electron -939 0x1.eb851eb851eb9p-5 0x1.b00e5024db81ap-6 31 0x1.e2d9cfe72c0ecp-18 34 0x1.b3b1bfca2a1c8p+5 1 31429000 gamma gamma electron -940 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dc9p-6 22 0x1.f7a59da339d71p-18 32 0x1.b6e4fc662956dp+5 1 31429000 gamma gamma electron -943 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.50e0aceec9001p-16 38 0x1.a47565c68602bp+5 1 31429000 gamma gamma electron -945 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 73 0x1.0860d33fb8b64p-9 61 0x1.681fb06e822cdp+5 1 31429000 gamma gamma electron -947 0x1.eb851eb851eb9p-5 0x1.595ae3212765cp-5 55 0x1.fe1a8b6156926p-14 53 0x1.43d31e8d617c4p+5 1 31429000 gamma gamma electron -948 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 56 0x1.2fd9ebc147137p-17 59 0x1.74490a084198ap+5 1 31429000 gamma gamma electron -951 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 40 0x1.96c09e2b6cd47p-15 28 0x1.3939893e1b2dep+5 1 31429000 gamma gamma electron -956 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 28 0x1.70369d5267893p-14 22 0x1.57478fb3b4986p+5 1 31429000 gamma gamma electron -960 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 25 0x1.b8fd790925441p-16 19 0x1.2a568e538d959p+5 1 31429000 gamma gamma electron -964 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 65 0x1.08ee424ff51a8p-16 52 0x1.5ffc36802d3f9p+5 1 31429000 gamma gamma electron -971 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.2276defb17185p-9 136 0x1.53f3e2ecc6a9bp+5 1 31429000 gamma gamma electron -975 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 28 0x1.1a0073a623a0ap-14 29 0x1.049260e548495p+5 1 31429000 gamma gamma electron -977 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 28 0x1.911facac923ap-17 26 0x1.5fe7f14078cddp+5 1 31429000 gamma gamma electron -978 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 40 0x1.1d83682805207p-14 27 0x1.66e991048f482p+5 1 31429000 gamma gamma electron -987 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.d55369d54e66ep-18 70 0x1.454f5d55a194p+5 1 31429000 gamma gamma electron -988 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 57 0x1.6d42b3c3dea26p-9 55 0x1.564cd822422b2p+5 1 31429000 gamma gamma electron -989 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 35 0x1.7b840858fcfe6p-18 34 0x1.6bf3ca6711d0ap+5 1 31429000 gamma gamma electron -990 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 67 0x1.5416b07a4e43fp-18 79 0x1.93a107e036677p+5 1 31429000 gamma gamma electron -997 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.95b95290f917bp-18 55 0x1.6bb87716aac0fp+5 1 31429000 gamma gamma electron -998 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 31 0x1.4d3443cade923p-17 23 0x1.84b8ff357913p+5 1 31429000 gamma gamma electron +3 0.0600 0.0600 66 0x1.4f6fc8c708fa8p-15 54 0x1.382377b3d35bep+5 1 10105096 gamma gamma electron +5 0x1.eb851eb851eb9p-5 0x1.b116228134481p-6 24 0x1.30809e8074632p-15 22 0x1.384d91212ec7ap+5 1 10105096 gamma gamma electron +9 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 20 0x1.d734ca6f87d53p-14 28 0x1.d339b12d58062p+5 1 10105096 gamma gamma electron +14 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 59 0x1.6f517820463f2p-18 52 0x1.c93301b20aeb2p+5 1 10105096 gamma gamma electron +22 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.2b1cb06e9aef7p-10 57 0x1.7e73e500da077p+5 1 10105096 gamma gamma electron +28 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 27 0x1.b6dd046de66ebp-17 20 0x1.975e0d6280108p+5 1 10105096 gamma gamma electron +30 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.e223592ae219fp-18 47 0x1.541dc3e1ca937p+5 1 10105096 gamma gamma electron +35 0x1.eb851eb851eb9p-5 0x1.430bee4acbd65p-5 44 0x1.31b96ae605e99p-17 22 0x1.a23997fb7ecf1p+5 1 10105096 gamma gamma electron +37 0x1.eb851eb851eb9p-5 0x1.04e09015551aap-7 10 0x1.7a415f64c52cap-10 142 0x1.2c7defa5f2f7ep+5 1 10105096 gamma gamma electron +38 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.9f5f2b8c1b6a5p-10 63 0x1.7830090ea0548p+5 1 10105096 gamma gamma electron +39 0x1.eb851eb851eb9p-5 0x1.26c7554ecd418p-6 24 0x1.933d729fd3a4bp-16 19 0x1.6d9d1421c31c7p+5 1 10105096 gamma gamma electron +40 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 51 0x1.6f6c333c49d82p-18 59 0x1.5c624f30c7ddbp+5 1 10105096 gamma gamma electron +41 0x1.eb851eb851eb9p-5 0x1.76213bad5f9a4p-6 32 0x1.358ac3e8d8199p-13 22 0x1.f1c48b11c1639p+5 1 10105096 gamma gamma electron +45 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 49 0x1.6136c8fd827bcp-17 49 0x1.faa52ae8f918p+4 1 10105096 gamma gamma electron +46 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 57 0x1.0d11644ae2262p-17 52 0x1.7aa68cc12d7ddp+5 1 10105096 gamma gamma electron +56 0x1.eb851eb851eb9p-5 0x1.70043d2e74e38p-5 47 0x1.391aa76ba8dc8p-12 46 0x1.4c8a877fc026p+5 1 10105096 gamma gamma electron +59 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.c30e4fcba7009p-18 53 0x1.65ab6929030d3p+5 1 10105096 gamma gamma electron +62 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 13 0x1.a740ab8df6be4p-17 30 0x1.4f2328c2245cbp+5 1 10105096 gamma gamma electron +63 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 45 0x1.c14139b72af5dp-18 71 0x1.7a205e28924c8p+5 1 10105096 gamma gamma electron +64 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dd1p-6 33 0x1.ef90443cc0945p-17 25 0x1.6b4013dcf7776p+5 1 10105096 gamma gamma electron +66 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 43 0x1.b1167ff3043afp-18 90 0x1.71b051cff45b3p+5 1 10105096 gamma gamma electron +68 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 45 0x1.6ddd34bacdbaep-10 176 0x1.5ade2df69199ep+5 1 10105096 gamma gamma electron +69 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 58 0x1.1d9ef2d3effafp-17 54 0x1.2649fb40614c9p+5 1 10105096 gamma gamma electron +72 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 64 0x1.7660d4400a31ep-17 60 0x1.a1d13355242ebp+5 1 10105096 gamma gamma electron +74 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 65 0x1.9f6a202ac3fc3p-17 54 0x1.9477f1a640e2dp+5 1 10105096 gamma gamma electron +79 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 39 0x1.281a42ec441b1p-17 50 0x1.4f0e5f2347414p+5 1 10105096 gamma gamma electron +84 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.f209c584dedf7p-18 78 0x1.752f4e13563c2p+5 1 10105096 gamma gamma electron +85 0x1.eb851eb851eb9p-5 0x1.24da1e8343199p-6 17 0x1.f6384b9a04819p-18 18 0x1.6b953f0c3b735p+5 1 10105096 gamma gamma electron +87 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 32 0x1.10dd271fa9092p-17 37 0x1.a4bb7e56e2ee8p+5 1 10105096 gamma gamma electron +91 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 57 0x1.6b5c95595d762p-8 137 0x1.339ad044e7941p+5 1 10105096 gamma gamma electron +92 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 54 0x1.308afc89610e2p-15 61 0x1.a8727e6d3c881p+5 1 10105096 gamma gamma electron +93 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 58 0x1.206eee994eb57p-17 65 0x1.84c5d2fadd756p+5 1 10105096 gamma gamma electron +100 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 30 0x1.8d4fa61b3286cp-18 36 0x1.b73c177ae80f8p+5 1 10105096 gamma gamma electron +103 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 67 0x1.d83ff976b24a8p-17 45 0x1.c35800017baefp+5 1 10105096 gamma gamma electron +104 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 55 0x1.8753d7ebcdc13p-18 58 0x1.7778b1446794ep+5 1 10105096 gamma gamma electron +105 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 26 0x1.64f5b44c30d31p-16 25 0x1.50cc052da9fecp+5 1 10105096 gamma gamma electron +110 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.d6a1d9fec718bp-17 72 0x1.4a36d392169aep+5 1 10105096 gamma gamma electron +113 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 58 0x1.e6113cd4beeaep-18 61 0x1.393175f57858ap+5 1 10105096 gamma gamma electron +114 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 56 0x1.759f621d78334p-18 66 0x1.7b1c32ff81344p+5 1 10105096 gamma gamma electron +117 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 80 0x1.bf9a08ccf920bp-16 62 0x1.73545cf42d859p+5 1 10105096 gamma gamma electron +118 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 62 0x1.4777c0df7d3ddp-17 64 0x1.5e8a32bf79afbp+5 1 10105096 gamma gamma electron +119 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 62 0x1.3f590b0859761p-17 67 0x1.caa1fa2774bbep+5 1 10105096 gamma gamma electron +120 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 29 0x1.bc3feb4380406p-16 27 0x1.15de3354d6aabp+6 1 10105096 gamma gamma electron +121 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 57 0x1.74efb85768fa9p-18 43 0x1.52e6850a723ccp+5 1 10105096 gamma gamma electron +127 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 61 0x1.7280ad275d63bp-18 55 0x1.6a45bb2a846eep+5 1 10105096 gamma gamma electron +130 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 20 0x1.7bdc76d62ef39p-18 23 0x1.0a9ffb9d151ap+6 1 10105096 gamma gamma electron +131 0x1.eb851eb851eb9p-5 0x1.96973d49aa813p-7 12 0x1.2249f87f71516p-13 13 0x1.3a7cf6743ade9p+5 1 10105096 gamma gamma electron +137 0x1.eb851eb851eb9p-5 0x1.b11622813448p-6 30 0x1.c3eb0e1b14e7p-18 19 0x1.4e97266dcb701p+5 1 10105096 gamma gamma electron +140 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 64 0x1.b048d751382f6p-17 66 0x1.3c99fdee57062p+5 1 10105096 gamma gamma electron +141 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 53 0x1.6b7c0f64d1071p-18 72 0x1.59a50809c704fp+5 1 10105096 gamma gamma electron +142 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.600173cac3494p-16 67 0x1.45278d2bdf3f4p+5 1 10105096 gamma gamma electron +143 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 58 0x1.29254a9d03d43p-10 66 0x1.4a98939231021p+5 1 10105096 gamma gamma electron +145 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 49 0x1.993207a605485p-18 44 0x1.bc2f7468d4ca9p+5 1 10105096 gamma gamma electron +146 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 33 0x1.4784d715fe81fp-16 29 0x1.f77fbe9e87fe5p+5 1 10105096 gamma gamma electron +147 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 70 0x1.3633c6e26c8b5p-17 68 0x1.93cf93ccec301p+5 1 10105096 gamma gamma electron +149 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 55 0x1.aebe8055d04bfp-18 51 0x1.5a5476f7847f8p+5 1 10105096 gamma gamma electron +150 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 24 0x1.28a12e30040e2p-9 78 0x1.8f4b1d91f76a4p+5 1 10105096 gamma gamma electron +155 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 84 0x1.e8077ffd97e72p-17 38 0x1.762a58fe68d64p+5 1 10105096 gamma gamma electron +157 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 73 0x1.6b8da19688ab6p-16 53 0x1.c81bbb68a7d5ap+5 1 10105096 gamma gamma electron +158 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.21cfc7ab99e41p-17 74 0x1.5742994fefe32p+5 1 10105096 gamma gamma electron +160 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 20 0x1.d0e4d7140240ep-16 20 0x1.8f20d20efe804p+5 1 10105096 gamma gamma electron +163 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.176a9c2dfdc12p-17 51 0x1.6dcd493eab83fp+5 1 10105096 gamma gamma electron +165 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.78332bd35a5eep-17 74 0x1.3090b0f05f5d2p+5 1 10105096 gamma gamma electron +166 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.216878f586455p-8 67 0x1.8a2bc08bbb5bcp+5 1 10105096 gamma gamma electron +167 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 32 0x1.1ac7258623df8p-14 17 0x1.cb454c1b37fd9p+5 1 10105096 gamma gamma electron +168 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 36 0x1.2f15518948302p-16 23 0x1.6ccdc9086fc3dp+5 1 10105096 gamma gamma electron +172 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 53 0x1.3babc728b0914p-17 54 0x1.544fb1ab5edb1p+5 1 10105096 gamma gamma electron +173 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 69 0x1.81b0c4b44d976p-18 72 0x1.3acf5c6abfa2bp+5 1 10105096 gamma gamma electron +177 0x1.eb851eb851eb9p-5 0x1.d697c750f7292p-7 41 0x1.1956578dc32e8p-14 14 0x1.caf862e5affc7p+5 1 10105096 e- electron +178 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 62 0x1.10de584dd8643p-17 54 0x1.a430f7c5194ccp+5 1 10105096 gamma gamma electron +180 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 30 0x1.2559a354f302bp-16 30 0x1.4a469bf8698d9p+5 1 10105096 gamma gamma electron +185 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 87 0x1.a8a706469a48ap-13 55 0x1.8da62f68d69b4p+5 1 10105096 gamma gamma electron +187 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.14db8cd3fb143p-16 52 0x1.605e0cfa094fbp+5 1 10105096 gamma gamma electron +188 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.989fe1a69d8c7p-17 60 0x1.5772a35607f4p+5 1 10105096 gamma gamma electron +190 0x1.eb851eb851eb9p-5 0x1.47a8a09d99d97p-5 47 0x1.11e993153eec5p-17 29 0x1.4986f34272f7p+5 1 10105096 gamma gamma electron +191 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 44 0x1.e9fb73c5e604bp-18 44 0x1.28ed143d46f81p+5 1 10105096 gamma gamma electron +193 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 63 0x1.269b10df8aca8p-10 83 0x1.5615e62c6766cp+5 1 10105096 gamma gamma electron +194 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 46 0x1.6bdc492d20224p-17 57 0x1.290743872c0efp+5 1 10105096 gamma gamma electron +200 0x1.eb851eb851eb9p-5 0x1.b8928324e30e7p-7 16 0x1.6212fd8ceaa26p-13 14 0x1.6152cdaca65ap+5 1 10105096 gamma gamma electron +201 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 62 0x1.6378b69c1d103p-15 45 0x1.929c268da9c49p+5 1 10105096 gamma gamma electron +202 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.767460188e5c5p-17 48 0x1.38cd40c90c595p+5 1 10105096 gamma gamma electron +207 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 57 0x1.dde25219d77d2p-16 76 0x1.66fdd651e833cp+5 1 10105096 gamma gamma electron +209 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 61 0x1.782f71f3e159cp-18 59 0x1.6a07f828b43a3p+5 1 10105096 gamma gamma electron +213 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 24 0x1.9a55c18d54596p-18 32 0x1.87a23be0f001dp+5 1 10105096 gamma gamma electron +215 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 64 0x1.a3cfccc372cadp-18 40 0x1.7e919578e5672p+5 1 10105096 gamma gamma electron +219 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 71 0x1.73034606425f8p-9 59 0x1.75ed7b2bec846p+5 1 10105096 gamma gamma electron +221 0x1.eb851eb851eb9p-5 0x1.e39143d559ac8p-5 86 0x1.f1585774f741cp-17 60 0x1.522c5f7f87ca1p+5 1 10105096 gamma gamma electron +223 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.c47e65f9bd311p-18 55 0x1.70223357d5a47p+5 1 10105096 gamma gamma electron +227 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.c8ff156f56d58p-18 51 0x1.4c9095739cc29p+5 1 10105096 gamma gamma electron +228 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 66 0x1.752e8e7e2dcdep-18 45 0x1.56973c79428b2p+5 1 10105096 gamma gamma electron +229 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 62 0x1.86c514c701da5p-18 42 0x1.6d3b63fa4a2b3p+5 1 10105096 gamma gamma electron +231 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 20 0x1.580e46916bcdep-18 14 0x1.a11eccc9f8eabp+5 1 10105096 gamma gamma electron +232 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 53 0x1.85040d518d217p-16 73 0x1.7c96c3effa70dp+5 1 10105096 gamma gamma electron +234 0x1.eb851eb851eb9p-5 0x1.3fb5576541a33p-5 35 0x1.e2c7d7fb22da1p-17 27 0x1.1ec6ccd84b101p+5 1 10105096 gamma gamma electron +238 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 59 0x1.74412cfa225ecp-18 78 0x1.55b1a21274ef4p+5 1 10105096 gamma gamma electron +239 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 24 0x1.34ac09d70f518p-17 35 0x1.6b8a80ae08897p+5 1 10105096 gamma gamma electron +240 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 68 0x1.fec438aa91075p-16 71 0x1.5679d024f86b5p+5 1 10105096 gamma gamma electron +243 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 44 0x1.a7ab5b18e7df5p-16 56 0x1.8c17c15298183p+5 1 10105096 gamma gamma electron +244 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 57 0x1.74ff6dda25a38p-10 80 0x1.4a64e9e95526cp+5 1 10105096 gamma gamma electron +246 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 63 0x1.65990f9e6f56fp-16 61 0x1.9c481c715d49cp+5 1 10105096 gamma gamma electron +248 0x1.eb851eb851eb9p-5 0x1.b9f89da59fc2p-10 2 0x1.7a9334c03d7ep-18 4 0x1.0e34749060aecp+5 1 10105096 gamma gamma electron +253 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.9db1cd7ab5dc4p-15 53 0x1.b6a1ba424168cp+5 1 10105096 gamma gamma electron +255 0x1.eb851eb851eb9p-5 0x1.be85e22cb0623p-7 7 0x1.489eb481779acp-14 13 0x1.21333e76f1004p+6 1 10105096 gamma gamma electron +257 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 50 0x1.cf9782139b664p-18 58 0x1.5414071cfe461p+5 1 10105096 gamma gamma electron +258 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 28 0x1.c1ae4469bd3f6p-18 32 0x1.7b91c1dbf56bcp+5 1 10105096 gamma gamma electron +263 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.a58d64e798224p-10 144 0x1.846a416238439p+5 1 10105096 gamma gamma electron +265 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.685b3d65949f2p-18 65 0x1.7e41f87292123p+5 1 10105096 gamma gamma electron +268 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 53 0x1.61abd632b7617p-18 66 0x1.7813381c8bc69p+5 1 10105096 gamma gamma electron +271 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 37 0x1.ebc382d655d2dp-18 28 0x1.65fc61d4bd337p+5 1 10105096 gamma gamma electron +272 0x1.eb851eb851eb9p-5 0x1.b00e5024db81fp-6 23 0x1.4d643df5a0e95p-17 23 0x1.25cbc8833a6d2p+5 1 10105096 gamma gamma electron +273 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 36 0x1.7bd3ea0b4f8bap-18 25 0x1.09b9b9ae24915p+6 1 10105096 gamma gamma electron +275 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcep-6 25 0x1.218d9a7c16f58p-16 36 0x1.5e9b3b4c99c0bp+5 1 10105096 gamma gamma electron +280 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 66 0x1.0519bd975719dp-9 56 0x1.8cbe03aa9adb7p+5 1 10105096 gamma gamma electron +284 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 52 0x1.a918976875865p-18 79 0x1.2ba1aa3725a33p+5 1 10105096 gamma gamma electron +287 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 84 0x1.70e9873f629aap-14 47 0x1.7d646e3538837p+5 1 10105096 gamma gamma electron +291 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 64 0x1.98d552a0e3c64p-18 71 0x1.73b42532b5389p+5 1 10105096 gamma gamma electron +292 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.2867340876f87p-16 63 0x1.6cc4b9f894884p+5 1 10105096 gamma gamma electron +294 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 30 0x1.12de1a8c37dc1p-14 28 0x1.b68ff52e6a5d7p+5 1 10105096 gamma gamma electron +307 0x1.eb851eb851eb9p-5 0x1.9707ebddbd542p-6 51 0x1.0eeb3dcf787ap-17 29 0x1.83d5b70711a29p+5 1 10105096 gamma gamma electron +310 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 32 0x1.763b5a4aacd72p-13 25 0x1.4154c7358f11dp+5 1 10105096 gamma gamma electron +313 0x1.eb851eb851eb9p-5 0x1.b00e5024db81bp-6 24 0x1.d05392d74796fp-18 29 0x1.552e60a19edbp+5 1 10105096 gamma gamma electron +317 0x1.eb851eb851eb9p-5 0x1.1b8fa87f0faa9p-6 22 0x1.fd6c52134351bp-18 18 0x1.50df9784baf94p+5 1 10105096 gamma gamma electron +319 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 29 0x1.5765f78b1eff3p-18 29 0x1.54c54808ac68cp+5 1 10105096 gamma gamma electron +320 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 49 0x1.9cd33c385e69ap-18 60 0x1.6da50d94dec22p+5 1 10105096 gamma gamma electron +327 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 53 0x1.9f598dc173b05p-18 62 0x1.53ba4375ca1b5p+5 1 10105096 gamma gamma electron +329 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 42 0x1.ea525280765cdp-18 49 0x1.659e5164de99bp+5 1 10105096 gamma gamma electron +333 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 61 0x1.1870c876992f6p-17 46 0x1.0c43c0c92aa47p+5 1 10105096 gamma gamma electron +338 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 38 0x1.3a1c804acb768p-17 30 0x1.fa8ccad97f842p+4 1 10105096 gamma gamma electron +349 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 62 0x1.0006189fae3fep-16 41 0x1.abb66e5e59f59p+5 1 10105096 gamma gamma electron +351 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.c2159a37aa34dp-18 50 0x1.91414e165eb3cp+5 1 10105096 gamma gamma electron +353 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 55 0x1.6c171c5233edp-18 58 0x1.5a930e729b1a6p+5 1 10105096 gamma gamma electron +356 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.76115c21c6432p-18 66 0x1.9da15545c9aaap+5 1 10105096 gamma gamma electron +357 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.5855749eb73d8p-18 98 0x1.2c327a46dbdebp+5 1 10105096 gamma gamma electron +359 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 24 0x1.0adb23dcaa55cp-15 19 0x1.231b6ba63f437p+5 1 10105096 gamma gamma electron +362 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 83 0x1.f058762d6bee5p-18 56 0x1.ebb73a91d37fp+5 1 10105096 gamma gamma electron +364 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 57 0x1.3b9f0f9505781p-17 43 0x1.3a57116809b63p+5 1 10105096 gamma gamma electron +365 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 26 0x1.f10b6513bbc86p-18 31 0x1.5c32c1f5276b7p+5 1 10105096 gamma gamma electron +366 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 34 0x1.ae97682422f11p-18 22 0x1.63c2c9a50ca4fp+5 1 10105096 gamma gamma electron +371 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e9192fp-6 42 0x1.cd92313283cd4p-18 29 0x1.91bfac8fdb464p+5 1 10105096 gamma gamma electron +372 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 74 0x1.29127e2ffe247p-17 63 0x1.255df3ec36da5p+5 1 10105096 gamma gamma electron +373 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.83506b0bfdb8cp-18 49 0x1.b02ff0f43f029p+5 1 10105096 gamma gamma electron +374 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 37 0x1.6dc8e9d628685p-18 37 0x1.8bfe5a75361b4p+5 1 10105096 gamma gamma electron +375 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 51 0x1.a82230858bf1ap-18 77 0x1.61be32723fcbfp+5 1 10105096 gamma gamma electron +377 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 61 0x1.3d4a908077133p-16 77 0x1.c9f271b733e8cp+5 1 10105096 gamma gamma electron +378 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 21 0x1.cd36f102db6cp-18 20 0x1.4493b4f5512a7p+5 1 10105096 gamma gamma electron +380 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 73 0x1.94ef1334469dep-18 63 0x1.5609bf2103698p+5 1 10105096 gamma gamma electron +384 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 51 0x1.a97fd9a8d72e5p-18 53 0x1.6c1d3225445fdp+5 1 10105096 gamma gamma electron +385 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 48 0x1.93111bd03dab6p-17 57 0x1.450b239063797p+5 1 10105096 gamma gamma electron +388 0x1.eb851eb851eb9p-5 0x1.ae2659db83a0cp-6 42 0x1.9fefa0904d6cap-13 28 0x1.8015dde373a22p+5 1 10105096 gamma gamma electron +392 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 61 0x1.a1abbfd094b64p-18 61 0x1.8b44361b6b924p+5 1 10105096 gamma gamma electron +394 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 62 0x1.839f9b08b415ep-18 55 0x1.15779f8c4460bp+5 1 10105096 gamma gamma electron +396 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 27 0x1.61c521f9d042ap-18 33 0x1.79a3be99b9ff8p+5 1 10105096 gamma gamma electron +400 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.48e6915a52754p-15 57 0x1.4b4bd8c589716p+5 1 10105096 gamma gamma electron +402 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 42 0x1.7f69610ca5a44p-18 32 0x1.86ad9a7352f36p+5 1 10105096 gamma gamma electron +404 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.71796634a47b6p-18 31 0x1.2a04e25a274f8p+5 1 10105096 gamma gamma electron +405 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 72 0x1.42331287056c2p-15 57 0x1.b3ade5c19dc5ep+5 1 10105096 gamma gamma electron +406 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 49 0x1.64aabdbf87292p-8 128 0x1.7cdbda2a8381bp+5 1 10105096 gamma gamma electron +409 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 61 0x1.08524fd5f9c29p-17 60 0x1.8504a7567f51ap+5 1 10105096 gamma gamma electron +412 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.154a38889327p-15 60 0x1.1e045fc23565p+5 1 10105096 gamma gamma electron +418 0x1.eb851eb851eb9p-5 0x1.49e994d9b203bp-7 6 0x1.50da9395840a1p-17 11 0x1.9e566495e6309p+5 1 10105096 gamma gamma electron +422 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 52 0x1.054676fa67792p-17 56 0x1.86e9e8acbc08p+5 1 10105096 gamma gamma electron +424 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 44 0x1.80ab617337ef5p-18 63 0x1.b16d2d5d67187p+5 1 10105096 gamma gamma electron +425 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 58 0x1.51479ff824b78p-18 49 0x1.6684166b53bccp+5 1 10105096 gamma gamma electron +432 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 55 0x1.62dd808d02136p-18 77 0x1.96b640ba8ae18p+5 1 10105096 gamma gamma electron +433 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 39 0x1.06c9204575dc8p-13 32 0x1.755267de5d98p+5 1 10105096 gamma gamma electron +440 0x1.eb851eb851eb9p-5 0x1.29c4221f492f8p-6 37 0x1.1e569fd5d8cp-16 20 0x1.02b408d7e22fdp+5 1 10105096 e- electron +441 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 31 0x1.25777401382cap-14 31 0x1.beede7b805126p+5 1 10105096 gamma gamma electron +442 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.21b134521ee31p-17 63 0x1.2994b015cc1c1p+5 1 10105096 gamma gamma electron +444 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 64 0x1.836538e5c6367p-18 59 0x1.a58a6d0fd4003p+5 1 10105096 gamma gamma electron +445 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 34 0x1.a9b47caf272d9p-16 23 0x1.01b0c3eaddcdap+5 1 10105096 gamma gamma electron +447 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 22 0x1.b69521f1c013ep-17 22 0x1.786f51a292f98p+4 1 10105096 gamma gamma electron +449 0x1.eb851eb851eb9p-5 0x1.96ca31e652f23p-6 30 0x1.ef7edb909a706p-14 27 0x1.8801607431534p+5 1 10105096 e- electron +452 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.0779abea8e974p-17 42 0x1.3ea766218417ap+5 1 10105096 gamma gamma electron +456 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 49 0x1.2576e9b035ae4p-17 50 0x1.7b13c18537238p+5 1 10105096 gamma gamma electron +460 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 45 0x1.db4846c52041dp-15 66 0x1.9308ad87c02c4p+5 1 10105096 gamma gamma electron +469 0x1.eb851eb851eb9p-5 0x1.672ead9274e21p-5 42 0x1.6ef6b2a826084p-16 29 0x1.2d3d6b4007feep+5 1 10105096 gamma gamma electron +470 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 46 0x1.41d333a1f5f4bp-13 52 0x1.56056a3d54a96p+5 1 10105096 gamma gamma electron +472 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 38 0x1.a2357886fc044p-18 63 0x1.8b945a2b7fb83p+5 1 10105096 gamma gamma electron +473 0x1.eb851eb851eb9p-5 0x1.686437b7fd31ep-5 53 0x1.19589a4a1fce5p-15 47 0x1.a47cc240f5463p+5 1 10105096 gamma gamma electron +476 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 69 0x1.5971e6f9698f4p-17 51 0x1.8380da7333a62p+5 1 10105096 gamma gamma electron +482 0x1.eb851eb851eb9p-5 0x1.a34ca0c282c72p-6 26 0x1.d391d49bfb584p-17 29 0x1.b7e3d60a39748p+5 1 10105096 gamma gamma electron +485 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 19 0x1.3918e57e6f272p-16 29 0x1.5c3e79cef605bp+5 1 10105096 gamma gamma electron +490 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 28 0x1.608eab89740b3p-18 33 0x1.3ef251723dd77p+5 1 10105096 gamma gamma electron +491 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 54 0x1.16218a7b7ad1ap-17 45 0x1.62467e7ceea48p+5 1 10105096 gamma gamma electron +493 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 56 0x1.a05607b4bb2e9p-16 56 0x1.51ae3457ec80dp+5 1 10105096 gamma gamma electron +495 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 28 0x1.8a57dcba14c26p-18 24 0x1.6f8466c7fafdcp+5 1 10105096 gamma gamma electron +499 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 24 0x1.47c9b651a3fcp-10 33 0x1.d7cd062d1a1fbp+5 1 10105096 gamma gamma electron +500 0x1.eb851eb851eb9p-5 0x1.50aea3ecd9b2ap-5 42 0x1.09e38b7681b16p-9 114 0x1.63e16b6b2cb3dp+5 1 10105096 gamma gamma electron +508 0x1.eb851eb851eb9p-5 0x1.a34ca0c282c6fp-6 18 0x1.293c2bae957b9p-16 23 0x1.a8fc4c3fc5c14p+5 1 10105096 gamma gamma electron +510 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 50 0x1.4ff914b42058bp-18 45 0x1.a075174753f41p+5 1 10105096 gamma gamma electron +512 0x1.eb851eb851eb9p-5 0x1.d199d47307844p-6 43 0x1.f032962bc5c7ap-13 25 0x1.4fc95811ad83dp+5 1 10105096 e- electron +513 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 44 0x1.6d417ce63bb68p-18 61 0x1.62e043276f2dep+5 1 10105096 gamma gamma electron +516 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.eec5b4164f673p-18 49 0x1.a5ef31b8a264cp+5 1 10105096 gamma gamma electron +520 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 44 0x1.5aa6afed97465p-18 55 0x1.533214f4e13cp+5 1 10105096 gamma gamma electron +525 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.e6aefb3ddc456p-18 20 0x1.b3853c678ead1p+4 1 10105096 gamma gamma electron +527 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebdp-5 53 0x1.9b55da8cbe5a3p-15 58 0x1.670a95e22a60ap+5 1 10105096 gamma gamma electron +528 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 58 0x1.b4f75f73232b1p-17 54 0x1.c6a57f020b0a6p+5 1 10105096 gamma gamma electron +531 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 83 0x1.bab8dd326464dp-14 50 0x1.5f524c95c2612p+5 1 10105096 gamma gamma electron +534 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 42 0x1.5ef0727404c9dp-10 106 0x1.57d8706c490a6p+5 1 10105096 gamma gamma electron +535 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.5f8d95fc154c2p-18 58 0x1.a28ef20371015p+5 1 10105096 gamma gamma electron +536 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 25 0x1.f4731ad2ed3afp-17 25 0x1.612f38bd88c88p+5 1 10105096 gamma gamma electron +537 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.6f25345ec78f6p-18 66 0x1.57eb7e3aa72cep+5 1 10105096 gamma gamma electron +543 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 51 0x1.d38cf5868837p-10 156 0x1.6d061229d1cafp+5 1 10105096 gamma gamma electron +546 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 66 0x1.b4296520b03cp-18 53 0x1.88d24be2b223cp+5 1 10105096 gamma gamma electron +547 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 51 0x1.a05fc9b221b94p-18 80 0x1.5b00698d3949dp+5 1 10105096 gamma gamma electron +548 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 39 0x1.7b3cb982c33bbp-17 52 0x1.881b4df8307f4p+5 1 10105096 gamma gamma electron +549 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 35 0x1.53c6e6e7bda62p-17 65 0x1.006cf00723c7ap+5 1 10105096 gamma gamma electron +564 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.71786315c2605p-17 43 0x1.512f402a5f6d4p+5 1 10105096 gamma gamma electron +569 0x1.eb851eb851eb9p-5 0x1.b00e5024db81cp-6 16 0x1.21f75efcf4705p-17 25 0x1.d4f96b552dc75p+5 1 10105096 gamma gamma electron +574 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 56 0x1.5f6e9eee3b002p-18 72 0x1.5f65ddb528aeap+5 1 10105096 gamma gamma electron +576 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 46 0x1.91eac9ff5cddbp-10 144 0x1.82172c0b3f161p+5 1 10105096 gamma gamma electron +577 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 38 0x1.6c277e1d8b51ap-9 141 0x1.79f1e26d49f51p+5 1 10105096 gamma gamma electron +579 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 64 0x1.611c3cb896cfcp-18 52 0x1.ab7d5f8269c83p+5 1 10105096 gamma gamma electron +580 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.8b4d0fbaa812dp-18 57 0x1.ce2fd9754d23ep+5 1 10105096 gamma gamma electron +590 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 47 0x1.b2eb48434e897p-18 64 0x1.62d9cb191512bp+5 1 10105096 gamma gamma electron +591 0x1.eb851eb851eb9p-5 0x1.be85e22cb0625p-7 16 0x1.93c41e7f53d7cp-16 14 0x1.5d45add0305ecp+5 1 10105096 gamma gamma electron +593 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 21 0x1.cfcf97d17ac2p-18 30 0x1.6d2cda9aa4c39p+5 1 10105096 gamma gamma electron +594 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.676c6c6be8f16p-18 51 0x1.8650e053f7b3cp+5 1 10105096 gamma gamma electron +595 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 55 0x1.aafaf594b5bfep-17 72 0x1.64d85373d959ep+5 1 10105096 gamma gamma electron +602 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 44 0x1.056b9e4d46b29p-15 32 0x1.4d447539e5cd7p+5 1 10105096 gamma gamma electron +605 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 52 0x1.591e5e71bf3c2p-18 66 0x1.72bebf5ae194bp+5 1 10105096 gamma gamma electron +614 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 60 0x1.e8de54142221cp-18 67 0x1.89beb37d6a15fp+5 1 10105096 gamma gamma electron +615 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 62 0x1.d5366f13599ep-16 59 0x1.5e814cd6fd8d6p+5 1 10105096 gamma gamma electron +624 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 60 0x1.82ed763459dddp-18 47 0x1.44a9f7bb4e4ffp+5 1 10105096 gamma gamma electron +625 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e9193p-6 26 0x1.9b5d01d7744bdp-18 23 0x1.87f063ad3540dp+5 1 10105096 gamma gamma electron +630 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 27 0x1.a00e1a0e988aap-18 27 0x1.787ad33ead2c3p+5 1 10105096 gamma gamma electron +632 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 33 0x1.30de8bc4d8fa5p-17 26 0x1.509f2a11f9c1bp+5 1 10105096 gamma gamma electron +633 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 34 0x1.967429f3c315dp-16 27 0x1.f1a9744585352p+5 1 10105096 gamma gamma electron +634 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 53 0x1.03cd11f1325cfp-17 52 0x1.75061570b13eap+5 1 10105096 gamma gamma electron +636 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.19d4031f6618ap-16 57 0x1.ba2fbcd0a2815p+5 1 10105096 gamma gamma electron +644 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.09e3c02fbcb1ap-9 69 0x1.ca907d13c1484p+5 1 10105096 gamma gamma electron +647 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 74 0x1.12fcbfd7edb4p-9 61 0x1.6120539d9757ap+5 1 10105096 gamma gamma electron +651 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 69 0x1.6abf2ffb36267p-18 59 0x1.14d366f1bf4d5p+5 1 10105096 gamma gamma electron +652 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.85f2dd3bafbe5p-18 26 0x1.00c67aa486dep+5 1 10105096 gamma gamma electron +661 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 27 0x1.381367c880524p-17 33 0x1.68f21f65b4cb5p+5 1 10105096 gamma gamma electron +662 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 60 0x1.1dec7fe361cd5p-17 50 0x1.c4c23fe4b1d1ep+5 1 10105096 gamma gamma electron +663 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 56 0x1.1b74f88069091p-16 62 0x1.52ba3e7b116bdp+5 1 10105096 gamma gamma electron +670 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 45 0x1.5888f11932c42p-18 62 0x1.5f7c966426b8dp+5 1 10105096 gamma gamma electron +675 0x1.eb851eb851eb9p-5 0x1.7300e3e2b079dp-7 24 0x1.30d251922abdep-15 10 0x1.4e95b4657a928p+5 1 10105096 e- electron +681 0x1.eb851eb851eb9p-5 0x1.3a140aa35f17dp-5 48 0x1.769b34c52a55ap-14 42 0x1.90ba914276c3ap+5 1 10105096 gamma gamma electron +684 0x1.eb851eb851eb9p-5 0x1.b8928324e30e3p-7 19 0x1.3f20ce11e71bfp-12 10 0x1.64a6ecd9bfdd1p+5 1 10105096 gamma gamma electron +688 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 76 0x1.9e7d2e252aa5dp-18 50 0x1.7657bc05eefabp+5 1 10105096 gamma gamma electron +689 0x1.eb851eb851eb9p-5 0x1.8acf8a81225b6p-6 55 0x1.43deda741e591p-17 22 0x1.2df562e88b70fp+5 1 10105096 gamma gamma electron +693 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 36 0x1.10fd55a0f2bbfp-16 21 0x1.53169f93d2323p+5 1 10105096 gamma gamma electron +696 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 67 0x1.88cd3e63ec9a6p-17 53 0x1.19757ef64aff2p+5 1 10105096 gamma gamma electron +701 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 54 0x1.7f789179dfb42p-10 154 0x1.840117b88aa42p+5 1 10105096 gamma gamma electron +705 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 71 0x1.f58d295ac9454p-10 162 0x1.6351c4f157011p+5 1 10105096 gamma gamma electron +707 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dc9p-6 25 0x1.bc0a20b7c59d4p-18 30 0x1.1a31eea76ba9fp+6 1 10105096 gamma gamma electron +709 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 33 0x1.32911b038c77fp-16 24 0x1.927a0ddd3b387p+5 1 10105096 gamma gamma electron +711 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 61 0x1.978923413b978p-18 59 0x1.7f5422c6441d3p+5 1 10105096 gamma gamma electron +714 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 49 0x1.887baf8a4f914p-18 65 0x1.65cbe95c53dc9p+5 1 10105096 gamma gamma electron +716 0x1.eb851eb851eb9p-5 0x1.07484ee2b3ae6p-5 41 0x1.8e38e6b561828p-17 32 0x1.d3850200b5666p+5 1 10105096 gamma gamma electron +717 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91931p-6 44 0x1.49aecad4eceaap-17 26 0x1.8092c88c55641p+5 1 10105096 gamma gamma electron +721 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 22 0x1.85d03197dc11fp-17 31 0x1.985cbcaade145p+5 1 10105096 gamma gamma electron +725 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 65 0x1.b1c6945e8d18p-18 53 0x1.72f1131829a19p+5 1 10105096 gamma gamma electron +727 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 55 0x1.6bc24301e4b54p-10 84 0x1.5bd845e33be64p+5 1 10105096 gamma gamma electron +729 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcfp-6 28 0x1.4e6f52bc63392p-16 24 0x1.474933afc03a8p+5 1 10105096 gamma gamma electron +733 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebdp-5 75 0x1.f04fdd4e1bd5ap-18 58 0x1.1751ee4b33b93p+5 1 10105096 gamma gamma electron +737 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 70 0x1.aa5cdd1323dbap-17 49 0x1.3e19a95b76987p+5 1 10105096 gamma gamma electron +742 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 72 0x1.5689f74ab3808p-18 55 0x1.b8419cf58511cp+5 1 10105096 gamma gamma electron +743 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 49 0x1.156d5f7e37afbp-9 87 0x1.a48d39bdfaecdp+5 1 10105096 gamma gamma electron +744 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcdp-6 26 0x1.69a0e049c8ad3p-17 32 0x1.2064391c8f683p+5 1 10105096 gamma gamma electron +749 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.731054925e3eap-17 32 0x1.37fb37eed17adp+5 1 10105096 gamma gamma electron +751 0x1.eb851eb851eb9p-5 0x1.33e67d739fee3p-6 37 0x1.99477c63a5b65p-11 18 0x1.6f4622557285ep+5 1 10105096 gamma gamma electron +753 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 70 0x1.95239af567d58p-16 56 0x1.77df45d88cfbep+5 1 10105096 gamma gamma electron +755 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 61 0x1.9ba440efc4b48p-18 64 0x1.7d0e7790b64dep+5 1 10105096 gamma gamma electron +756 0x1.eb851eb851eb9p-5 0x1.76deef0e4034ap-5 45 0x1.ba2c7360b90ecp-18 44 0x1.5a1a6a74763d7p+5 1 10105096 gamma gamma electron +758 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebep-5 65 0x1.68afd6b38a9a9p-10 72 0x1.3430cd0046c3dp+5 1 10105096 gamma gamma electron +759 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 48 0x1.7c76c397c9788p-17 54 0x1.4679888c7b01p+5 1 10105096 gamma gamma electron +760 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dcap-6 29 0x1.9dd9e15212551p-10 80 0x1.6ef35e0f5462fp+5 1 10105096 gamma gamma electron +762 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb5p-5 67 0x1.67fafcf79506ap-18 48 0x1.1eb169f29ad3dp+5 1 10105096 gamma gamma electron +764 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb6p-5 60 0x1.ff2b130d13e34p-18 58 0x1.6e7cd6551991ap+5 1 10105096 gamma gamma electron +765 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb3p-5 66 0x1.0ed2c4ee2933cp-17 48 0x1.33db64887f3d1p+5 1 10105096 gamma gamma electron +767 0x1.eb851eb851eb9p-5 0x1.be85e22cb0623p-7 16 0x1.576307331d9b9p-12 10 0x1.aaa68af20ba0ep+5 1 10105096 gamma gamma electron +768 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.57033f179327p-15 58 0x1.cabdb8605fa61p+5 1 10105096 gamma gamma electron +771 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 52 0x1.7c205f0d3c295p-18 63 0x1.379a52ecf1783p+5 1 10105096 gamma gamma electron +772 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 32 0x1.d67e393aa0332p-13 20 0x1.19e105fb856a8p+5 1 10105096 gamma gamma electron +773 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 52 0x1.848b22e21a9f9p-18 73 0x1.6cd5d510d5b91p+5 1 10105096 gamma gamma electron +774 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 65 0x1.6a31260bb6ap-17 59 0x1.a58a084c7f3edp+5 1 10105096 gamma gamma electron +776 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 47 0x1.aeeb1416ee71cp-18 72 0x1.5055fd83cf3b6p+5 1 10105096 gamma gamma electron +777 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 64 0x1.2b6b2eab33555p-17 46 0x1.a8511a812a6dfp+4 1 10105096 gamma gamma electron +780 0x1.eb851eb851eb9p-5 0x1.a113e15e5449p-6 22 0x1.6d10456674124p-18 26 0x1.aed4e549e5208p+5 1 10105096 gamma gamma electron +781 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dd1p-6 29 0x1.93c2323d091c9p-15 31 0x1.cbc7fffae232fp+5 1 10105096 gamma gamma electron +791 0x1.eb851eb851eb9p-5 0x1.baaeb29a46e9fp-5 50 0x1.06de761948a63p-13 43 0x1.c48224cb68f9p+5 1 10105096 e- electron +794 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 57 0x1.7d8f13fa149b4p-18 75 0x1.9db1145fc864cp+5 1 10105096 gamma gamma electron +798 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 39 0x1.5ba725b9f5768p-15 23 0x1.9cc4109cbeae6p+5 1 10105096 gamma gamma electron +803 0x1.eb851eb851eb9p-5 0x1.9600b0a947ddbp-5 61 0x1.adadc443e3ef7p-17 43 0x1.5071d2e2a550bp+5 1 10105096 gamma gamma electron +804 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 54 0x1.51e1d2e9183bfp-18 72 0x1.af142060a0c37p+5 1 10105096 gamma gamma electron +806 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 17 0x1.52d95d019a0c8p-18 34 0x1.547fb2e728dc3p+5 1 10105096 gamma gamma electron +810 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 31 0x1.0879ef5a4256ap-15 30 0x1.548be209f218cp+5 1 10105096 gamma gamma electron +813 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 37 0x1.cce023e99618p-18 22 0x1.327f50ef70b1dp+5 1 10105096 gamma gamma electron +818 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 25 0x1.5e1bb5d6fc63p-18 22 0x1.4d0f9c2dbd123p+5 1 10105096 gamma gamma electron +820 0x1.eb851eb851eb9p-5 0x1.b00e5024db818p-6 20 0x1.b661ebe12e0f8p-18 24 0x1.27170508c7165p+5 1 10105096 gamma gamma electron +824 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 63 0x1.7af36cf581a86p-10 64 0x1.5da18ab0268edp+5 1 10105096 gamma gamma electron +826 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 58 0x1.a1a0ef570edebp-18 53 0x1.499eda8cd213fp+5 1 10105096 gamma gamma electron +834 0x1.eb851eb851eb9p-5 0x1.b00e5024db81bp-6 27 0x1.06665ec7fcddbp-17 23 0x1.6ae39f17faf13p+5 1 10105096 gamma gamma electron +836 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 54 0x1.054414b4e85ccp-16 58 0x1.cafc2d53cfffp+5 1 10105096 gamma gamma electron +838 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 35 0x1.d92b3068f2d69p-18 23 0x1.abca2be727b6ap+5 1 10105096 gamma gamma electron +845 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 53 0x1.675af76b87e3p-16 66 0x1.9acefd9cc24cep+5 1 10105096 gamma gamma electron +846 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 32 0x1.f7d669faf48d9p-18 25 0x1.b7ee3cd38c2e1p+5 1 10105096 gamma gamma electron +851 0x1.eb851eb851eb9p-5 0x1.bda7037fb7192p-5 51 0x1.6ae547da56c1ap-11 46 0x1.752cc92234d24p+5 1 10105096 gamma gamma electron +852 0x1.eb851eb851eb9p-5 0x1.0d774c67b79f3p-6 22 0x1.d7b6d103e7ee8p-15 19 0x1.3da00ce9efcedp+5 1 10105096 gamma gamma electron +853 0x1.eb851eb851eb9p-5 0x1.2977ab57002b6p-5 46 0x1.b84a138108c62p-17 32 0x1.d1cebc4f0aa42p+5 1 10105096 e- electron +854 0x1.eb851eb851eb9p-5 0x1.4c08ed0e8bb43p-6 20 0x1.fa5c378759eb3p-17 22 0x1.890e4af578032p+5 1 10105096 gamma gamma electron +858 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 68 0x1.91322eddce0a2p-17 56 0x1.340e57a5e3972p+5 1 10105096 gamma gamma electron +864 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 70 0x1.021d9ba96e22fp-9 182 0x1.6851af4d80f67p+5 1 10105096 gamma gamma electron +865 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 47 0x1.a931899a5f2e3p-17 49 0x1.6204ed8eeda52p+5 1 10105096 gamma gamma electron +869 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91933p-6 39 0x1.1df5df3de8079p-14 23 0x1.fab1cd918532p+4 1 10105096 gamma gamma electron +873 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.d02f33e38f543p-17 43 0x1.3364ca2ee2a92p+5 1 10105096 gamma gamma electron +875 0x1.eb851eb851eb9p-5 0x1.b00e5024db81dp-6 21 0x1.74132d0445e14p-16 37 0x1.ab170f515516ep+5 1 10105096 gamma gamma electron +876 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 33 0x1.c22b39593daa4p-14 29 0x1.8500ed7481809p+5 1 10105096 gamma gamma electron +877 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 63 0x1.82620e546e0a3p-18 55 0x1.1f4a6c11c907p+5 1 10105096 gamma gamma electron +880 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebcp-5 49 0x1.60320483cc692p-18 65 0x1.385ec4dece9a2p+5 1 10105096 gamma gamma electron +882 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 38 0x1.b2230dffed7efp-14 35 0x1.8340ce2bbef22p+5 1 10105096 gamma gamma electron +884 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.c8c3ad17cc7e4p-9 108 0x1.75d748b209748p+5 1 10105096 gamma gamma electron +888 0x1.eb851eb851eb9p-5 0x1.b00e5024db819p-6 29 0x1.2ae8db33828fap-16 22 0x1.3b678e88506c8p+5 1 10105096 gamma gamma electron +889 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 65 0x1.3d842643e1fa5p-17 73 0x1.7190a6867237fp+5 1 10105096 gamma gamma electron +892 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 38 0x1.584c4c5b7661dp-17 30 0x1.a9070ff771bacp+5 1 10105096 gamma gamma electron +894 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dccp-6 46 0x1.762024beb9a53p-18 25 0x1.9dff5ddad5908p+5 1 10105096 gamma gamma electron +896 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 71 0x1.7021babbf695bp-10 150 0x1.789cfa393bd57p+5 1 10105096 gamma gamma electron +900 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 57 0x1.4eb0ee06e8f92p-10 65 0x1.513318ef0a557p+5 1 10105096 gamma gamma electron +901 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 69 0x1.84c1de9c6d41ap-16 40 0x1.6bae3ce186d88p+5 1 10105096 gamma gamma electron +905 0x1.eb851eb851eb9p-5 0x1.4c08ed0e8bb4p-6 20 0x1.05e02c7e2917ep-14 13 0x1.d8696d73462aap+4 1 10105096 gamma gamma electron +906 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 29 0x1.053e9a448ee22p-16 27 0x1.849a5ac20e505p+5 1 10105096 gamma gamma electron +914 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 54 0x1.6e4c5cb9063b3p-18 52 0x1.adb736ab8e6b1p+5 1 10105096 gamma gamma electron +916 0x1.eb851eb851eb9p-5 0x1.b116228134481p-6 24 0x1.3d1b109a65ad8p-16 23 0x1.ceba7fc48a801p+4 1 10105096 gamma gamma electron +924 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 63 0x1.c342157c09c3fp-18 54 0x1.b3acf9443a438p+5 1 10105096 gamma gamma electron +925 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 49 0x1.889492c49bbe9p-10 66 0x1.7276e8a813c9ep+5 1 10105096 gamma gamma electron +936 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb4p-5 65 0x1.5528b9f679c9ep-18 64 0x1.35bf18780e202p+5 1 10105096 gamma gamma electron +939 0x1.eb851eb851eb9p-5 0x1.b00e5024db81ap-6 31 0x1.e2d9cfe72c0ecp-18 34 0x1.b3b1bfca2a1c8p+5 1 10105096 gamma gamma electron +940 0x1.eb851eb851eb9p-5 0x1.f47f2ddd88dc9p-6 22 0x1.f7a59da339d71p-18 32 0x1.b6e4fc662956dp+5 1 10105096 gamma gamma electron +943 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebbp-5 53 0x1.50e0aceec9001p-16 38 0x1.a47565c68602bp+5 1 10105096 gamma gamma electron +945 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 73 0x1.0860d33fb8b64p-9 61 0x1.681fb06e822cdp+5 1 10105096 gamma gamma electron +947 0x1.eb851eb851eb9p-5 0x1.595ae3212765cp-5 55 0x1.fe1a8b6156926p-14 53 0x1.43d31e8d617c4p+5 1 10105096 gamma gamma electron +948 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 56 0x1.2fd9ebc147137p-17 59 0x1.74490a084198ap+5 1 10105096 gamma gamma electron +951 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 40 0x1.96c09e2b6cd47p-15 28 0x1.3939893e1b2dep+5 1 10105096 gamma gamma electron +956 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 28 0x1.70369d5267893p-14 22 0x1.57478fb3b4986p+5 1 10105096 gamma gamma electron +960 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 25 0x1.b8fd790925441p-16 19 0x1.2a568e538d959p+5 1 10105096 gamma gamma electron +964 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb9p-5 65 0x1.08ee424ff51a8p-16 52 0x1.5ffc36802d3f9p+5 1 10105096 gamma gamma electron +971 0x1.eb851eb851eb9p-5 0x1.eb851eb851ebap-5 54 0x1.2276defb17185p-9 136 0x1.53f3e2ecc6a9bp+5 1 10105096 gamma gamma electron +975 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91936p-6 28 0x1.1a0073a623a0ap-14 29 0x1.049260e548495p+5 1 10105096 gamma gamma electron +977 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91932p-6 28 0x1.911facac923ap-17 26 0x1.5fe7f14078cddp+5 1 10105096 gamma gamma electron +978 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91934p-6 40 0x1.1d83682805207p-14 27 0x1.66e991048f482p+5 1 10105096 gamma gamma electron +987 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 55 0x1.d55369d54e66ep-18 70 0x1.454f5d55a194p+5 1 10105096 gamma gamma electron +988 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb7p-5 57 0x1.6d42b3c3dea26p-9 55 0x1.564cd822422b2p+5 1 10105096 gamma gamma electron +989 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91935p-6 35 0x1.7b840858fcfe6p-18 34 0x1.6bf3ca6711d0ap+5 1 10105096 gamma gamma electron +990 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 67 0x1.5416b07a4e43fp-18 79 0x1.93a107e036677p+5 1 10105096 gamma gamma electron +997 0x1.eb851eb851eb9p-5 0x1.eb851eb851eb8p-5 58 0x1.95b95290f917bp-18 55 0x1.6bb87716aac0fp+5 1 10105096 gamma gamma electron +998 0x1.eb851eb851eb9p-5 0x1.ef1a6a0e91937p-6 31 0x1.4d3443cade923p-17 23 0x1.84b8ff357913p+5 1 10105096 gamma gamma electron diff --git a/examples/advanced/underground_physics/underground_physics-alpha.out b/examples/advanced/underground_physics/underground_physics-alpha.out index cc360cec01a0033aae5e2413c1343ffd22030519..3936397fa2333ee3a81d62a0ffe84cfa338424fb 100644 --- a/examples/advanced/underground_physics/underground_physics-alpha.out +++ b/examples/advanced/underground_physics/underground_physics-alpha.out @@ -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 @@ -809,7 +809,7 @@ WARNING: G4VisManager::IsValidView(): Attempt to draw when no graphics system Run terminated. Run Summary Number of events processed : 1 - User=1.060000s Real=1.096239s Sys=0.040000s + User=0.650000s Real=0.701302s Sys=0.050000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/advanced/underground_physics/underground_physics.out b/examples/advanced/underground_physics/underground_physics.out index e71f66471b43a9bd47580705fe63e34b0f3ce3b1..9c4232fde5caf1671ff6031b1fcfb3b5cf705680 100644 --- a/examples/advanced/underground_physics/underground_physics.out +++ b/examples/advanced/underground_physics/underground_physics.out @@ -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 diff --git a/examples/advanced/xray_SiliconPoreOptics/SiliconPoreOptics.out b/examples/advanced/xray_SiliconPoreOptics/SiliconPoreOptics.out index d9a0c6035c3626155733df0f08f7c1cdb76adc8b..e372ded19ab3332b051ca4cef31aa091ef4fd2eb 100644 --- a/examples/advanced/xray_SiliconPoreOptics/SiliconPoreOptics.out +++ b/examples/advanced/xray_SiliconPoreOptics/SiliconPoreOptics.out @@ -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 @@ -868,7 +868,7 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 5000 - User=23.030000s Real=23.439111s Sys=0.000000s + User=14.480000s Real=15.402534s Sys=0.010000s ... write file : output.root - done ... close file : output.root - done Graphics systems deleted. diff --git a/examples/advanced/xray_TESdetector/xray_TESdetector.out b/examples/advanced/xray_TESdetector/xray_TESdetector.out index d5a914c4d0d06b85679c6daffb703b060f0d0ce9..dbfc116d6e3cd4bb6e4de032d8f04771e9f584cc 100644 --- a/examples/advanced/xray_TESdetector/xray_TESdetector.out +++ b/examples/advanced/xray_TESdetector/xray_TESdetector.out @@ -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 @@ -1292,7 +1292,7 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 1000 - User=0.690000s Real=0.695948s Sys=0.000000s + User=0.410000s Real=0.413646s Sys=0.000000s ... write file : output.root - done ... close file : output.root - done Graphics systems deleted. diff --git a/examples/advanced/xray_fluorescence/xray_fluorescence.out b/examples/advanced/xray_fluorescence/xray_fluorescence.out index c7c67f44723e56fb488b186e8447d8956227e8af..b91e6bf884ea9ef027a2598f9570c7b5d9a32cde 100644 --- a/examples/advanced/xray_fluorescence/xray_fluorescence.out +++ b/examples/advanced/xray_fluorescence/xray_fluorescence.out @@ -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 @@ -2960,18 +2960,18 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 1 kByte - Total CPU time elapsed for geometry optimisation: 0.01 seconds + Total CPU time elapsed for geometry optimisation: 0 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 100.00 0.01 0.00 1k World + 0.00 0.00 0.00 1k World 0.00 0.00 0.00 0k HPGeDetector Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 69.08 0k 3 9 24 0.01 World + 69.08 0k 3 9 24 0.00 World 30.92 0k 2 3 11 0.00 HPGeDetector -------------------------------------------------------------------------------- @@ -2989,7 +2989,7 @@ Created histos Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002585s Sys=0.010000s + User=0.010000s Real=0.001494s Sys=0.000000s Going to save histograms ... write file : xrayfluo.root - done ... close file : xrayfluo.root - done @@ -3000,10 +3000,10 @@ Visualization Manager deleting... visManager deleted G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x19a0c20 +UserDetectorConstruction deleted 0x23dc000 XrayFluoDetectorConstruction deleted -UserPhysicsList deleted 0x1a227f0 -UserActionInitialization deleted 0x1a78910 +UserPhysicsList deleted 0x245dbd0 +UserActionInitialization deleted 0x24b3cf0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/advanced/xray_telescope/xray_telescope.out b/examples/advanced/xray_telescope/xray_telescope.out index 58f487b2c2384081c177f68c2bd36c32650a2634..763006ba2b9490cc8fb2d2e1390537d88e16166b 100644 --- a/examples/advanced/xray_telescope/xray_telescope.out +++ b/examples/advanced/xray_telescope/xray_telescope.out @@ -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 @@ -394,7 +394,7 @@ Opening output file xraytel ... done Run terminated. Run Summary Number of events processed : 1000 - User=0.010000s Real=0.008172s Sys=0.000000s + User=0.010000s Real=0.004784s Sys=0.000000s ########################################## ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 diff --git a/examples/basic/B1/exampleB1.out b/examples/basic/B1/exampleB1.out index 3aa42ba8d8ba112b6ff6d930711d77ddb045d785..128f5a3ceb234afc624d33420f5034af397d379d 100644 --- a/examples/basic/B1/exampleB1.out +++ b/examples/basic/B1/exampleB1.out @@ -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 diff --git a/examples/basic/B2/B2a/exampleB2a.out b/examples/basic/B2/B2a/exampleB2a.out index cd78950450ab5c3bdba3b9cdc65f7692cbc0a3d8..755444296f7a461d2d28a664b2e558fb52e9b617 100644 --- a/examples/basic/B2/B2a/exampleB2a.out +++ b/examples/basic/B2/B2a/exampleB2a.out @@ -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 diff --git a/examples/basic/B2/B2b/exampleB2b.out b/examples/basic/B2/B2b/exampleB2b.out index 630e1e75962e7000d936965998207673abc24450..ce40d429900a499d2a1f511a73ef983f338bc71b 100644 --- a/examples/basic/B2/B2b/exampleB2b.out +++ b/examples/basic/B2/B2b/exampleB2b.out @@ -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 diff --git a/examples/basic/B3/B3a/exampleB3a.out b/examples/basic/B3/B3a/exampleB3a.out index cb69f58d3e254224d53e35e1ca2bad959be8d7fe..60dadea646d70f1c0e7f1aa09bf1a715e9e77366 100644 --- a/examples/basic/B3/B3a/exampleB3a.out +++ b/examples/basic/B3/B3a/exampleB3a.out @@ -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 diff --git a/examples/basic/B3/B3b/exampleB3b.out b/examples/basic/B3/B3b/exampleB3b.out index a77541af12c3acfa4a44724d6d86452f6c6649a1..5cb63c3f508e39261e1da56874aa0ce79931263a 100644 --- a/examples/basic/B3/B3b/exampleB3b.out +++ b/examples/basic/B3/B3b/exampleB3b.out @@ -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 @@ -744,7 +744,7 @@ Setting was ignored. --------------------End of Global Run----------------------- The run was 10000 events Nb of 'good' e+ annihilations: 1306 Total dose in patient : 306.658 picoGy - Total dose in patient : 3.06658e-10 [sigma: 1.74008e-14 | error: 0.00567435 | coeff: 0.00567435 | eff: 1 | fom: 31057.6 | r2int: 3.2195e-05 | r2eff: 0 | hits: 10000 ] Gy + Total dose in patient : 3.06658e-10 [sigma: 1.74008e-14 | error: 0.00567435 | coeff: 0.00567435 | eff: 1 | fom: 1 | r2int: 3.2195e-05 | r2eff: 0 | hits: 10000 ] Gy ------------------------------------------------------------ ... write file : scoring.root - done diff --git a/examples/basic/B4/B4a/exampleB4a.out b/examples/basic/B4/B4a/exampleB4a.out index 020007811c621b94eb5358687fc219ad52d34bec..9e53ac6e57964f95ad11969d5c134304bb4168a4 100644 --- a/examples/basic/B4/B4a/exampleB4a.out +++ b/examples/basic/B4/B4a/exampleB4a.out @@ -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 diff --git a/examples/basic/B4/B4b/exampleB4b.out b/examples/basic/B4/B4b/exampleB4b.out index cd0d63ba45f19d4a648f73c3a437a2cb322995cc..ab1373fbacdc8c84690874602cff68890175a16f 100644 --- a/examples/basic/B4/B4b/exampleB4b.out +++ b/examples/basic/B4/B4b/exampleB4b.out @@ -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 diff --git a/examples/basic/B4/B4c/exampleB4c.out b/examples/basic/B4/B4c/exampleB4c.out index 1ea160046db4656fa24b050f01e7866c22ad1f8c..221cd538daa74a433e81724eae28c08035671171 100644 --- a/examples/basic/B4/B4c/exampleB4c.out +++ b/examples/basic/B4/B4c/exampleB4c.out @@ -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 diff --git a/examples/basic/B4/B4d/exampleB4d.out b/examples/basic/B4/B4d/exampleB4d.out index bc3180ea3467af6ded6e5abf50e702eeb70d7d85..0501ef9734c49b1f4c4db2b5575641e7254ca1af 100644 --- a/examples/basic/B4/B4d/exampleB4d.out +++ b/examples/basic/B4/B4d/exampleB4d.out @@ -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 @@ -975,4 +975,4 @@ Using ... close file : B4.root - done Graphics systems deleted. Visualization Manager deleting... -### deleting chargedFilter 0xc126d0 +### deleting chargedFilter 0x22c96d0 diff --git a/examples/basic/B5/exampleB5.out b/examples/basic/B5/exampleB5.out index 177a4464fdfdba407ac9eeb0ce2252fdb141fbaf..f7ad7fba22e02ec40adfbfbb84eef75e10598cb6 100644 --- a/examples/basic/B5/exampleB5.out +++ b/examples/basic/B5/exampleB5.out @@ -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 @@ -1018,23 +1018,23 @@ Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) >>> Event 0 >>> Simulation truth : pi+ (-0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867880803662 (nsec) + Hodoscope[7] 4.9867880803636 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[10] 42.693788135597 (nsec) + Hodoscope[10] 42.694175410591 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709548380071 (nsec) --- local (x,y) -0.0084374961541531, -0.01617021713421 - Layer[1] : time 8.3387769390248 (nsec) --- local (x,y) -0.01612461504617, -0.025659506214965 - Layer[2] : time 10.006599040155 (nsec) --- local (x,y) -0.022846519460119, -0.037322727352983 - Layer[3] : time 11.674421141323 (nsec) --- local (x,y) -0.02778700716895, -0.050294129023285 - Layer[4] : time 13.342243242715 (nsec) --- local (x,y) -0.03500136995738, -0.06467445292062 + Layer[0] : time 6.6709548376126 (nsec) --- local (x,y) -0.0071790725864062, -0.0038273757010506 + Layer[1] : time 8.3387769383046 (nsec) --- local (x,y) -0.0051031539599598, -0.010969225352162 + Layer[2] : time 10.006599039029 (nsec) --- local (x,y) -0.00028456726016277, -0.01731055311623 + Layer[3] : time 11.674421139707 (nsec) --- local (x,y) 0.0050726299908207, -0.022155986908707 + Layer[4] : time 13.342243240272 (nsec) --- local (x,y) 0.0049844566799529, -0.025522293651726 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.366478518862 (nsec) --- local (x,y) -82.694258770298, -0.25913139343107 - Layer[1] : time 36.035210993557 (nsec) --- local (x,y) -99.216882748241, -0.27940598990072 - Layer[2] : time 37.703943548712 (nsec) --- local (x,y) -115.7402381806, -0.29870659682731 - Layer[3] : time 39.372676249521 (nsec) --- local (x,y) -132.2649160061, -0.31764346725772 - Layer[4] : time 41.041408982111 (nsec) --- local (x,y) -148.789878485, -0.33962387223393 -EM Calorimeter has 2 hits. Total Edep is 265.00512150932 (MeV) -Hadron Calorimeter has 3 hits. Total Edep is 59.625293784381 (MeV) + Layer[0] : time 34.366855222288 (nsec) --- local (x,y) -82.645324198456, -0.085299234844327 + Layer[1] : time 36.035589601877 (nsec) --- local (x,y) -99.185241586968, -0.091288252013046 + Layer[2] : time 37.704324382097 (nsec) --- local (x,y) -115.72879060121, -0.098989280762928 + Layer[3] : time 39.373059300523 (nsec) --- local (x,y) -132.27359247737, -0.10666883565576 + Layer[4] : time 41.041794225887 (nsec) --- local (x,y) -148.81845569564, -0.11630689283427 +EM Calorimeter has 2 hits. Total Edep is 235.12898420568 (MeV) +Hadron Calorimeter has 10 hits. Total Edep is 665.77128877414 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1048,25 +1048,23 @@ Hadron Calorimeter has 3 hits. Total Edep is 59.625293784381 (MeV) >>> Event 0 >>> Simulation truth : e+ (0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867832233744 (nsec) -Hodoscope 2 has 2 hits. - Hodoscope[9] 43.186679882067 (nsec) - Hodoscope[23] 1000.1643966852 (nsec) + Hodoscope[7] 4.9867832235115 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[7] 43.207308999652 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709483432523 (nsec) --- local (x,y) 0.037251294519475, -0.0011353550305746 - Layer[1] : time 8.3387688230209 (nsec) --- local (x,y) 0.070804289026291, -0.00091286140032391 - Layer[2] : time 10.006589302969 (nsec) --- local (x,y) 0.10512697985155, 0.00028729245766547 - Layer[3] : time 11.674409782985 (nsec) --- local (x,y) 0.1397539146699, 6.2661896421117e-05 - Layer[4] : time 13.342230263393 (nsec) --- local (x,y) 0.17603706220215, 0.0010174466358151 -Drift Chamber 2 has 6 hits. - Layer[0] : time 34.849422254592 (nsec) --- local (x,y) -147.09872617223, 0.037810022912828 - Layer[1] : time 36.520146573102 (nsec) --- local (x,y) -176.61665113813, 0.04302228896427 - Layer[1] : time 73.109262483466 (nsec) --- local (x,y) 1295.4521634987, 12.879302132932 - Layer[2] : time 38.190872598214 (nsec) --- local (x,y) -206.14325661474, 0.0465578084646 - Layer[3] : time 39.861598939912 (nsec) --- local (x,y) -235.67147213929, 0.049187308463733 - Layer[4] : time 41.532325911239 (nsec) --- local (x,y) -265.20288924228, 0.05225640450113 -EM Calorimeter has 41 hits. Total Edep is 91994.067146994 (MeV) -Hadron Calorimeter has 7 hits. Total Edep is 25.974221830826 (MeV) + Layer[0] : time 6.6709483405378 (nsec) --- local (x,y) -0.017512808010046, 0.009342474979959 + Layer[1] : time 8.3387688167976 (nsec) --- local (x,y) -0.026040789110633, 0.00948498845382 + Layer[2] : time 10.006589293082 (nsec) --- local (x,y) -0.034674656898673, 0.01157907480862 + Layer[3] : time 11.67440976927 (nsec) --- local (x,y) -0.041605327146968, 0.0134260984674 + Layer[4] : time 13.342230245427 (nsec) --- local (x,y) -0.046419711274132, 0.017546717754449 +Drift Chamber 2 has 5 hits. + Layer[0] : time 34.84733329015 (nsec) --- local (x,y) -236.78295462462, 0.054764096762511 + Layer[1] : time 36.522611213895 (nsec) --- local (x,y) -284.11882767231, 0.056274931719414 + Layer[2] : time 38.197889072743 (nsec) --- local (x,y) -331.45449430518, 0.057452780011912 + Layer[3] : time 39.873167342481 (nsec) --- local (x,y) -378.79146789877, 0.056928757942332 + Layer[4] : time 41.548446607831 (nsec) --- local (x,y) -426.13160814554, 0.05675663039572 +EM Calorimeter has 43 hits. Total Edep is 81212.116042201 (MeV) +Hadron Calorimeter has 9 hits. Total Edep is 70.382564827788 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1080,26 +1078,30 @@ Hadron Calorimeter has 7 hits. Total Edep is 25.974221830826 (MeV) >>> Event 0 >>> Simulation truth : proton (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 5.0086864764731 (nsec) + Hodoscope[7] 5.008686251445 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.371765584511 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7002520723116 (nsec) --- local (x,y) -0.39713344816407, -0.1836588855066 - Layer[1] : time 8.3754013967728 (nsec) --- local (x,y) -0.54252018700638, -0.16202046578932 - Layer[2] : time 10.050550936772 (nsec) --- local (x,y) -0.70318585866293, -0.078520346506246 - Layer[3] : time 11.725700706677 (nsec) --- local (x,y) -0.8491962009165, 0.025403297322231 - Layer[4] : time 13.400850631701 (nsec) --- local (x,y) -0.95848356390822, 0.11684262573752 -Drift Chamber 2 has 8 hits. - Layer[0] : time 34.997788772288 (nsec) --- local (x,y) -150.45356578101, 1.0522829477207 - Layer[1] : time 36.675879780477 (nsec) --- local (x,y) -180.08626542263, 1.0247999307028 - Layer[2] : time 38.353973038835 (nsec) --- local (x,y) -209.72920185067, 1.0065112308132 - Layer[2] : time 38.361102366952 (nsec) --- local (x,y) -208.32745225748, -6.1917618875478 - Layer[3] : time 40.032053526016 (nsec) --- local (x,y) -239.28783819061, 0.96472555421386 - Layer[3] : time 40.269433525978 (nsec) --- local (x,y) -149.2309617915, -260.73094761201 - Layer[4] : time 41.710133327754 (nsec) --- local (x,y) -268.84224295835, 0.90102601505809 - Layer[4] : time 41.745525573765 (nsec) --- local (x,y) -269.42887852187, 1.8693224399452 -EM Calorimeter has 13 hits. Total Edep is 207.42050471521 (MeV) -Hadron Calorimeter has 12 hits. Total Edep is 507.04897585101 (MeV) + Hodoscope[9] 43.374889512312 (nsec) +Drift Chamber 1 has 12 hits. + Layer[0] : time 6.7002567368323 (nsec) --- local (x,y) 0.00090513619006177, 0.0072584627732603 + Layer[0] : time 6.7634185901601 (nsec) --- local (x,y) -68.828228049157, 81.966850468832 + Layer[1] : time 8.3754124269883 (nsec) --- local (x,y) 0.0036021827516564, -0.12584929092127 + Layer[1] : time 8.6557936515686 (nsec) --- local (x,y) 192.69466460455, -60.143672597421 + Layer[1] : time 8.5688189931863 (nsec) --- local (x,y) -249.78564489715, 87.191415180229 + Layer[2] : time 10.050570091236 (nsec) --- local (x,y) -0.032990376922309, -0.23347770392994 + Layer[2] : time 10.812111323928 (nsec) --- local (x,y) 565.78565143643, -170.22436068523 + Layer[2] : time 10.348805892686 (nsec) --- local (x,y) -368.5010901991, 127.47542836753 + Layer[3] : time 11.725727903802 (nsec) --- local (x,y) -0.073165322930585, -0.33907950299759 + Layer[3] : time 12.97563644318 (nsec) --- local (x,y) 944.72776536248, -253.24632099936 + Layer[3] : time 12.122864760899 (nsec) --- local (x,y) -390.68252917596, 272.67049985066 + Layer[4] : time 13.400885849731 (nsec) --- local (x,y) -0.12618184988731, -0.46661970620024 +Drift Chamber 2 has 5 hits. + Layer[0] : time 35.000660969838 (nsec) --- local (x,y) -149.91999461327, -2.504630298768 + Layer[1] : time 36.678798562723 (nsec) --- local (x,y) -179.7412092079, -2.7030898180139 + Layer[2] : time 38.356936118452 (nsec) --- local (x,y) -209.56173133487, -2.8904568352911 + Layer[3] : time 40.035070675334 (nsec) --- local (x,y) -239.36675639351, -3.0632606170676 + Layer[4] : time 41.713202215953 (nsec) --- local (x,y) -269.15592896918, -3.2208764037551 +EM Calorimeter has 4 hits. Total Edep is 214.12490829474 (MeV) +Hadron Calorimeter has 8 hits. Total Edep is 386.34376744746 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1113,45 +1115,25 @@ Hadron Calorimeter has 12 hits. Total Edep is 507.04897585101 (MeV) >>> Event 0 >>> Simulation truth : pi+ (-0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9872689270481 (nsec) -Hodoscope 2 has 3 hits. - Hodoscope[9] 43.230652486713 (nsec) - Hodoscope[11] 42.71666877195 (nsec) - Hodoscope[10] 42.779082637629 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6715982200311 (nsec) --- local (x,y) -0.18136921903307, -0.041972524048319 - Layer[1] : time 8.3395812866504 (nsec) --- local (x,y) -0.32443074065501, -0.070952125107012 - Layer[2] : time 10.007564370369 (nsec) --- local (x,y) -0.4829824374768, -0.086308494287309 - Layer[3] : time 11.675547462831 (nsec) --- local (x,y) -0.64736469690895, -0.099975638161727 - Layer[4] : time 13.3435305788 (nsec) --- local (x,y) -0.82483521826215, -0.060411578276345 -Drift Chamber 2 has 25 hits. - Layer[0] : time 34.363948315354 (nsec) --- local (x,y) -83.303428581894, -1.3893927932468 - Layer[1] : time 36.032813833519 (nsec) --- local (x,y) -99.569409146835, -1.5268470885312 - Layer[2] : time 37.701682342835 (nsec) --- local (x,y) -115.86276225376, -1.6810796374929 - Layer[3] : time 39.370549330273 (nsec) --- local (x,y) -132.14199839067, -1.8393192979065 - Layer[3] : time 47.516395654375 (nsec) --- local (x,y) -228.70416691385, 149.28603301717 - Layer[3] : time 47.51786493626 (nsec) --- local (x,y) -228.72176718967, 149.31623311473 - Layer[3] : time 47.518094339948 (nsec) --- local (x,y) -228.72451282932, 149.32094662314 - Layer[3] : time 47.518094339948 (nsec) --- local (x,y) -228.72451282932, 149.32094662314 - Layer[3] : time 47.51786493626 (nsec) --- local (x,y) -228.72176718967, 149.31623311473 - Layer[3] : time 47.519728472562 (nsec) --- local (x,y) -228.79710255925, 149.39839701917 - Layer[3] : time 47.521568589084 (nsec) --- local (x,y) -228.85131295946, 149.49855230676 - Layer[3] : time 47.523475191242 (nsec) --- local (x,y) -228.89150198632, 149.59884733362 - Layer[4] : time 48.126764627086 (nsec) --- local (x,y) 257.45417977044, -27.600681750404 - Layer[4] : time 53.00970160418 (nsec) --- local (x,y) -108.21443700153, 214.11545774565 - Layer[4] : time 53.012055847957 (nsec) --- local (x,y) -108.21098532437, 214.14788096193 - Layer[4] : time 53.012055847957 (nsec) --- local (x,y) -108.21098532437, 214.14788096193 - Layer[4] : time 53.012655995814 (nsec) --- local (x,y) -108.20138450207, 214.14992899811 - Layer[4] : time 53.013413303438 (nsec) --- local (x,y) -108.20771419398, 214.13877895147 - Layer[4] : time 53.014481698165 (nsec) --- local (x,y) -108.19993569129, 214.13691300651 - Layer[4] : time 53.015693346313 (nsec) --- local (x,y) -108.17635418004, 214.15229745318 - Layer[4] : time 41.48067261832 (nsec) --- local (x,y) -220.90685012808, -140.43968822425 - Layer[4] : time 41.183395133308 (nsec) --- local (x,y) -181.8957911704, 13.557306017435 - Layer[4] : time 41.046023038443 (nsec) --- local (x,y) -120.01064073664, -13.882629423877 - Layer[4] : time 41.062702919411 (nsec) --- local (x,y) -167.48940430632, 41.376582696752 - Layer[4] : time 41.089885607209 (nsec) --- local (x,y) -168.15917780273, 66.464946072889 -EM Calorimeter has 37 hits. Total Edep is 1398.6152028844 (MeV) -Hadron Calorimeter has 9 hits. Total Edep is 24.442436342384 (MeV) + Hodoscope[7] 4.9872690154676 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[10] 42.694160372826 (nsec) +Drift Chamber 1 has 7 hits. + Layer[0] : time 6.6715982803152 (nsec) --- local (x,y) -0.32004793957364, 0.10887412106599 + Layer[1] : time 8.3395813250071 (nsec) --- local (x,y) -0.38819795650112, 0.21658071769735 + Layer[1] : time 8.6247853466188 (nsec) --- local (x,y) -6.3149124040296, -52.385891717831 + Layer[1] : time 8.819303127126 (nsec) --- local (x,y) -36.970173492182, -53.690775948114 + Layer[2] : time 10.00756440898 (nsec) --- local (x,y) -0.46298747492659, 0.35799804466798 + Layer[3] : time 11.675547501186 (nsec) --- local (x,y) -0.53179553959907, 0.50635816389898 + Layer[4] : time 13.343530605265 (nsec) --- local (x,y) -0.63907113753077, 0.63779986425163 +Drift Chamber 2 has 5 hits. + Layer[0] : time 34.366123811111 (nsec) --- local (x,y) -83.345546218783, 3.5442660445726 + Layer[1] : time 36.035000098051 (nsec) --- local (x,y) -99.710157648691, 3.7105879582832 + Layer[2] : time 37.703877294273 (nsec) --- local (x,y) -116.08327351526, 3.855497742224 + Layer[3] : time 39.372756547723 (nsec) --- local (x,y) -132.47523154275, 3.9946980485264 + Layer[4] : time 41.041634880494 (nsec) --- local (x,y) -148.85879895926, 4.1261291907428 +EM Calorimeter has 35 hits. Total Edep is 314.99438635481 (MeV) +Hadron Calorimeter has 11 hits. Total Edep is 502.4299754728 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1163,25 +1145,25 @@ Hadron Calorimeter has 9 hits. Total Edep is 24.442436342384 (MeV) ... open analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : e+ (-0,0,10000) +>>> Event 0 >>> Simulation truth : e+ (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.986783238963 (nsec) + Hodoscope[7] 4.9867832915113 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.187963466962 (nsec) + Hodoscope[9] 43.182267134868 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709485179622 (nsec) --- local (x,y) 0.10786083284101, 0.2627042558015 - Layer[1] : time 8.3387691692527 (nsec) --- local (x,y) 0.24945083679606, 0.44114418279571 - Layer[2] : time 10.006589834628 (nsec) --- local (x,y) 0.39126810173763, 0.63058701385232 - Layer[3] : time 11.674410454287 (nsec) --- local (x,y) 0.48486230492098, 0.81391673763678 - Layer[4] : time 13.342231073721 (nsec) --- local (x,y) 0.59301884236072, 0.98874571506999 + Layer[0] : time 6.6709484988921 (nsec) --- local (x,y) -0.24166829035295, 0.27933696851971 + Layer[1] : time 8.3387691140537 (nsec) --- local (x,y) -0.42359773808473, 0.36472208735227 + Layer[2] : time 10.006589846451 (nsec) --- local (x,y) -0.67194756286824, 0.48522224408972 + Layer[3] : time 11.674410722048 (nsec) --- local (x,y) -0.98857536824181, 0.62082410864162 + Layer[4] : time 13.342231661012 (nsec) --- local (x,y) -1.3333941626328, 0.75948829349192 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.850618580175 (nsec) --- local (x,y) -146.98533778166, 3.6904479355451 - Layer[1] : time 36.521366388623 (nsec) --- local (x,y) -176.62200544272, 3.8620907312027 - Layer[2] : time 38.192106907302 (nsec) --- local (x,y) -206.22164638143, 4.0453462540389 - Layer[3] : time 39.86284994022 (nsec) --- local (x,y) -235.83385207524, 4.2563780037024 - Layer[4] : time 41.533592042476 (nsec) --- local (x,y) -265.44126327473, 4.4776748288291 -EM Calorimeter has 18 hits. Total Edep is 9687.7386442321 (MeV) -Hadron Calorimeter has 5 hits. Total Edep is 2.7268892424804 (MeV) + Layer[0] : time 34.840913675404 (nsec) --- local (x,y) -170.94164034962, 2.5521353270068 + Layer[1] : time 36.51245476442 (nsec) --- local (x,y) -204.3575050637, 2.7396222618028 + Layer[2] : time 38.18400040141 (nsec) --- local (x,y) -237.79377338334, 2.9335258402149 + Layer[3] : time 39.855548385469 (nsec) --- local (x,y) -271.24068798247, 3.1083845530468 + Layer[4] : time 41.527098508335 (nsec) --- local (x,y) -304.69739047729, 3.2445847246182 +EM Calorimeter has 19 hits. Total Edep is 9550.3319157209 (MeV) +Hadron Calorimeter has 2 hits. Total Edep is 0.42847275266976 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1195,23 +1177,23 @@ Hadron Calorimeter has 5 hits. Total Edep is 2.7268892424804 (MeV) >>> Event 0 >>> Simulation truth : proton (0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 6.8390716061372 (nsec) + Hodoscope[7] 6.8389890639894 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 59.408967766332 (nsec) + Hodoscope[9] 59.432989551711 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 9.1533725156555 (nsec) --- local (x,y) -0.73342540699812, -0.65499309669353 - Layer[1] : time 11.445481605919 (nsec) --- local (x,y) -0.21824969509029, -0.58358730918899 - Layer[2] : time 13.737816241743 (nsec) --- local (x,y) 0.36448268199108, -0.59873931994425 - Layer[3] : time 16.030325935077 (nsec) --- local (x,y) 0.86443412502142, -0.56129261707837 - Layer[4] : time 18.323056578154 (nsec) --- local (x,y) 1.2486275638915, -0.69436936361014 + Layer[0] : time 9.1530069090469 (nsec) --- local (x,y) 0.89884682112627, 0.54195130305905 + Layer[1] : time 11.444977234845 (nsec) --- local (x,y) 2.4739301910603, 2.4425052417595 + Layer[2] : time 13.73724144504 (nsec) --- local (x,y) 3.9362117794298, 4.5635501979636 + Layer[3] : time 16.029661701383 (nsec) --- local (x,y) 5.3389051708188, 6.4161444490689 + Layer[4] : time 18.3222651363 (nsec) --- local (x,y) 6.829237031231, 8.1603036332532 Drift Chamber 2 has 5 hits. - Layer[0] : time 47.931463371509 (nsec) --- local (x,y) -135.97821906418, -11.358124128954 - Layer[1] : time 50.231176071777 (nsec) --- local (x,y) -165.53670865664, -12.728254781191 - Layer[2] : time 52.530988865999 (nsec) --- local (x,y) -194.8144131475, -13.67011274228 - Layer[3] : time 54.831044825246 (nsec) --- local (x,y) -224.25132032505, -14.568286440683 - Layer[4] : time 57.131261070435 (nsec) --- local (x,y) -253.64154389546, -15.210092082522 -EM Calorimeter has 6 hits. Total Edep is 159.39513055529 (MeV) -Hadron Calorimeter has 3 hits. Total Edep is 7.4043860709791 (MeV) + Layer[0] : time 47.949930298016 (nsec) --- local (x,y) -139.80057529208, 30.688192541466 + Layer[1] : time 50.250597533605 (nsec) --- local (x,y) -171.76619078017, 31.309787377698 + Layer[2] : time 52.551527880509 (nsec) --- local (x,y) -203.66950417852, 31.773622298429 + Layer[3] : time 54.852612296879 (nsec) --- local (x,y) -235.29763327304, 32.460029198979 + Layer[4] : time 57.153930294673 (nsec) --- local (x,y) -267.00271480398, 33.268076305466 +EM Calorimeter has 2 hits. Total Edep is 293.79235538608 (MeV) +Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1225,23 +1207,24 @@ Hadron Calorimeter has 3 hits. Total Edep is 7.4043860709791 (MeV) >>> Event 0 >>> Simulation truth : pi+ (-0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 5.0351318775105 (nsec) + Hodoscope[7] 5.0351370225138 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[10] 43.101962415901 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7356889821649 (nsec) --- local (x,y) -0.85203501260358, -1.3647139793547 - Layer[1] : time 8.4197469978065 (nsec) --- local (x,y) -1.2588220691281, -2.5105239517378 - Layer[2] : time 10.103809408083 (nsec) --- local (x,y) -1.7484156455242, -3.7835173105935 - Layer[3] : time 11.787876266097 (nsec) --- local (x,y) -2.3308625082498, -5.2059617998769 - Layer[4] : time 13.471945695918 (nsec) --- local (x,y) -3.0158926051512, -6.5122089078102 + Hodoscope[11] 42.923817475424 (nsec) +Drift Chamber 1 has 6 hits. + Layer[0] : time 6.735728015664 (nsec) --- local (x,y) -1.4909615731774, 1.2668206101508 + Layer[0] : time 7.1073021001934 (nsec) --- local (x,y) -261.35436248895, -104.05822673063 + Layer[1] : time 8.4198281587345 (nsec) --- local (x,y) -1.2831550601073, 1.4399926146976 + Layer[2] : time 10.10393139574 (nsec) --- local (x,y) -1.0485307226267, 1.9968326909357 + Layer[3] : time 11.788037113066 (nsec) --- local (x,y) -0.74106245745952, 2.3639768040142 + Layer[4] : time 13.472355304418 (nsec) --- local (x,y) -6.4752551113746, 6.2594847259556 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.692960015393 (nsec) --- local (x,y) -86.850710519431, -20.627505969791 - Layer[1] : time 36.378081201802 (nsec) --- local (x,y) -104.25206672098, -21.078521934036 - Layer[2] : time 38.063217982782 (nsec) --- local (x,y) -121.75672972351, -21.595817264135 - Layer[3] : time 39.74832643108 (nsec) --- local (x,y) -138.99512615503, -22.106229814856 - Layer[4] : time 41.433396672601 (nsec) --- local (x,y) -155.87215573417, -22.786045912471 -EM Calorimeter has 20 hits. Total Edep is 423.88106415975 (MeV) -Hadron Calorimeter has 6 hits. Total Edep is 31.597225145326 (MeV) + Layer[0] : time 34.517744216466 (nsec) --- local (x,y) -105.36049830889, 77.128361996468 + Layer[1] : time 36.202242392485 (nsec) --- local (x,y) -113.84315382318, 82.74954887198 + Layer[2] : time 37.886768872726 (nsec) --- local (x,y) -122.71249477604, 88.40854361989 + Layer[3] : time 39.57128844929 (nsec) --- local (x,y) -131.55456448961, 93.85077254236 + Layer[4] : time 41.255809515182 (nsec) --- local (x,y) -140.59432969639, 98.924855561991 +EM Calorimeter has 26 hits. Total Edep is 575.94845363568 (MeV) +Hadron Calorimeter has 2 hits. Total Edep is 0.98105431188742 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done ... close file : B5.root - done @@ -1253,25 +1236,24 @@ Hadron Calorimeter has 6 hits. Total Edep is 31.597225145326 (MeV) ... open analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : e+ (-0,0,1000) +>>> Event 0 >>> Simulation truth : e+ (0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867839433208 (nsec) + Hodoscope[7] 4.9867841086296 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.203312322835 (nsec) -Drift Chamber 1 has 6 hits. - Layer[0] : time 6.6709567614587 (nsec) --- local (x,y) 1.440628211168, 0.51573564800867 - Layer[1] : time 8.3387826564318 (nsec) --- local (x,y) 2.5979878804842, 0.97725932517806 - Layer[2] : time 10.00660871952 (nsec) --- local (x,y) 3.8436928209406, 1.1933150082503 - Layer[2] : time 10.04191598155 (nsec) --- local (x,y) 4.0888414381889, 5.4415394702968 - Layer[3] : time 11.674434071482 (nsec) --- local (x,y) 5.0132622841716, 1.357506972592 - Layer[4] : time 13.342258453048 (nsec) --- local (x,y) 6.0636251005763, 1.3575665196237 + Hodoscope[6] 43.222349341485 (nsec) +Drift Chamber 1 has 5 hits. + Layer[0] : time 6.6709525588583 (nsec) --- local (x,y) -0.37200197006989, -1.2185808667414 + Layer[1] : time 8.3387762086296 (nsec) --- local (x,y) -0.66797875040762, -2.1031276906096 + Layer[2] : time 10.006598458527 (nsec) --- local (x,y) -1.038503122579, -2.6630111166457 + Layer[3] : time 11.674420768309 (nsec) --- local (x,y) -1.2463037475149, -3.3077867501564 + Layer[4] : time 13.342243790226 (nsec) --- local (x,y) -1.5485839154741, -4.073735941847 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.865605188587 (nsec) --- local (x,y) -142.42790557249, -1.8183042595053 - Layer[1] : time 36.536461295059 (nsec) --- local (x,y) -172.59894483603, -2.5359231360634 - Layer[2] : time 38.207310114789 (nsec) --- local (x,y) -202.73672356165, -3.1224143455108 - Layer[3] : time 39.878151548955 (nsec) --- local (x,y) -232.84097308214, -3.5032420917856 - Layer[4] : time 41.548955906373 (nsec) --- local (x,y) -262.75571575561, -4.1082654202435 -EM Calorimeter has 7 hits. Total Edep is 987.17199481252 (MeV) + Layer[0] : time 34.846041438692 (nsec) --- local (x,y) -288.73742489432, 0.66575472835713 + Layer[1] : time 36.524713177087 (nsec) --- local (x,y) -345.86314912681, 1.1718199330666 + Layer[2] : time 38.203346254475 (nsec) --- local (x,y) -402.88227120644, 2.0420228144162 + Layer[3] : time 39.881998754594 (nsec) --- local (x,y) -459.95455287458, 2.7857247742866 + Layer[4] : time 41.560442083082 (nsec) --- local (x,y) -516.47111315428, 3.5368247815612 +EM Calorimeter has 8 hits. Total Edep is 858.89767965536 (MeV) Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) ... write file : B5.root - done ... write file : B5ntuple.root - done diff --git a/examples/extended/analysis/AnaEx01/AnaEx01-csv.out b/examples/extended/analysis/AnaEx01/AnaEx01-csv.out index 26aabd82110437754e56935cd79417640f73ed93..b041ead6c6e005061fc924ab3194a1ea1546277d 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01-csv.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01-csv.out @@ -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 diff --git a/examples/extended/analysis/AnaEx01/AnaEx01-hdf5.out b/examples/extended/analysis/AnaEx01/AnaEx01-hdf5.out index 1591279ef8e7520d099ab1adb44d34274c9ec8f9..0d06a2ba57bb2be4287b6e0056b0de29b9b0d0e3 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01-hdf5.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01-hdf5.out @@ -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 diff --git a/examples/extended/analysis/AnaEx01/AnaEx01-root.out b/examples/extended/analysis/AnaEx01/AnaEx01-root.out index 5c0495522c51c4fb3035f3ed9b932afb731a27e3..cde641c2bbb34543e25296c743d9e9283ff87791 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01-root.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01-root.out @@ -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 diff --git a/examples/extended/analysis/AnaEx01/AnaEx01-xml.out b/examples/extended/analysis/AnaEx01/AnaEx01-xml.out index 582b9247b82268bce615754dea897a868c7f78d0..afb938d0de5e3509705b7bec440ddd6451382e5a 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01-xml.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01-xml.out @@ -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 diff --git a/examples/extended/analysis/AnaEx02/AnaEx02.out b/examples/extended/analysis/AnaEx02/AnaEx02.out index e724545b31d30a3f45c085f1fb7572e78040f0ce..1e6c2fcf2fc6d4f099aa0d587c7d22ac0304df42 100644 --- a/examples/extended/analysis/AnaEx02/AnaEx02.out +++ b/examples/extended/analysis/AnaEx02/AnaEx02.out @@ -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 diff --git a/examples/extended/analysis/AnaEx03/AnaEx03-csv.out b/examples/extended/analysis/AnaEx03/AnaEx03-csv.out index df1bbc1c7107ff778767935cbaf769145e603fa9..165c8a347f226595a81db7e350d7e58d607cc3c8 100644 --- a/examples/extended/analysis/AnaEx03/AnaEx03-csv.out +++ b/examples/extended/analysis/AnaEx03/AnaEx03-csv.out @@ -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 diff --git a/examples/extended/analysis/AnaEx03/AnaEx03-hdf5.out b/examples/extended/analysis/AnaEx03/AnaEx03-hdf5.out index 56c17510f0e2a5e63b3b6b8c1123aa8e7d82c67c..a0b5864186deffed893fd5d2152a8d946b374bae 100644 --- a/examples/extended/analysis/AnaEx03/AnaEx03-hdf5.out +++ b/examples/extended/analysis/AnaEx03/AnaEx03-hdf5.out @@ -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 diff --git a/examples/extended/analysis/AnaEx03/AnaEx03-root.out b/examples/extended/analysis/AnaEx03/AnaEx03-root.out index 4dbd0b2f6fd945bf2876693b80a092e6991b4fc9..a657a4e0cf49861132979e8f063aa9b56e401acb 100644 --- a/examples/extended/analysis/AnaEx03/AnaEx03-root.out +++ b/examples/extended/analysis/AnaEx03/AnaEx03-root.out @@ -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 diff --git a/examples/extended/analysis/AnaEx03/AnaEx03-xml.out b/examples/extended/analysis/AnaEx03/AnaEx03-xml.out index cb632f708233f5298a48e92441014b585eb61c3b..61a4e0bcd06f9e3ae10c165ecc04de8add1d7fe9 100644 --- a/examples/extended/analysis/AnaEx03/AnaEx03-xml.out +++ b/examples/extended/analysis/AnaEx03/AnaEx03-xml.out @@ -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 diff --git a/examples/extended/analysis/B1Con/exampleB01Con.out b/examples/extended/analysis/B1Con/exampleB01Con.out index 64994b0cb80919d2aa36b7384604f4495b5ebec0..4a724d359491a8110d96dc4147cd179db48c3f31 100644 --- a/examples/extended/analysis/B1Con/exampleB01Con.out +++ b/examples/extended/analysis/B1Con/exampleB01Con.out @@ -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 @@ -823,13 +823,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY R = 0.0862315 SHIFT = 1.72861e-13 VOV = 0.00854466 - FOM = 4482.77 + FOM = 13448.3 THE LARGEST SCORE = 5.54337e-13 and it happened at 366th event Affected Mean = 4.60558e-14 and its ratio to original is 1.01116 Affected VAR = 1.56695e-26 and its ratio to original is 1.01576 Affected R = 0.0859065 and its ratio to original is 0.99623 Affected SHIFT = 1.73445e-13 and its ratio to original is 1.00338 - Affected FOM = 4482.77 and its ratio to original is 1 + Affected FOM = 13448.3 and its ratio to original is 1 MEAN distribution is not RANDOM r follows 1/std::sqrt(N) r is monotonically decrease @@ -843,22 +843,22 @@ This result passes 5 / 8 Convergence Test. G4ConvergenceTester Output History of DOSE_TALLY i/16 till_ith mean var sd r vov fom shift e r2eff r2int - 1 62 3.17379e-14 1.29473e-26 1.13786e-13 0.451691 0.226367 245.069 2.0412e-13 0.142857 0.0952381 0.105548 - 2 124 3.30804e-14 1.06384e-26 1.03143e-13 0.278877 0.105732 642.902 1.73258e-13 0.168 0.039619 0.0375311 - 3 187 3.94836e-14 1.26526e-26 1.12484e-13 0.207776 0.0559014 772.128 1.69917e-13 0.191489 0.0224586 0.0204825 - 4 249 3.97276e-14 1.30204e-26 1.14107e-13 0.181656 0.0405982 1010.14 1.71002e-13 0.184 0.0177391 0.0151277 - 5 312 3.82407e-14 1.22829e-26 1.10828e-13 0.163814 0.0339478 1242.15 1.69776e-13 0.185304 0.0140465 0.0127029 - 6 374 3.89136e-14 1.2719e-26 1.12778e-13 0.149661 0.0287795 1488.2 1.742e-13 0.184 0.0118261 0.0105126 - 7 437 3.80559e-14 1.25301e-26 1.11938e-13 0.140546 0.0252541 1687.5 1.75552e-13 0.191781 0.00962166 0.0100864 - 8 499 4.16767e-14 1.38768e-26 1.178e-13 0.126406 0.019678 2086.14 1.74791e-13 0.202 0.00790099 0.00804549 - 9 562 4.17944e-14 1.4095e-26 1.18722e-13 0.119718 0.0172617 2325.73 1.75728e-13 0.198934 0.00715237 0.00715461 - 10 624 4.33469e-14 1.47176e-26 1.21316e-13 0.111949 0.0146904 2659.74 1.74757e-13 0.1968 0.00653008 0.00598243 - 11 687 4.40834e-14 1.50155e-26 1.22538e-13 0.105974 0.0130273 2968.1 1.74616e-13 0.196221 0.00595392 0.00526027 - 12 749 4.57566e-14 1.56694e-26 1.25178e-13 0.0998947 0.0112546 3340.36 1.73389e-13 0.198667 0.00537808 0.00458757 - 13 812 4.50245e-14 1.54897e-26 1.24458e-13 0.0969456 0.0105987 3546.68 1.74374e-13 0.195572 0.0050593 0.0043276 - 14 874 4.57357e-14 1.56286e-26 1.25015e-13 0.0924063 0.00966482 3903.69 1.7349e-13 0.2 0.00457143 0.00395773 - 15 937 4.56765e-14 1.55286e-26 1.24614e-13 0.0890783 0.0090895 4200.83 1.73294e-13 0.198294 0.00431025 0.00361624 - 16 999 4.55475e-14 1.54263e-26 1.24203e-13 0.0862315 0.00854466 4482.77 1.72861e-13 0.198 0.00405051 0.00337794 + 1 62 3.17379e-14 1.29473e-26 1.13786e-13 0.451691 0.226367 490.137 2.0412e-13 0.142857 0.0952381 0.105548 + 2 124 3.30804e-14 1.06384e-26 1.03143e-13 0.278877 0.105732 1285.8 1.73258e-13 0.168 0.039619 0.0375311 + 3 187 3.94836e-14 1.26526e-26 1.12484e-13 0.207776 0.0559014 2316.38 1.69917e-13 0.191489 0.0224586 0.0204825 + 4 249 3.97276e-14 1.30204e-26 1.14107e-13 0.181656 0.0405982 3030.41 1.71002e-13 0.184 0.0177391 0.0151277 + 5 312 3.82407e-14 1.22829e-26 1.10828e-13 0.163814 0.0339478 3726.46 1.69776e-13 0.185304 0.0140465 0.0127029 + 6 374 3.89136e-14 1.2719e-26 1.12778e-13 0.149661 0.0287795 4464.59 1.742e-13 0.184 0.0118261 0.0105126 + 7 437 3.80559e-14 1.25301e-26 1.11938e-13 0.140546 0.0252541 5062.49 1.75552e-13 0.191781 0.00962166 0.0100864 + 8 499 4.16767e-14 1.38768e-26 1.178e-13 0.126406 0.019678 6258.43 1.74791e-13 0.202 0.00790099 0.00804549 + 9 562 4.17944e-14 1.4095e-26 1.18722e-13 0.119718 0.0172617 6977.18 1.75728e-13 0.198934 0.00715237 0.00715461 + 10 624 4.33469e-14 1.47176e-26 1.21316e-13 0.111949 0.0146904 7979.21 1.74757e-13 0.1968 0.00653008 0.00598243 + 11 687 4.40834e-14 1.50155e-26 1.22538e-13 0.105974 0.0130273 8904.31 1.74616e-13 0.196221 0.00595392 0.00526027 + 12 749 4.57566e-14 1.56694e-26 1.25178e-13 0.0998947 0.0112546 10021.1 1.73389e-13 0.198667 0.00537808 0.00458757 + 13 812 4.50245e-14 1.54897e-26 1.24458e-13 0.0969456 0.0105987 10640 1.74374e-13 0.195572 0.0050593 0.0043276 + 14 874 4.57357e-14 1.56286e-26 1.25015e-13 0.0924063 0.00966482 11711.1 1.7349e-13 0.2 0.00457143 0.00395773 + 15 937 4.56765e-14 1.55286e-26 1.24614e-13 0.0890783 0.0090895 12602.5 1.73294e-13 0.198294 0.00431025 0.00361624 + 16 999 4.55475e-14 1.54263e-26 1.24203e-13 0.0862315 0.00854466 13448.3 1.72861e-13 0.198 0.00405051 0.00337794 --------------------End of Global Run----------------------- The run consists of 1000 gamma of 6 MeV @@ -874,13 +874,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY R = 0.0282569 SHIFT = -1.44705e-13 VOV = 0.000156343 - FOM = 6262.11 + FOM = 9634.01 THE LARGEST SCORE = 1.07852e-11 and it happened at 845th event Affected Mean = 5.20969e-12 and its ratio to original is 1.00107 Affected VAR = 2.16338e-23 and its ratio to original is 1.00044 Affected R = 0.0282188 and its ratio to original is 0.99865 Affected SHIFT = -1.48838e-13 and its ratio to original is 1.02856 - Affected FOM = 6262.11 and its ratio to original is 1 + Affected FOM = 9634.01 and its ratio to original is 1 MEAN distribution is RANDOM r follows 1/std::sqrt(N) r is monotonically decrease @@ -894,22 +894,22 @@ This result passes 6 / 8 Convergence Test. G4ConvergenceTester Output History of DOSE_TALLY i/16 till_ith mean var sd r vov fom shift e r2eff r2int - 1 62 5.17001e-12 1.96868e-23 4.43698e-12 0.108125 0.00444842 427.679 -1.46017e-13 0.666667 0.00793651 0.00356894 - 2 124 5.48568e-12 2.06461e-23 4.5438e-12 0.0740856 0.00199883 910.967 -3.91429e-13 0.672 0.00390476 0.00154 - 3 187 5.64378e-12 2.10694e-23 4.59014e-12 0.0593168 0.00121232 1421.07 -5.25797e-13 0.68617 0.00243279 0.00106697 - 4 249 5.50828e-12 2.07921e-23 4.55983e-12 0.0523555 0.000898412 1824.08 -4.24174e-13 0.672 0.00195238 0.000777756 - 5 312 5.33403e-12 2.11269e-23 4.59641e-12 0.0487069 0.000604754 2107.61 -2.7013e-13 0.648562 0.00173122 0.000633561 - 6 374 5.39783e-12 2.11503e-23 4.59894e-12 0.043997 0.000520265 2583 -3.16177e-13 0.656 0.00139837 0.0005322 - 7 437 5.42308e-12 2.12921e-23 4.61434e-12 0.0406562 0.000436294 3024.94 -3.29925e-13 0.657534 0.00118912 0.000460034 - 8 499 5.27489e-12 2.15175e-23 4.6387e-12 0.0393276 0.000337048 3232.77 -1.89348e-13 0.642 0.00111526 0.000428305 - 9 562 5.22693e-12 2.14879e-23 4.6355e-12 0.0373763 0.000292163 3579.13 -1.50496e-13 0.637655 0.00100932 0.000385192 - 10 624 5.17297e-12 2.15077e-23 4.63764e-12 0.0358606 0.000252154 3888.08 -1.17855e-13 0.632 0.000931646 0.000352278 - 11 687 5.18432e-12 2.15591e-23 4.64318e-12 0.0341452 0.000230119 4288.54 -1.25421e-13 0.632267 0.000845362 0.00031884 - 12 749 5.28939e-12 2.15197e-23 4.63894e-12 0.0320245 0.000220186 4875.34 -2.22956e-13 0.644 0.00073706 0.000287142 - 13 812 5.21542e-12 2.15542e-23 4.64265e-12 0.0312199 0.000197387 5129.88 -1.53479e-13 0.635916 0.000704224 0.00026926 - 14 874 5.20525e-12 2.14738e-23 4.63399e-12 0.030096 0.000187892 5520.16 -1.42837e-13 0.637714 0.000649258 0.000255479 - 15 937 5.22623e-12 2.15556e-23 4.6428e-12 0.0290062 0.000172968 5942.78 -1.63337e-13 0.637527 0.000606143 0.000234317 - 16 999 5.20411e-12 2.16243e-23 4.6502e-12 0.0282569 0.000156343 6262.11 -1.44705e-13 0.636 0.000572327 0.000225328 + 1 62 5.17001e-12 1.96868e-23 4.43698e-12 0.108125 0.00444842 657.967 -1.46017e-13 0.666667 0.00793651 0.00356894 + 2 124 5.48568e-12 2.06461e-23 4.5438e-12 0.0740856 0.00199883 1401.49 -3.91429e-13 0.672 0.00390476 0.00154 + 3 187 5.64378e-12 2.10694e-23 4.59014e-12 0.0593168 0.00121232 2186.26 -5.25797e-13 0.68617 0.00243279 0.00106697 + 4 249 5.50828e-12 2.07921e-23 4.55983e-12 0.0523555 0.000898412 2806.28 -4.24174e-13 0.672 0.00195238 0.000777756 + 5 312 5.33403e-12 2.11269e-23 4.59641e-12 0.0487069 0.000604754 3242.47 -2.7013e-13 0.648562 0.00173122 0.000633561 + 6 374 5.39783e-12 2.11503e-23 4.59894e-12 0.043997 0.000520265 3973.84 -3.16177e-13 0.656 0.00139837 0.0005322 + 7 437 5.42308e-12 2.12921e-23 4.61434e-12 0.0406562 0.000436294 4653.75 -3.29925e-13 0.657534 0.00118912 0.000460034 + 8 499 5.27489e-12 2.15175e-23 4.6387e-12 0.0393276 0.000337048 4973.49 -1.89348e-13 0.642 0.00111526 0.000428305 + 9 562 5.22693e-12 2.14879e-23 4.6355e-12 0.0373763 0.000292163 5506.35 -1.50496e-13 0.637655 0.00100932 0.000385192 + 10 624 5.17297e-12 2.15077e-23 4.63764e-12 0.0358606 0.000252154 5981.67 -1.17855e-13 0.632 0.000931646 0.000352278 + 11 687 5.18432e-12 2.15591e-23 4.64318e-12 0.0341452 0.000230119 6597.76 -1.25421e-13 0.632267 0.000845362 0.00031884 + 12 749 5.28939e-12 2.15197e-23 4.63894e-12 0.0320245 0.000220186 7500.52 -2.22956e-13 0.644 0.00073706 0.000287142 + 13 812 5.21542e-12 2.15542e-23 4.64265e-12 0.0312199 0.000197387 7892.12 -1.53479e-13 0.635916 0.000704224 0.00026926 + 14 874 5.20525e-12 2.14738e-23 4.63399e-12 0.030096 0.000187892 8492.55 -1.42837e-13 0.637714 0.000649258 0.000255479 + 15 937 5.22623e-12 2.15556e-23 4.6428e-12 0.0290062 0.000172968 9142.74 -1.63337e-13 0.637527 0.000606143 0.000234317 + 16 999 5.20411e-12 2.16243e-23 4.6502e-12 0.0282569 0.000156343 9634.01 -1.44705e-13 0.636 0.000572327 0.000225328 --------------------End of Global Run----------------------- The run consists of 1000 proton of 210 MeV diff --git a/examples/extended/biasing/B01/exampleB01.out b/examples/extended/biasing/B01/exampleB01.out index d79b3404461e3b8efec58c7e44f86c2f69f72d68..abc6f3feba3f5577db4406ee790d26721d218c15 100644 --- a/examples/extended/biasing/B01/exampleB01.out +++ b/examples/extended/biasing/B01/exampleB01.out @@ -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 diff --git a/examples/extended/biasing/B02/exampleB02.out b/examples/extended/biasing/B02/exampleB02.out index 03bb6d48e80151e5148e7c4cbfe2b0dd4e25e00b..aa0cd120810c466b05326b33a86e33b5dd97fc62 100644 --- a/examples/extended/biasing/B02/exampleB02.out +++ b/examples/extended/biasing/B02/exampleB02.out @@ -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 diff --git a/examples/extended/biasing/B03/exampleB03.out b/examples/extended/biasing/B03/exampleB03.out index 6e0676e1b8e1e36e5abfc520c7cf11fd3a4e5c5f..486b7c8bf4190dd701f3cefae1338c614c1f9693 100644 --- a/examples/extended/biasing/B03/exampleB03.out +++ b/examples/extended/biasing/B03/exampleB03.out @@ -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 diff --git a/examples/extended/biasing/GB01/exampleGB01.out b/examples/extended/biasing/GB01/exampleGB01.out index 63aefc6bba1b8d4f38a6340c2b5aea61434f3dd7..eeca92115e8c3a2076fb2d98f9e3c199e1e5435f 100644 --- a/examples/extended/biasing/GB01/exampleGB01.out +++ b/examples/extended/biasing/GB01/exampleGB01.out @@ -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 diff --git a/examples/extended/biasing/GB02/exampleGB02.out b/examples/extended/biasing/GB02/exampleGB02.out index 3e37fa01b54c7d8d6827c694ec84b9f89dba6584..76b9b595e7cee703f933e1d287fcf68a0da186fc 100644 --- a/examples/extended/biasing/GB02/exampleGB02.out +++ b/examples/extended/biasing/GB02/exampleGB02.out @@ -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 diff --git a/examples/extended/biasing/GB03/exampleGB03.out b/examples/extended/biasing/GB03/exampleGB03.out index 83d653baf722fe282f5dc2f91608ec739804d534..7fa20bb3bf85678f09c8cf1ba391824a0f6fa8a7 100644 --- a/examples/extended/biasing/GB03/exampleGB03.out +++ b/examples/extended/biasing/GB03/exampleGB03.out @@ -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 @@ -882,7 +882,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.080000s Real=0.084585s Sys=0.000000s + User=0.050000s Real=0.063554s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume This region is in the mass world. @@ -945,14 +945,14 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.030000s Real=0.035062s Sys=0.000000s + User=0.020000s Real=0.020078s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x1e7f870 -UserPhysicsList deleted 0x1e80380 -UserActionInitialization deleted 0x203b570 +UserDetectorConstruction deleted 0xbe8c40 +UserPhysicsList deleted 0xbe9750 +UserActionInitialization deleted 0xda4940 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/biasing/GB04/exampleGB04.out b/examples/extended/biasing/GB04/exampleGB04.out index 4beafdc4666580e044501fe4712855ebd1d86884..d59012b72e7af15a824fa38c10cbb49c71e64428 100644 --- a/examples/extended/biasing/GB04/exampleGB04.out +++ b/examples/extended/biasing/GB04/exampleGB04.out @@ -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 @@ -1257,7 +1257,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001889s Sys=0.000000s + User=0.000000s Real=0.001548s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume This region is in the mass world. @@ -2343,7 +2343,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.006848s Sys=0.000000s + User=0.010000s Real=0.002733s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume This region is in the mass world. @@ -3756,14 +3756,14 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.012532s Sys=0.000000s + User=0.000000s Real=0.003232s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:2) -UserDetectorConstruction deleted 0x8ae500 -UserPhysicsList deleted 0x8ae880 -UserActionInitialization deleted 0xa699f0 +UserDetectorConstruction deleted 0x9228d0 +UserPhysicsList deleted 0x922c50 +UserActionInitialization deleted 0xadddc0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/biasing/GB05/exampleGB05.out b/examples/extended/biasing/GB05/exampleGB05.out index 82bf29e92811171fc678a8f0a660f8f34d74aaf7..63e714dd66bdfd37295ae0be64ae6be56279bddd 100644 --- a/examples/extended/biasing/GB05/exampleGB05.out +++ b/examples/extended/biasing/GB05/exampleGB05.out @@ -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 diff --git a/examples/extended/biasing/GB06/exampleGB06.out b/examples/extended/biasing/GB06/exampleGB06.out index 6f36c68abf3d569511648372bbcc41df1c1292c2..0e43fa212ffd7bf5663801cba016a9733fdd55a1 100644 --- a/examples/extended/biasing/GB06/exampleGB06.out +++ b/examples/extended/biasing/GB06/exampleGB06.out @@ -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 diff --git a/examples/extended/biasing/GB07/exampleGB07.out b/examples/extended/biasing/GB07/exampleGB07.out index b614aceb10fcbe5cf8b51964b3d2decec4b4761b..006a2b549814f5c575b78e8feb4409676f8c4a58 100644 --- a/examples/extended/biasing/GB07/exampleGB07.out +++ b/examples/extended/biasing/GB07/exampleGB07.out @@ -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 diff --git a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out index 15136a0f1724e67497f166dda49f164179218c90..c12b8043933d754bad439c37e9d6a3eb9bab2a67 100644 --- a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out +++ b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out @@ -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 @@ -426,7 +426,7 @@ nb event 195000 Run terminated. Run Summary Number of events processed : 200000 - User=60.220000s Real=69.013779s Sys=0.050000s + User=34.810000s Real=34.912663s Sys=0.050000s Results of reverse/adjoint simulation! normalised edep [MeV] = 0.00163827 error[MeV] = 1.70862e-05 diff --git a/examples/extended/common/common.out b/examples/extended/common/common.out index 81d6103f4c2ddaaab160db45e0d6dbc9501553ec..52f749bfdb8065da2d3d98e191508517c97dfbbd 100644 --- a/examples/extended/common/common.out +++ b/examples/extended/common/common.out @@ -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 @@ -127,13 +127,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.000292s Sys=0.000000s + User=0.000000s Real=0.000180s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x10f0ea0 -UserPhysicsList deleted 0x1351900 +UserDetectorConstruction deleted 0x1bd3e70 +UserPhysicsList deleted 0x1e34cd0 UserActionInitialization deleted 0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 diff --git a/examples/extended/electromagnetic/TestEm0/TestEm0.out b/examples/extended/electromagnetic/TestEm0/TestEm0.out index dc5b3a921728172b836499ef8eefede9040d2975..83e736197fec055688c95cb175cdf1ef6bebed78 100644 --- a/examples/extended/electromagnetic/TestEm0/TestEm0.out +++ b/examples/extended/electromagnetic/TestEm0/TestEm0.out @@ -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 @@ -159,7 +159,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000343s Sys=0.000000s + User=0.000000s Real=0.000270s Sys=0.000000s Material: Water density: 1.000 g/cm3 RadL: 36.092 cm Nucl.Int.Length: 75.356 cm Imean: 78.000 eV temperature: 293.15 K pressure: 1.00 atm @@ -228,7 +228,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000183s Sys=0.000000s + User=0.000000s Real=0.000141s Sys=0.000000s ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 Dynamic pools deleted: 9 / Total memory freed: 0.012 MB diff --git a/examples/extended/electromagnetic/TestEm1/TestEm1.out b/examples/extended/electromagnetic/TestEm1/TestEm1.out index cd3ce7c6852364c9ae8bd70f4b518e6592cc78ed..00353ab08d836f502a23c17cc52b7590b3d9561f 100644 --- a/examples/extended/electromagnetic/TestEm1/TestEm1.out +++ b/examples/extended/electromagnetic/TestEm1/TestEm1.out @@ -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 @@ -636,7 +636,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 2000 - User=1.110000s Real=1.178100s Sys=0.000000s + User=0.710000s Real=0.714576s Sys=0.000000s ======================== run summary ====================== @@ -708,7 +708,7 @@ N=17 V[N]={1176734187215063284, 2107189873979932999, 1691597703571750464, 162858 Run terminated. Run Summary Number of events processed : 2000 - User=0.040000s Real=0.054807s Sys=0.000000s + User=0.040000s Real=0.032608s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm10/TestEm10.out b/examples/extended/electromagnetic/TestEm10/TestEm10.out index f893d433ce4b17679a57e988b10936cf2397a722..bfd5c0084f3bd17d398104e66b74de519e637ecb 100644 --- a/examples/extended/electromagnetic/TestEm10/TestEm10.out +++ b/examples/extended/electromagnetic/TestEm10/TestEm10.out @@ -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 @@ -218,10 +218,10 @@ Lorentz Factor XTR photon number 8.085e+04 3.154 9.283e+04 3.154 -total time for build X-ray TR energy loss tables = 0.29 s +total time for build X-ray TR energy loss tables = 0.18 s Build angle for energy distribution according the current radiator -total time for build X-ray TR angle for energy loss tables = 1.17 s +total time for build X-ray TR angle for energy loss tables = 0.76 s msc: for e+ SubType= 10 ===== EM models for the G4Region DefaultRegionForTheWorld ====== @@ -308,10 +308,10 @@ Lorentz Factor XTR photon number 8.085e+04 3.154 9.283e+04 3.154 -total time for build X-ray TR energy loss tables = 0.29 s +total time for build X-ray TR energy loss tables = 0.18 s Build angle for energy distribution according the current radiator -total time for build X-ray TR angle for energy loss tables = 1.21 s +total time for build X-ray TR angle for energy loss tables = 0.76 s msc: for proton SubType= 10 ===== EM models for the G4Region DefaultRegionForTheWorld ====== @@ -635,7 +635,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.190000s Real=0.189208s Sys=0.000000s + User=0.110000s Real=0.114984s Sys=0.000000s ================== run summary ===================== End of Run TotNbofEvents = 1000 Mean energy deposit in absorber = 0.0479535 +-0.0189569 MeV diff --git a/examples/extended/electromagnetic/TestEm11/TestEm11.out b/examples/extended/electromagnetic/TestEm11/TestEm11.out index 524108c35fe1f32de13b180b392e96d7267e3d39..e8e7b6df086b7355f20a7af9b3c04c2a05053522 100644 --- a/examples/extended/electromagnetic/TestEm11/TestEm11.out +++ b/examples/extended/electromagnetic/TestEm11/TestEm11.out @@ -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 @@ -549,7 +549,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20000 - User=0.810000s Real=0.819499s Sys=0.000000s + User=0.510000s Real=0.505610s Sys=0.000000s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm12/TestEm12.out b/examples/extended/electromagnetic/TestEm12/TestEm12.out index e162752fde02f81808773465f6def4f5ad128523..1442170f3e05fe25c9468197e0afb9693a5d839f 100644 --- a/examples/extended/electromagnetic/TestEm12/TestEm12.out +++ b/examples/extended/electromagnetic/TestEm12/TestEm12.out @@ -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 @@ -545,7 +545,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.760000s Real=0.767059s Sys=0.000000s + User=0.480000s Real=0.480787s Sys=0.000000s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm13/TestEm13.out b/examples/extended/electromagnetic/TestEm13/TestEm13.out index 9b65008e6742cdfafa4300eed45134c83e70ad2d..6e679c64b65ae54e73e1d6251e97a106ad017632 100644 --- a/examples/extended/electromagnetic/TestEm13/TestEm13.out +++ b/examples/extended/electromagnetic/TestEm13/TestEm13.out @@ -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 @@ -189,7 +189,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=1.880000s Real=1.887129s Sys=0.000000s + User=1.120000s Real=1.126357s Sys=0.000000s ======================== run summary ====================== @@ -256,7 +256,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=1.900000s Real=1.907842s Sys=0.000000s + User=1.210000s Real=1.207784s Sys=0.000000s ======================== run summary ====================== @@ -277,9 +277,9 @@ Run Summary ---------------------------------------- G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x1bd6600 -UserPhysicsList deleted 0x1e88bb0 -UserActionInitialization deleted 0x2009bd0 +UserDetectorConstruction deleted 0x162e660 +UserPhysicsList deleted 0x18e0f80 +UserActionInitialization deleted 0x1a61fa0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/electromagnetic/TestEm14/TestEm14.out b/examples/extended/electromagnetic/TestEm14/TestEm14.out index 573faad7a2a10d0a3f86b6389d5e1a6f86b48450..e289f96241b1840ed9d46ca1cca8719f9152983c 100644 --- a/examples/extended/electromagnetic/TestEm14/TestEm14.out +++ b/examples/extended/electromagnetic/TestEm14/TestEm14.out @@ -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 @@ -189,7 +189,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=3.170000s Real=3.202714s Sys=0.000000s + User=1.780000s Real=1.794547s Sys=0.000000s ======================== run summary ====================== @@ -259,7 +259,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=3.010000s Real=3.030105s Sys=0.000000s + User=1.640000s Real=1.634469s Sys=0.000000s ======================== run summary ====================== @@ -282,9 +282,9 @@ Run Summary ---------------------------------------- G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x238b600 -UserPhysicsList deleted 0x26403c0 -UserActionInitialization deleted 0x27c1600 +UserDetectorConstruction deleted 0xb2a660 +UserPhysicsList deleted 0xddf790 +UserActionInitialization deleted 0xf609d0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/electromagnetic/TestEm15/TestEm15.out b/examples/extended/electromagnetic/TestEm15/TestEm15.out index 45df1fe5c3273c1f5cd85dd674ae687c91867a84..5ed0dd7907b23912209a5561d78f5068af77087e 100644 --- a/examples/extended/electromagnetic/TestEm15/TestEm15.out +++ b/examples/extended/electromagnetic/TestEm15/TestEm15.out @@ -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 @@ -569,7 +569,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=0.040000s Real=0.041474s Sys=0.000000s + User=0.020000s Real=0.021718s Sys=0.000000s The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 ) @@ -641,7 +641,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.050942s Sys=0.000000s + User=0.030000s Real=0.027519s Sys=0.000000s The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 ) @@ -670,8 +670,8 @@ N=17 V[N]={310976880687426508, 1713548588833330960, 1561521303267605489, 5885692 --------------------------------------- G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x202fc10 -UserPhysicsList deleted 0x20734b0 +UserDetectorConstruction deleted 0xdf3fe0 +UserPhysicsList deleted 0xe37880 UserActionInitialization deleted 0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 diff --git a/examples/extended/electromagnetic/TestEm16/TestEm16.out b/examples/extended/electromagnetic/TestEm16/TestEm16.out index 3fc56a759e465c868831ffeb65a0c757e933e107..e345c7c8346675b67df798824c955628c1343385 100644 --- a/examples/extended/electromagnetic/TestEm16/TestEm16.out +++ b/examples/extended/electromagnetic/TestEm16/TestEm16.out @@ -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 @@ -337,7 +337,7 @@ G4SynchrotronRadiation::GetRandomEnergySR : Run terminated. Run Summary Number of events processed : 100 - User=0.380000s Real=0.394557s Sys=0.000000s + User=0.100000s Real=0.098979s Sys=0.000000s Summary for synchrotron radiation : Number of photons = 64566 Emean = 20.42 +/- 0.1465 keV diff --git a/examples/extended/electromagnetic/TestEm17/TestEm17.out b/examples/extended/electromagnetic/TestEm17/TestEm17.out index c36c9029c1425f390439a05b7425ec375be73978..5c51556610685defe3f03a544fc7d052287f5e24 100644 --- a/examples/extended/electromagnetic/TestEm17/TestEm17.out +++ b/examples/extended/electromagnetic/TestEm17/TestEm17.out @@ -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 @@ -635,7 +635,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=1.170000s Real=1.178668s Sys=0.000000s + User=0.670000s Real=0.675375s Sys=0.010000s The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -691,7 +691,7 @@ N=17 V[N]={882454084924701664, 2270259229220857311, 818577390581940897, 14266040 Run terminated. Run Summary Number of events processed : 10000 - User=1.200000s Real=1.202366s Sys=0.000000s + User=0.610000s Real=0.612530s Sys=0.000000s The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -746,7 +746,7 @@ N=17 V[N]={2103257823577124208, 469380737387581810, 386042433805554138, 18024306 Run terminated. Run Summary Number of events processed : 10000 - User=1.040000s Real=1.048017s Sys=0.000000s + User=0.570000s Real=0.575665s Sys=0.000000s The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -755,8 +755,8 @@ Run Summary # G4 kernel has come to Quit state. Deleting G4Run (id:2) -UserDetectorConstruction deleted 0xdf58d0 -UserPhysicsList deleted 0xe34748 +UserDetectorConstruction deleted 0x1a21ca0 +UserPhysicsList deleted 0x1a60b18 UserActionInitialization deleted 0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 diff --git a/examples/extended/electromagnetic/TestEm18/TestEm18.out b/examples/extended/electromagnetic/TestEm18/TestEm18.out index aef48f189e1a3755d887950a5b97495ebd55724d..a3215df6c02beb95de0077d67ac7af781771edf1 100644 --- a/examples/extended/electromagnetic/TestEm18/TestEm18.out +++ b/examples/extended/electromagnetic/TestEm18/TestEm18.out @@ -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 @@ -221,7 +221,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.510000s Real=0.507390s Sys=0.000000s + User=0.290000s Real=0.290754s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm2/TestEm2.out b/examples/extended/electromagnetic/TestEm2/TestEm2.out index 5608ce595b0fe335ec6ffb4f5b14ee5f5249ab58..99e046a9c2cc494e2ea97ac00b6873437e713b3d 100644 --- a/examples/extended/electromagnetic/TestEm2/TestEm2.out +++ b/examples/extended/electromagnetic/TestEm2/TestEm2.out @@ -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 @@ -605,7 +605,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100 - User=1.940000s Real=2.009909s Sys=0.000000s + User=1.140000s Real=1.144151s Sys=0.000000s LOGITUDINAL PROFILE CUMULATIVE LOGITUDINAL PROFILE bin Mean rms bin Mean rms diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3-geom.out b/examples/extended/electromagnetic/TestEm3/TestEm3-geom.out index b9718054b3b2210006b07365cc8e71bd0e7fa41c..7b938ab03baafe0c9a2f968ab5000d16db282235 100644 --- a/examples/extended/electromagnetic/TestEm3/TestEm3-geom.out +++ b/examples/extended/electromagnetic/TestEm3/TestEm3-geom.out @@ -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 diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3.out b/examples/extended/electromagnetic/TestEm3/TestEm3.out index 22e717fa02f5f4a43fc210fbe87c3171681eef79..9271b463b0410a89231acf927dff800c15ef4477 100644 --- a/examples/extended/electromagnetic/TestEm3/TestEm3.out +++ b/examples/extended/electromagnetic/TestEm3/TestEm3.out @@ -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 @@ -550,7 +550,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.200000s Real=1.206899s Sys=0.000000s + User=0.690000s Real=0.691042s Sys=0.000000s ------------------------------------------------------------ material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen @@ -625,7 +625,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.020000s Real=1.046073s Sys=0.000000s + User=0.590000s Real=0.590957s Sys=0.000000s ------------------------------------------------------------ material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen diff --git a/examples/extended/electromagnetic/TestEm4/TestEm4.out b/examples/extended/electromagnetic/TestEm4/TestEm4.out index 15f1542766c273366ad3896bf03b5c9c029a92a7..3fa99c545e97bb88e62581bc9d9ec3a4edf0db54 100644 --- a/examples/extended/electromagnetic/TestEm4/TestEm4.out +++ b/examples/extended/electromagnetic/TestEm4/TestEm4.out @@ -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 @@ -214,7 +214,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=0.730000s Real=0.735850s Sys=0.000000s + User=0.350000s Real=0.344177s Sys=0.000000s --------------------End of Global Run------------------------ The run consists of 100000 gamma of 9 MeV in a volume of C6F6 @@ -229,9 +229,9 @@ Run Summary ... close file : testem4.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x141a680 -UserPhysicsList deleted 0x141b890 -UserActionInitialization deleted 0x147f2f0 +UserDetectorConstruction deleted 0x168da50 +UserPhysicsList deleted 0x168ec60 +UserActionInitialization deleted 0x16f26c0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5-geom.out b/examples/extended/electromagnetic/TestEm5/TestEm5-geom.out index 4e1b00a7c99caae7b5e8753d7bea2600ed506c47..6b37a865af1165abacc6634e8f720ff3ee786f17 100644 --- a/examples/extended/electromagnetic/TestEm5/TestEm5-geom.out +++ b/examples/extended/electromagnetic/TestEm5/TestEm5-geom.out @@ -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 @@ -105,7 +105,7 @@ Step# X Y Z KineE dEStep StepLeng T Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000423s Sys=0.000000s + User=0.000000s Real=0.000268s Sys=0.000000s ======================== run summary ====================== @@ -185,7 +185,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 6 - User=0.000000s Real=0.000057s Sys=0.000000s + User=0.000000s Real=0.000031s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5-pixe_ANSTO.out b/examples/extended/electromagnetic/TestEm5/TestEm5-pixe_ANSTO.out index f7d3d7fa7f82177de6da04b627b33ca579a13b27..458d70b549685804a437785be594cfef25448976 100644 --- a/examples/extended/electromagnetic/TestEm5/TestEm5-pixe_ANSTO.out +++ b/examples/extended/electromagnetic/TestEm5/TestEm5-pixe_ANSTO.out @@ -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 @@ -239,7 +239,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100000 - User=53.650000s Real=53.891014s Sys=0.000000s + User=32.600000s Real=32.648936s Sys=0.010000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5.out b/examples/extended/electromagnetic/TestEm5/TestEm5.out index 12bc7fd9165cfca9c32c0d1a4f96f6e26dd5ee9b..0af2635c445239b50c792311ab2e4a9447f527fa 100644 --- a/examples/extended/electromagnetic/TestEm5/TestEm5.out +++ b/examples/extended/electromagnetic/TestEm5/TestEm5.out @@ -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 @@ -518,7 +518,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100000 - User=0.830000s Real=0.897074s Sys=0.000000s + User=0.400000s Real=0.400880s Sys=0.000000s ======================== run summary ====================== @@ -618,7 +618,7 @@ N=17 V[N]={910941890323901813, 1015746291667433571, 1849782191790666821, 2179466 Run terminated. Run Summary Number of events processed : 50000 - User=0.500000s Real=0.507378s Sys=0.000000s + User=0.300000s Real=0.294913s Sys=0.000000s ======================== run summary ====================== @@ -723,7 +723,7 @@ N=17 V[N]={1900512211198940772, 1890227061717900871, 2082969366185794521, 717329 Run terminated. Run Summary Number of events processed : 50000 - User=1.450000s Real=1.513348s Sys=0.000000s + User=0.820000s Real=0.822345s Sys=0.000000s ======================== run summary ====================== @@ -834,7 +834,7 @@ N=17 V[N]={721215474158146395, 563948681617651029, 983967623568370346, 107031027 Run terminated. Run Summary Number of events processed : 50000 - User=0.600000s Real=0.599384s Sys=0.000000s + User=0.220000s Real=0.228394s Sys=0.000000s ======================== run summary ====================== @@ -946,7 +946,7 @@ N=17 V[N]={586188805523696918, 1131603525368056635, 2135194985283342976, 1988102 Run terminated. Run Summary Number of events processed : 50000 - User=6.610000s Real=6.859923s Sys=0.000000s + User=3.820000s Real=3.843700s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm6/TestEm6.out b/examples/extended/electromagnetic/TestEm6/TestEm6.out index e3f8e222823f03a15d54ec445aa6589b45071d28..048adaea85251ee5ccc9290887078654a38582cd 100644 --- a/examples/extended/electromagnetic/TestEm6/TestEm6.out +++ b/examples/extended/electromagnetic/TestEm6/TestEm6.out @@ -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 @@ -276,7 +276,7 @@ Step# X Y Z KineE dEStep StepLeng T Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000688s Sys=0.000000s + User=0.000000s Real=0.000450s Sys=0.000000s ### RunAction::EndOfRunAction Number of process calls ---> GammaToMuPair : 5 @@ -395,7 +395,7 @@ Step# X Y Z KineE dEStep StepLeng T Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000449s Sys=0.000000s + User=0.000000s Real=0.000266s Sys=0.000000s ### RunAction::EndOfRunAction Number of process calls ---> AnnihiToMuPair : 2 ee2hadr : 3 @@ -419,8 +419,8 @@ Run Summary # G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x1d560d0 -UserPhysicsList deleted 0x1d8f710 +UserDetectorConstruction deleted 0x7e04a0 +UserPhysicsList deleted 0x819ae0 UserActionInitialization deleted 0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 diff --git a/examples/extended/electromagnetic/TestEm7/TestEm7.out b/examples/extended/electromagnetic/TestEm7/TestEm7.out index de7a8b0f6f2a8ad4ae8601633608fc8fefe8ca8e..66bad197811101ab37161cee65259263344f5ee4 100644 --- a/examples/extended/electromagnetic/TestEm7/TestEm7.out +++ b/examples/extended/electromagnetic/TestEm7/TestEm7.out @@ -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 @@ -592,7 +592,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=4.660000s Real=4.787908s Sys=0.000000s + User=2.750000s Real=2.750484s Sys=0.000000s The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -652,7 +652,7 @@ N=17 V[N]={1928752482960533917, 1537011110587309912, 992093420709832135, 4758505 Run terminated. Run Summary Number of events processed : 1000 - User=2.320000s Real=2.342706s Sys=0.000000s + User=0.960000s Real=0.967156s Sys=0.000000s The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -723,7 +723,7 @@ N=17 V[N]={1914085016406179854, 1941870692113417104, 952751528242321116, 1425379 Run terminated. Run Summary Number of events processed : 1000 - User=0.770000s Real=0.776794s Sys=0.000000s + User=0.480000s Real=0.476969s Sys=0.000000s The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 ) @@ -788,7 +788,7 @@ N=17 V[N]={802904847557501977, 1304012642077385197, 468862643498481156, 11809500 Run terminated. Run Summary Number of events processed : 100 - User=0.000000s Real=0.000481s Sys=0.000000s + User=0.000000s Real=0.000201s Sys=0.000000s The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 mg/cm3) @@ -851,7 +851,7 @@ N=17 V[N]={1821026208194177978, 862958539362113243, 292898641549640933, 31117047 Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.007957s Sys=0.000000s + User=0.000000s Real=0.004303s Sys=0.000000s The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -923,7 +923,7 @@ N=17 V[N]={989157427584633894, 2087952271038465535, 425056854451477234, 81706072 Run terminated. Run Summary Number of events processed : 10 - User=5.510000s Real=5.616226s Sys=0.060000s + User=3.200000s Real=3.232881s Sys=0.040000s The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 ) @@ -1001,7 +1001,7 @@ N=17 V[N]={1169934708488790920, 195642384756332438, 661694816270983648, 84154454 Run terminated. Run Summary Number of events processed : 1000 - User=0.410000s Real=0.420263s Sys=0.000000s + User=0.250000s Real=0.252789s Sys=0.000000s The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm8/TestEm8.out b/examples/extended/electromagnetic/TestEm8/TestEm8.out index 7511e21ffae463d47b8a633af0a8a644653bb21c..5d9248bf2033db0fc5febd80a5c93c46304a6b49 100644 --- a/examples/extended/electromagnetic/TestEm8/TestEm8.out +++ b/examples/extended/electromagnetic/TestEm8/TestEm8.out @@ -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 @@ -555,7 +555,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.020000s Real=0.013995s Sys=0.000000s + User=0.010000s Real=0.009101s Sys=0.000000s RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0166294 ==================================================== Beam Particle: proton diff --git a/examples/extended/electromagnetic/TestEm9/TestEm9.out b/examples/extended/electromagnetic/TestEm9/TestEm9.out index 533d372944ab2d4ab9206441558f3d789466aebc..4b5d15383d153c9d356943a1eb445c463ccf8a25 100644 --- a/examples/extended/electromagnetic/TestEm9/TestEm9.out +++ b/examples/extended/electromagnetic/TestEm9/TestEm9.out @@ -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 @@ -605,7 +605,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.550000s Real=0.559666s Sys=0.000000s + User=0.330000s Real=0.332817s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 0 ================================================================= @@ -715,7 +715,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.860000s Real=0.874195s Sys=0.000000s + User=0.520000s Real=0.517086s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 1 ================================================================= @@ -838,7 +838,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.400000s Real=0.796176s Sys=0.000000s + User=0.220000s Real=0.225123s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 2 ================================================================= @@ -961,22 +961,22 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.550000s Real=1.056917s Sys=0.000000s + User=0.250000s Real=0.243922s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 3 ================================================================= Number of events 100 -Average number of e- 173.1 -Average number of gamma 362.5 -Average number of e+ 47.62 -Average number of steps 1992 -Edep 1x1 = 0.8242 +- 0.004125 res= 5.004 % 100 -Edep 3x3 = 0.9517 +- 0.003258 res= 3.423 % 100 -Edep 5x5 = 0.9732 +- 0.003441 res= 3.536 % 100 +Average number of e- 173.2 +Average number of gamma 223.7 +Average number of e+ 47.71 +Average number of steps 1844 +Edep 1x1 = 0.8339 +- 0.003455 res= 4.144 % 100 +Edep 3x3 = 0.9577 +- 0.00327 res= 3.414 % 100 +Edep 5x5 = 0.9783 +- 0.00315 res= 3.22 % 100 =========== Ratios without trancating =========================== - E1/E9 = 0.8661 +- 0.003144 - E1/E25 = 0.8471 +- 0.003224 - E9/E25 = 0.978 +- 0.001135 + E1/E9 = 0.8709 +- 0.002945 + E1/E25 = 0.8527 +- 0.003074 + E9/E25 = 0.979 +- 0.001112 Beam Energy 1 GeV ================================================================== diff --git a/examples/extended/errorpropagation/errProp/errProp.out b/examples/extended/errorpropagation/errProp/errProp.out index 735db6c5b2777e03f264133897a4a13a777bf1e0..5cc162c7ab10c2b94fc0ac8f428ee4f38cc7b17e 100644 --- a/examples/extended/errorpropagation/errProp/errProp.out +++ b/examples/extended/errorpropagation/errProp/errProp.out @@ -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 @@ -18,7 +18,7 @@ WWW : http://geant4.org/ ************************************************************** - creating G4RunManagerKernel 0x1f43480 + creating G4RunManagerKernel 0x193b450 G4ChordFinder: stepperDriverId: 2 The materials defined are : @@ -94,15 +94,15 @@ G4Transportation: Current values for thresholds related to the killing of loop Important Energy = 250 ( above this tracks are given multiple chances ) Extra Trials = 10 'important' tracks, i.e. those above 'important' energy G4Transportation constructor> set fShortStepOptimisation to false -0x21face0G4ErrorPhysicsList:: particle process manager e+ = 0x21ff630 -0x21fab40G4ErrorPhysicsList:: particle process manager e- = 0x2200110 -0x21fa9a0G4ErrorPhysicsList:: particle process manager gamma = 0x2200280 -0x21fc060G4ErrorPhysicsList:: particle process manager geantino = 0x22036b0 -0x21faec0G4ErrorPhysicsList:: particle process manager mu+ = 0x2203900 -0x21fb210G4ErrorPhysicsList:: particle process manager mu- = 0x2203b50 -0x21fb5f0G4ErrorPhysicsList:: particle process manager pi+ = 0x2203da0 -0x21fba10G4ErrorPhysicsList:: particle process manager pi- = 0x21ff150 -0x21fbe30G4ErrorPhysicsList:: particle process manager proton = 0x2203ff0 +0x1bf30b0G4ErrorPhysicsList:: particle process manager e+ = 0x1bf7a00 +0x1bf2f10G4ErrorPhysicsList:: particle process manager e- = 0x1bf84e0 +0x1bf2d70G4ErrorPhysicsList:: particle process manager gamma = 0x1bf8690 +0x1bf4430G4ErrorPhysicsList:: particle process manager geantino = 0x1bfbac0 +0x1bf3290G4ErrorPhysicsList:: particle process manager mu+ = 0x1bfbd10 +0x1bf35e0G4ErrorPhysicsList:: particle process manager mu- = 0x1bfbf60 +0x1bf39c0G4ErrorPhysicsList:: particle process manager pi+ = 0x1bf7520 +0x1bf3de0G4ErrorPhysicsList:: particle process manager pi- = 0x1bfc090 +0x1bf4200G4ErrorPhysicsList:: particle process manager proton = 0x1bfc2e0 physicsList->CheckParticleList() start. physicsList->setCut() start. G4ChordFinder: stepperDriverId: 2 diff --git a/examples/extended/eventgenerator/exgps/exgps_batch.out b/examples/extended/eventgenerator/exgps/exgps_batch.out index b1927816f7f4010505a1627eb05785ae5736fe2a..80a0348d1a3c81591fe8f1c7dd49ab4d8b1c330f 100644 --- a/examples/extended/eventgenerator/exgps/exgps_batch.out +++ b/examples/extended/eventgenerator/exgps/exgps_batch.out @@ -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 diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run1.out b/examples/extended/eventgenerator/particleGun/particleGun_run1.out index 9d9f7849024629faa1b548f0c6eb1e69b268c002..67be449369642be1efb8e4109ef2fc023340c831 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run1.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run1.out @@ -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 @@ -67,7 +67,7 @@ Step# X Y Z KineE dEStep StepLeng T Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000372s Sys=0.000000s + User=0.000000s Real=0.000225s Sys=0.000000s # /tracking/verbose 0 /run/beamOn 5 @@ -87,7 +87,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000026s Sys=0.000000s + User=0.000000s Real=0.000017s Sys=0.000000s ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 Dynamic pools deleted: 9 / Total memory freed: 0.015 MB diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run2.out b/examples/extended/eventgenerator/particleGun/particleGun_run2.out index f0aa0928910eb04094508942c5c885bf33bdc20c..1bd6f57b2586930a79f84124ac3ae2bf4b94cb16 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run2.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run2.out @@ -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 @@ -49,7 +49,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.170000s Real=0.170525s Sys=0.000000s + User=0.120000s Real=0.117243s Sys=0.000000s ... write file : run2.root - done ... close file : run2.root - done ================== Deleting memory pools =================== diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run3.out b/examples/extended/eventgenerator/particleGun/particleGun_run3.out index 80572fe954f904ed80802fc70d3eac6e1f45d989..a4635d485f8020c937029c5627ae4827cd06f194 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run3.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run3.out @@ -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 @@ -50,7 +50,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.190000s Real=0.187863s Sys=0.000000s + User=0.120000s Real=0.131096s Sys=0.000000s ... write file : run3.root - done ... close file : run3.root - done ================== Deleting memory pools =================== diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run4.out b/examples/extended/eventgenerator/particleGun/particleGun_run4.out index 9fbaa53293e2db91456341e33240d70798c5d258..710d72c4f91d37a9151ce2e1ff72297113ad8bc6 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run4.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run4.out @@ -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 @@ -65,7 +65,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=2.760000s Real=2.778810s Sys=0.000000s + User=1.470000s Real=1.491672s Sys=0.000000s ... write file : run4.root - done ... close file : run4.root - done ================== Deleting memory pools =================== diff --git a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out index caaaf41874ef36bbd8cf4f701ed89f6c7d59ef7d..8ae12619959695ad0982f17478c961faaa61edfd 100644 --- a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out +++ b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out @@ -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 @@ -50,7 +50,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.270000s Real=0.274635s Sys=0.000000s + User=0.170000s Real=0.175981s Sys=0.000000s ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 Dynamic pools deleted: 9 / Total memory freed: 0.013 MB diff --git a/examples/extended/exoticphysics/channeling/ch0/channeling-ch0.out b/examples/extended/exoticphysics/channeling/ch0/channeling-ch0.out index 16e4b6b0c7cb09f44c1ebb18404d5df0b5c23d10..353410002bbe57d2d00a11f82132a8df176c26d8 100644 --- a/examples/extended/exoticphysics/channeling/ch0/channeling-ch0.out +++ b/examples/extended/exoticphysics/channeling/ch0/channeling-ch0.out @@ -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 @@ -1849,7 +1849,7 @@ Using Run terminated. Run Summary Number of events processed : 1000 - User=66.650000s Real=79.068510s Sys=0.010000s + User=30.640000s Real=30.758128s Sys=0.040000s ... write file : ExExCh.root - done ... close file : ExExCh.root - done Graphics systems deleted. diff --git a/examples/extended/exoticphysics/channeling/ch1/channeling-ch1.out b/examples/extended/exoticphysics/channeling/ch1/channeling-ch1.out index cec9d2cf081908ed667e08f03b68ce3c3f212755..902d593d1b2ee0291912b1e8cd16957b1d3bd003 100644 --- a/examples/extended/exoticphysics/channeling/ch1/channeling-ch1.out +++ b/examples/extended/exoticphysics/channeling/ch1/channeling-ch1.out @@ -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 @@ -929,4 +929,4 @@ Max 2J for sampling of angular correlations 10 Graphics systems deleted. Visualization Manager deleting... Execution terminated -User=49.850000s Real=58.002032s Sys=0.070000s +User=30.130000s Real=30.304792s Sys=0.030000s diff --git a/examples/extended/exoticphysics/channeling/ch2/channeling-ch2.out b/examples/extended/exoticphysics/channeling/ch2/channeling-ch2.out index 7cb2d9767d4e0941713484b3028addb990a25ab7..6a1884ab8ae4e26fef4d188fb03aca89048d5129 100644 --- a/examples/extended/exoticphysics/channeling/ch2/channeling-ch2.out +++ b/examples/extended/exoticphysics/channeling/ch2/channeling-ch2.out @@ -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 @@ -942,4 +942,4 @@ Max 2J for sampling of angular correlations 10 Graphics systems deleted. Visualization Manager deleting... Execution terminated -User=52.730000s Real=67.185802s Sys=0.040000s +User=31.770000s Real=32.584054s Sys=0.030000s diff --git a/examples/extended/exoticphysics/channeling/ch3/channeling-ch3.out b/examples/extended/exoticphysics/channeling/ch3/channeling-ch3.out index 298f85359b34b05771207a2172cbeadd693eb947..722f3955c102ca4da2c914ae8dbd57aea8fbd795 100644 --- a/examples/extended/exoticphysics/channeling/ch3/channeling-ch3.out +++ b/examples/extended/exoticphysics/channeling/ch3/channeling-ch3.out @@ -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 @@ -929,4 +929,4 @@ Max 2J for sampling of angular correlations 10 Graphics systems deleted. Visualization Manager deleting... Execution terminated -User=107.840000s Real=121.301311s Sys=0.150000s +User=63.470000s Real=73.165926s Sys=0.130000s diff --git a/examples/extended/exoticphysics/dmparticle/dmparticle.out b/examples/extended/exoticphysics/dmparticle/dmparticle.out index ee2d6659d44a59485a1965991f31bd8dd010d19d..547e7bc953ca3a9c142b5f48f0ebe8dc9711679b 100644 --- a/examples/extended/exoticphysics/dmparticle/dmparticle.out +++ b/examples/extended/exoticphysics/dmparticle/dmparticle.out @@ -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 @@ -1125,7 +1125,7 @@ Event = 0 z0 = -779.999 Primary direction = (0,0,1) Run terminated. Run Summary Number of events processed : 100 - User=0.600000s Real=0.596511s Sys=0.000000s + User=0.430000s Real=0.432010s Sys=0.000000s RunAction: End of run actions are started 1 Nevt= 100 Edep= 4107.57 ==================================================== Beam Particle: proton diff --git a/examples/extended/exoticphysics/monopole/monopole.out b/examples/extended/exoticphysics/monopole/monopole.out index 04b895df6c773a21f242092fe9d00384c22ecfb2..d4e7384db49997edfd19e9fee3d5f4eb5342b23f 100644 --- a/examples/extended/exoticphysics/monopole/monopole.out +++ b/examples/extended/exoticphysics/monopole/monopole.out @@ -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 diff --git a/examples/extended/exoticphysics/saxs/saxs-slits.out b/examples/extended/exoticphysics/saxs/saxs-slits.out index f7d2204a6fb3e4a84bfb5a9cafac91046f0bd886..c9a42340163f132aeb2112e8546d58e3ba045014 100644 --- a/examples/extended/exoticphysics/saxs/saxs-slits.out +++ b/examples/extended/exoticphysics/saxs/saxs-slits.out @@ -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 @@ -559,7 +559,7 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 1000000 - User=11.620000s Real=16.626768s Sys=0.010000s + User=6.280000s Real=7.415078s Sys=0.000000s --------------------End of Global Run----------------------- The run had 1000000 events... write file : output.root - done @@ -569,4 +569,4 @@ Number of memory pools allocated: 12 of which, static: 0 Dynamic pools deleted: 12 / Total memory freed: 0.025 MB ============================================================ Execution completed -User=13.230000s Real=27.010097s Sys=0.070000s +User=7.180000s Real=8.840125s Sys=0.040000s diff --git a/examples/extended/exoticphysics/saxs/saxs.out b/examples/extended/exoticphysics/saxs/saxs.out index e0fd8b37dd3835cecdd9762d1088f369ad4b2d85..61c4ad9f11d7055a8ee1f4e344755b6009e10f38 100644 --- a/examples/extended/exoticphysics/saxs/saxs.out +++ b/examples/extended/exoticphysics/saxs/saxs.out @@ -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 @@ -542,7 +542,7 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 1000000 - User=16.850000s Real=24.647405s Sys=0.030000s + User=9.250000s Real=9.293958s Sys=0.030000s --------------------End of Global Run----------------------- The run had 1000000 events... write file : output.root - done @@ -552,4 +552,4 @@ Number of memory pools allocated: 12 of which, static: 0 Dynamic pools deleted: 12 / Total memory freed: 0.023 MB ============================================================ Execution completed -User=18.410000s Real=33.477448s Sys=0.070000s +User=10.120000s Real=10.552401s Sys=0.070000s diff --git a/examples/extended/exoticphysics/ucn/ExUCN.out b/examples/extended/exoticphysics/ucn/ExUCN.out index 58f504df4ea8c57c3911aa18ff84ba2d05781b18..aab06e792e31c695b92b8a5fcf697589436d002c 100644 --- a/examples/extended/exoticphysics/ucn/ExUCN.out +++ b/examples/extended/exoticphysics/ucn/ExUCN.out @@ -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 @@ -1509,7 +1509,7 @@ Terminate current event processing. Run terminated. Run Summary Number of events processed : 1 - User=0.020000s Real=0.026892s Sys=0.000000s + User=0.010000s Real=0.016488s Sys=0.010000s Sum NoMT: 0 Sum NoMRT: 0 Sum NoMRCondition: 0 diff --git a/examples/extended/field/BlineTracer/BlineTracer.out b/examples/extended/field/BlineTracer/BlineTracer.out index 8af185a5ac9012ba27d29288d8b283089189aa61..7aabe4a65f7433587959e6716ca98f97e90e8e37 100644 --- a/examples/extended/field/BlineTracer/BlineTracer.out +++ b/examples/extended/field/BlineTracer/BlineTracer.out @@ -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 diff --git a/examples/extended/field/field01/field01.out b/examples/extended/field/field01/field01.out index 91e60f61fa22df3835feb6a279ce5c6a869fe88a..e4ab1cc30894503f246386866ca0169509beded5 100644 --- a/examples/extended/field/field01/field01.out +++ b/examples/extended/field/field01/field01.out @@ -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 @@ -207,7 +207,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001367s Sys=0.000000s + User=0.000000s Real=0.001096s Sys=0.000000s # /gun/energy 250.0 MeV /run/beamOn 1 @@ -292,7 +292,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000885s Sys=0.000000s + User=0.000000s Real=0.000547s Sys=0.000000s # /gun/energy 200.0 MeV /run/beamOn 1 @@ -377,7 +377,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000801s Sys=0.000000s + User=0.000000s Real=0.000519s Sys=0.000000s # /gun/energy 100.0 MeV /run/beamOn 1 @@ -462,7 +462,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001176s Sys=0.000000s + User=0.000000s Real=0.000717s Sys=0.000000s # /gun/energy 50.0 MeV /run/beamOn 1 @@ -547,7 +547,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001349s Sys=0.000000s + User=0.000000s Real=0.000895s Sys=0.000000s # # Change the value of the B-field # @@ -601,7 +601,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000497s Sys=0.000000s + User=0.000000s Real=0.000311s Sys=0.000000s # /gun/energy 500.0 MeV /tracking/verbose 0 @@ -633,7 +633,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.020000s Real=0.014710s Sys=0.000000s + User=0.010000s Real=0.010670s Sys=0.000000s # # Test commands defined in this example /control/verbose 2 @@ -696,7 +696,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.004659s Sys=0.000000s + User=0.000000s Real=0.002713s Sys=0.000000s ================== Deleting memory pools =================== Number of memory pools allocated: 12 of which, static: 0 Dynamic pools deleted: 12 / Total memory freed: 0.27 MB diff --git a/examples/extended/field/field02/field02.out b/examples/extended/field/field02/field02.out index 70ee9d9af699adbb597938c1844acd2d49c47c5a..bc867244253daad3cd73a49dc40714d67d4f046e 100644 --- a/examples/extended/field/field02/field02.out +++ b/examples/extended/field/field02/field02.out @@ -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 @@ -5560,7 +5560,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne Run terminated. Run Summary Number of events processed : 100 - User=0.030000s Real=0.031064s Sys=0.000000s + User=0.020000s Real=0.025766s Sys=0.010000s # # Test commands defined in this example /control/verbose 2 @@ -5727,7 +5727,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001069s Sys=0.000000s + User=0.000000s Real=0.000748s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/extended/field/field03/field03.out b/examples/extended/field/field03/field03.out index a77b3eaa12ae2b91b36713f1059120e9f6a25a24..a0ea245f2f91b8979265612a709afc7fb5785466 100644 --- a/examples/extended/field/field03/field03.out +++ b/examples/extended/field/field03/field03.out @@ -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 @@ -1075,7 +1075,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000892s Sys=0.000000s + User=0.000000s Real=0.000622s Sys=0.000000s # /tracking/verbose 0 /run/printProgress 50 @@ -1098,7 +1098,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.009161s Sys=0.000000s + User=0.010000s Real=0.006189s Sys=0.000000s # /field03/setField 0. 0. 1.0 kG G4ChordFinder: stepperDriverId: 2 @@ -1121,7 +1121,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002217s Sys=0.000000s + User=0.000000s Real=0.001479s Sys=0.000000s # /tracking/verbose 1 /field03/setField 3.3 0 0 tesla @@ -1165,7 +1165,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000291s Sys=0.000000s + User=0.000000s Real=0.000159s Sys=0.000000s # # Test commands defined in this example /control/verbose 2 @@ -1223,7 +1223,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.330000s Real=0.331743s Sys=0.000000s + User=0.240000s Real=0.249968s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/extended/field/field04/field04.out b/examples/extended/field/field04/field04.out index 6c78d926b1ae81d683823702e7407243efe561a9..b20b233325a24306559ef5b7b38c96d343e7c939 100644 --- a/examples/extended/field/field04/field04.out +++ b/examples/extended/field/field04/field04.out @@ -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 diff --git a/examples/extended/field/field05/field05.out b/examples/extended/field/field05/field05.out index 4427133f0ccedd1f0a26fea406b8fd201e46b011..dc53933f569132fd0443da3b973d7f13c9d98ec2 100644 --- a/examples/extended/field/field05/field05.out +++ b/examples/extended/field/field05/field05.out @@ -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 diff --git a/examples/extended/field/field06/field06.out b/examples/extended/field/field06/field06.out index 6a2b375ae7b49e1c3beeed2a7ca4563168f548fc..0d1053c8e5722ac636b0e3295c80aafdda448459 100644 --- a/examples/extended/field/field06/field06.out +++ b/examples/extended/field/field06/field06.out @@ -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 @@ -1288,7 +1288,7 @@ Terminate current event processing. Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.007685s Sys=0.010000s + User=0.000000s Real=0.005176s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/examples/extended/g3tog4/clGeometry/clGeometry.out b/examples/extended/g3tog4/clGeometry/clGeometry.out index 39deeb198316ef7137a11e3ed029293ad51ea547..1e1557405b2d530374de55e607a4b3495b60998a 100644 --- a/examples/extended/g3tog4/clGeometry/clGeometry.out +++ b/examples/extended/g3tog4/clGeometry/clGeometry.out @@ -14,7 +14,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 @@ -921,7 +921,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000354s Sys=0.000000s + User=0.000000s Real=0.000265s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -951,7 +951,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000044s Sys=0.000000s + User=0.000000s Real=0.000020s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -981,7 +981,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000035s Sys=0.000000s + User=0.000000s Real=0.000020s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -1011,7 +1011,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000028s Sys=0.000000s + User=0.000000s Real=0.000024s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -1041,7 +1041,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000063s Sys=0.000000s + User=0.000000s Real=0.000042s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -1071,7 +1071,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000033s Sys=0.000000s + User=0.000000s Real=0.000019s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -1101,7 +1101,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000035s Sys=0.000000s + User=0.000000s Real=0.000017s Sys=0.000000s Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume This region is in the mass world. @@ -1131,14 +1131,14 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000031s Sys=0.000000s + User=0.000000s Real=0.000016s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:7) -UserDetectorConstruction deleted 0x157fa30 -UserPhysicsList deleted 0x1580cd0 -UserActionInitialization deleted 0x173ba20 +UserDetectorConstruction deleted 0xc36e00 +UserPhysicsList deleted 0xc380a0 +UserActionInitialization deleted 0xdf2df0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/geometry/transforms/batch.out b/examples/extended/geometry/transforms/batch.out index 0fa5b2938cc62840e8d56d592b54415d0e841ba6..bcaecad523ecd3059bd7b1dd1744727bef76a2e7 100644 --- a/examples/extended/geometry/transforms/batch.out +++ b/examples/extended/geometry/transforms/batch.out @@ -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 diff --git a/examples/extended/geometry/vecGeomNavigation/CMakeLists.txt b/examples/extended/geometry/vecGeomNavigation/CMakeLists.txt index 3724b1411ed34b89f88840ad9ed95d5655fa6eff..d03ca77eedb0ceb33c81e52570b713d1e0356e61 100644 --- a/examples/extended/geometry/vecGeomNavigation/CMakeLists.txt +++ b/examples/extended/geometry/vecGeomNavigation/CMakeLists.txt @@ -5,7 +5,7 @@ option(WITH_ROOT "WITH ROOT SUPPORT" OFF) option(BUILTIN_G4VECGEOMNAV "Build G4VecGeomNav from source (requires VecGeom)" ON) find_package(Geant4 REQUIRED gdml) -find_package(VecGeom REQUIRED) +find_package(VecGeom 1.2.4 REQUIRED) if(WITH_ROOT) find_package(ROOT REQUIRED) find_package(TGeo2VecGeom REQUIRED) @@ -28,7 +28,7 @@ if(BUILTIN_G4VECGEOMNAV) FetchContent_GetProperties(g4vecgeomnav) - # G4VecGeomNav builds a shared lib by default. As this links to Geant4 libs, if Geant4 is + # G4VecGeomNav builds a shared lib by default. As this links to Geant4 libs, if Geant4 is # static-only, then we should also build G4VecGeomNav statically because: # - Geant4 static libs are not guaranteed to be PIC # - Geant4 symbols will be duplicated in g4vecgeomnav and the exampleVecGeomNac program diff --git a/examples/extended/geometry/vecGeomNavigation/History b/examples/extended/geometry/vecGeomNavigation/History index d251e184a58eef041c8286111f69912e3298ae27..323724766d5b562f6655d472b86819427a538493 100644 --- a/examples/extended/geometry/vecGeomNavigation/History +++ b/examples/extended/geometry/vecGeomNavigation/History @@ -6,6 +6,9 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-03-21 S. Johnson (VecGeomNavigation-V11-02-00) +- Use G4cout for VecGeom logger output + ## 2023-11-10 I. Hrivnacova (VecGeomNavigation-V11-01-01) - Coding guidelines: split long lines, added separators in VG01ActionInitialization.cc diff --git a/examples/extended/geometry/vecGeomNavigation/src/VG01DetectorConstruction.cc b/examples/extended/geometry/vecGeomNavigation/src/VG01DetectorConstruction.cc index be6af4267086f96315cd193cf250eaeb774ca846..ede0cf304021fe375a8d6ae5ee825aac5440dd10 100644 --- a/examples/extended/geometry/vecGeomNavigation/src/VG01DetectorConstruction.cc +++ b/examples/extended/geometry/vecGeomNavigation/src/VG01DetectorConstruction.cc @@ -44,9 +44,51 @@ #include "G4UniformMagField.hh" #include "G4VPhysicalVolume.hh" #include "G4VisAttributes.hh" +#include "G4ios.hh" #include "globals.hh" +// NOTE: VecGeom versioning was introduced in 1.2.4, the minimum required to +// build this file +#include <VecGeom/base/Version.h> #include <VecGeom/management/GeoManager.h> +#include <VecGeom/management/LoggerTypes.h> + +#if VECGEOM_VERSION >= 0x010208 +// NOTE: Logger was introduced in 1.2.8; earlier version log messages will go +// to stdout via printf/cout +# include <VecGeom/management/Logger.h> +# define VECGEOM_HAS_LOGGER 1 +#endif + +#ifdef VECGEOM_HAS_LOGGER +namespace +{ +using vecgeom::LogLevel; +using vecgeom::Provenance; + +// This logger adapts VecGeom messages, warnings, and errors to Geant4 io/exceptions. +void G4VecGeomLogger(Provenance prov, LogLevel lev, std::string str) +{ + std::ostringstream where; + if (!prov.file.empty()) { + // Only print out the last path component of the originating file + auto pos = prov.file.rfind('/') + 1; + where << prov.file.substr(pos); + } + if (prov.line != 0) { + where << ':' << prov.line; + } + + if (lev < LogLevel::warning) { + G4cout << "VecGeom: " << where.str() << ": " << vecgeom::to_cstring(lev) << ": " << str << std::endl; + return; + } + + G4Exception(where.str().c_str(), "VecGeom", + lev == LogLevel::warning ? JustWarning : FatalException, str.c_str()); +} +} // namespace +#endif G4double VG01DetectorConstruction::fglobFieldValue = 0.0; @@ -59,6 +101,13 @@ VG01DetectorConstruction::VG01DetectorConstruction() { fGDMLFileName = "TestNTST.gdml"; fDetectorMessenger = new VG01DetectorMessenger(this); +#ifdef VECGEOM_HAS_LOGGER + // Have the global VecGeom logger redirect to G4cout rather than the default std:clog + auto orig_level = vecgeom::logger().level(); + vecgeom::Logger new_logger(&G4VecGeomLogger); + new_logger.level(orig_level); + vecgeom::logger() = std::move(new_logger); +#endif } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/examples/extended/geometry/vecGeomNavigation/vecGeomNav.out b/examples/extended/geometry/vecGeomNavigation/vecGeomNav.out index 56a35a1c7d407001b3a5bbb5a945cd2da2a114c0..a38a4dbcfb90726d8cfffab70eeeae4b2db13c1d 100644 --- a/examples/extended/geometry/vecGeomNavigation/vecGeomNav.out +++ b/examples/extended/geometry/vecGeomNavigation/vecGeomNav.out @@ -18,7 +18,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 @@ -47,14 +47,13 @@ Enabled Check mode in G4Navigator G4ChordFinder: stepperDriverId: 2 *** SETTING MAGNETIC FIELD in Z direction : fieldValue = 2 tesla *** -*** Conversion of G4 -> VecGeom finished (0.010636 s) *** -*** Closing VecGeom geometry finished (0.000672375 s) *** -*** Setup of syncing lookup structure finished (2.4864e-05 s) *** +*** Conversion of G4 -> VecGeom finished (0.00283541 s) *** +*** Closing VecGeom geometry finished (0.00034433 s) *** +*** Setup of syncing lookup structure finished (2.354e-05 s) *** TG4VecGeomNavigator created and registered to G4TransportationManager Uncontained capacity for Svt_log: 8.83002e+07 units Uncontained capacity for Dch_log: 8.26239e+08 units -Uncontained capacity for Dch_log: 8.26239e+08 units -*** Setup of VecGeom navigators finished (36.4627 s) *** +*** Setup of VecGeom navigators finished (30.2389 s) *** 3 hInelastic FTFP_BERT : threshold between BERT and FTFP is over the interval @@ -2748,7 +2747,7 @@ Step# X (mm) Y (mm) Z (mm) Ek (MeV) dE (MeV) Step(mm) Track(mm) S Run terminated. Run Summary Number of events processed : 1 - User=0.010000s Real=0.014463s Sys=0.000000s + User=0.000000s Real=0.015555s Sys=0.000000s /tracking/verbose 0 /run/beamOn 10 @@ -2798,7 +2797,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.060000s Real=0.054081s Sys=0.000000s + User=0.030000s Real=0.031718s Sys=0.000000s ================================================================= Final random number = 0.56769521327478 diff --git a/examples/extended/hadronic/FissionFragment/FissionFragment.out b/examples/extended/hadronic/FissionFragment/FissionFragment.out index 2d9a3c902755a30dc329aef2a9f13ed0d52dbed1..e1a0ba2a7dded7a35d92f6070cb5d4d65fe08c69 100644 --- a/examples/extended/hadronic/FissionFragment/FissionFragment.out +++ b/examples/extended/hadronic/FissionFragment/FissionFragment.out @@ -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 diff --git a/examples/extended/hadronic/FlukaCern/FlukaInterface/GNUmakefile b/examples/extended/hadronic/FlukaCern/FlukaInterface/GNUmakefile index cd4295974e9c0a4bb6cda30fb97d09ccddf9778a..050a4adb878739a7d7cb243eb6de32f779d9b5fa 100644 --- a/examples/extended/hadronic/FlukaCern/FlukaInterface/GNUmakefile +++ b/examples/extended/hadronic/FlukaCern/FlukaInterface/GNUmakefile @@ -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)))) diff --git a/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka4_wrapper/fortran/procedures/declare_commons.f b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka4_wrapper/fortran/procedures/declare_commons.f new file mode 100644 index 0000000000000000000000000000000000000000..6a26805d871baed99bbe94d11fb0841a9f26a84a --- /dev/null +++ b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka4_wrapper/fortran/procedures/declare_commons.f @@ -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 diff --git a/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_common_dependencies.hh b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_common_dependencies.hh index 6f6fa54064c457fd01a5c4b3fda153f33a66feb7..effa1256d5eefa190823919feb65c952ce3b71b8 100644 --- a/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_common_dependencies.hh +++ b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_common_dependencies.hh @@ -69,7 +69,6 @@ # include "sgtbcm.h" # include "sumcou.h" # include "thrscm.h" -# include "usryld.h" // clang-format on # endif diff --git a/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_interface.cc b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_interface.cc index e8a5cf8e2b122a897426284d7ee68ebba77a6585..60b4e138f3a0a0718e499f75928dfd2bd124f9b1 100644 --- a/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_interface.cc +++ b/examples/extended/hadronic/FlukaCern/FlukaInterface/source/fluka5/hadronic_interactions/interface_to_G4/fluka_interface.cc @@ -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: diff --git a/examples/extended/hadronic/FlukaCern/History b/examples/extended/hadronic/FlukaCern/History index 550e08e465625f1b0e82248ed716f76fc799cd57..433a14d7adce58f6ae03bd48c61d7e9f50250467 100644 --- a/examples/extended/hadronic/FlukaCern/History +++ b/examples/extended/hadronic/FlukaCern/History @@ -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, diff --git a/examples/extended/hadronic/FlukaCern/ProcessLevel/CrossSection/ProcessLevel-CrossSection.out b/examples/extended/hadronic/FlukaCern/ProcessLevel/CrossSection/ProcessLevel-CrossSection.out index eb33c7c369c05f201a3b86018378f798bf30c07e..b6859996081bd31d3e1d1bbe4c9899d855a5d00f 100644 --- a/examples/extended/hadronic/FlukaCern/ProcessLevel/CrossSection/ProcessLevel-CrossSection.out +++ b/examples/extended/hadronic/FlukaCern/ProcessLevel/CrossSection/ProcessLevel-CrossSection.out @@ -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 diff --git a/examples/extended/hadronic/FlukaCern/ProcessLevel/FinalState/ProcessLevel-FinalState.out b/examples/extended/hadronic/FlukaCern/ProcessLevel/FinalState/ProcessLevel-FinalState.out index 0cdf242b5e16d757da5bd63259add493367adba0..b25531aa44b65d49fc8804f44b1aa98f80f1f8d4 100644 --- a/examples/extended/hadronic/FlukaCern/ProcessLevel/FinalState/ProcessLevel-FinalState.out +++ b/examples/extended/hadronic/FlukaCern/ProcessLevel/FinalState/ProcessLevel-FinalState.out @@ -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 === diff --git a/examples/extended/hadronic/Hadr00/hadr00.out b/examples/extended/hadronic/Hadr00/hadr00.out index 4db9a65deffad5ca5e8e0db4d03a3da17e879054..bce432024675f02af37b8cbf1e87458a26748e3d 100644 --- a/examples/extended/hadronic/Hadr00/hadr00.out +++ b/examples/extended/hadronic/Hadr00/hadr00.out @@ -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 diff --git a/examples/extended/hadronic/Hadr01/hadr01.out b/examples/extended/hadronic/Hadr01/hadr01.out index 517ac876372c696d9861eccd9a51d2253e911d50..094a92cd2ea11c96e6a9d56b1bdbb275093eab95 100644 --- a/examples/extended/hadronic/Hadr01/hadr01.out +++ b/examples/extended/hadronic/Hadr01/hadr01.out @@ -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 diff --git a/examples/extended/hadronic/Hadr02/hadr02.out b/examples/extended/hadronic/Hadr02/hadr02.out index 36602d16a770606c802cfbb9dfeabbf22652f46b..24445608ea47eda69881142dc6804e03eb2708f7 100644 --- a/examples/extended/hadronic/Hadr02/hadr02.out +++ b/examples/extended/hadronic/Hadr02/hadr02.out @@ -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 ======================================================== diff --git a/examples/extended/hadronic/Hadr03/hadr03.out b/examples/extended/hadronic/Hadr03/hadr03.out index 8affaa9da2847ef4a2ac8ee5b853b5d0d45cd92f..94ed0fe5f4bda1fa1fa1ec3fce2adc6702a0edaf 100644 --- a/examples/extended/hadronic/Hadr03/hadr03.out +++ b/examples/extended/hadronic/Hadr03/hadr03.out @@ -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 ) diff --git a/examples/extended/hadronic/Hadr04/hadr04.out b/examples/extended/hadronic/Hadr04/hadr04.out index aa2ecf42533247aee6ae37887de6f27389e0540b..a75a7f755090f586057f0581684eecc7025ff33b 100644 --- a/examples/extended/hadronic/Hadr04/hadr04.out +++ b/examples/extended/hadronic/Hadr04/hadr04.out @@ -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. diff --git a/examples/extended/hadronic/Hadr05/hadr05.out b/examples/extended/hadronic/Hadr05/hadr05.out index c260998d4d77c9ad814bc595545d525b0b92a34f..8b45c773a027df816b9d42f200393a1bfddac84a 100644 --- a/examples/extended/hadronic/Hadr05/hadr05.out +++ b/examples/extended/hadronic/Hadr05/hadr05.out @@ -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 diff --git a/examples/extended/hadronic/Hadr06/hadr06.out b/examples/extended/hadronic/Hadr06/hadr06.out index 4eaae670d86025a60df8308767fe94c43b835411..fe7321767ee338f842d91b54f7081a684dcdb513 100644 --- a/examples/extended/hadronic/Hadr06/hadr06.out +++ b/examples/extended/hadronic/Hadr06/hadr06.out @@ -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 ) diff --git a/examples/extended/hadronic/Hadr07/hadr07.out b/examples/extended/hadronic/Hadr07/hadr07.out index b0995ecc75e3d967d722786ebbac0b1141bb98d0..e2849b77baaa7b4da8661b13096878a6eeb3447a 100644 --- a/examples/extended/hadronic/Hadr07/hadr07.out +++ b/examples/extended/hadronic/Hadr07/hadr07.out @@ -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 ===================== diff --git a/examples/extended/hadronic/Hadr08/hadr08.out b/examples/extended/hadronic/Hadr08/hadr08.out index 2df1c2dd8bc0ba86033c1b7c06da421554d7bbce..4f99892a54cdd8024ac9949121bd98c465234bd7 100644 --- a/examples/extended/hadronic/Hadr08/hadr08.out +++ b/examples/extended/hadronic/Hadr08/hadr08.out @@ -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 diff --git a/examples/extended/hadronic/Hadr09/hadr09.out b/examples/extended/hadronic/Hadr09/hadr09.out index f2520f409ac315cff74c3fcff4bd27e129a1d585..6ba6058cd0c9c68129862505c6861691e4ced280 100644 --- a/examples/extended/hadronic/Hadr09/hadr09.out +++ b/examples/extended/hadronic/Hadr09/hadr09.out @@ -10,7 +10,7 @@ IsIonProjectile: false =================================================== - Initial seed = 1742561303 + Initial seed = 1745424323 ================================================================================ @@ -18,7 +18,7 @@ IsIonProjectile: false INCL++/G4ExcitationHandler could not use its own level-density parameter for fission ================================================================================ - Collision 0 projectile=lambda_b Ekin[MeV]=5008.56 direction=(0.270166,0.638432,0.720704) material=G4_Pb======================================================================= + Collision 0 projectile=kaon0S Ekin[MeV]=21027.6 direction=(0.272729,0.0914885,0.957731) material=G4_Si======================================================================= ====== Geant4 Native Pre-compound Model Parameters ======== ======================================================================= Type of pre-compound inverse x-section 1 @@ -51,2356 +51,2208 @@ Correlated gamma emission flag 0 Max 2J for sampling of angular correlations 10 ======================================================================= - --> #secondaries=22 impactParameter[fm]=7.20515 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=1 + --> #secondaries=12 impactParameter[fm]=3.37121 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 List of produced secondaries: - j=0 neutron p=(927.369,1461.62,961.3382191.64) MeV - j=1 sigma_b0 p=(1693.44,4181.69,5069.168932.04) MeV - j=2 neutron p=(3.95694,55.6189,560.0771095.25) MeV - j=3 neutron p=(-503.598,355.231,29.56191124.04) MeV - j=4 neutron p=(68.1475,1.3387,-11.7784942.108) MeV - j=5 Pb196[3192.670] p=(132.363,-294.348,-62.3562182510) MeV - j=6 neutron p=(62.3306,15.6309,-78.3273945.012) MeV - j=7 neutron p=(-7.16228,23.695,18.8888940.081) MeV - j=8 neutron p=(-16.5199,-28.0551,19.6493940.335) MeV - j=9 neutron p=(45.3081,34.8909,-22.6864941.577) MeV - j=10 neutron p=(26.4383,-11.6421,47.877941.228) MeV - j=11 neutron p=(3.91129,-37.6195,-26.2656940.693) MeV - j=12 gamma p=(1.02626,1.4944,-2.555883.13352) MeV - j=13 gamma p=(0.179697,0.316914,-0.04116370.366633) MeV - j=14 e- p=(0.175134,-0.216594,-0.4816380.755434) MeV - j=15 e- p=(0.0487243,0.461103,0.01009240.690081) MeV - j=16 gamma p=(-0.0674806,-0.144308,0.1274910.20404) MeV - j=17 e- p=(0.162373,0.0534763,0.1560260.560971) MeV - j=18 e- p=(0.173865,0.00488657,0.266660.602063) MeV - j=19 gamma p=(-0.00510623,0.41879,-0.4046350.582358) MeV - j=20 gamma p=(0.336629,-0.165939,-0.4761420.606273) MeV - j=21 gamma p=(-0.607127,-0.396286,0.4525740.854675) MeV - Collision 1 projectile=lambda_b Ekin[MeV]=9401.26 direction=(0.168987,0.680551,0.712947) material=G4_C - --> #secondaries=7 impactParameter[fm]=2.16547 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 2 projectile=anti_deuteron Ekin[MeV]=24620 direction=(0.54414,0.192148,0.816695) material=G4_C - --> #secondaries=16 impactParameter[fm]=2.55414 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=2 - Collision 3 projectile=omega- Ekin[MeV]=6269.88 direction=(0.835544,0.477373,0.271994) material=G4_Pb - --> #secondaries=55 impactParameter[fm]=2.9899 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=3 - Collision 4 projectile=xi0 Ekin[MeV]=20083.1 direction=(0.545261,0.793896,0.269111) material=G4_Fe - --> #secondaries=16 impactParameter[fm]=5.58187 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 5 projectile=pi- Ekin[MeV]=21976.4 direction=(0.256927,0.749675,0.609898) material=G4_Cu - --> #secondaries=19 impactParameter[fm]=5.02271 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 6 projectile=omega_c0 Ekin[MeV]=8658.67 direction=(0.462406,0.661701,0.590197) material=G4_Al - --> #secondaries=9 impactParameter[fm]=4.47645 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 7 projectile=lambda_b Ekin[MeV]=16508.3 direction=(0.568747,0.421981,0.706016) material=G4_Cu - --> #secondaries=23 impactParameter[fm]=1.69826 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=1 - Collision 8 projectile=anti_omega_c0 Ekin[MeV]=17459.6 direction=(0.781524,0.280436,0.557294) material=G4_Si - --> #secondaries=34 impactParameter[fm]=2.23782 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 - Collision 9 projectile=kaon0S Ekin[MeV]=23084 direction=(0.721835,0.628376,0.289996) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.7533 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 10 projectile=deuteron Ekin[MeV]=25140.2 direction=(0.288014,0.662659,0.691326) material=G4_Pb - --> #secondaries=58 impactParameter[fm]=5.24966 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=4 - Collision 11 projectile=Ds+ Ekin[MeV]=8821.82 direction=(0.751029,0.479272,0.454152) material=G4_Al - --> #secondaries=11 impactParameter[fm]=3.48386 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 12 projectile=hyperalpha Ekin[MeV]=12483.1 direction=(0.244465,0.858148,0.451462) material=G4_Si - --> #secondaries=25 impactParameter[fm]=4.96113 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=5 - Collision 13 projectile=xi0 Ekin[MeV]=3350.94 direction=(0.524648,0.302645,0.795708) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 14 projectile=anti_He3 Ekin[MeV]=22711.3 direction=(0.644494,0.733375,0.216307) material=G4_W - --> #secondaries=70 impactParameter[fm]=6.05082 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 15 projectile=anti_sigma- Ekin[MeV]=3475.67 direction=(0.374332,0.837551,0.397975) material=G4_Al - --> #secondaries=25 impactParameter[fm]=0.979979 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 16 projectile=anti_xi_b- Ekin[MeV]=8714.84 direction=(0.795968,0.133596,0.590412) material=G4_C - --> #secondaries=9 impactParameter[fm]=2.04363 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 17 projectile=neutron Ekin[MeV]=4922.8 direction=(0.449633,0.496613,0.742433) material=G4_Si - --> #secondaries=19 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 18 projectile=kaon- Ekin[MeV]=15897.2 direction=(0.626622,0.38022,0.680278) material=G4_H - --> #secondaries=10 impactParameter[fm]=0.259119 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 19 projectile=anti_xi- Ekin[MeV]=26684.5 direction=(0.348966,0.385964,0.853964) material=G4_Al - --> #secondaries=32 impactParameter[fm]=2.32936 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 - Collision 20 projectile=B- Ekin[MeV]=13342.4 direction=(0.663728,0.485111,0.569326) material=G4_Si - --> #secondaries=11 impactParameter[fm]=2.18521 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 21 projectile=anti_lambda_c+ Ekin[MeV]=2831.89 direction=(0.338739,0.270364,0.901199) material=G4_W - --> #secondaries=28 impactParameter[fm]=4.11819 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 22 projectile=kaon0S Ekin[MeV]=27232.5 direction=(0.471087,0.531269,0.704153) material=G4_Fe - --> #secondaries=20 impactParameter[fm]=4.37715 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 23 projectile=lambda_c+ Ekin[MeV]=8559.24 direction=(0.423889,0.713722,0.557601) material=G4_H - --> #secondaries=2 impactParameter[fm]=0.50098 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 24 projectile=D0 Ekin[MeV]=5682.01 direction=(0.435319,0.864194,0.252322) material=G4_Si - --> #secondaries=8 impactParameter[fm]=5.36275 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 25 projectile=kaon+ Ekin[MeV]=29974.1 direction=(0.946599,0.0457369,0.319153) material=G4_Pb - --> #secondaries=49 impactParameter[fm]=4.41377 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=202 #NNcollisions=1 - Collision 26 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=10129.7 direction=(0.455439,0.182129,0.871438) material=G4_Be - --> #secondaries=18 impactParameter[fm]=1.0521 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=4 - Collision 27 projectile=sigma+ Ekin[MeV]=7995.66 direction=(0.41775,0.489422,0.765474) material=G4_W - --> #secondaries=74 impactParameter[fm]=2.97623 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=174 #NNcollisions=4 - Collision 28 projectile=kaon- Ekin[MeV]=25338 direction=(0.334771,0.158419,0.928888) material=G4_H - --> #secondaries=8 impactParameter[fm]=1.2522 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 29 projectile=sigma+ Ekin[MeV]=19660.9 direction=(0.819808,0.0155829,0.572427) material=G4_Be - --> #secondaries=10 impactParameter[fm]=3.04356 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 30 projectile=D0 Ekin[MeV]=1656.14 direction=(0.638272,0.43042,0.638238) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.20494 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 31 projectile=anti_xi_c0 Ekin[MeV]=15176.9 direction=(0.653445,0.402739,0.640946) material=G4_W - --> #secondaries=101 impactParameter[fm]=2.73773 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=176 #NNcollisions=6 - Collision 32 projectile=hyperHe5 Ekin[MeV]=29341.1 direction=(0.0454766,0.14443,0.988469) material=G4_H - --> #secondaries=5 impactParameter[fm]=3.15165 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 33 projectile=lambda Ekin[MeV]=3034.64 direction=(0.987739,0.111446,0.109321) material=G4_Be - --> #secondaries=14 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 34 projectile=anti_He3 Ekin[MeV]=27336 direction=(0.156445,0.800448,0.578627) material=G4_Al - --> #secondaries=40 impactParameter[fm]=1.67832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=4 - Collision 35 projectile=anti_He3 Ekin[MeV]=26518.9 direction=(0.849743,0.0626721,0.523458) material=G4_C - --> #secondaries=22 impactParameter[fm]=1.87164 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 36 projectile=xi0 Ekin[MeV]=8885.8 direction=(0.0454741,0.576274,0.815991) material=G4_He - --> #secondaries=7 impactParameter[fm]=1.8051 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 37 projectile=xi_c0 Ekin[MeV]=8098.1 direction=(0.675111,0.266597,0.68786) material=G4_C - --> #secondaries=9 impactParameter[fm]=2.28382 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 38 projectile=hyperH4 Ekin[MeV]=10878.8 direction=(0.852692,0.46304,0.241888) material=G4_W - --> #secondaries=87 impactParameter[fm]=5.06603 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=168 #NNcollisions=5 - Collision 39 projectile=deuteron Ekin[MeV]=3808.5 direction=(0.887714,0.33728,0.313377) material=G4_Al - --> #secondaries=10 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 40 projectile=anti_hyperHe5 Ekin[MeV]=1993.53 direction=(0.650572,0.729018,0.212811) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=6.01194 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=39 #NNcollisions=2 - Collision 41 projectile=pi- Ekin[MeV]=27758.7 direction=(0.800823,0.331012,0.499114) material=G4_H - --> #secondaries=12 impactParameter[fm]=1.31969 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 42 projectile=anti_lambda_c+ Ekin[MeV]=3114.19 direction=(0.383749,0.674849,0.63033) material=G4_Si - --> #secondaries=6 impactParameter[fm]=4.82292 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 43 projectile=xi_c+ Ekin[MeV]=25649.2 direction=(0.04368,0.848534,0.527336) material=G4_H - --> #secondaries=7 impactParameter[fm]=0.527527 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 44 projectile=proton Ekin[MeV]=26397.9 direction=(0.0957277,0.50944,0.855165) material=G4_Cu - --> #secondaries=58 impactParameter[fm]=3.85219 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=58 #NNcollisions=5 - Collision 45 projectile=lambda_b Ekin[MeV]=14735.3 direction=(0.0302342,0.787317,0.615807) material=G4_Si - --> #secondaries=14 impactParameter[fm]=3.84204 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 46 projectile=anti_lambda_c+ Ekin[MeV]=12965.8 direction=(0.835903,0.502285,0.221302) material=G4_Pb - --> #secondaries=26 impactParameter[fm]=7.42869 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 47 projectile=anti_alpha Ekin[MeV]=15123.1 direction=(0.449365,0.589017,0.671662) material=G4_Be - --> #secondaries=26 impactParameter[fm]=1.64184 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=6 #NNcollisions=4 - Collision 48 projectile=anti_sigma+ Ekin[MeV]=16685.4 direction=(0.623025,0.529351,0.575871) material=G4_Fe - --> #secondaries=23 impactParameter[fm]=4.91809 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 49 projectile=Bc+ Ekin[MeV]=1047.37 direction=(0.0449384,0.804284,0.592543) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=5.74274 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=0 - Collision 50 projectile=anti_lambda_c+ Ekin[MeV]=24424.4 direction=(0.718783,0.563539,0.407155) material=G4_C - --> #secondaries=17 impactParameter[fm]=0.968656 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 51 projectile=anti_B0 Ekin[MeV]=29546.3 direction=(0.925566,0.0600493,0.373794) material=G4_Fe - --> #secondaries=18 impactParameter[fm]=3.45741 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 52 projectile=Ds- Ekin[MeV]=10562.8 direction=(0.456079,0.177663,0.872025) material=G4_Al - --> #secondaries=13 impactParameter[fm]=1.25598 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 53 projectile=alpha Ekin[MeV]=10284.3 direction=(0.585782,0.324392,0.742718) material=G4_Fe - --> #secondaries=41 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 54 projectile=omega_b- Ekin[MeV]=18789.3 direction=(0.392213,0.426723,0.814909) material=G4_H - --> #secondaries=7 impactParameter[fm]=0.716164 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 55 projectile=B0 Ekin[MeV]=6274.71 direction=(0.113055,0.923671,0.36613) material=G4_Pb - --> #secondaries=12 impactParameter[fm]=4.10824 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 56 projectile=hyperH4 Ekin[MeV]=13916 direction=(0.127309,0.662703,0.737981) material=G4_Fe - --> #secondaries=32 impactParameter[fm]=3.7654 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=50 #NNcollisions=4 - Collision 57 projectile=proton Ekin[MeV]=27437.2 direction=(0.834322,0.460947,0.302382) material=G4_Si - --> #secondaries=12 impactParameter[fm]=3.7803 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 58 projectile=anti_Bs0 Ekin[MeV]=15703.3 direction=(0.122309,0.539559,0.833016) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=3.84633 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 59 projectile=proton Ekin[MeV]=22261.3 direction=(0.824237,0.398575,0.402209) material=G4_W - --> #secondaries=29 impactParameter[fm]=5.95899 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 - Collision 60 projectile=anti_omega- Ekin[MeV]=28937.3 direction=(0.417116,0.907931,0.0409286) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.38872 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 61 projectile=kaon+ Ekin[MeV]=13928.4 direction=(0.219024,0.19864,0.955286) material=G4_Al - --> #secondaries=27 impactParameter[fm]=0.867074 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=24 #NNcollisions=2 - Collision 62 projectile=kaon0L Ekin[MeV]=26819.5 direction=(0.130781,0.234116,0.963372) material=G4_C - --> #secondaries=7 impactParameter[fm]=2.76843 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 63 projectile=anti_hyperHe5 Ekin[MeV]=14914.4 direction=(0.609418,0.556862,0.564371) material=G4_He - --> #secondaries=13 impactParameter[fm]=2.90106 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 64 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=6645.83 direction=(0.0361994,0.684126,0.728465) material=G4_Be - --> #secondaries=19 impactParameter[fm]=2.28367 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=5 #NNcollisions=3 - Collision 65 projectile=anti_lambda_b Ekin[MeV]=27032.1 direction=(0.674784,0.551338,0.490605) material=G4_Ar - --> #secondaries=36 impactParameter[fm]=3.29925 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=3 - Collision 66 projectile=anti_deuteron Ekin[MeV]=27175.8 direction=(0.796885,0.327281,0.5078) material=G4_Al - --> #secondaries=29 impactParameter[fm]=2.66123 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 67 projectile=anti_neutron Ekin[MeV]=24649.3 direction=(0.315869,0.529609,0.787236) material=G4_Ar - --> #secondaries=9 impactParameter[fm]=3.87572 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=40 #NNcollisions=1 - Collision 68 projectile=anti_lambda_b Ekin[MeV]=27924.8 direction=(0.106124,0.630558,0.768853) material=G4_Ar - --> #secondaries=35 impactParameter[fm]=2.1565 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=2 - Collision 69 projectile=anti_neutron Ekin[MeV]=25895.4 direction=(0.932755,0.333176,0.137705) material=G4_H - --> #secondaries=7 impactParameter[fm]=1.62431 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 70 projectile=triton Ekin[MeV]=1546.52 direction=(0.189423,0.535236,0.82319) material=G4_W - --> #secondaries=37 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 71 projectile=anti_triton Ekin[MeV]=23666.8 direction=(0.134312,0.750647,0.646908) material=G4_Be - --> #secondaries=11 impactParameter[fm]=4.18282 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 72 projectile=anti_lambda_c+ Ekin[MeV]=16291.5 direction=(0.774171,0.248017,0.582363) material=G4_Ar - --> #secondaries=22 impactParameter[fm]=2.30263 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 73 projectile=alpha Ekin[MeV]=8164.57 direction=(0.862491,0.473839,0.177722) material=G4_Cu - --> #secondaries=15 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 74 projectile=xi_b0 Ekin[MeV]=18214.9 direction=(0.648697,0.108459,0.753279) material=G4_C - --> #secondaries=12 impactParameter[fm]=2.84265 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 75 projectile=anti_proton Ekin[MeV]=5584.82 direction=(0.79301,0.0335332,0.608285) material=G4_Cu - --> #secondaries=16 impactParameter[fm]=4.73433 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=1 - Collision 76 projectile=pi+ Ekin[MeV]=23624.4 direction=(0.904114,0.0945607,0.416696) material=G4_Al - --> #secondaries=15 impactParameter[fm]=2.50354 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 77 projectile=Bc- Ekin[MeV]=29759 direction=(0.738722,0.449127,0.502568) material=G4_Cu - --> #secondaries=19 impactParameter[fm]=2.1249 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 78 projectile=anti_hyperH4 Ekin[MeV]=26999.1 direction=(0.560029,0.314978,0.766262) material=G4_Be - --> #secondaries=10 impactParameter[fm]=2.94361 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=1 - Collision 79 projectile=deuteron Ekin[MeV]=25691 direction=(0.539784,0.658365,0.524584) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=3.65793 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=0 - Collision 80 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=3735.63 direction=(0.629412,0.408242,0.661195) material=G4_Be - --> #secondaries=6 impactParameter[fm]=5.51303 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 81 projectile=xi_c0 Ekin[MeV]=8215.33 direction=(0.785164,0.605233,0.13119) material=G4_He - --> #secondaries=6 impactParameter[fm]=0.742886 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 82 projectile=hypertriton Ekin[MeV]=20236.6 direction=(0.226203,0.685197,0.692342) material=G4_W - --> #secondaries=88 impactParameter[fm]=5.81767 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=175 #NNcollisions=4 - Collision 83 projectile=anti_Bs0 Ekin[MeV]=22104.7 direction=(0.597958,0.490891,0.633619) material=G4_Fe - --> #secondaries=19 impactParameter[fm]=3.20352 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=2 - Collision 84 projectile=alpha Ekin[MeV]=27514.2 direction=(0.0820306,0.933557,0.348917) material=G4_Si - --> #secondaries=24 impactParameter[fm]=5.67216 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 85 projectile=anti_omega_c0 Ekin[MeV]=15059 direction=(0.469387,0.634172,0.614411) material=G4_Fe - --> #secondaries=15 impactParameter[fm]=3.2838 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 86 projectile=lambda Ekin[MeV]=15334 direction=(0.473044,0.0320402,0.880456) material=G4_C - --> #secondaries=9 impactParameter[fm]=3.02549 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 87 projectile=anti_triton Ekin[MeV]=8389.41 direction=(0.941303,0.0243388,0.336684) material=G4_Cu - --> #secondaries=57 impactParameter[fm]=3.81942 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=58 #NNcollisions=2 - Collision 88 projectile=sigma- Ekin[MeV]=21872.8 direction=(0.359728,0.733629,0.576528) material=G4_W - --> #secondaries=25 impactParameter[fm]=6.20882 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 89 projectile=D+ Ekin[MeV]=26694 direction=(0.918235,0.304005,0.253821) material=G4_Al - --> #secondaries=8 impactParameter[fm]=3.44772 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 90 projectile=D+ Ekin[MeV]=8443.34 direction=(0.677953,0.520854,0.51874) material=G4_Pb - --> #secondaries=20 impactParameter[fm]=5.64962 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 91 projectile=doublehyperH4 Ekin[MeV]=9075.89 direction=(0.584196,0.515315,0.627029) material=G4_H - --> #secondaries=3 impactParameter[fm]=3.31208 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 92 projectile=kaon+ Ekin[MeV]=10274.1 direction=(0.0463215,0.965769,0.255235) material=G4_Be - --> #secondaries=11 impactParameter[fm]=1.43425 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 93 projectile=kaon0L Ekin[MeV]=26269 direction=(0.667652,0.72958,0.148171) material=G4_Ar - --> #secondaries=8 impactParameter[fm]=4.42711 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 94 projectile=anti_doublehyperH4 Ekin[MeV]=14315.2 direction=(0.500501,0.865342,0.0261297) material=G4_Si - --> #secondaries=12 impactParameter[fm]=6.3291 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 95 projectile=anti_sigma+ Ekin[MeV]=28356.6 direction=(0.505511,0.358541,0.784797) material=G4_Be - --> #secondaries=20 impactParameter[fm]=1.21842 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 96 projectile=pi+ Ekin[MeV]=23067.3 direction=(0.294011,0.950348,0.101963) material=G4_Al - --> #secondaries=39 impactParameter[fm]=0.203174 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=23 #NNcollisions=4 - Collision 97 projectile=lambda Ekin[MeV]=12216 direction=(0.84819,0.219298,0.482164) material=G4_Al - --> #secondaries=11 impactParameter[fm]=4.43362 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 98 projectile=Ds+ Ekin[MeV]=18155 direction=(0.122545,0.392308,0.911634) material=G4_Be - --> #secondaries=10 impactParameter[fm]=3.38189 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 99 projectile=sigma- Ekin[MeV]=6578.68 direction=(0.687348,0.192158,0.700448) material=G4_Si - --> #secondaries=11 impactParameter[fm]=4.53636 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=29 #NNcollisions=1 - Collision 100 projectile=alpha Ekin[MeV]=9819.27 direction=(0.429439,0.309625,0.84836) material=G4_Ar - --> #secondaries=29 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - List of produced secondaries: - j=0 neutron p=(464.388,484.302,1678.072036.89) MeV - j=1 pi- p=(260.122,270.078,196.074445.567) MeV - j=2 neutron p=(829.462,851.236,2503.372926.14) MeV - j=3 proton p=(298.67,309.784,639.2651214.16) MeV - j=4 pi0 p=(45.5229,140.137,88.5862218.579) MeV - j=5 proton p=(-146.757,-331.649,27.81751006.31) MeV - j=6 neutron p=(352.801,40.6813,-25.18921004.76) MeV - j=7 pi0 p=(-36.2556,156.782,-54.0672216.88) MeV - j=8 neutron p=(43.9893,-336.861,-37.3756999.795) MeV - j=9 neutron p=(-51.1192,274.51,312.7831028.88) MeV - j=10 neutron p=(-151.071,53.2597,-10.6038953.181) MeV - j=11 proton p=(131.343,-185.892,-56.1002967.113) MeV - j=12 pi+ p=(25.1581,132.065,116.037225.873) MeV - j=13 proton p=(1553.95,540.654,2467.623110.72) MeV - j=14 proton p=(-72.5029,-92.1153,64.4837947.763) MeV - j=15 proton p=(57.9567,-251.851,7.431973.241) MeV - j=16 neutron p=(100.539,39.9887,-9.61601945.824) MeV - j=17 triton p=(-72.3162,-68.6253,19.20832810.76) MeV - j=18 neutron p=(-54.5916,73.8538,177.791960.639) MeV - j=19 triton p=(-90.695,54.112,-118.9412813.42) MeV - j=20 neutron p=(186.539,122.525,99.6209970.833) MeV - j=21 neutron p=(5.15095,-60.2178,10.8234941.569) MeV - j=22 proton p=(22.0481,29.4461,170.603954.365) MeV - j=23 proton p=(78.244,-73.3255,-47.6434945.581) MeV - j=24 neutron p=(-7.36672,-86.4396,-24.1943943.872) MeV - j=25 alpha p=(190.183,70.5979,-47.56123733.2) MeV - j=26 alpha p=(5.41952,178.892,89.75623732.75) MeV - j=27 B10 p=(326.122,612.649,34.70519350.3) MeV - j=28 proton p=(1297.98,1083.91,2776.093383.29) MeV - Collision 101 projectile=He3 Ekin[MeV]=26943.4 direction=(0.0727985,0.812681,0.578143) material=G4_Cu - --> #secondaries=60 impactParameter[fm]=2.08987 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=7 - Collision 102 projectile=anti_hypertriton Ekin[MeV]=16520.4 direction=(0.62385,0.66723,0.406959) material=G4_Be - --> #secondaries=15 impactParameter[fm]=1.81412 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=2 - Collision 103 projectile=Ds- Ekin[MeV]=27504.7 direction=(0.989701,0.086617,0.113975) material=G4_Be - --> #secondaries=13 impactParameter[fm]=0.921611 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 104 projectile=triton Ekin[MeV]=8434.93 direction=(0.760692,0.645388,0.0694441) material=G4_W - --> #secondaries=13 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 105 projectile=anti_hyperalpha Ekin[MeV]=26744.3 direction=(0.292761,0.749244,0.594074) material=G4_W - --> #secondaries=170 impactParameter[fm]=0.976414 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=6 - Collision 106 projectile=anti_He3 Ekin[MeV]=13170.6 direction=(0.561333,0.649192,0.513278) material=G4_Pb - --> #secondaries=25 impactParameter[fm]=7.88932 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 107 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=29096.4 direction=(0.0758509,0.99624,0.041853) material=G4_Fe - --> #secondaries=23 impactParameter[fm]=5.66419 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 108 projectile=deuteron Ekin[MeV]=29598.2 direction=(0.519869,0.355745,0.776648) material=G4_Cu - --> #secondaries=31 impactParameter[fm]=2.89821 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 - Collision 109 projectile=anti_sigma+ Ekin[MeV]=2502.77 direction=(0.454779,0.448874,0.769213) material=G4_Cu - --> #secondaries=12 impactParameter[fm]=4.12961 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 110 projectile=anti_xi_b- Ekin[MeV]=18088.3 direction=(0.514784,0.12105,0.848731) material=G4_Pb - --> #secondaries=35 impactParameter[fm]=5.63558 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=2 - Collision 111 projectile=Ds+ Ekin[MeV]=27280.4 direction=(0.798,0.51286,0.316497) material=G4_C - --> #secondaries=15 impactParameter[fm]=2.12983 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 112 projectile=anti_xi_b0 Ekin[MeV]=11161.6 direction=(0.913641,0.403641,0.0483198) material=G4_Cu - --> #secondaries=9 impactParameter[fm]=3.18773 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 113 projectile=xi- Ekin[MeV]=23009.8 direction=(0.681661,0.709254,0.179714) material=G4_Fe - --> #secondaries=23 impactParameter[fm]=3.07532 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 114 projectile=anti_sigma+ Ekin[MeV]=16887.7 direction=(0.692424,0.635556,0.341493) material=G4_Fe - --> #secondaries=34 impactParameter[fm]=2.10545 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=1 - Collision 115 projectile=anti_xi- Ekin[MeV]=8059.03 direction=(0.96789,0.0990321,0.231044) material=G4_C - --> #secondaries=5 impactParameter[fm]=1.14876 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 116 projectile=hyperHe5 Ekin[MeV]=9771.68 direction=(0.549964,0.787866,0.27714) material=G4_W - --> #secondaries=25 impactParameter[fm]=6.24652 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=180 #NNcollisions=2 - Collision 117 projectile=anti_D0 Ekin[MeV]=12533 direction=(0.302824,0.692319,0.654975) material=G4_Al - --> #secondaries=16 impactParameter[fm]=4.85176 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 118 projectile=hyperHe5 Ekin[MeV]=13177.1 direction=(0.821508,0.190771,0.537338) material=G4_Be - --> #secondaries=8 impactParameter[fm]=2.31198 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 119 projectile=anti_omega_c0 Ekin[MeV]=14943.9 direction=(0.566192,0.340421,0.750693) material=G4_Al - --> #secondaries=19 impactParameter[fm]=3.29531 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 120 projectile=Ds- Ekin[MeV]=11515.9 direction=(0.800428,0.485642,0.351378) material=G4_Pb - --> #secondaries=47 impactParameter[fm]=7.13052 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 121 projectile=anti_omega_b- Ekin[MeV]=14963 direction=(0.40717,0.0308783,0.91283) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=4.3544 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 122 projectile=hyperHe5 Ekin[MeV]=20692.6 direction=(0.631951,0.587859,0.505035) material=G4_Ar - --> #secondaries=38 impactParameter[fm]=3.89338 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=35 #NNcollisions=4 - Collision 123 projectile=anti_B0 Ekin[MeV]=4883.66 direction=(0.0566243,0.766115,0.640205) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.87647 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 124 projectile=anti_omega_b- Ekin[MeV]=10405.1 direction=(0.049889,0.678895,0.732538) material=G4_Al - --> #secondaries=8 impactParameter[fm]=3.89098 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 125 projectile=anti_xi_b0 Ekin[MeV]=16520.1 direction=(0.245252,0.913166,0.325545) material=G4_Fe - --> #secondaries=47 impactParameter[fm]=1.78077 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=2 - Collision 126 projectile=omega- Ekin[MeV]=10779.7 direction=(0.567084,0.419947,0.708563) material=G4_Pb - --> #secondaries=74 impactParameter[fm]=5.05701 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=5 - Collision 127 projectile=B- Ekin[MeV]=28349.8 direction=(0.810716,0.581581,0.0671026) material=G4_C - --> #secondaries=5 impactParameter[fm]=2.31545 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 128 projectile=alpha Ekin[MeV]=23402.7 direction=(0.689301,0.326054,0.646957) material=G4_Si - --> #secondaries=10 impactParameter[fm]=4.33028 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 129 projectile=He3 Ekin[MeV]=22241.8 direction=(0.531589,0.844113,0.0699036) material=G4_Si - --> #secondaries=22 impactParameter[fm]=3.36802 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 130 projectile=alpha Ekin[MeV]=11113.3 direction=(0.0792221,0.963623,0.255254) material=G4_Al + j=0 kaon0L p=(1969.74,424.506,6564.936885.2) MeV + j=1 pi0 p=(382.755,85.9562,2115.792156.08) MeV + j=2 pi0 p=(-233.989,149.821,777.49836.604) MeV + j=3 pi- p=(985.424,459.687,2817.353023.13) MeV + j=4 pi0 p=(1645.22,298.609,5901.256135.05) MeV + j=5 pi+ p=(682.861,269.553,2131.412258.61) MeV + j=6 He3 p=(-377.041,-408.046,727.8852953.9) MeV + j=7 O16 p=(407.387,655.149,-189.43214916.3) MeV + j=8 alpha p=(257.75,74.5867,-157.6263740.35) MeV + j=9 alpha p=(170.757,-33.5434,-43.68823731.69) MeV + j=10 neutron p=(-22.4921,-7.09115,-36.1124940.555) MeV + j=11 gamma p=(0.595116,-0.407867,0.5689430.918812) MeV + Collision 1 projectile=anti_omega_b- Ekin[MeV]=13540.5 direction=(0.95683,0.170804,0.235163) material=G4_Al + --> #secondaries=16 impactParameter[fm]=3.83592 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 2 projectile=anti_omega- Ekin[MeV]=24942 direction=(0.363865,0.79275,0.489029) material=G4_Cu + --> #secondaries=26 impactParameter[fm]=4.19459 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=1 + Collision 3 projectile=deuteron Ekin[MeV]=15062.2 direction=(0.551861,0.691509,0.466116) material=G4_C + --> #secondaries=10 impactParameter[fm]=3.23161 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=10 #NNcollisions=1 + Collision 4 projectile=D0 Ekin[MeV]=1721.94 direction=(0.464316,0.42032,0.779578) material=G4_Ar + --> #secondaries=12 impactParameter[fm]=1.96695 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 5 projectile=D+ Ekin[MeV]=19387.4 direction=(0.437309,0.337618,0.833532) material=G4_Be + --> #secondaries=13 impactParameter[fm]=2.12385 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 6 projectile=anti_xi0 Ekin[MeV]=8499.94 direction=(0.586483,0.170989,0.791707) material=G4_Si + --> #secondaries=21 impactParameter[fm]=1.866 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 7 projectile=anti_xi_b- Ekin[MeV]=10944.1 direction=(0.727059,0.635215,0.260551) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.388224 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 8 projectile=anti_sigma- Ekin[MeV]=23912.1 direction=(0.164842,0.93674,0.308779) material=G4_Si + --> #secondaries=11 impactParameter[fm]=3.52932 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 9 projectile=anti_hypertriton Ekin[MeV]=22687.4 direction=(0.23826,0.239699,0.941157) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=5.11184 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=62 #NNcollisions=0 + Collision 10 projectile=anti_Bs0 Ekin[MeV]=2791.41 direction=(0.722556,0.367922,0.585275) material=G4_Ar + --> #secondaries=11 impactParameter[fm]=5.76554 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 11 projectile=B+ Ekin[MeV]=13739.4 direction=(0.813954,0.562189,0.146364) material=G4_W + --> #secondaries=22 impactParameter[fm]=5.73469 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 12 projectile=B+ Ekin[MeV]=7904.01 direction=(0.892133,0.280515,0.354133) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=0.758692 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=2 + Collision 13 projectile=Ds- Ekin[MeV]=11838.6 direction=(0.840107,0.0859831,0.535562) material=G4_Cu + --> #secondaries=20 impactParameter[fm]=3.50046 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 14 projectile=B0 Ekin[MeV]=9535.09 direction=(0.62542,0.778401,0.0542291) material=G4_Ar + --> #secondaries=7 impactParameter[fm]=3.60652 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 15 projectile=xi- Ekin[MeV]=10960.1 direction=(0.454692,0.877545,0.152216) material=G4_Fe + --> #secondaries=20 impactParameter[fm]=4.19205 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 16 projectile=anti_triton Ekin[MeV]=4295.72 direction=(0.200675,0.940521,0.274135) material=G4_Be + --> #secondaries=11 impactParameter[fm]=2.98163 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=2 + Collision 17 projectile=hypertriton Ekin[MeV]=18036 direction=(0.731493,0.127036,0.66991) material=G4_Pb + --> #secondaries=160 impactParameter[fm]=3.01787 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=187 #NNcollisions=7 + Collision 18 projectile=pi+ Ekin[MeV]=7421.48 direction=(0.572524,0.147556,0.806501) material=G4_W + --> #secondaries=70 impactParameter[fm]=3.26982 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=2 + Collision 19 projectile=anti_hyperH4 Ekin[MeV]=24143.9 direction=(0.0318224,0.785763,0.617709) material=G4_Fe + --> #secondaries=23 impactParameter[fm]=6.03144 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 20 projectile=pi- Ekin[MeV]=10283.4 direction=(0.958189,0.256182,0.127457) material=G4_C + --> #secondaries=13 impactParameter[fm]=1.4131 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=2 + Collision 21 projectile=hyperHe5 Ekin[MeV]=24506.7 direction=(0.147082,0.07811,0.986035) material=G4_He + --> #secondaries=5 impactParameter[fm]=3.73542 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 22 projectile=lambda_c+ Ekin[MeV]=18900.8 direction=(0.313206,0.795583,0.518603) material=G4_Si + --> #secondaries=26 impactParameter[fm]=1.00832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 23 projectile=kaon+ Ekin[MeV]=12805.4 direction=(0.927007,0.292384,0.234882) material=G4_Be + --> #secondaries=12 impactParameter[fm]=1.73495 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 24 projectile=anti_lambda_b Ekin[MeV]=23140.9 direction=(0.400828,0.22348,0.888478) material=G4_Cu + --> #secondaries=38 impactParameter[fm]=3.55616 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=3 + Collision 25 projectile=Bc+ Ekin[MeV]=3697.18 direction=(0.0284395,0.300073,0.953492) material=G4_C + --> #secondaries=5 impactParameter[fm]=2.31337 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 26 projectile=xi_b0 Ekin[MeV]=7427.78 direction=(0.286673,0.204485,0.935951) material=G4_C + --> #secondaries=12 impactParameter[fm]=1.41083 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 27 projectile=hypertriton Ekin[MeV]=14179.5 direction=(0.84765,0.13325,0.51355) material=G4_W + --> #secondaries=136 impactParameter[fm]=2.35939 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=165 #NNcollisions=5 + Collision 28 projectile=anti_lambda Ekin[MeV]=14690.9 direction=(0.755024,0.449831,0.477066) material=G4_He + --> #secondaries=10 impactParameter[fm]=1.1114 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 29 projectile=Bc- Ekin[MeV]=25167.5 direction=(0.6614,0.538231,0.522358) material=G4_Cu + --> #secondaries=34 impactParameter[fm]=4.46406 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=1 + Collision 30 projectile=anti_B0 Ekin[MeV]=26853.6 direction=(0.731938,0.483254,0.480346) material=G4_W + --> #secondaries=47 impactParameter[fm]=2.09176 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 31 projectile=anti_xi_c+ Ekin[MeV]=10945.5 direction=(0.903081,0.132027,0.408673) material=G4_Pb + --> #secondaries=16 impactParameter[fm]=7.50036 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=0 + Collision 32 projectile=anti_D0 Ekin[MeV]=28365.7 direction=(0.602902,0.194963,0.773627) material=G4_Be + --> #secondaries=19 impactParameter[fm]=1.94241 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 33 projectile=xi0 Ekin[MeV]=7832.59 direction=(0.0451983,0.463353,0.88502) material=G4_Si + --> #secondaries=24 impactParameter[fm]=1.2642 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 34 projectile=anti_proton Ekin[MeV]=12223.2 direction=(0.29724,0.727079,0.618874) material=G4_Ar + --> #secondaries=18 impactParameter[fm]=4.47197 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 35 projectile=D- Ekin[MeV]=7774.7 direction=(0.473043,0.171193,0.864247) material=G4_Al + --> #secondaries=14 impactParameter[fm]=3.83449 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 36 projectile=Bs0 Ekin[MeV]=29785.4 direction=(0.355277,0.640811,0.680543) material=G4_Pb + --> #secondaries=60 impactParameter[fm]=2.27313 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 37 projectile=anti_lambda_b Ekin[MeV]=27733.9 direction=(0.265863,0.591269,0.761392) material=G4_Fe + --> #secondaries=16 impactParameter[fm]=2.99088 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 38 projectile=anti_omega_c0 Ekin[MeV]=19415.7 direction=(0.770881,0.394233,0.500322) material=G4_Pb + --> #secondaries=29 impactParameter[fm]=7.40695 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 39 projectile=anti_alpha Ekin[MeV]=6969.51 direction=(0.229232,0.775905,0.587727) material=G4_He + --> #secondaries=18 impactParameter[fm]=0.488101 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 40 projectile=anti_omega_b- Ekin[MeV]=24002.6 direction=(0.570785,0.647838,0.50449) material=G4_Ar + --> #secondaries=17 impactParameter[fm]=2.66924 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 41 projectile=lambda_c+ Ekin[MeV]=8462.46 direction=(0.170219,0.486657,0.856849) material=G4_Al + --> #secondaries=20 impactParameter[fm]=3.11447 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 42 projectile=B- Ekin[MeV]=11308.1 direction=(0.652101,0.755151,0.0671692) material=G4_Pb + --> #secondaries=15 impactParameter[fm]=7.00418 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=0 + Collision 43 projectile=lambda_b Ekin[MeV]=20163.6 direction=(0.156594,0.970312,0.18432) material=G4_H + --> #secondaries=2 impactParameter[fm]=2.21304 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 44 projectile=hyperHe5 Ekin[MeV]=3710.39 direction=(0.183829,0.97826,0.0959949) material=G4_H + --> #secondaries=3 impactParameter[fm]=3.44679 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 45 projectile=B0 Ekin[MeV]=28687.3 direction=(0.700199,0.234358,0.674387) material=G4_W + --> #secondaries=16 impactParameter[fm]=7.21924 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 46 projectile=xi_c+ Ekin[MeV]=2254.91 direction=(0.549805,0.541889,0.635666) material=G4_Be + --> #secondaries=7 impactParameter[fm]=1.146 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=0 + Collision 47 projectile=lambda Ekin[MeV]=24455.6 direction=(0.523141,0.703108,0.481624) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.572618 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 48 projectile=anti_xi- Ekin[MeV]=19411.4 direction=(0.991552,0.100059,0.0825347) material=G4_Ar + --> #secondaries=28 impactParameter[fm]=3.64462 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 49 projectile=D0 Ekin[MeV]=6036.33 direction=(0.792618,0.423467,0.438672) material=G4_He + --> #secondaries=5 impactParameter[fm]=2.12732 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 50 projectile=anti_hypertriton Ekin[MeV]=23999.2 direction=(0.883377,0.00969461,0.468563) material=G4_Be + --> #secondaries=20 impactParameter[fm]=2.25314 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 51 projectile=hypertriton Ekin[MeV]=19993.4 direction=(0.586716,0.4346,0.683291) material=G4_Cu + --> #secondaries=40 impactParameter[fm]=5.02127 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=58 #NNcollisions=6 + Collision 52 projectile=D+ Ekin[MeV]=21065.7 direction=(0.668678,0.252871,0.699232) material=G4_He + --> #secondaries=10 impactParameter[fm]=2.43215 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 53 projectile=anti_sigma+ Ekin[MeV]=29342.7 direction=(0.613998,0.525856,0.588627) material=G4_Al + --> #secondaries=15 impactParameter[fm]=2.54282 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 54 projectile=kaon+ Ekin[MeV]=1783.35 direction=(0.705847,0.200899,0.679279) material=G4_Fe + --> #secondaries=22 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 55 projectile=He3 Ekin[MeV]=27262.4 direction=(0.479765,0.118187,0.8694) material=G4_Be + --> #secondaries=23 impactParameter[fm]=1.24528 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=7 + Collision 56 projectile=hyperHe5 Ekin[MeV]=3144.54 direction=(0.0350671,0.67147,0.740202) material=G4_Ar + --> #secondaries=28 impactParameter[fm]=3.57338 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=0 + Collision 57 projectile=kaon0L Ekin[MeV]=23770.9 direction=(0.631447,0.756977,0.168112) material=G4_Fe + --> #secondaries=18 impactParameter[fm]=4.72621 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 58 projectile=anti_hyperalpha Ekin[MeV]=21658.3 direction=(0.120795,0.985476,0.119357) material=G4_H + --> #secondaries=10 impactParameter[fm]=0.734607 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 59 projectile=anti_lambda Ekin[MeV]=2742.67 direction=(0.611577,0.519582,0.596665) material=G4_Ar + --> #secondaries=20 impactParameter[fm]=2.0257 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 60 projectile=anti_hyperH4 Ekin[MeV]=13503.2 direction=(0.107937,0.180654,0.977606) material=G4_Pb + --> #secondaries=122 impactParameter[fm]=4.41426 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=4 + Collision 61 projectile=anti_hyperHe5 Ekin[MeV]=16062 direction=(0.547933,0.451619,0.704138) material=G4_Fe + --> #secondaries=62 impactParameter[fm]=0.268689 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=7 + Collision 62 projectile=anti_hyperH4 Ekin[MeV]=14588.9 direction=(0.0771352,0.622631,0.778704) material=G4_Cu + --> #secondaries=64 impactParameter[fm]=0.77626 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=4 + Collision 63 projectile=kaon- Ekin[MeV]=22633.5 direction=(0.380072,0.218503,0.898778) material=G4_Fe + --> #secondaries=11 impactParameter[fm]=1.74473 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=0 + Collision 64 projectile=anti_xi0 Ekin[MeV]=10610 direction=(0.761276,0.38043,0.525101) material=G4_He + --> #secondaries=6 impactParameter[fm]=0.716466 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=1 + Collision 65 projectile=anti_omega_c0 Ekin[MeV]=4008.66 direction=(0.717383,0.671432,0.185854) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.598219 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 66 projectile=Bc+ Ekin[MeV]=13133 direction=(0.768746,0.615194,0.174832) material=G4_He + --> #secondaries=5 impactParameter[fm]=0.39126 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 67 projectile=sigma- Ekin[MeV]=15312.5 direction=(0.270535,0.957425,0.100736) material=G4_He + --> #secondaries=6 impactParameter[fm]=2.52158 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 68 projectile=anti_B0 Ekin[MeV]=5850.91 direction=(0.781179,0.461342,0.420621) material=G4_C + --> #secondaries=6 impactParameter[fm]=2.32429 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 69 projectile=hypertriton Ekin[MeV]=2800.8 direction=(0.920952,0.132412,0.36649) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.829212 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 70 projectile=anti_sigma- Ekin[MeV]=1440.43 direction=(0.170139,0.856174,0.487872) material=G4_C + --> #secondaries=13 impactParameter[fm]=3.42206 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 71 projectile=kaon0S Ekin[MeV]=19910.7 direction=(0.701118,0.661969,0.265012) material=G4_Pb + --> #secondaries=63 impactParameter[fm]=3.10604 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 + Collision 72 projectile=D- Ekin[MeV]=9671.14 direction=(0.709764,0.695275,0.113263) material=G4_Be + --> #secondaries=9 impactParameter[fm]=0.659173 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 73 projectile=anti_triton Ekin[MeV]=14443 direction=(0.141258,0.859738,0.490813) material=G4_Fe + --> #secondaries=59 impactParameter[fm]=0.528242 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=4 + Collision 74 projectile=anti_Bs0 Ekin[MeV]=24078.8 direction=(0.147704,0.263885,0.953178) material=G4_Al + --> #secondaries=13 impactParameter[fm]=2.29741 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 75 projectile=Bc+ Ekin[MeV]=23560.7 direction=(0.592755,0.398219,0.700045) material=G4_W + --> #secondaries=12 impactParameter[fm]=5.93373 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 76 projectile=lambda Ekin[MeV]=4221.29 direction=(0.260861,0.686545,0.678681) material=G4_Cu + --> #secondaries=16 impactParameter[fm]=3.4491 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=1 + Collision 77 projectile=anti_omega_b- Ekin[MeV]=25793.8 direction=(0.570408,0.55045,0.609623) material=G4_Cu + --> #secondaries=24 impactParameter[fm]=3.91306 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 78 projectile=anti_lambda Ekin[MeV]=29397.2 direction=(0.501503,0.422444,0.755008) material=G4_Fe + --> #secondaries=34 impactParameter[fm]=3.28141 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 79 projectile=sigma- Ekin[MeV]=5399.39 direction=(0.171229,0.627916,0.759212) material=G4_Be + --> #secondaries=6 impactParameter[fm]=2.63255 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 80 projectile=pi- Ekin[MeV]=4713.45 direction=(0.783885,0.370631,0.498154) material=G4_Si + --> #secondaries=10 impactParameter[fm]=2.39484 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 81 projectile=neutron Ekin[MeV]=15041.3 direction=(0.307,0.695634,0.649495) material=G4_Pb + --> #secondaries=89 impactParameter[fm]=3.71334 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=4 + Collision 82 projectile=deuteron Ekin[MeV]=17266.5 direction=(0.696564,0.174251,0.696013) material=G4_Pb + --> #secondaries=73 impactParameter[fm]=4.81882 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=199 #NNcollisions=4 + Collision 83 projectile=anti_He3 Ekin[MeV]=21316.9 direction=(0.0273624,0.815938,0.577492) material=G4_C + --> #secondaries=14 impactParameter[fm]=3.46639 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 84 projectile=anti_deuteron Ekin[MeV]=7660.49 direction=(0.42208,0.390887,0.817958) material=G4_W + --> #secondaries=49 impactParameter[fm]=5.69213 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=186 #NNcollisions=2 + Collision 85 projectile=anti_hyperH4 Ekin[MeV]=19151.2 direction=(0.224258,0.148278,0.963183) material=G4_Fe + --> #secondaries=64 impactParameter[fm]=1.022 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=5 + Collision 86 projectile=anti_sigma+ Ekin[MeV]=19246.1 direction=(0.963185,0.0597716,0.262112) material=G4_C + --> #secondaries=8 impactParameter[fm]=1.73053 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 87 projectile=B0 Ekin[MeV]=20537.6 direction=(0.651709,0.295573,0.698507) material=G4_Be + --> #secondaries=5 impactParameter[fm]=2.48452 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 88 projectile=sigma- Ekin[MeV]=3563.46 direction=(0.36618,0.60734,0.705018) material=G4_W --> #secondaries=18 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 131 projectile=anti_lambda_b Ekin[MeV]=2700.82 direction=(0.37394,0.710312,0.596344) material=G4_Si - --> #secondaries=11 impactParameter[fm]=2.10116 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 132 projectile=anti_proton Ekin[MeV]=9611.25 direction=(0.646636,0.629694,0.43052) material=G4_Pb - --> #secondaries=72 impactParameter[fm]=5.59831 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 133 projectile=anti_hyperH4 Ekin[MeV]=9865.81 direction=(0.239781,0.755342,0.609888) material=G4_Si - --> #secondaries=38 impactParameter[fm]=3.04377 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=5 - Collision 134 projectile=anti_lambda_c+ Ekin[MeV]=13467.7 direction=(0.385665,0.578861,0.718459) material=G4_C - --> #secondaries=15 impactParameter[fm]=1.73721 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 135 projectile=xi_b- Ekin[MeV]=19614.6 direction=(0.838563,0.0642012,0.541008) material=G4_C - --> #secondaries=17 impactParameter[fm]=1.43923 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 136 projectile=anti_lambda_c+ Ekin[MeV]=1117.21 direction=(0.223649,0.96685,0.123217) material=G4_W - --> #secondaries=21 impactParameter[fm]=4.42923 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=0 - Collision 137 projectile=xi0 Ekin[MeV]=20757.7 direction=(0.183325,0.222711,0.957492) material=G4_C - --> #secondaries=15 impactParameter[fm]=1.63122 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=3 - Collision 138 projectile=omega- Ekin[MeV]=9779.02 direction=(0.124781,0.837743,0.531616) material=G4_Cu - --> #secondaries=56 impactParameter[fm]=2.57114 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=5 - Collision 139 projectile=He3 Ekin[MeV]=28498.5 direction=(0.918048,0.395394,0.0291775) material=G4_H - --> #secondaries=18 impactParameter[fm]=2.06874 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 140 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=10290.6 direction=(0.68192,0.730898,0.0278236) material=G4_Si - --> #secondaries=5 impactParameter[fm]=6.10811 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 141 projectile=Ds- Ekin[MeV]=12180.6 direction=(0.205921,0.80421,0.557533) material=G4_He - --> #secondaries=7 impactParameter[fm]=0.784184 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 142 projectile=neutron Ekin[MeV]=3152.31 direction=(0.542402,0.150889,0.826458) material=G4_W - --> #secondaries=23 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 143 projectile=anti_deuteron Ekin[MeV]=11404.2 direction=(0.813453,0.312881,0.490305) material=G4_Ar - --> #secondaries=12 impactParameter[fm]=3.57706 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=40 #NNcollisions=1 - Collision 144 projectile=hyperalpha Ekin[MeV]=15784.6 direction=(0.677509,0.733987,0.0473814) material=G4_He - --> #secondaries=9 impactParameter[fm]=2.18403 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=3 - Collision 145 projectile=anti_Bs0 Ekin[MeV]=15497 direction=(0.0645334,0.650891,0.756424) material=G4_Pb - --> #secondaries=34 impactParameter[fm]=4.075 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=1 - Collision 146 projectile=anti_xi_c+ Ekin[MeV]=21265.6 direction=(0.386933,0.623236,0.679602) material=G4_He - --> #secondaries=4 impactParameter[fm]=3.06297 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 147 projectile=D0 Ekin[MeV]=17348.8 direction=(0.609904,0.439538,0.659412) material=G4_Al - --> #secondaries=11 impactParameter[fm]=3.22551 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 148 projectile=Bc- Ekin[MeV]=7618.52 direction=(0.0324135,0.767919,0.639727) material=G4_Cu - --> #secondaries=6 impactParameter[fm]=5.16006 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 149 projectile=Bc- Ekin[MeV]=12514 direction=(0.213406,0.492678,0.843639) material=G4_Be - --> #secondaries=7 impactParameter[fm]=2.36011 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 150 projectile=xi_c0 Ekin[MeV]=4523.29 direction=(0.293956,0.176544,0.939373) material=G4_Fe - --> #secondaries=28 impactParameter[fm]=3.09528 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=2 - Collision 151 projectile=omega_b- Ekin[MeV]=11878 direction=(0.610186,0.0396205,0.791267) material=G4_Pb - --> #secondaries=28 impactParameter[fm]=5.19402 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=2 - Collision 152 projectile=kaon- Ekin[MeV]=16967.6 direction=(0.508049,0.537058,0.673391) material=G4_Be - --> #secondaries=7 impactParameter[fm]=3.11253 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 153 projectile=doublehyperH4 Ekin[MeV]=25664.8 direction=(0.264392,0.814418,0.516546) material=G4_Be - --> #secondaries=12 impactParameter[fm]=2.00757 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=7 #NNcollisions=1 - Collision 154 projectile=omega- Ekin[MeV]=24526.3 direction=(0.503628,0.82474,0.25722) material=G4_Pb - --> #secondaries=83 impactParameter[fm]=4.02358 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=200 #NNcollisions=6 - Collision 155 projectile=B0 Ekin[MeV]=3757.51 direction=(0.679226,0.573652,0.457794) material=G4_W - --> #secondaries=23 impactParameter[fm]=7.65017 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=185 #NNcollisions=0 - Collision 156 projectile=D0 Ekin[MeV]=16433.1 direction=(0.737189,0.584128,0.339626) material=G4_H - --> #secondaries=6 impactParameter[fm]=0.313746 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 157 projectile=anti_omega_c0 Ekin[MeV]=13567.2 direction=(0.528338,0.0122974,0.848945) material=G4_Be - --> #secondaries=13 impactParameter[fm]=0.564675 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 158 projectile=kaon0S Ekin[MeV]=13719 direction=(0.767194,0.0797309,0.636441) material=G4_Fe - --> #secondaries=18 impactParameter[fm]=4.99108 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 159 projectile=hypertriton Ekin[MeV]=27784.7 direction=(0.818242,0.397754,0.415056) material=G4_He - --> #secondaries=11 impactParameter[fm]=1.44639 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 160 projectile=deuteron Ekin[MeV]=24825.6 direction=(0.416957,0.691877,0.589452) material=G4_Fe - --> #secondaries=33 impactParameter[fm]=4.63416 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=2 - Collision 161 projectile=B0 Ekin[MeV]=26533.9 direction=(0.219427,0.354636,0.908892) material=G4_Be - --> #secondaries=9 impactParameter[fm]=2.6164 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 162 projectile=anti_omega- Ekin[MeV]=29542.3 direction=(0.616136,0.710438,0.340081) material=G4_W - --> #secondaries=75 impactParameter[fm]=1.45595 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=177 #NNcollisions=5 - Collision 163 projectile=anti_triton Ekin[MeV]=20156.5 direction=(0.433814,0.648761,0.625232) material=G4_Ar - --> #secondaries=27 impactParameter[fm]=2.48134 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 164 projectile=omega- Ekin[MeV]=28489 direction=(0.523836,0.83944,0.144692) material=G4_Si - --> #secondaries=22 impactParameter[fm]=3.3865 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 165 projectile=sigma+ Ekin[MeV]=10184.2 direction=(0.523034,0.758967,0.387819) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.930857 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 166 projectile=anti_xi_c+ Ekin[MeV]=1496.51 direction=(0.922393,0.0130615,0.386033) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=2.35089 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=0 - Collision 167 projectile=proton Ekin[MeV]=27219.5 direction=(0.785374,0.618453,0.0265343) material=G4_H - --> #secondaries=8 impactParameter[fm]=1.53697 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 168 projectile=lambda Ekin[MeV]=2888.7 direction=(0.47247,0.543627,0.693715) material=G4_Pb - --> #secondaries=78 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 169 projectile=D+ Ekin[MeV]=29021.7 direction=(0.626761,0.650872,0.428412) material=G4_Si - --> #secondaries=10 impactParameter[fm]=3.83832 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 170 projectile=anti_deuteron Ekin[MeV]=21178.3 direction=(0.269376,0.923178,0.274187) material=G4_C - --> #secondaries=20 impactParameter[fm]=2.92141 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=2 - Collision 171 projectile=anti_xi0 Ekin[MeV]=28621.3 direction=(0.168299,0.837816,0.519364) material=G4_Cu - --> #secondaries=57 impactParameter[fm]=1.59069 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=2 - Collision 172 projectile=hyperHe5 Ekin[MeV]=18872.4 direction=(0.801681,0.430019,0.4152) material=G4_Si - --> #secondaries=11 impactParameter[fm]=3.24885 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 173 projectile=anti_lambda_c+ Ekin[MeV]=14833.6 direction=(0.697619,0.548212,0.461293) material=G4_Cu - --> #secondaries=29 impactParameter[fm]=4.46007 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 174 projectile=Bs0 Ekin[MeV]=25391.3 direction=(0.633565,0.397958,0.663495) material=G4_W - --> #secondaries=75 impactParameter[fm]=4.9012 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=7 - Collision 175 projectile=omega_c0 Ekin[MeV]=17631.8 direction=(0.724507,0.512101,0.461349) material=G4_W - --> #secondaries=78 impactParameter[fm]=2.92699 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=2 - Collision 176 projectile=kaon0S Ekin[MeV]=9540.57 direction=(0.482113,0.824443,0.296413) material=G4_Be - --> #secondaries=14 impactParameter[fm]=2.01973 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 177 projectile=kaon- Ekin[MeV]=4575.07 direction=(0.811826,0.410753,0.414995) material=G4_Fe - --> #secondaries=21 impactParameter[fm]=4.10034 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=2 - Collision 178 projectile=anti_hypertriton Ekin[MeV]=1897.74 direction=(0.921944,0.0589914,0.382804) material=G4_Al - --> #secondaries=30 impactParameter[fm]=1.67047 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=3 - Collision 179 projectile=proton Ekin[MeV]=16751 direction=(0.747868,0.173634,0.640738) material=G4_H - --> #secondaries=8 impactParameter[fm]=1.36688 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 180 projectile=anti_D0 Ekin[MeV]=3817.06 direction=(0.735423,0.0345978,0.676724) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=4.30865 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 181 projectile=hyperalpha Ekin[MeV]=12772.3 direction=(0.348053,0.773868,0.529138) material=G4_He - --> #secondaries=13 impactParameter[fm]=2.00822 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=2 - Collision 182 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=14957 direction=(0.797772,0.23463,0.555436) material=G4_Fe - --> #secondaries=6 impactParameter[fm]=5.58476 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=56 #NNcollisions=1 - Collision 183 projectile=anti_lambda_b Ekin[MeV]=3331.69 direction=(0.574507,0.105173,0.811714) material=G4_Pb - --> #secondaries=6 impactParameter[fm]=6.72182 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=0 - Collision 184 projectile=B- Ekin[MeV]=9598.53 direction=(0.644606,0.273329,0.713985) material=G4_C - --> #secondaries=7 impactParameter[fm]=1.54453 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 185 projectile=Ds- Ekin[MeV]=19476.3 direction=(0.142574,0.0839933,0.986214) material=G4_W - --> #secondaries=68 impactParameter[fm]=3.49293 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=177 #NNcollisions=4 - Collision 186 projectile=omega- Ekin[MeV]=26819.1 direction=(0.461736,0.721555,0.515905) material=G4_Ar - --> #secondaries=31 impactParameter[fm]=3.94521 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=2 - Collision 187 projectile=proton Ekin[MeV]=7258.37 direction=(0.741915,0.17653,0.646838) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=4.53172 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=1 - Collision 188 projectile=xi_b- Ekin[MeV]=8926.15 direction=(0.606936,0.62806,0.487001) material=G4_Fe - --> #secondaries=25 impactParameter[fm]=1.02907 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=4 - Collision 189 projectile=neutron Ekin[MeV]=22271.5 direction=(0.798201,0.428074,0.423825) material=G4_W - --> #secondaries=68 impactParameter[fm]=5.77933 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=5 - Collision 190 projectile=anti_triton Ekin[MeV]=25444.9 direction=(0.880147,0.416089,0.228499) material=G4_Be - --> #secondaries=25 impactParameter[fm]=2.6893 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 191 projectile=doublehyperH4 Ekin[MeV]=11718.5 direction=(0.570281,0.799435,0.188904) material=G4_W - --> #secondaries=125 impactParameter[fm]=1.66489 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=160 #NNcollisions=6 - Collision 192 projectile=anti_Bs0 Ekin[MeV]=1372.42 direction=(0.238782,0.751786,0.614655) material=G4_Fe - --> #secondaries=14 impactParameter[fm]=3.88051 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 193 projectile=anti_sigma+ Ekin[MeV]=25843.2 direction=(0.986429,0.0930704,0.13526) material=G4_Al - --> #secondaries=21 impactParameter[fm]=3.83592 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 194 projectile=anti_xi- Ekin[MeV]=8530.75 direction=(0.665296,0.559639,0.494151) material=G4_W - --> #secondaries=42 impactParameter[fm]=6.68443 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 195 projectile=anti_D0 Ekin[MeV]=28571.7 direction=(0.358156,0.0233666,0.933369) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=4.31343 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 196 projectile=anti_hypertriton Ekin[MeV]=13508.4 direction=(0.335444,0.854192,0.397282) material=G4_Fe - --> #secondaries=17 impactParameter[fm]=5.66309 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 197 projectile=anti_D0 Ekin[MeV]=26423.9 direction=(0.470251,0.0697467,0.879772) material=G4_Cu - --> #secondaries=26 impactParameter[fm]=3.90317 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 198 projectile=omega_b- Ekin[MeV]=24300.3 direction=(0.644403,0.644635,0.411328) material=G4_Cu - --> #secondaries=30 impactParameter[fm]=1.0504 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 199 projectile=Ds- Ekin[MeV]=7487.21 direction=(0.620365,0.608126,0.495308) material=G4_W - --> #secondaries=42 impactParameter[fm]=2.43421 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=0 - Collision 200 projectile=lambda Ekin[MeV]=26945.4 direction=(0.12724,0.705522,0.697171) material=G4_W - --> #secondaries=61 impactParameter[fm]=5.11299 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=4 + Collision 89 projectile=anti_proton Ekin[MeV]=27685.9 direction=(0.0704142,0.705067,0.705636) material=G4_He + --> #secondaries=10 impactParameter[fm]=2.51505 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 90 projectile=hyperalpha Ekin[MeV]=3726.01 direction=(0.222824,0.868997,0.441807) material=G4_Pb + --> #secondaries=84 impactParameter[fm]=7.18469 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=190 #NNcollisions=1 + Collision 91 projectile=anti_doublehyperH4 Ekin[MeV]=14581.5 direction=(0.243839,0.29099,0.925131) material=G4_Si + --> #secondaries=35 impactParameter[fm]=3.3748 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=3 + Collision 92 projectile=triton Ekin[MeV]=12003.2 direction=(0.664836,0.745618,0.045242) material=G4_Si + --> #secondaries=23 impactParameter[fm]=1.31065 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 93 projectile=anti_omega_c0 Ekin[MeV]=10799.7 direction=(0.549822,0.374547,0.746599) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.04693 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 94 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=22982 direction=(0.307195,0.161288,0.937879) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.10017 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 95 projectile=anti_Bs0 Ekin[MeV]=25644.2 direction=(0.371456,0.383664,0.845471) material=G4_Pb + --> #secondaries=36 impactParameter[fm]=5.32919 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=0 + Collision 96 projectile=anti_hypertriton Ekin[MeV]=12103 direction=(0.548739,0.566449,0.614834) material=G4_Fe + --> #secondaries=25 impactParameter[fm]=5.69726 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=3 + Collision 97 projectile=sigma+ Ekin[MeV]=21181.1 direction=(0.365455,0.732377,0.574514) material=G4_Fe + --> #secondaries=8 impactParameter[fm]=4.20041 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 98 projectile=D- Ekin[MeV]=21970.8 direction=(0.73865,0.436542,0.513641) material=G4_Be + --> #secondaries=6 impactParameter[fm]=3.56832 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 99 projectile=doublehyperH4 Ekin[MeV]=27684 direction=(0.43474,0.879789,0.192279) material=G4_H + --> #secondaries=6 impactParameter[fm]=1.91185 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 100 projectile=anti_doublehyperH4 Ekin[MeV]=9874.39 direction=(0.485857,0.0297992,0.87353) material=G4_Fe + --> #secondaries=42 impactParameter[fm]=4.95677 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=56 #NNcollisions=3 List of produced secondaries: - j=0 lambda p=(815.981,2975.53,2603.334188.28) MeV - j=1 pi+ p=(404.425,214.804,400.292624.03) MeV - j=2 neutron p=(612.268,2931.02,2788.44198.06) MeV - j=3 pi0 p=(280.234,1565.8,1579.72245.87) MeV - j=4 eta_prime p=(-86.7153,3440.51,2994.664661.54) MeV - j=5 neutron p=(-320.046,218.365,-538.7621150.29) MeV - j=6 neutron p=(-225.823,655.489,737.6761381.16) MeV - j=7 pi+ p=(-2.04245,-96.1161,51.248177.056) MeV - j=8 pi- p=(131.957,1591.7,988.5621883.52) MeV - j=9 proton p=(-28.389,789.024,1790.782170.4) MeV - j=10 pi- p=(54.6791,397.69,517.532669.676) MeV - j=11 neutron p=(-215.618,184.176,-282.5261021.28) MeV - j=12 neutron p=(-141.383,-312.697,-159.3831012.89) MeV - j=13 neutron p=(-68.6984,160.337,368.7211024.29) MeV - j=14 neutron p=(234.75,-116.241,-186.127992.998) MeV - j=15 pi- p=(806.58,3841.34,4226.985770.04) MeV - j=16 pi+ p=(424.054,624.237,767.2141085.17) MeV - j=17 proton p=(-240.074,324.005,-13.12711021.34) MeV - j=18 proton p=(20.639,-57.3156,295.07985.46) MeV - j=19 proton p=(-83.2462,-51.7856,238.637973.095) MeV - j=20 neutron p=(-226.362,-49.1382,131.889976.643) MeV - j=21 deuteron p=(-129.612,-446.047,466.2451987.73) MeV - j=22 proton p=(316.414,-119.279,111.7911003.59) MeV - j=23 neutron p=(146.91,406.779,-333.7091086.83) MeV - j=24 proton p=(-99.9385,-143.712,-110.293960.812) MeV - j=25 neutron p=(-1.38698,254.723,73.4303976.248) MeV - j=26 neutron p=(108.789,-171.186,74.3785964.083) MeV - j=27 neutron p=(-80.2245,-222.038,-80.2231972.088) MeV - j=28 proton p=(98.2329,-37.1533,152.213956.323) MeV - j=29 deuteron p=(-217.317,-329.555,184.3561925.55) MeV - j=30 neutron p=(89.8158,209.48,230.103993.82) MeV - j=31 neutron p=(-59.0912,-60.7731,-112.111950.02) MeV - j=32 neutron p=(151.651,-93.5796,164.064970.286) MeV - j=33 Ce131 p=(1320.49,1267.77,-517.045121931) MeV - j=34 neutron p=(-45.1711,-39.3677,-87.9787945.576) MeV - j=35 triton p=(-140.088,-80.2012,157.8612817.98) MeV - j=36 neutron p=(-31.4833,59.2037,66.2345944.281) MeV - j=37 proton p=(-75.9985,112.563,-49.6351949.349) MeV - j=38 deuteron p=(127.861,-96.9076,192.6741892.3) MeV - j=39 triton p=(-64.0793,258.926,-123.082824.24) MeV - j=40 neutron p=(10.1764,38.6812,-9.55252940.465) MeV - j=41 neutron p=(30.2662,65.5344,104.959948.162) MeV - j=42 deuteron p=(149.767,-171.292,-180.3911897.96) MeV - j=43 neutron p=(42.0281,-49.1603,-76.2681944.872) MeV - j=44 neutron p=(-101.724,16.6511,17.7222945.369) MeV - j=45 neutron p=(-8.39797,-57.7521,6.73739941.4) MeV - j=46 proton p=(-78.6075,-5.75123,-131.243950.679) MeV - j=47 neutron p=(-17.5253,28.8747,-90.9027944.557) MeV - j=48 deuteron p=(-33.4784,30.2817,166.3281883.51) MeV - j=49 neutron p=(-79.6469,-43.8896,-17.5386944.119) MeV - j=50 neutron p=(-0.222533,-46.5497,22.2231940.98) MeV - j=51 neutron p=(37.3403,-38.8157,-9.84924941.159) MeV - j=52 neutron p=(54.8445,54.558,-15.9756942.88) MeV - j=53 gamma p=(-1.959,0.531355,0.4463272.07827) MeV - j=54 gamma p=(-0.233876,0.297276,-0.8304720.912554) MeV - j=55 gamma p=(0.792294,-0.0587856,-0.3203590.85663) MeV - j=56 gamma p=(0.510447,0.341984,0.5160910.802408) MeV - j=57 gamma p=(0.0291904,-1.19943,0.9115871.50681) MeV - j=58 gamma p=(0.221978,0.589282,0.3888620.740095) MeV - j=59 gamma p=(0.437206,0.187474,0.4671450.666723) MeV - j=60 gamma p=(0.0901834,-0.5618,-0.145010.58718) MeV - Collision 201 projectile=anti_neutron Ekin[MeV]=24016.3 direction=(0.649451,0.727302,0.221913) material=G4_Pb - --> #secondaries=15 impactParameter[fm]=8.1009 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 202 projectile=anti_deuteron Ekin[MeV]=11822.1 direction=(0.291092,0.717101,0.633271) material=G4_Be - --> #secondaries=10 impactParameter[fm]=3.60005 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 203 projectile=anti_proton Ekin[MeV]=9478.07 direction=(0.664542,0.512417,0.543887) material=G4_Be - --> #secondaries=8 impactParameter[fm]=2.6456 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=1 - Collision 204 projectile=pi- Ekin[MeV]=25887.6 direction=(0.657877,0.399368,0.638516) material=G4_W - --> #secondaries=83 impactParameter[fm]=4.85223 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=4 - Collision 205 projectile=anti_xi- Ekin[MeV]=8372.45 direction=(0.0407405,0.620467,0.783174) material=G4_H - --> #secondaries=6 impactParameter[fm]=1.65565 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 206 projectile=anti_D0 Ekin[MeV]=16488.2 direction=(0.769154,0.575712,0.277411) material=G4_Si - --> #secondaries=15 impactParameter[fm]=1.67946 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 207 projectile=B0 Ekin[MeV]=18453.9 direction=(0.938533,0.338669,0.0667785) material=G4_Si - --> #secondaries=13 impactParameter[fm]=2.05898 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 208 projectile=He3 Ekin[MeV]=26658.6 direction=(0.678735,0.0928128,0.728495) material=G4_Cu - --> #secondaries=54 impactParameter[fm]=3.09655 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=57 #NNcollisions=9 - Collision 209 projectile=anti_Bs0 Ekin[MeV]=4382.9 direction=(0.194276,0.943968,0.266799) material=G4_W - --> #secondaries=8 impactParameter[fm]=8.0516 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=185 #NNcollisions=1 - Collision 210 projectile=anti_proton Ekin[MeV]=1689.49 direction=(0.201989,0.676912,0.707807) material=G4_Si - --> #secondaries=16 impactParameter[fm]=3.77545 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 211 projectile=sigma+ Ekin[MeV]=24399.1 direction=(0.583464,0.48802,0.649158) material=G4_H - --> #secondaries=6 impactParameter[fm]=1.43226 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 212 projectile=hyperHe5 Ekin[MeV]=10201.3 direction=(0.119327,0.509617,0.852086) material=G4_Pb - --> #secondaries=65 impactParameter[fm]=6.78131 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=194 #NNcollisions=1 - Collision 213 projectile=pi+ Ekin[MeV]=18083.9 direction=(0.704218,0.692266,0.157621) material=G4_Cu - --> #secondaries=30 impactParameter[fm]=2.93917 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=60 #NNcollisions=2 - Collision 214 projectile=deuteron Ekin[MeV]=28100.1 direction=(0.44893,0.609094,0.65381) material=G4_Be - --> #secondaries=10 impactParameter[fm]=2.53646 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 215 projectile=anti_triton Ekin[MeV]=9570.9 direction=(0.0186292,0.921439,0.388075) material=G4_W - --> #secondaries=53 impactParameter[fm]=5.75551 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=4 - Collision 216 projectile=lambda Ekin[MeV]=27886.9 direction=(0.748541,0.375903,0.546244) material=G4_Si - --> #secondaries=28 impactParameter[fm]=0.740718 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 217 projectile=omega_b- Ekin[MeV]=26566.5 direction=(0.00397326,0.635254,0.772293) material=G4_W - --> #secondaries=35 impactParameter[fm]=6.1422 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=0 - Collision 218 projectile=kaon0S Ekin[MeV]=26922.9 direction=(0.670447,0.431073,0.603885) material=G4_C - --> #secondaries=16 impactParameter[fm]=2.36544 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 219 projectile=B0 Ekin[MeV]=14246.4 direction=(0.153485,0.608078,0.778899) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.12948 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 220 projectile=anti_xi_c+ Ekin[MeV]=9650.89 direction=(0.888036,0.391062,0.24179) material=G4_W - --> #secondaries=89 impactParameter[fm]=1.36502 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=175 #NNcollisions=3 - Collision 221 projectile=anti_triton Ekin[MeV]=28559 direction=(0.558845,0.583758,0.588998) material=G4_H - --> #secondaries=9 impactParameter[fm]=2.16994 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 222 projectile=anti_sigma+ Ekin[MeV]=7354.3 direction=(0.395812,0.735126,0.550384) material=G4_Pb - --> #secondaries=60 impactParameter[fm]=5.01782 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=4 - Collision 223 projectile=hyperalpha Ekin[MeV]=14077.9 direction=(0.923728,0.145751,0.354238) material=G4_H - --> #secondaries=8 impactParameter[fm]=4.27083 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 224 projectile=anti_omega- Ekin[MeV]=20113.5 direction=(0.695272,0.448411,0.561715) material=G4_Pb - --> #secondaries=69 impactParameter[fm]=1.14699 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 225 projectile=B+ Ekin[MeV]=26285.4 direction=(0.712033,0.0771717,0.697892) material=G4_Al - --> #secondaries=19 impactParameter[fm]=4.04037 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 226 projectile=xi_b- Ekin[MeV]=10616.5 direction=(0.399263,0.702482,0.589159) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.70563 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 227 projectile=anti_hyperH4 Ekin[MeV]=27625.4 direction=(0.636122,0.345775,0.689774) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=5.6784 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 - Collision 228 projectile=B+ Ekin[MeV]=18877.2 direction=(0.930331,0.0484365,0.363507) material=G4_Al - --> #secondaries=10 impactParameter[fm]=2.28663 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 229 projectile=D0 Ekin[MeV]=26664 direction=(0.187292,0.204387,0.960806) material=G4_Fe - --> #secondaries=20 impactParameter[fm]=2.39452 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 230 projectile=kaon+ Ekin[MeV]=17511 direction=(0.872006,0.0452947,0.487395) material=G4_Al - --> #secondaries=22 impactParameter[fm]=1.00014 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 231 projectile=anti_sigma+ Ekin[MeV]=22252.7 direction=(0.691103,0.715642,0.101157) material=G4_Si - --> #secondaries=26 impactParameter[fm]=2.64621 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 232 projectile=kaon0S Ekin[MeV]=20899.5 direction=(0.66662,0.728334,0.158579) material=G4_Al - --> #secondaries=20 impactParameter[fm]=2.54096 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 233 projectile=pi- Ekin[MeV]=28915.6 direction=(0.688783,0.628291,0.361702) material=G4_Pb - --> #secondaries=47 impactParameter[fm]=5.23524 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 - Collision 234 projectile=proton Ekin[MeV]=16983.6 direction=(0.575168,0.628825,0.523221) material=G4_Si - --> #secondaries=27 impactParameter[fm]=1.83594 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=1 - Collision 235 projectile=omega- Ekin[MeV]=27628.6 direction=(0.0342401,0.719563,0.693583) material=G4_W - --> #secondaries=108 impactParameter[fm]=2.48141 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=172 #NNcollisions=8 - Collision 236 projectile=anti_neutron Ekin[MeV]=23355.6 direction=(0.305369,0.948163,0.0879533) material=G4_Al - --> #secondaries=15 impactParameter[fm]=6.35079 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 237 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=8787.41 direction=(0.837211,0.422269,0.347515) material=G4_He - --> #secondaries=20 impactParameter[fm]=2.12706 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 238 projectile=anti_sigma+ Ekin[MeV]=9669.42 direction=(0.375287,0.138559,0.916494) material=G4_Ar - --> #secondaries=26 impactParameter[fm]=3.20339 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 239 projectile=xi_b0 Ekin[MeV]=24961.8 direction=(0.752471,0.204574,0.626049) material=G4_Al - --> #secondaries=7 impactParameter[fm]=3.81481 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 240 projectile=xi_b- Ekin[MeV]=5346.2 direction=(0.773949,0.499551,0.389169) material=G4_Ar - --> #secondaries=8 impactParameter[fm]=2.1399 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 241 projectile=Ds+ Ekin[MeV]=4697.16 direction=(0.583956,0.210124,0.784119) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=0.75972 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 242 projectile=alpha Ekin[MeV]=5598.27 direction=(0.642247,0.380717,0.665262) material=G4_Ar + j=0 pi0 p=(511.793,86.1324,1476.61570.96) MeV + j=1 pi0 p=(359.241,-40.3849,237.308453.011) MeV + j=2 pi0 p=(-69.6033,-133.948,-396.917445.588) MeV + j=3 anti_lambda p=(1782.36,3.65961,3192.113822.45) MeV + j=4 pi+ p=(985.725,710.797,1186.741704.32) MeV + j=5 pi- p=(477.018,-341.935,848.7291041.29) MeV + j=6 pi+ p=(49.6365,74.2667,-40.5612170.6) MeV + j=7 pi0 p=(84.8594,5.93055,37.1907163.823) MeV + j=8 anti_proton p=(1313.27,218.982,923.7921872.53) MeV + j=9 proton p=(-85.929,-152.938,-169.278969.424) MeV + j=10 neutron p=(82.1255,114.249,232.132977.991) MeV + j=11 proton p=(-349.104,-106.626,-119.0661013.79) MeV + j=12 pi0 p=(289.713,250.695,501.659645.494) MeV + j=13 kaon0S p=(204.83,-218.865,476.499751.351) MeV + j=14 pi0 p=(316.224,119.832,772.507854.016) MeV + j=15 pi- p=(203.053,-367.749,74.3702448.866) MeV + j=16 pi+ p=(65.9901,-160.251,456.672508.001) MeV + j=17 neutron p=(-81.0993,171.05,1062.531430.94) MeV + j=18 proton p=(590.679,150.433,-191.7911135.2) MeV + j=19 neutron p=(90.5345,-86.9792,34.0953948.529) MeV + j=20 proton p=(-124.426,-43.2219,215.013971.563) MeV + j=21 neutron p=(165.55,76.5931,257.186991.06) MeV + j=22 proton p=(131.613,18.067,16.8694947.78) MeV + j=23 proton p=(165.629,194.058,11.118972.404) MeV + j=24 Na22[583.050] p=(-870.689,-124.759,515.86720508) MeV + j=25 alpha p=(89.4079,118.838,-170.7383734.25) MeV + j=26 triton p=(-128.395,-56.1345,-237.5432822.43) MeV + j=27 neutron p=(118.795,6.05638,-49.2272948.343) MeV + j=28 neutron p=(-78.9027,-135.055,191.617971.579) MeV + j=29 triton p=(128.555,82.6073,178.3382818.72) MeV + j=30 proton p=(-9.13741,-115.04,141.7955.903) MeV + j=31 neutron p=(59.6063,42.8049,-92.5714946.962) MeV + j=32 neutron p=(-41.6634,97.4365,-37.1862946.253) MeV + j=33 proton p=(54.0962,-128.039,40.5398949.378) MeV + j=34 neutron p=(18.6185,98.1327,66.7488947.214) MeV + j=35 deuteron p=(20.4997,76.4565,-73.76421878.73) MeV + j=36 neutron p=(-5.01528,-10.1853,107.298945.74) MeV + j=37 proton p=(2.95995,-21.494,-20.7989938.753) MeV + j=38 neutron p=(-22.7333,-75.096,19.1784943.031) MeV + j=39 gamma p=(-1.73428,0.0898747,-2.16132.77254) MeV + j=40 gamma p=(-0.843329,-0.266989,1.362211.62423) MeV + j=41 gamma p=(0.0210457,0.0466151,-0.04985960.0714274) MeV + Collision 101 projectile=anti_xi_c0 Ekin[MeV]=3396.25 direction=(0.532361,0.519363,0.668471) material=G4_He + --> #secondaries=6 impactParameter[fm]=1.44078 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 102 projectile=neutron Ekin[MeV]=13650.4 direction=(0.826343,0.561917,0.0374986) material=G4_Ar + --> #secondaries=24 impactParameter[fm]=1.69692 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=2 + Collision 103 projectile=neutron Ekin[MeV]=3042.69 direction=(0.230738,0.282986,0.930956) material=G4_Fe + --> #secondaries=21 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 104 projectile=triton Ekin[MeV]=3824.86 direction=(0.765479,0.358704,0.534203) material=G4_Si + --> #secondaries=12 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 105 projectile=sigma+ Ekin[MeV]=27682 direction=(0.168351,0.832883,0.527222) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.28624 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 106 projectile=Ds+ Ekin[MeV]=18064.4 direction=(0.0412374,0.992775,0.112682) material=G4_He + --> #secondaries=10 impactParameter[fm]=0.28499 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 107 projectile=anti_hyperalpha Ekin[MeV]=18802.2 direction=(0.448366,0.844713,0.292281) material=G4_C + --> #secondaries=21 impactParameter[fm]=2.55372 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=2 + Collision 108 projectile=anti_He3 Ekin[MeV]=5002.34 direction=(0.507841,0.538306,0.672551) material=G4_Fe + --> #secondaries=26 impactParameter[fm]=5.17516 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=53 #NNcollisions=1 + Collision 109 projectile=B+ Ekin[MeV]=9948.59 direction=(0.758791,0.65068,0.029184) material=G4_W + --> #secondaries=33 impactParameter[fm]=6.77005 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=184 #NNcollisions=2 + Collision 110 projectile=Ds- Ekin[MeV]=4083.54 direction=(0.505758,0.680462,0.530264) material=G4_Pb + --> #secondaries=59 impactParameter[fm]=3.76797 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=200 #NNcollisions=1 + Collision 111 projectile=kaon+ Ekin[MeV]=22177.9 direction=(0.49787,0.307413,0.810939) material=G4_Be + --> #secondaries=15 impactParameter[fm]=0.676357 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 112 projectile=D- Ekin[MeV]=17718.3 direction=(0.615005,0.67958,0.399923) material=G4_Si + --> #secondaries=20 impactParameter[fm]=1.57105 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 113 projectile=deuteron Ekin[MeV]=21376.4 direction=(0.646943,0.710817,0.276053) material=G4_He + --> #secondaries=9 impactParameter[fm]=0.972717 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=3 + Collision 114 projectile=Ds- Ekin[MeV]=21300.5 direction=(0.497628,0.423889,0.756759) material=G4_Fe + --> #secondaries=7 impactParameter[fm]=3.16627 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 115 projectile=triton Ekin[MeV]=12935.7 direction=(0.636019,0.548813,0.542479) material=G4_H + --> #secondaries=6 impactParameter[fm]=2.43014 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 116 projectile=kaon0L Ekin[MeV]=16489.8 direction=(0.78447,0.00535084,0.620143) material=G4_Cu + --> #secondaries=35 impactParameter[fm]=2.53546 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=59 #NNcollisions=4 + Collision 117 projectile=xi_b- Ekin[MeV]=15481.9 direction=(0.839419,0.539384,0.0666337) material=G4_He + --> #secondaries=7 impactParameter[fm]=1.78311 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 118 projectile=xi0 Ekin[MeV]=28891.1 direction=(0.391331,0.920244,0.00348356) material=G4_Al + --> #secondaries=28 impactParameter[fm]=1.42425 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 119 projectile=proton Ekin[MeV]=25552.1 direction=(0.575856,0.642354,0.505738) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=3.47109 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 120 projectile=hypertriton Ekin[MeV]=10203.1 direction=(0.869478,0.0797904,0.487485) material=G4_Be + --> #secondaries=19 impactParameter[fm]=3.93873 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 121 projectile=Bc- Ekin[MeV]=10747.3 direction=(0.512205,0.687668,0.514547) material=G4_Ar + --> #secondaries=8 impactParameter[fm]=2.33942 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 122 projectile=anti_hypertriton Ekin[MeV]=26718 direction=(0.629435,0.641106,0.439084) material=G4_He + --> #secondaries=15 impactParameter[fm]=0.614348 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 123 projectile=anti_omega_b- Ekin[MeV]=22429.2 direction=(0.965631,0.258351,0.0285016) material=G4_He + --> #secondaries=7 impactParameter[fm]=0.377226 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 124 projectile=D- Ekin[MeV]=18135.6 direction=(0.553826,0.80469,0.213895) material=G4_Be + --> #secondaries=15 impactParameter[fm]=1.68149 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 125 projectile=anti_neutron Ekin[MeV]=24878.9 direction=(0.306804,0.149221,0.940002) material=G4_W + --> #secondaries=31 impactParameter[fm]=6.76301 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 126 projectile=anti_xi_c+ Ekin[MeV]=10449.6 direction=(0.0211288,0.999255,0.0323047) material=G4_Cu + --> #secondaries=28 impactParameter[fm]=2.07358 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 127 projectile=lambda Ekin[MeV]=3188.79 direction=(0.161352,0.539549,0.826349) material=G4_Fe + --> #secondaries=5 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 128 projectile=triton Ekin[MeV]=23227.5 direction=(0.645222,0.136402,0.75172) material=G4_Si + --> #secondaries=29 impactParameter[fm]=1.34588 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=22 #NNcollisions=7 + Collision 129 projectile=B0 Ekin[MeV]=10341 direction=(0.80215,0.0141574,0.596954) material=G4_Fe + --> #secondaries=16 impactParameter[fm]=1.99174 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 130 projectile=anti_xi0 Ekin[MeV]=12725.2 direction=(0.212918,0.861918,0.460177) material=G4_He + --> #secondaries=8 impactParameter[fm]=1.92771 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 131 projectile=anti_xi0 Ekin[MeV]=7392.25 direction=(0.992004,0.0483582,0.116574) material=G4_Be + --> #secondaries=11 impactParameter[fm]=1.49713 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 132 projectile=hyperalpha Ekin[MeV]=4984.56 direction=(0.617245,0.753839,0.225246) material=G4_Al + --> #secondaries=7 impactParameter[fm]=5.14031 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 133 projectile=doublehyperdoubleneutron Ekin[MeV]=3418.82 direction=(0.637588,0.627268,0.447232) material=G4_Si + --> #secondaries=24 impactParameter[fm]=2.13167 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=18 #NNcollisions=1 + Collision 134 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=26342.2 direction=(0.351795,0.776476,0.522805) material=G4_W + --> #secondaries=154 impactParameter[fm]=3.62695 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=4 + Collision 135 projectile=pi+ Ekin[MeV]=14268.4 direction=(0.75028,0.558297,0.354097) material=G4_Cu + --> #secondaries=19 impactParameter[fm]=4.145 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 136 projectile=D0 Ekin[MeV]=2803.05 direction=(0.383139,0.914866,0.127379) material=G4_W + --> #secondaries=23 impactParameter[fm]=4.02717 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=0 + Collision 137 projectile=lambda_b Ekin[MeV]=19001.8 direction=(0.704124,0.301237,0.643013) material=G4_Ar + --> #secondaries=20 impactParameter[fm]=3.38299 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 138 projectile=omega_c0 Ekin[MeV]=14904.9 direction=(0.704751,0.434389,0.560921) material=G4_C + --> #secondaries=8 impactParameter[fm]=1.17999 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 139 projectile=anti_omega_c0 Ekin[MeV]=13723 direction=(0.0600218,0.771744,0.633095) material=G4_Be + --> #secondaries=9 impactParameter[fm]=0.721281 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 140 projectile=anti_hypertriton Ekin[MeV]=19494.9 direction=(0.394945,0.543715,0.740536) material=G4_W + --> #secondaries=146 impactParameter[fm]=3.87413 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=4 + Collision 141 projectile=B- Ekin[MeV]=19911.4 direction=(0.582466,0.772405,0.253227) material=G4_Pb + --> #secondaries=19 impactParameter[fm]=4.71695 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 142 projectile=lambda Ekin[MeV]=20341.1 direction=(0.238233,0.755152,0.610729) material=G4_W + --> #secondaries=63 impactParameter[fm]=3.99439 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=4 + Collision 143 projectile=xi0 Ekin[MeV]=5611.9 direction=(0.352279,0.783561,0.511792) material=G4_Cu + --> #secondaries=14 impactParameter[fm]=4.05577 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 144 projectile=anti_hyperalpha Ekin[MeV]=25797.9 direction=(0.501753,0.33243,0.798583) material=G4_Be + --> #secondaries=13 impactParameter[fm]=3.9245 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 145 projectile=lambda_b Ekin[MeV]=23308.8 direction=(0.677049,0.71471,0.175484) material=G4_Fe + --> #secondaries=36 impactParameter[fm]=2.87682 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=1 + Collision 146 projectile=pi- Ekin[MeV]=23939.8 direction=(0.70432,0.698897,0.124409) material=G4_Al + --> #secondaries=12 impactParameter[fm]=1.46231 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 147 projectile=Bc- Ekin[MeV]=3410.61 direction=(0.286494,0.500288,0.817088) material=G4_Ar + --> #secondaries=10 impactParameter[fm]=3.16608 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 148 projectile=hyperH4 Ekin[MeV]=16433.8 direction=(0.71205,0.694659,0.102147) material=G4_Fe + --> #secondaries=51 impactParameter[fm]=3.50787 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=50 #NNcollisions=4 + Collision 149 projectile=lambda_c+ Ekin[MeV]=12794.9 direction=(0.634764,0.54146,0.551267) material=G4_H + --> #secondaries=4 impactParameter[fm]=1.45146 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 150 projectile=proton Ekin[MeV]=7117.2 direction=(0.486614,0.239734,0.84008) material=G4_Al + --> #secondaries=15 impactParameter[fm]=1.96899 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 151 projectile=omega_c0 Ekin[MeV]=21241.8 direction=(0.721723,0.686677,0.087118) material=G4_W + --> #secondaries=39 impactParameter[fm]=4.88383 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=0 + Collision 152 projectile=proton Ekin[MeV]=3738.41 direction=(0.560431,0.175048,0.809491) material=G4_Cu + --> #secondaries=38 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 153 projectile=hyperH4 Ekin[MeV]=26291.2 direction=(0.689256,0.724371,0.0146024) material=G4_Al + --> #secondaries=31 impactParameter[fm]=3.88404 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=6 + Collision 154 projectile=anti_hypertriton Ekin[MeV]=11567.5 direction=(0.297015,0.85051,0.434069) material=G4_Pb + --> #secondaries=68 impactParameter[fm]=6.73006 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=5 + Collision 155 projectile=kaon0L Ekin[MeV]=4932.05 direction=(0.00583704,0.751805,0.659359) material=G4_H --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 243 projectile=anti_xi_c0 Ekin[MeV]=9064.1 direction=(0.288283,0.247172,0.925094) material=G4_H - --> #secondaries=3 impactParameter[fm]=0.789332 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 244 projectile=anti_hypertriton Ekin[MeV]=12291.2 direction=(0.582402,0.490858,0.647971) material=G4_Pb - --> #secondaries=44 impactParameter[fm]=7.01317 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=207 #NNcollisions=2 - Collision 245 projectile=Bs0 Ekin[MeV]=16291 direction=(0.0621949,0.299204,0.95216) material=G4_Be - --> #secondaries=5 impactParameter[fm]=0.274605 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 246 projectile=anti_D0 Ekin[MeV]=5216.76 direction=(0.68529,0.54742,0.480322) material=G4_W - --> #secondaries=45 impactParameter[fm]=5.71256 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 247 projectile=omega_b- Ekin[MeV]=3565.14 direction=(0.952849,0.175336,0.24766) material=G4_H - --> #secondaries=2 impactParameter[fm]=0.685928 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 248 projectile=anti_lambda Ekin[MeV]=11148.4 direction=(0.666624,0.614927,0.42128) material=G4_Al - --> #secondaries=9 impactParameter[fm]=4.26714 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 249 projectile=anti_xi- Ekin[MeV]=1403.44 direction=(0.154511,0.77438,0.613565) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=2.70193 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=0 - Collision 250 projectile=anti_sigma+ Ekin[MeV]=13659.3 direction=(0.0568137,0.0526363,0.996996) material=G4_Be - --> #secondaries=10 impactParameter[fm]=1.5805 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=3 - Collision 251 projectile=anti_omega_c0 Ekin[MeV]=6542.21 direction=(0.683241,0.0477311,0.728631) material=G4_W - --> #secondaries=47 impactParameter[fm]=2.63801 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=2 - Collision 252 projectile=anti_lambda Ekin[MeV]=12702.3 direction=(0.0568638,0.789244,0.611441) material=G4_H - --> #secondaries=7 impactParameter[fm]=0.513203 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 253 projectile=anti_He3 Ekin[MeV]=14413.4 direction=(0.636407,0.448395,0.627637) material=G4_Fe - --> #secondaries=55 impactParameter[fm]=2.5716 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=5 - Collision 254 projectile=anti_D0 Ekin[MeV]=25844.4 direction=(0.414389,0.730188,0.543238) material=G4_C - --> #secondaries=13 impactParameter[fm]=2.6888 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 255 projectile=pi+ Ekin[MeV]=24497.7 direction=(0.127577,0.775554,0.618255) material=G4_Ar - --> #secondaries=20 impactParameter[fm]=1.02042 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 256 projectile=omega_b- Ekin[MeV]=13745.4 direction=(0.585555,0.777161,0.230533) material=G4_Pb - --> #secondaries=36 impactParameter[fm]=4.99306 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 257 projectile=anti_triton Ekin[MeV]=8380.63 direction=(0.415657,0.305067,0.856833) material=G4_Cu - --> #secondaries=21 impactParameter[fm]=5.91743 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=63 #NNcollisions=2 - Collision 258 projectile=omega- Ekin[MeV]=3138.66 direction=(0.124253,0.756246,0.642381) material=G4_W - --> #secondaries=62 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 259 projectile=D+ Ekin[MeV]=7860.26 direction=(0.518883,0.481841,0.706109) material=G4_W - --> #secondaries=31 impactParameter[fm]=6.11469 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=2 - Collision 260 projectile=kaon0S Ekin[MeV]=18073.5 direction=(0.51157,0.581969,0.632146) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=5.80022 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 261 projectile=B- Ekin[MeV]=16131.8 direction=(0.258439,0.918006,0.300789) material=G4_Al - --> #secondaries=6 impactParameter[fm]=2.02078 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 262 projectile=kaon- Ekin[MeV]=7248.46 direction=(0.886626,0.458751,0.0586665) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=4.7147 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=0 - Collision 263 projectile=hypertriton Ekin[MeV]=14135.4 direction=(0.621424,0.0325377,0.782799) material=G4_Fe - --> #secondaries=27 impactParameter[fm]=4.67392 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 264 projectile=anti_xi0 Ekin[MeV]=2787.13 direction=(0.657356,0.501511,0.562467) material=G4_Fe - --> #secondaries=15 impactParameter[fm]=3.19932 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=0 - Collision 265 projectile=B- Ekin[MeV]=25432 direction=(0.622448,0.00371828,0.782653) material=G4_W - --> #secondaries=20 impactParameter[fm]=6.06829 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 - Collision 266 projectile=B0 Ekin[MeV]=21528.9 direction=(0.628929,0.438919,0.641716) material=G4_W - --> #secondaries=51 impactParameter[fm]=4.59775 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=2 - Collision 267 projectile=anti_hyperH4 Ekin[MeV]=28923.9 direction=(0.790256,0.210621,0.575443) material=G4_Be - --> #secondaries=21 impactParameter[fm]=1.27189 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=5 - Collision 268 projectile=doublehyperdoubleneutron Ekin[MeV]=3292 direction=(0.588125,0.529763,0.611114) material=G4_Si - --> #secondaries=16 impactParameter[fm]=5.11265 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=25 #NNcollisions=0 - Collision 269 projectile=kaon0S Ekin[MeV]=24401.9 direction=(0.426261,0.775069,0.466443) material=G4_Pb - --> #secondaries=46 impactParameter[fm]=2.88288 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 270 projectile=anti_xi_c+ Ekin[MeV]=21188.3 direction=(0.426885,0.776265,0.463877) material=G4_W - --> #secondaries=74 impactParameter[fm]=4.27481 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=3 - Collision 271 projectile=anti_xi_c0 Ekin[MeV]=1824.35 direction=(0.111943,0.35551,0.927945) material=G4_Al - --> #secondaries=9 impactParameter[fm]=1.19662 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 272 projectile=anti_lambda_c+ Ekin[MeV]=7962.3 direction=(0.624608,0.592704,0.508495) material=G4_Si - --> #secondaries=22 impactParameter[fm]=1.74313 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 273 projectile=anti_sigma+ Ekin[MeV]=12945.3 direction=(0.488375,0.596038,0.637361) material=G4_W - --> #secondaries=92 impactParameter[fm]=4.71348 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 274 projectile=anti_hyperH4 Ekin[MeV]=13557 direction=(0.523545,0.220634,0.822935) material=G4_W - --> #secondaries=150 impactParameter[fm]=2.41715 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=174 #NNcollisions=5 - Collision 275 projectile=xi_c0 Ekin[MeV]=24563.8 direction=(0.53703,0.665103,0.518881) material=G4_Be - --> #secondaries=6 impactParameter[fm]=4.02123 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 276 projectile=proton Ekin[MeV]=29266 direction=(0.363337,0.482391,0.797048) material=G4_Be - --> #secondaries=13 impactParameter[fm]=0.998796 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 277 projectile=B+ Ekin[MeV]=15743.1 direction=(0.599366,0.604586,0.524629) material=G4_H - --> #secondaries=5 impactParameter[fm]=1.29862 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 278 projectile=lambda Ekin[MeV]=3602.28 direction=(0.429334,0.893501,0.131637) material=G4_Be - --> #secondaries=8 impactParameter[fm]=1.29381 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 279 projectile=kaon- Ekin[MeV]=16313 direction=(0.581743,0.790128,0.193064) material=G4_W - --> #secondaries=66 impactParameter[fm]=4.93448 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=3 - Collision 280 projectile=anti_lambda_c+ Ekin[MeV]=24811.6 direction=(0.555276,0.825309,0.102631) material=G4_C - --> #secondaries=19 impactParameter[fm]=1.49216 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 281 projectile=anti_sigma+ Ekin[MeV]=20157.1 direction=(0.879839,0.0768065,0.469025) material=G4_W - --> #secondaries=39 impactParameter[fm]=5.61835 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=186 #NNcollisions=1 - Collision 282 projectile=sigma- Ekin[MeV]=27967.5 direction=(0.804575,0.472076,0.360282) material=G4_He - --> #secondaries=9 impactParameter[fm]=0.810802 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 283 projectile=xi- Ekin[MeV]=24041.9 direction=(0.128443,0.985447,0.111335) material=G4_Pb - --> #secondaries=113 impactParameter[fm]=2.34112 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=199 #NNcollisions=5 - Collision 284 projectile=anti_xi_c+ Ekin[MeV]=11872 direction=(0.43832,0.898592,0.0201817) material=G4_Si - --> #secondaries=15 impactParameter[fm]=3.83989 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 285 projectile=Ds- Ekin[MeV]=23979.7 direction=(0.19966,0.376418,0.90468) material=G4_Be - --> #secondaries=9 impactParameter[fm]=1.37446 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 286 projectile=deuteron Ekin[MeV]=10802.4 direction=(0.175504,0.56528,0.806013) material=G4_C - --> #secondaries=17 impactParameter[fm]=0.851102 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 287 projectile=kaon0L Ekin[MeV]=10448 direction=(0.288074,0.868012,0.404437) material=G4_Fe - --> #secondaries=29 impactParameter[fm]=3.07283 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=3 - Collision 288 projectile=D- Ekin[MeV]=28974.1 direction=(0.876814,0.321124,0.357878) material=G4_Al - --> #secondaries=19 impactParameter[fm]=1.82986 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 289 projectile=kaon0S Ekin[MeV]=27094.2 direction=(0.300665,0.894772,0.330126) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.13769 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 290 projectile=anti_B0 Ekin[MeV]=12585.9 direction=(0.518888,0.517695,0.680256) material=G4_Si - --> #secondaries=9 impactParameter[fm]=4.06306 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=29 #NNcollisions=1 - Collision 291 projectile=anti_Bs0 Ekin[MeV]=9074.88 direction=(0.623972,0.658174,0.421266) material=G4_Si - --> #secondaries=9 impactParameter[fm]=2.06645 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 292 projectile=anti_xi_c0 Ekin[MeV]=2049.7 direction=(0.606446,0.507614,0.612006) material=G4_H - --> #secondaries=2 impactParameter[fm]=1.68201 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 293 projectile=anti_lambda Ekin[MeV]=15704 direction=(0.182623,0.715231,0.674606) material=G4_Al - --> #secondaries=16 impactParameter[fm]=3.6089 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 294 projectile=anti_D0 Ekin[MeV]=12837.1 direction=(0.695367,0.46538,0.547618) material=G4_Cu - --> #secondaries=13 impactParameter[fm]=3.69452 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=1 - Collision 295 projectile=anti_lambda_c+ Ekin[MeV]=26219.6 direction=(0.456762,0.615328,0.642448) material=G4_Fe - --> #secondaries=59 impactParameter[fm]=1.18325 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=5 - Collision 296 projectile=lambda_c+ Ekin[MeV]=21840.8 direction=(0.76144,0.234488,0.604338) material=G4_Be - --> #secondaries=15 impactParameter[fm]=1.75639 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 - Collision 297 projectile=D0 Ekin[MeV]=12145.2 direction=(0.906176,0.148022,0.396149) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=1.78328 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 298 projectile=anti_Bs0 Ekin[MeV]=15721 direction=(0.648428,0.533993,0.54258) material=G4_Pb - --> #secondaries=63 impactParameter[fm]=1.67947 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=203 #NNcollisions=2 - Collision 299 projectile=anti_D0 Ekin[MeV]=15587.8 direction=(0.337173,0.373914,0.864004) material=G4_Fe - --> #secondaries=8 impactParameter[fm]=3.01254 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 300 projectile=proton Ekin[MeV]=6620.09 direction=(0.597404,0.457824,0.658411) material=G4_C - --> #secondaries=9 impactParameter[fm]=1.55658 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 + Collision 156 projectile=kaon- Ekin[MeV]=5723.64 direction=(0.147979,0.758767,0.63433) material=G4_Cu + --> #secondaries=18 impactParameter[fm]=4.31503 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 157 projectile=xi_b0 Ekin[MeV]=1717.37 direction=(0.757834,0.615112,0.217541) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.84623 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 158 projectile=xi- Ekin[MeV]=13991.7 direction=(0.213678,0.768586,0.603007) material=G4_C + --> #secondaries=13 impactParameter[fm]=1.33434 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 159 projectile=D0 Ekin[MeV]=11109.2 direction=(0.85038,0.235857,0.470346) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.21879 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 160 projectile=anti_doublehyperH4 Ekin[MeV]=22966.6 direction=(0.490601,0.782943,0.382505) material=G4_Fe + --> #secondaries=51 impactParameter[fm]=3.35237 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=5 + Collision 161 projectile=anti_B0 Ekin[MeV]=2624.27 direction=(0.812553,0.429165,0.39443) material=G4_Fe + --> #secondaries=14 impactParameter[fm]=1.04999 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=1 + Collision 162 projectile=kaon+ Ekin[MeV]=11740.5 direction=(0.99972,0.0194345,0.013462) material=G4_Pb + --> #secondaries=32 impactParameter[fm]=6.52146 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 163 projectile=anti_lambda_b Ekin[MeV]=26895 direction=(0.499424,0.865239,0.044018) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.643135 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 164 projectile=triton Ekin[MeV]=23921.8 direction=(0.573759,0.616762,0.538894) material=G4_He + --> #secondaries=8 impactParameter[fm]=4.73718 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 165 projectile=Bc+ Ekin[MeV]=15167.1 direction=(0.978342,0.20405,0.0347829) material=G4_Cu + --> #secondaries=9 impactParameter[fm]=3.77453 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 166 projectile=Bc- Ekin[MeV]=10270 direction=(0.129766,0.688603,0.713433) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.3636 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 167 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=5762.77 direction=(0.572002,0.483892,0.662316) material=G4_He + --> #secondaries=14 impactParameter[fm]=0.91487 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 168 projectile=anti_He3 Ekin[MeV]=13388.1 direction=(0.787241,0.610446,0.0872196) material=G4_Al + --> #secondaries=17 impactParameter[fm]=4.99801 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 169 projectile=anti_omega_b- Ekin[MeV]=5564.74 direction=(0.154222,0.971139,0.181947) material=G4_W + --> #secondaries=12 impactParameter[fm]=4.80568 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 170 projectile=anti_hyperH4 Ekin[MeV]=28766.1 direction=(0.0902509,0.0402435,0.995106) material=G4_Be + --> #secondaries=15 impactParameter[fm]=3.35721 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 171 projectile=anti_B0 Ekin[MeV]=14043.9 direction=(0.235359,0.230586,0.944159) material=G4_Pb + --> #secondaries=16 impactParameter[fm]=7.15601 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 172 projectile=anti_xi_b0 Ekin[MeV]=18442.4 direction=(0.634628,0.743857,0.209579) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=3.71204 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 173 projectile=anti_doublehyperH4 Ekin[MeV]=2891.01 direction=(0.770635,0.0122877,0.637158) material=G4_He + --> #secondaries=16 impactParameter[fm]=1.57165 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 174 projectile=anti_xi_c0 Ekin[MeV]=10203.1 direction=(0.546782,0.20669,0.811362) material=G4_Fe + --> #secondaries=27 impactParameter[fm]=2.38709 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=2 + Collision 175 projectile=anti_xi0 Ekin[MeV]=11387.4 direction=(0.645191,0.0900162,0.7587) material=G4_Cu + --> #secondaries=36 impactParameter[fm]=3.38024 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=2 + Collision 176 projectile=omega_b- Ekin[MeV]=23992.3 direction=(0.119308,0.983301,0.137419) material=G4_He + --> #secondaries=5 impactParameter[fm]=0.268932 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 177 projectile=D+ Ekin[MeV]=14883.1 direction=(0.994766,0.10151,0.0116534) material=G4_Cu + --> #secondaries=16 impactParameter[fm]=4.17041 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 178 projectile=anti_xi- Ekin[MeV]=14238.1 direction=(0.589176,0.807127,0.03765) material=G4_Be + --> #secondaries=16 impactParameter[fm]=0.199833 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 179 projectile=anti_doublehyperH4 Ekin[MeV]=28101.5 direction=(0.0580596,0.358351,0.93178) material=G4_Cu + --> #secondaries=69 impactParameter[fm]=2.89363 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=7 + Collision 180 projectile=He3 Ekin[MeV]=15294.2 direction=(0.189433,0.656333,0.730303) material=G4_C + --> #secondaries=12 impactParameter[fm]=3.67505 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=2 + Collision 181 projectile=anti_triton Ekin[MeV]=18986.7 direction=(0.867075,0.374069,0.329019) material=G4_W + --> #secondaries=100 impactParameter[fm]=4.59948 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=5 + Collision 182 projectile=B- Ekin[MeV]=1068.69 direction=(0.830397,0.142546,0.538629) material=G4_Pb + --> #secondaries=33 impactParameter[fm]=4.82969 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=203 #NNcollisions=1 + Collision 183 projectile=anti_xi- Ekin[MeV]=13950.9 direction=(0.473664,0.827707,0.300904) material=G4_H + --> #secondaries=7 impactParameter[fm]=0.313174 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 184 projectile=doublehyperH4 Ekin[MeV]=4227.84 direction=(0.120895,0.606172,0.786092) material=G4_H + --> #secondaries=3 impactParameter[fm]=3.43507 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 185 projectile=anti_xi0 Ekin[MeV]=18893.4 direction=(0.541465,0.253687,0.801535) material=G4_Be + --> #secondaries=14 impactParameter[fm]=3.30298 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 186 projectile=kaon- Ekin[MeV]=18187 direction=(0.595159,0.792827,0.131187) material=G4_Pb + --> #secondaries=63 impactParameter[fm]=2.74468 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=2 + Collision 187 projectile=hyperalpha Ekin[MeV]=15319.7 direction=(0.00667213,0.588875,0.808197) material=G4_C + --> #secondaries=20 impactParameter[fm]=0.457756 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=7 #NNcollisions=3 + Collision 188 projectile=lambda Ekin[MeV]=15219.1 direction=(0.442907,0.720258,0.533911) material=G4_H + --> #secondaries=11 impactParameter[fm]=0.5203 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 189 projectile=anti_xi_b- Ekin[MeV]=19292.3 direction=(0.949521,0.298947,0.0950828) material=G4_Be + --> #secondaries=9 impactParameter[fm]=1.02136 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=1 + Collision 190 projectile=triton Ekin[MeV]=5899.06 direction=(0.660335,0.721528,0.208219) material=G4_Ar + --> #secondaries=17 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 191 projectile=xi_b- Ekin[MeV]=19371.7 direction=(0.469208,0.638824,0.609711) material=G4_Be + --> #secondaries=10 impactParameter[fm]=1.71608 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 192 projectile=anti_hyperalpha Ekin[MeV]=20520 direction=(0.891959,0.338271,0.299969) material=G4_Ar + --> #secondaries=19 impactParameter[fm]=3.51292 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 193 projectile=xi_b- Ekin[MeV]=23438.4 direction=(0.13019,0.787304,0.602663) material=G4_Fe + --> #secondaries=23 impactParameter[fm]=2.74486 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 194 projectile=B- Ekin[MeV]=20350.8 direction=(0.586884,0.809671,0.000291766) material=G4_Cu + --> #secondaries=22 impactParameter[fm]=3.03905 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=60 #NNcollisions=2 + Collision 195 projectile=Bs0 Ekin[MeV]=24448.9 direction=(0.684602,0.658391,0.312796) material=G4_Cu + --> #secondaries=19 impactParameter[fm]=4.27653 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 196 projectile=doublehyperH4 Ekin[MeV]=1277.16 direction=(0.593333,0.772763,0.225374) material=G4_Ar + --> #secondaries=15 impactParameter[fm]=2.57493 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=0 + Collision 197 projectile=omega- Ekin[MeV]=20439.7 direction=(0.0859566,0.701998,0.706972) material=G4_Pb + --> #secondaries=62 impactParameter[fm]=6.40358 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=3 + Collision 198 projectile=He3 Ekin[MeV]=12315.6 direction=(0.457639,0.708779,0.536842) material=G4_Si + --> #secondaries=10 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 199 projectile=hypertriton Ekin[MeV]=18267.7 direction=(0.00166641,0.4218,0.906687) material=G4_Fe + --> #secondaries=37 impactParameter[fm]=5.68578 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=51 #NNcollisions=4 + Collision 200 projectile=neutron Ekin[MeV]=7528.68 direction=(0.658587,0.726779,0.195079) material=G4_W + --> #secondaries=46 impactParameter[fm]=5.25341 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=2 List of produced secondaries: - j=0 proton p=(3810.17,3626.91,4565.67028.3) MeV - j=1 proton p=(347.273,-252.695,-30.93431032.36) MeV - j=2 neutron p=(241.464,127.722,172.274993.519) MeV - j=3 proton p=(216.756,217.72,62.7596989.282) MeV - j=4 proton p=(-170.495,124.069,157.307974.455) MeV - j=5 neutron p=(119.231,13.7577,-24.8403947.526) MeV - j=6 alpha p=(-183.959,-864.76,-79.94623831.63) MeV - j=7 deuteron p=(-108.911,71.7367,-100.4911882.83) MeV - j=8 neutron p=(208.937,369.171,216.2911053.33) MeV - Collision 301 projectile=Ds- Ekin[MeV]=11191.6 direction=(0.28603,0.513853,0.80879) material=G4_Cu - --> #secondaries=16 impactParameter[fm]=2.99439 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 302 projectile=omega_c0 Ekin[MeV]=9584.86 direction=(0.959179,0.277176,0.0561108) material=G4_C - --> #secondaries=8 impactParameter[fm]=2.07609 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 303 projectile=B0 Ekin[MeV]=21660.4 direction=(0.515485,0.497863,0.69743) material=G4_Fe - --> #secondaries=16 impactParameter[fm]=4.79344 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 304 projectile=anti_neutron Ekin[MeV]=9666.03 direction=(0.436541,0.133532,0.88972) material=G4_C - --> #secondaries=11 impactParameter[fm]=3.18162 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=12 #NNcollisions=1 - Collision 305 projectile=anti_omega- Ekin[MeV]=24647.9 direction=(0.0666348,0.00349232,0.997771) material=G4_He - --> #secondaries=10 impactParameter[fm]=0.409342 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 306 projectile=xi0 Ekin[MeV]=1169.74 direction=(0.0956384,0.748775,0.655888) material=G4_H - --> #secondaries=2 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 307 projectile=kaon0S Ekin[MeV]=6689.39 direction=(0.70798,0.660288,0.250567) material=G4_He - --> #secondaries=4 impactParameter[fm]=0.849068 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 308 projectile=anti_deuteron Ekin[MeV]=8593.72 direction=(0.530535,0.690141,0.492177) material=G4_He - --> #secondaries=11 impactParameter[fm]=1.22438 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 309 projectile=anti_lambda_c+ Ekin[MeV]=17866.3 direction=(0.683126,0.41177,0.603146) material=G4_Fe - --> #secondaries=14 impactParameter[fm]=5.05986 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 310 projectile=anti_hypertriton Ekin[MeV]=23494.5 direction=(0.0720519,0.897684,0.434708) material=G4_Ar - --> #secondaries=33 impactParameter[fm]=2.1294 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=39 #NNcollisions=2 - Collision 311 projectile=anti_xi0 Ekin[MeV]=8291.3 direction=(0.651219,0.614611,0.445159) material=G4_He - --> #secondaries=9 impactParameter[fm]=3.36555 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 312 projectile=hyperalpha Ekin[MeV]=11215.8 direction=(0.726049,0.356931,0.587752) material=G4_Al - --> #secondaries=21 impactParameter[fm]=3.43557 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 313 projectile=doublehyperdoubleneutron Ekin[MeV]=6386.52 direction=(0.294431,0.955271,0.0276994) material=G4_Al - --> #secondaries=26 impactParameter[fm]=2.63916 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=14 #NNcollisions=1 - Collision 314 projectile=anti_B0 Ekin[MeV]=3638.1 direction=(0.0586232,0.663739,0.745664) material=G4_H - --> #secondaries=3 impactParameter[fm]=0.994719 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 315 projectile=anti_xi_c+ Ekin[MeV]=23895.4 direction=(0.243354,0.796273,0.553831) material=G4_W - --> #secondaries=16 impactParameter[fm]=7.8152 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=185 #NNcollisions=1 - Collision 316 projectile=doublehyperH4 Ekin[MeV]=10748.7 direction=(0.00422577,0.994052,0.108828) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=5.37872 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=38 #NNcollisions=0 - Collision 317 projectile=omega_c0 Ekin[MeV]=8756.94 direction=(0.367033,0.800977,0.472994) material=G4_W - --> #secondaries=50 impactParameter[fm]=4.74726 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=2 - Collision 318 projectile=anti_deuteron Ekin[MeV]=19342.2 direction=(0.0851897,0.321315,0.943133) material=G4_C - --> #secondaries=14 impactParameter[fm]=2.90178 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=12 #NNcollisions=1 - Collision 319 projectile=xi_b- Ekin[MeV]=25978.1 direction=(0.298263,0.387767,0.872167) material=G4_Ar - --> #secondaries=6 impactParameter[fm]=3.55086 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 320 projectile=anti_neutron Ekin[MeV]=22727.5 direction=(0.140998,0.54017,0.82966) material=G4_Pb - --> #secondaries=93 impactParameter[fm]=5.09259 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=3 - Collision 321 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=16776.4 direction=(0.882037,0.388645,0.266395) material=G4_H - --> #secondaries=4 impactParameter[fm]=2.13352 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 322 projectile=Bs0 Ekin[MeV]=29234.6 direction=(0.426011,0.71836,0.549976) material=G4_Si - --> #secondaries=16 impactParameter[fm]=1.31116 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 323 projectile=anti_proton Ekin[MeV]=10026.8 direction=(0.607253,0.676757,0.416225) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=3.37688 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 324 projectile=anti_Bs0 Ekin[MeV]=10825.5 direction=(0.459592,0.216012,0.86146) material=G4_Pb - --> #secondaries=49 impactParameter[fm]=3.71898 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=4 - Collision 325 projectile=anti_hyperalpha Ekin[MeV]=14279.6 direction=(0.631488,0.636693,0.442543) material=G4_Al - --> #secondaries=44 impactParameter[fm]=1.93347 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=5 - Collision 326 projectile=anti_deuteron Ekin[MeV]=13808.8 direction=(0.855276,0.396497,0.333607) material=G4_Si - --> #secondaries=27 impactParameter[fm]=4.0336 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 327 projectile=omega_b- Ekin[MeV]=6022.32 direction=(0.460818,0.593974,0.659426) material=G4_Fe - --> #secondaries=14 impactParameter[fm]=0.447368 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 328 projectile=deuteron Ekin[MeV]=25041.5 direction=(0.563701,0.361713,0.742566) material=G4_W - --> #secondaries=34 impactParameter[fm]=8.13745 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=182 #NNcollisions=2 - Collision 329 projectile=lambda_b Ekin[MeV]=21004.7 direction=(0.863102,0.0229107,0.50451) material=G4_Ar - --> #secondaries=39 impactParameter[fm]=1.07484 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=2 - Collision 330 projectile=anti_D0 Ekin[MeV]=25847 direction=(0.503532,0.55256,0.664178) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=1.07278 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 331 projectile=kaon0L Ekin[MeV]=8348.21 direction=(0.77786,0.365124,0.511487) material=G4_W - --> #secondaries=18 impactParameter[fm]=8.58399 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 332 projectile=deuteron Ekin[MeV]=1769.31 direction=(0.906177,0.112078,0.407778) material=G4_Pb - --> #secondaries=45 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 333 projectile=omega- Ekin[MeV]=3544.61 direction=(0.292344,0.153857,0.943855) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=4.92225 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 334 projectile=Ds- Ekin[MeV]=14394.7 direction=(0.217218,0.653299,0.72527) material=G4_Fe - --> #secondaries=13 impactParameter[fm]=3.36418 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 335 projectile=anti_He3 Ekin[MeV]=20174.9 direction=(0.490716,0.485466,0.723547) material=G4_H - --> #secondaries=5 impactParameter[fm]=2.07888 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 336 projectile=hypertriton Ekin[MeV]=11531.2 direction=(0.840358,0.458295,0.289422) material=G4_Fe - --> #secondaries=34 impactParameter[fm]=3.79277 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=50 #NNcollisions=3 - Collision 337 projectile=B0 Ekin[MeV]=23035.3 direction=(0.00623696,0.64641,0.762964) material=G4_W - --> #secondaries=43 impactParameter[fm]=3.40813 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=184 #NNcollisions=1 - Collision 338 projectile=D- Ekin[MeV]=11735.3 direction=(0.932142,0.328229,0.152894) material=G4_W - --> #secondaries=45 impactParameter[fm]=1.03376 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=3 - Collision 339 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=7748.64 direction=(0.890743,0.247091,0.381475) material=G4_Pb - --> #secondaries=70 impactParameter[fm]=2.72795 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=4 - Collision 340 projectile=anti_proton Ekin[MeV]=23713.3 direction=(0.524349,0.600362,0.603841) material=G4_Ar - --> #secondaries=40 impactParameter[fm]=0.287472 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=5 - Collision 341 projectile=omega_b- Ekin[MeV]=25756.2 direction=(0.227984,0.734192,0.63952) material=G4_Fe - --> #secondaries=24 impactParameter[fm]=3.23755 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 342 projectile=lambda_c+ Ekin[MeV]=9085.03 direction=(0.790938,0.233463,0.565608) material=G4_Ar - --> #secondaries=31 impactParameter[fm]=2.40019 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 343 projectile=pi+ Ekin[MeV]=1311.65 direction=(0.607945,0.616363,0.5005) material=G4_Ar + j=0 neutron p=(1940.48,2545.32,537.3293378.7) MeV + j=1 pi0 p=(20.5707,292.93,-30.2692324.601) MeV + j=2 neutron p=(314.246,-178.312,642.6381194.28) MeV + j=3 pi0 p=(30.034,419.648,44.2924444.057) MeV + j=4 neutron p=(-122.709,611.52,62.51771129.47) MeV + j=5 pi+ p=(1269.07,699.865,534.5951551) MeV + j=6 proton p=(164.732,-580.147,-196.8411132.61) MeV + j=7 pi- p=(151.884,36.7669,-240.309318.824) MeV + j=8 proton p=(272.557,-247.779,-293.151049.75) MeV + j=9 proton p=(328.695,-404.783,-190.1171090.13) MeV + j=10 neutron p=(241.401,-31.7309,174.032986.079) MeV + j=11 pi- p=(179.289,275.986,-11.3215357.661) MeV + j=12 proton p=(193.062,114.94,-112.134971.294) MeV + j=13 neutron p=(-56.6482,38.0818,-240.591972.279) MeV + j=14 neutron p=(449.451,230.63,-141.341076.08) MeV + j=15 proton p=(279.91,8.16745,293.5111022.21) MeV + j=16 proton p=(70.4988,582.732,272.8791139.9) MeV + j=17 proton p=(-131.849,231.811,126.92983.658) MeV + j=18 neutron p=(454.856,2.7769,-125.0171051.34) MeV + j=19 neutron p=(-228.471,-96.0971,-36.3362972.387) MeV + j=20 neutron p=(-94.8303,27.6317,27.747945.15) MeV + j=21 neutron p=(66.0869,53.3532,19.0332943.589) MeV + j=22 neutron p=(-104.235,-65.7158,144.722958.599) MeV + j=23 proton p=(-141.363,36.7378,32.6515950.133) MeV + j=24 neutron p=(268.927,17.0502,139.56987.356) MeV + j=25 deuteron p=(42.2834,266.688,-93.75341897.27) MeV + j=26 proton p=(-14.5917,95.1949,-73.185946.037) MeV + j=27 neutron p=(75.9555,-0.77723,16.7844942.78) MeV + j=28 neutron p=(-115.753,-217.527,18.3989971.514) MeV + j=29 Ce134 p=(-246.138,696.78,-338.056124709) MeV + j=30 neutron p=(0.688202,1.95455,46.8929940.737) MeV + j=31 neutron p=(12.6009,55.4049,-27.9461941.697) MeV + j=32 neutron p=(58.0372,-36.0205,51.6274943.459) MeV + j=33 neutron p=(20.8395,-25.9192,33.4384940.748) MeV + j=34 C13 p=(-163.136,482.59,787.75812145.8) MeV + j=35 neutron p=(15.3898,24.0793,23.078940.283) MeV + j=36 neutron p=(9.09324,10.6424,-87.2285943.71) MeV + j=37 deuteron p=(-99.5124,149.654,-163.881891.32) MeV + j=38 neutron p=(17.8624,-4.72018,34.5168940.381) MeV + j=39 neutron p=(53.8623,-4.967,-31.6343941.653) MeV + j=40 neutron p=(58.6939,6.55686,8.81615941.461) MeV + j=41 gamma p=(0.0411939,-3.25308,0.8043653.35131) MeV + j=42 gamma p=(0.326388,0.178727,-0.09653690.384437) MeV + j=43 e- p=(-0.0836563,-0.439559,-0.266830.729746) MeV + j=44 gamma p=(0.555314,-0.626772,0.4847490.967573) MeV + j=45 gamma p=(-0.0567475,-0.341029,0.2144280.406817) MeV + Collision 201 projectile=Ds+ Ekin[MeV]=19762.9 direction=(0.676324,0.735362,0.0427728) material=G4_C + --> #secondaries=12 impactParameter[fm]=2.00538 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 202 projectile=anti_hyperHe5 Ekin[MeV]=24233.2 direction=(0.99471,0.0875182,0.0537751) material=G4_C + --> #secondaries=13 impactParameter[fm]=4.39547 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 203 projectile=lambda_c+ Ekin[MeV]=3598.92 direction=(0.374416,0.383065,0.844437) material=G4_W + --> #secondaries=10 impactParameter[fm]=6.81977 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=0 + Collision 204 projectile=Bc+ Ekin[MeV]=23494.1 direction=(0.153067,0.623619,0.766597) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.59546 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 205 projectile=hyperalpha Ekin[MeV]=22367.5 direction=(0.689996,0.660795,0.295392) material=G4_Pb + --> #secondaries=93 impactParameter[fm]=3.57084 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=196 #NNcollisions=10 + Collision 206 projectile=kaon0S Ekin[MeV]=14224.4 direction=(0.372363,0.593754,0.713304) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.42756 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 207 projectile=omega_b- Ekin[MeV]=22999 direction=(0.525272,0.612037,0.591185) material=G4_W + --> #secondaries=92 impactParameter[fm]=1.40469 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=3 + Collision 208 projectile=anti_neutron Ekin[MeV]=21886.6 direction=(0.0925717,0.609431,0.787416) material=G4_He + --> #secondaries=9 impactParameter[fm]=1.51518 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 209 projectile=omega_b- Ekin[MeV]=26112.8 direction=(0.497719,0.227436,0.836988) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.26127 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 210 projectile=kaon0L Ekin[MeV]=17284.7 direction=(0.857163,0.349649,0.378176) material=G4_Ar + --> #secondaries=30 impactParameter[fm]=1.86409 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 211 projectile=doublehyperdoubleneutron Ekin[MeV]=27195.4 direction=(0.560957,0.194607,0.804646) material=G4_Al + --> #secondaries=31 impactParameter[fm]=2.78385 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=22 #NNcollisions=4 + Collision 212 projectile=anti_xi- Ekin[MeV]=25873.6 direction=(0.429026,0.691143,0.581599) material=G4_Fe + --> #secondaries=61 impactParameter[fm]=1.35863 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=48 #NNcollisions=6 + Collision 213 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=20599 direction=(0.869716,0.436307,0.230717) material=G4_Al + --> #secondaries=26 impactParameter[fm]=4.28084 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 214 projectile=anti_Bs0 Ekin[MeV]=7590.43 direction=(0.144482,0.00342419,0.989501) material=G4_He + --> #secondaries=4 impactParameter[fm]=0.741297 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 215 projectile=anti_triton Ekin[MeV]=21638.6 direction=(0.352697,0.866336,0.353648) material=G4_He + --> #secondaries=12 impactParameter[fm]=1.86561 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=4 #NNcollisions=1 + Collision 216 projectile=doublehyperdoubleneutron Ekin[MeV]=3787.15 direction=(0.0742125,0.76021,0.645425) material=G4_Al + --> #secondaries=21 impactParameter[fm]=2.03906 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=19 #NNcollisions=0 + Collision 217 projectile=xi_c+ Ekin[MeV]=22672 direction=(0.583794,0.637705,0.502511) material=G4_Be + --> #secondaries=12 impactParameter[fm]=0.979963 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 + Collision 218 projectile=hypertriton Ekin[MeV]=26033.3 direction=(0.704743,0.575548,0.414828) material=G4_Al + --> #secondaries=23 impactParameter[fm]=2.15271 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 219 projectile=anti_proton Ekin[MeV]=12733.9 direction=(0.750071,0.220905,0.623374) material=G4_C + --> #secondaries=13 impactParameter[fm]=2.99073 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 + Collision 220 projectile=anti_deuteron Ekin[MeV]=20180.4 direction=(0.620459,0.380168,0.685932) material=G4_Cu + --> #secondaries=49 impactParameter[fm]=3.67028 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=3 + Collision 221 projectile=xi0 Ekin[MeV]=22558.3 direction=(0.529836,0.537583,0.655956) material=G4_Al + --> #secondaries=10 impactParameter[fm]=2.44344 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 222 projectile=Bc+ Ekin[MeV]=28871 direction=(0.51478,0.767721,0.381582) material=G4_Pb + --> #secondaries=49 impactParameter[fm]=3.27868 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=2 + Collision 223 projectile=anti_xi0 Ekin[MeV]=7525 direction=(0.149206,0.443408,0.883814) material=G4_Cu + --> #secondaries=33 impactParameter[fm]=3.56867 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 224 projectile=anti_lambda_c+ Ekin[MeV]=13679.9 direction=(0.127495,0.8961,0.425146) material=G4_C + --> #secondaries=10 impactParameter[fm]=3.65231 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 225 projectile=anti_lambda_c+ Ekin[MeV]=20663.6 direction=(0.873953,0.226871,0.42981) material=G4_He + --> #secondaries=8 impactParameter[fm]=1.6753 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 226 projectile=Ds+ Ekin[MeV]=3500.92 direction=(0.236564,0.814381,0.529926) material=G4_Al + --> #secondaries=9 impactParameter[fm]=3.04332 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 227 projectile=anti_triton Ekin[MeV]=7802.63 direction=(0.660096,0.700715,0.270688) material=G4_Si + --> #secondaries=14 impactParameter[fm]=4.68296 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 228 projectile=doublehyperH4 Ekin[MeV]=5355.61 direction=(0.610272,0.242068,0.754302) material=G4_W + --> #secondaries=32 impactParameter[fm]=7.70847 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=184 #NNcollisions=2 + Collision 229 projectile=pi- Ekin[MeV]=27419.4 direction=(0.822688,0.493454,0.28229) material=G4_He + --> #secondaries=13 impactParameter[fm]=1.22415 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 230 projectile=anti_xi- Ekin[MeV]=19370 direction=(0.732415,0.386183,0.560742) material=G4_Fe + --> #secondaries=25 impactParameter[fm]=3.58008 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 231 projectile=anti_lambda_c+ Ekin[MeV]=11546.4 direction=(0.107968,0.813941,0.570826) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.133084 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 232 projectile=lambda_b Ekin[MeV]=14732.6 direction=(0.585728,0.0870043,0.805825) material=G4_Fe + --> #secondaries=16 impactParameter[fm]=5.20054 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 233 projectile=He3 Ekin[MeV]=3255.86 direction=(0.393111,0.420814,0.817545) material=G4_Pb --> #secondaries=22 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 344 projectile=anti_omega- Ekin[MeV]=20872.7 direction=(0.394549,0.526605,0.753006) material=G4_W - --> #secondaries=93 impactParameter[fm]=3.1083 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 345 projectile=anti_lambda Ekin[MeV]=11850.3 direction=(0.738237,0.625711,0.251974) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.78248 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 346 projectile=anti_xi_b- Ekin[MeV]=19099.8 direction=(0.732366,0.661293,0.162269) material=G4_W - --> #secondaries=68 impactParameter[fm]=4.1372 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=5 - Collision 347 projectile=lambda Ekin[MeV]=16104.5 direction=(0.731178,0.433731,0.526551) material=G4_He - --> #secondaries=6 impactParameter[fm]=2.58243 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 348 projectile=anti_doublehyperH4 Ekin[MeV]=22083.4 direction=(0.121086,0.978264,0.168338) material=G4_Ar - --> #secondaries=39 impactParameter[fm]=3.37019 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=4 - Collision 349 projectile=anti_lambda Ekin[MeV]=16674.9 direction=(0.271856,0.714794,0.644332) material=G4_Si - --> #secondaries=15 impactParameter[fm]=3.66292 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 350 projectile=anti_deuteron Ekin[MeV]=20571.1 direction=(0.65293,0.635669,0.411833) material=G4_Si - --> #secondaries=28 impactParameter[fm]=2.61657 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=2 - Collision 351 projectile=hyperHe5 Ekin[MeV]=28227.3 direction=(0.0245956,0.60795,0.793594) material=G4_Al - --> #secondaries=23 impactParameter[fm]=2.66088 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=24 #NNcollisions=1 - Collision 352 projectile=B0 Ekin[MeV]=17915.8 direction=(0.965755,0.19293,0.173478) material=G4_He - --> #secondaries=6 impactParameter[fm]=0.187397 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 353 projectile=xi_b0 Ekin[MeV]=14499 direction=(0.895542,0.44401,0.029314) material=G4_Ar - --> #secondaries=23 impactParameter[fm]=1.84086 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 354 projectile=anti_xi_c+ Ekin[MeV]=3107.78 direction=(0.673489,0.601308,0.429932) material=G4_Ar - --> #secondaries=15 impactParameter[fm]=3.02746 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 355 projectile=anti_sigma+ Ekin[MeV]=1392.97 direction=(0.571697,0.10013,0.814332) material=G4_Be - --> #secondaries=8 impactParameter[fm]=2.5342 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 356 projectile=anti_triton Ekin[MeV]=17793.2 direction=(0.68557,0.342763,0.642267) material=G4_Ar - --> #secondaries=45 impactParameter[fm]=1.99825 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=4 - Collision 357 projectile=He3 Ekin[MeV]=13620.7 direction=(0.984175,0.148755,0.0962899) material=G4_Ar - --> #secondaries=39 impactParameter[fm]=3.88711 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=34 #NNcollisions=3 - Collision 358 projectile=Ds+ Ekin[MeV]=8765.94 direction=(0.222522,0.93881,0.262906) material=G4_He - --> #secondaries=7 impactParameter[fm]=2.3278 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 359 projectile=anti_xi_c0 Ekin[MeV]=16810.8 direction=(0.135234,0.795252,0.591004) material=G4_Ar - --> #secondaries=21 impactParameter[fm]=2.99726 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 360 projectile=xi_c+ Ekin[MeV]=16427.5 direction=(0.575897,0.811741,0.0970558) material=G4_Be - --> #secondaries=4 impactParameter[fm]=4.11615 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 361 projectile=hyperH4 Ekin[MeV]=27057.8 direction=(0.609995,0.746462,0.265896) material=G4_Cu - --> #secondaries=50 impactParameter[fm]=5.45615 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=60 #NNcollisions=6 - Collision 362 projectile=omega_c0 Ekin[MeV]=7883.45 direction=(0.575124,0.540818,0.613797) material=G4_Fe - --> #secondaries=34 impactParameter[fm]=3.01959 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=3 - Collision 363 projectile=kaon0S Ekin[MeV]=24246.2 direction=(0.818256,0.196073,0.540382) material=G4_Si - --> #secondaries=40 impactParameter[fm]=1.84442 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=24 #NNcollisions=4 - Collision 364 projectile=B0 Ekin[MeV]=19359 direction=(0.858606,0.488963,0.153985) material=G4_Be - --> #secondaries=6 impactParameter[fm]=1.5813 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 365 projectile=hyperHe5 Ekin[MeV]=29023.7 direction=(0.311221,0.28437,0.906794) material=G4_Si - --> #secondaries=34 impactParameter[fm]=3.41655 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=24 #NNcollisions=4 - Collision 366 projectile=B+ Ekin[MeV]=13729.3 direction=(0.620224,0.103106,0.777619) material=G4_He - --> #secondaries=4 impactParameter[fm]=0.249048 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 367 projectile=neutron Ekin[MeV]=10951.1 direction=(0.521536,0.608341,0.598265) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=4.56514 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 368 projectile=omega_b- Ekin[MeV]=22383.4 direction=(0.756662,0.480244,0.443653) material=G4_Al - --> #secondaries=10 impactParameter[fm]=3.98996 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 369 projectile=D0 Ekin[MeV]=14871.3 direction=(0.571707,0.511037,0.641867) material=G4_Fe - --> #secondaries=35 impactParameter[fm]=2.28828 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=3 - Collision 370 projectile=B- Ekin[MeV]=6226.41 direction=(0.68052,0.619336,0.391555) material=G4_W - --> #secondaries=31 impactParameter[fm]=5.68583 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=1 - Collision 371 projectile=anti_sigma- Ekin[MeV]=3743.95 direction=(0.190578,0.918464,0.34656) material=G4_H - --> #secondaries=6 impactParameter[fm]=1.194 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 372 projectile=kaon+ Ekin[MeV]=2568.31 direction=(0.605721,0.699275,0.379626) material=G4_He + Collision 234 projectile=anti_hyperH4 Ekin[MeV]=11317.5 direction=(0.522793,0.675284,0.520269) material=G4_Cu + --> #secondaries=30 impactParameter[fm]=2.92664 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=4 + Collision 235 projectile=alpha Ekin[MeV]=19794.1 direction=(0.490794,0.623679,0.608396) material=G4_Al + --> #secondaries=11 impactParameter[fm]=5.17116 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 236 projectile=B0 Ekin[MeV]=9846.23 direction=(0.537215,0.805166,0.251214) material=G4_Si + --> #secondaries=12 impactParameter[fm]=1.76045 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 237 projectile=anti_triton Ekin[MeV]=13840.1 direction=(0.147488,0.080104,0.985815) material=G4_W + --> #secondaries=141 impactParameter[fm]=3.38745 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=177 #NNcollisions=4 + Collision 238 projectile=D- Ekin[MeV]=24191 direction=(0.965711,0.233867,0.112733) material=G4_W + --> #secondaries=60 impactParameter[fm]=4.58712 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=2 + Collision 239 projectile=anti_neutron Ekin[MeV]=3214.14 direction=(0.755209,0.648625,0.0945777) material=G4_Si + --> #secondaries=19 impactParameter[fm]=1.78991 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=2 + Collision 240 projectile=xi_c0 Ekin[MeV]=9186.53 direction=(0.574485,0.500756,0.647465) material=G4_Pb + --> #secondaries=36 impactParameter[fm]=5.207 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=2 + Collision 241 projectile=anti_B0 Ekin[MeV]=16870.4 direction=(0.647625,0.372212,0.664861) material=G4_Ar + --> #secondaries=7 impactParameter[fm]=3.48778 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 242 projectile=kaon0L Ekin[MeV]=27783.4 direction=(0.595666,0.693096,0.405955) material=G4_Pb + --> #secondaries=47 impactParameter[fm]=3.15801 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=203 #NNcollisions=2 + Collision 243 projectile=Bs0 Ekin[MeV]=10736.6 direction=(0.598721,0.394568,0.697028) material=G4_W + --> #secondaries=16 impactParameter[fm]=5.30654 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=0 + Collision 244 projectile=xi_c0 Ekin[MeV]=14986.1 direction=(0.351255,0.870578,0.344548) material=G4_Be + --> #secondaries=9 impactParameter[fm]=2.73192 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 245 projectile=anti_alpha Ekin[MeV]=6624.28 direction=(0.0942679,0.781323,0.616966) material=G4_Fe + --> #secondaries=58 impactParameter[fm]=1.29924 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=4 + Collision 246 projectile=hyperalpha Ekin[MeV]=4954.24 direction=(0.332236,0.838726,0.43146) material=G4_Ar + --> #secondaries=33 impactParameter[fm]=2.44585 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=32 #NNcollisions=1 + Collision 247 projectile=B0 Ekin[MeV]=17584 direction=(0.498062,0.64028,0.584787) material=G4_Pb + --> #secondaries=46 impactParameter[fm]=4.13235 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=3 + Collision 248 projectile=anti_xi_c+ Ekin[MeV]=25285.7 direction=(0.410813,0.670766,0.617499) material=G4_Si + --> #secondaries=10 impactParameter[fm]=3.80746 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 249 projectile=sigma- Ekin[MeV]=21561 direction=(0.0415658,0.514758,0.856327) material=G4_Al + --> #secondaries=31 impactParameter[fm]=1.64571 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 250 projectile=anti_doublehyperH4 Ekin[MeV]=4835.42 direction=(0.77876,0.165748,0.605029) material=G4_Pb + --> #secondaries=75 impactParameter[fm]=3.46788 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=4 + Collision 251 projectile=hyperHe5 Ekin[MeV]=17313.3 direction=(0.664877,0.357995,0.655574) material=G4_Si + --> #secondaries=18 impactParameter[fm]=4.90334 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 252 projectile=pi- Ekin[MeV]=1647.19 direction=(0.7185,0.199871,0.66619) material=G4_He + --> #secondaries=5 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 253 projectile=Bc+ Ekin[MeV]=23392.6 direction=(0.898606,0.413603,0.146422) material=G4_H + --> #secondaries=6 impactParameter[fm]=1.07726 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 254 projectile=B- Ekin[MeV]=5756.38 direction=(0.399665,0.751519,0.524869) material=G4_Si + --> #secondaries=8 impactParameter[fm]=4.12368 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 255 projectile=B+ Ekin[MeV]=2021.9 direction=(0.0227218,0.796026,0.604835) material=G4_Pb + --> #secondaries=16 impactParameter[fm]=2.69382 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=1 + Collision 256 projectile=anti_omega_c0 Ekin[MeV]=27952.6 direction=(0.128663,0.987366,0.0924886) material=G4_W + --> #secondaries=63 impactParameter[fm]=4.0554 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=3 + Collision 257 projectile=anti_neutron Ekin[MeV]=18721.3 direction=(0.116571,0.517583,0.847655) material=G4_W + --> #secondaries=129 impactParameter[fm]=0.604296 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=2 + Collision 258 projectile=xi_b- Ekin[MeV]=21493.3 direction=(0.287438,0.341047,0.895023) material=G4_C + --> #secondaries=10 impactParameter[fm]=0.944257 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 259 projectile=anti_doublehyperH4 Ekin[MeV]=10629.6 direction=(0.614921,0.598762,0.513183) material=G4_Ar + --> #secondaries=16 impactParameter[fm]=6.49567 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 260 projectile=xi_b0 Ekin[MeV]=20923.1 direction=(0.723078,0.607216,0.329314) material=G4_Si + --> #secondaries=8 impactParameter[fm]=3.25329 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 261 projectile=lambda Ekin[MeV]=2364.28 direction=(0.868294,0.309137,0.387944) material=G4_Pb + --> #secondaries=46 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 262 projectile=anti_B0 Ekin[MeV]=10963 direction=(0.978646,0.180005,0.0992444) material=G4_Fe + --> #secondaries=15 impactParameter[fm]=1.33983 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 263 projectile=D0 Ekin[MeV]=15179.5 direction=(0.0244919,0.996803,0.0760471) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.887625 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 264 projectile=anti_He3 Ekin[MeV]=9447.27 direction=(0.898736,0.240755,0.366483) material=G4_H + --> #secondaries=7 impactParameter[fm]=0.106063 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=1 #NNcollisions=1 + Collision 265 projectile=anti_D0 Ekin[MeV]=3146.85 direction=(0.39421,0.916295,0.0707272) material=G4_Cu + --> #secondaries=16 impactParameter[fm]=4.56571 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=1 + Collision 266 projectile=anti_xi_c+ Ekin[MeV]=11318.9 direction=(0.64453,0.656562,0.3918) material=G4_He + --> #secondaries=5 impactParameter[fm]=2.056 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 267 projectile=sigma- Ekin[MeV]=29012 direction=(0.708215,0.0960937,0.699426) material=G4_Si + --> #secondaries=20 impactParameter[fm]=0.489178 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 268 projectile=xi_c+ Ekin[MeV]=21663.4 direction=(0.752832,0.262052,0.603799) material=G4_Al + --> #secondaries=23 impactParameter[fm]=1.18347 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 269 projectile=anti_omega_c0 Ekin[MeV]=17189.8 direction=(0.934977,0.331267,0.126808) material=G4_W + --> #secondaries=14 impactParameter[fm]=6.64113 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 270 projectile=alpha Ekin[MeV]=25055.9 direction=(0.693721,0.38142,0.610958) material=G4_Cu + --> #secondaries=21 impactParameter[fm]=6.36246 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 271 projectile=sigma- Ekin[MeV]=6434.33 direction=(0.360932,0.788649,0.497756) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.48371 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 272 projectile=anti_hyperHe5 Ekin[MeV]=3402.87 direction=(0.98516,0.157838,0.0674326) material=G4_Fe + --> #secondaries=7 impactParameter[fm]=7.09168 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 273 projectile=B+ Ekin[MeV]=7213.88 direction=(0.761198,0.59253,0.263602) material=G4_Fe + --> #secondaries=11 impactParameter[fm]=3.70538 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 274 projectile=neutron Ekin[MeV]=26091.6 direction=(0.413529,0.778074,0.472858) material=G4_Si + --> #secondaries=31 impactParameter[fm]=3.87969 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 275 projectile=anti_lambda_c+ Ekin[MeV]=20314.8 direction=(0.728325,0.427646,0.535407) material=G4_Cu + --> #secondaries=27 impactParameter[fm]=4.03624 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 276 projectile=proton Ekin[MeV]=17493.3 direction=(0.294187,0.955182,0.0328896) material=G4_Pb + --> #secondaries=69 impactParameter[fm]=4.41739 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=3 + Collision 277 projectile=xi- Ekin[MeV]=24239.4 direction=(0.124814,0.952751,0.276924) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.18691 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 278 projectile=Bc- Ekin[MeV]=8232.23 direction=(0.394315,0.801142,0.450209) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=1.68374 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 279 projectile=anti_lambda_b Ekin[MeV]=17116.4 direction=(0.669816,0.707493,0.225389) material=G4_He + --> #secondaries=7 impactParameter[fm]=2.30215 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 280 projectile=deuteron Ekin[MeV]=3216.36 direction=(0.286066,0.733518,0.616537) material=G4_C --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 373 projectile=anti_xi_b- Ekin[MeV]=5213.32 direction=(0.748622,0.661778,0.0401864) material=G4_Be - --> #secondaries=7 impactParameter[fm]=1.44264 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=0 - Collision 374 projectile=triton Ekin[MeV]=23848.2 direction=(0.108386,0.727923,0.677038) material=G4_C - --> #secondaries=12 impactParameter[fm]=2.29847 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 375 projectile=doublehyperH4 Ekin[MeV]=28255.9 direction=(0.0089403,0.141168,0.989945) material=G4_He - --> #secondaries=9 impactParameter[fm]=2.91084 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=2 #NNcollisions=1 - Collision 376 projectile=Bc- Ekin[MeV]=29730.9 direction=(0.326021,0.668082,0.668862) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=5.16093 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 377 projectile=hyperHe5 Ekin[MeV]=12180.4 direction=(0.028926,0.517515,0.855185) material=G4_Pb - --> #secondaries=59 impactParameter[fm]=5.81805 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=196 #NNcollisions=3 - Collision 378 projectile=anti_B0 Ekin[MeV]=2286.12 direction=(0.477662,0.558653,0.678046) material=G4_C - --> #secondaries=8 impactParameter[fm]=1.72088 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 379 projectile=omega_c0 Ekin[MeV]=5626.82 direction=(0.279471,0.826191,0.489188) material=G4_C - --> #secondaries=7 impactParameter[fm]=1.66721 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 380 projectile=anti_omega_c0 Ekin[MeV]=3947.69 direction=(0.347476,0.633411,0.691412) material=G4_Cu - --> #secondaries=14 impactParameter[fm]=4.10038 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 381 projectile=kaon0S Ekin[MeV]=11468.4 direction=(0.248598,0.66237,0.706729) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=3.88486 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=2 - Collision 382 projectile=anti_hyperH4 Ekin[MeV]=9048.71 direction=(0.705473,0.511795,0.490279) material=G4_Be - --> #secondaries=18 impactParameter[fm]=2.12571 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=3 - Collision 383 projectile=anti_deuteron Ekin[MeV]=15011.4 direction=(0.102621,0.934867,0.339842) material=G4_Pb - --> #secondaries=37 impactParameter[fm]=8.67921 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 384 projectile=Bc+ Ekin[MeV]=7474.61 direction=(0.355576,0.0908989,0.930217) material=G4_Ar - --> #secondaries=5 impactParameter[fm]=3.03437 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 385 projectile=lambda_b Ekin[MeV]=10022.8 direction=(0.991745,0.0382373,0.122391) material=G4_C - --> #secondaries=7 impactParameter[fm]=0.880536 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 386 projectile=anti_xi_b- Ekin[MeV]=29897.5 direction=(0.91418,0.39789,0.0771907) material=G4_Be - --> #secondaries=5 impactParameter[fm]=2.49883 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 387 projectile=lambda Ekin[MeV]=16349.4 direction=(0.578961,0.645727,0.497836) material=G4_Si - --> #secondaries=28 impactParameter[fm]=2.18471 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=4 - Collision 388 projectile=hypertriton Ekin[MeV]=4974.4 direction=(0.687688,0.173499,0.70497) material=G4_Fe - --> #secondaries=32 impactParameter[fm]=4.22549 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=49 #NNcollisions=0 - Collision 389 projectile=kaon+ Ekin[MeV]=23603.7 direction=(0.606218,0.453982,0.652993) material=G4_Be - --> #secondaries=12 impactParameter[fm]=0.702078 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 390 projectile=anti_omega_c0 Ekin[MeV]=16685.6 direction=(0.729188,0.000392182,0.684313) material=G4_Ar - --> #secondaries=8 impactParameter[fm]=5.70478 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 391 projectile=lambda_c+ Ekin[MeV]=18825.2 direction=(0.897938,0.431073,0.088784) material=G4_Fe - --> #secondaries=23 impactParameter[fm]=4.3504 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=0 - Collision 392 projectile=anti_hypertriton Ekin[MeV]=1418.4 direction=(0.407072,0.0314605,0.912854) material=G4_Si - --> #secondaries=29 impactParameter[fm]=1.88536 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=3 - Collision 393 projectile=B- Ekin[MeV]=28401.5 direction=(0.247871,0.0942202,0.9642) material=G4_H - --> #secondaries=8 impactParameter[fm]=0.313366 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 394 projectile=pi- Ekin[MeV]=15516.4 direction=(0.218101,0.84006,0.49672) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.68784 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=2 #NNcollisions=1 - Collision 395 projectile=anti_lambda Ekin[MeV]=20603.5 direction=(0.408246,0.455619,0.791042) material=G4_Pb - --> #secondaries=61 impactParameter[fm]=3.50287 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=2 - Collision 396 projectile=anti_deuteron Ekin[MeV]=17013.6 direction=(0.889221,0.357228,0.285787) material=G4_H - --> #secondaries=9 impactParameter[fm]=1.8484 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 397 projectile=anti_xi_b- Ekin[MeV]=27812.5 direction=(0.583637,0.589779,0.558147) material=G4_Si - --> #secondaries=15 impactParameter[fm]=2.91288 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 398 projectile=hyperH4 Ekin[MeV]=23015.8 direction=(0.144968,0.846845,0.511701) material=G4_Be - --> #secondaries=8 impactParameter[fm]=3.77005 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 399 projectile=B+ Ekin[MeV]=16441.4 direction=(0.35042,0.144966,0.925306) material=G4_Cu - --> #secondaries=7 impactParameter[fm]=4.93834 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 400 projectile=sigma+ Ekin[MeV]=5212.46 direction=(0.117294,0.684957,0.71908) material=G4_C - --> #secondaries=8 impactParameter[fm]=0.991642 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=0 + Collision 281 projectile=Bs0 Ekin[MeV]=26267.5 direction=(0.349625,0.934063,0.0727284) material=G4_Cu + --> #secondaries=20 impactParameter[fm]=2.11183 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 282 projectile=Ds+ Ekin[MeV]=21062.3 direction=(0.533243,0.805604,0.258177) material=G4_Ar + --> #secondaries=7 impactParameter[fm]=4.27757 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 283 projectile=omega_c0 Ekin[MeV]=24740.8 direction=(0.350609,0.325732,0.87805) material=G4_Al + --> #secondaries=23 impactParameter[fm]=2.75233 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 284 projectile=xi- Ekin[MeV]=1818.79 direction=(0.311751,0.675717,0.667995) material=G4_Fe + --> #secondaries=17 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 285 projectile=anti_neutron Ekin[MeV]=4607.26 direction=(0.371193,0.842146,0.391159) material=G4_C + --> #secondaries=12 impactParameter[fm]=1.98244 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 286 projectile=B0 Ekin[MeV]=22170.3 direction=(0.553678,0.456088,0.696724) material=G4_C + --> #secondaries=6 impactParameter[fm]=0.525437 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 287 projectile=pi+ Ekin[MeV]=13650 direction=(0.162364,0.780723,0.603415) material=G4_Si + --> #secondaries=28 impactParameter[fm]=2.82673 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 288 projectile=anti_He3 Ekin[MeV]=6406.56 direction=(0.738311,0.113657,0.664815) material=G4_Cu + --> #secondaries=34 impactParameter[fm]=4.09868 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=61 #NNcollisions=1 + Collision 289 projectile=B0 Ekin[MeV]=3354.98 direction=(0.546912,0.704323,0.452567) material=G4_Be + --> #secondaries=9 impactParameter[fm]=1.65781 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=6 #NNcollisions=2 + Collision 290 projectile=anti_hyperHe5 Ekin[MeV]=3523.18 direction=(0.787898,0.606145,0.108653) material=G4_Be + --> #secondaries=11 impactParameter[fm]=4.849 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 291 projectile=Ds- Ekin[MeV]=5429.49 direction=(0.484585,0.311176,0.817525) material=G4_Si + --> #secondaries=17 impactParameter[fm]=1.87265 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=3 + Collision 292 projectile=anti_neutron Ekin[MeV]=26285.9 direction=(0.0323027,0.746797,0.664267) material=G4_Be + --> #secondaries=7 impactParameter[fm]=3.32526 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 293 projectile=Ds+ Ekin[MeV]=21274 direction=(0.86952,0.0597149,0.490275) material=G4_C + --> #secondaries=11 impactParameter[fm]=1.87284 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 294 projectile=anti_xi_b0 Ekin[MeV]=12518.3 direction=(0.626688,0.590752,0.508206) material=G4_Al + --> #secondaries=10 impactParameter[fm]=4.02261 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 295 projectile=anti_He3 Ekin[MeV]=26241.8 direction=(0.580421,0.708721,0.401031) material=G4_He + --> #secondaries=17 impactParameter[fm]=1.25879 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=3 #NNcollisions=3 + Collision 296 projectile=xi_b- Ekin[MeV]=25143.3 direction=(0.00777758,0.919007,0.394165) material=G4_C + --> #secondaries=10 impactParameter[fm]=1.77284 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 297 projectile=Bc- Ekin[MeV]=18537.3 direction=(0.840534,0.491809,0.227214) material=G4_C + --> #secondaries=7 impactParameter[fm]=1.17154 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 298 projectile=anti_hyperalpha Ekin[MeV]=8059.08 direction=(0.526056,0.451876,0.720467) material=G4_He + --> #secondaries=7 impactParameter[fm]=2.68316 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 299 projectile=anti_sigma+ Ekin[MeV]=8058.83 direction=(0.663583,0.641779,0.384419) material=G4_Be + --> #secondaries=12 impactParameter[fm]=2.20066 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 300 projectile=pi- Ekin[MeV]=5423.29 direction=(0.95308,0.218735,0.209269) material=G4_Pb + --> #secondaries=27 impactParameter[fm]=7.73876 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 List of produced secondaries: - j=0 sigma+ p=(537.548,4000.63,4026.025823.87) MeV - j=1 neutron p=(181.483,-219.318,391.2411056.83) MeV - j=2 proton p=(200.024,64.3164,49.8726962.802) MeV - j=3 alpha p=(435.063,352.959,-572.693812.5) MeV - j=4 deuteron p=(28.0843,136.665,-144.2341886.32) MeV - j=5 proton p=(71.5381,-10.4777,-71.013943.729) MeV - j=6 neutron p=(0.0492804,177.139,258.571990.465) MeV - j=7 deuteron p=(-715.969,-193.283,585.5142100.17) MeV - Collision 401 projectile=Bc+ Ekin[MeV]=7456.08 direction=(0.0561494,0.850512,0.522949) material=G4_Ar - --> #secondaries=12 impactParameter[fm]=1.77678 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 402 projectile=triton Ekin[MeV]=13782.1 direction=(0.590077,0.716069,0.372899) material=G4_Fe - --> #secondaries=29 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 403 projectile=Bs0 Ekin[MeV]=29495.4 direction=(0.554206,0.646372,0.524461) material=G4_Fe - --> #secondaries=13 impactParameter[fm]=2.93101 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=1 - Collision 404 projectile=anti_alpha Ekin[MeV]=2927.59 direction=(0.599203,0.796637,0.0795303) material=G4_Fe - --> #secondaries=47 impactParameter[fm]=1.80507 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=4 - Collision 405 projectile=pi- Ekin[MeV]=13464.4 direction=(0.216194,0.596312,0.773092) material=G4_Si - --> #secondaries=13 impactParameter[fm]=5.71731 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 406 projectile=alpha Ekin[MeV]=6382.69 direction=(0.575518,0.566369,0.589919) material=G4_Si - --> #secondaries=15 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 407 projectile=anti_doublehyperH4 Ekin[MeV]=1172.19 direction=(0.510716,0.162436,0.844265) material=G4_He - --> #secondaries=12 impactParameter[fm]=2.14867 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=3 #NNcollisions=3 - Collision 408 projectile=anti_hyperH4 Ekin[MeV]=7668.05 direction=(0.83938,0.521116,0.154529) material=G4_Pb - --> #secondaries=140 impactParameter[fm]=4.32136 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=4 - Collision 409 projectile=anti_sigma- Ekin[MeV]=25274.7 direction=(0.640706,0.396682,0.657373) material=G4_W - --> #secondaries=41 impactParameter[fm]=5.39293 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=2 - Collision 410 projectile=anti_Bs0 Ekin[MeV]=3719.34 direction=(0.457504,0.363777,0.811392) material=G4_Al - --> #secondaries=12 impactParameter[fm]=1.34116 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 411 projectile=omega_b- Ekin[MeV]=6391.47 direction=(0.0559168,0.960471,0.272705) material=G4_C - --> #secondaries=8 impactParameter[fm]=0.910855 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 412 projectile=kaon0L Ekin[MeV]=3882.56 direction=(0.677762,0.413806,0.607786) material=G4_Ar - --> #secondaries=24 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 413 projectile=anti_hyperalpha Ekin[MeV]=27368.5 direction=(0.229591,0.0378535,0.972551) material=G4_Al - --> #secondaries=43 impactParameter[fm]=3.2288 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=4 - Collision 414 projectile=hyperHe5 Ekin[MeV]=14868.4 direction=(0.326066,0.839565,0.434524) material=G4_Fe - --> #secondaries=14 impactParameter[fm]=4.98824 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 415 projectile=anti_omega_c0 Ekin[MeV]=8274.98 direction=(0.795609,0.29427,0.529538) material=G4_Fe - --> #secondaries=19 impactParameter[fm]=1.95462 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 416 projectile=D+ Ekin[MeV]=22548.4 direction=(0.474867,0.849099,0.231372) material=G4_W - --> #secondaries=39 impactParameter[fm]=5.95755 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=0 - Collision 417 projectile=anti_alpha Ekin[MeV]=21642.3 direction=(0.676739,0.669239,0.306829) material=G4_Fe - --> #secondaries=50 impactParameter[fm]=4.90858 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=55 #NNcollisions=3 - Collision 418 projectile=anti_omega_b- Ekin[MeV]=5705.98 direction=(0.35294,0.721086,0.596212) material=G4_Cu - --> #secondaries=9 impactParameter[fm]=1.80012 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 419 projectile=anti_lambda Ekin[MeV]=28122.4 direction=(0.680455,0.419626,0.600745) material=G4_C - --> #secondaries=12 impactParameter[fm]=2.12619 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 420 projectile=omega_b- Ekin[MeV]=13369.3 direction=(0.663303,0.0561455,0.746242) material=G4_He - --> #secondaries=4 impactParameter[fm]=0.376867 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 421 projectile=alpha Ekin[MeV]=25058 direction=(0.680322,0.347712,0.645181) material=G4_H - --> #secondaries=5 impactParameter[fm]=2.33599 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 422 projectile=omega_b- Ekin[MeV]=8994.55 direction=(0.669411,0.337788,0.661656) material=G4_Be - --> #secondaries=7 impactParameter[fm]=1.62026 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 423 projectile=Ds+ Ekin[MeV]=25897.3 direction=(0.54634,0.674937,0.495956) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=2.53007 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 424 projectile=xi_b- Ekin[MeV]=11248.4 direction=(0.993221,0.063391,0.0974348) material=G4_Pb - --> #secondaries=23 impactParameter[fm]=3.25503 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=1 - Collision 425 projectile=alpha Ekin[MeV]=25234.7 direction=(0.282218,0.147049,0.948013) material=G4_Cu - --> #secondaries=40 impactParameter[fm]=4.31215 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=59 #NNcollisions=3 - Collision 426 projectile=He3 Ekin[MeV]=2282.07 direction=(0.928194,0.345931,0.137064) material=G4_Ar + j=0 pi+ p=(1860.26,188.147,542.131951.76) MeV + j=1 pi- p=(274.309,-153.083,309.246462.377) MeV + j=2 pi+ p=(780.587,175.087,198.453835.963) MeV + j=3 neutron p=(53.207,-208.2,-88.1723967.851) MeV + j=4 pi- p=(174.216,406.057,-127.743480.657) MeV + j=5 neutron p=(1318.58,547.402,341.0811742.82) MeV + j=6 pi- p=(380.558,-27.9943,-41.5459408.428) MeV + j=7 neutron p=(402.01,510.137,86.49521145.48) MeV + j=8 proton p=(141.145,-401.831,-170.6121044.44) MeV + j=9 neutron p=(188.243,164.108,166.162986.286) MeV + j=10 proton p=(-8.5366,222.339,-49.0511965.54) MeV + j=11 proton p=(93.7896,-122.129,-142.902961.503) MeV + j=12 neutron p=(26.4378,-19.5585,-74.9991943.127) MeV + j=13 Au189[2554.800] p=(-442.208,-109.654,103.915175982) MeV + j=14 neutron p=(-28.926,-5.85489,36.0526940.72) MeV + j=15 neutron p=(44.9239,-58.0198,47.6896943.632) MeV + j=16 neutron p=(-15.3595,167.922,-22.3052954.837) MeV + j=17 neutron p=(-48.1526,-15.6294,47.7684942.14) MeV + j=18 neutron p=(21.0569,35.1133,54.6367942.043) MeV + j=19 neutron p=(-31.0711,-7.58609,-93.5364944.751) MeV + j=20 neutron p=(-22.8768,-53.3685,-46.1722942.49) MeV + j=21 neutron p=(59.9965,-2.78288,19.6956941.689) MeV + j=22 neutron p=(45.411,-14.8958,9.72128940.83) MeV + j=23 neutron p=(32.8875,-1.53474,60.0365942.057) MeV + j=24 gamma p=(0.196769,1.92041,-2.5223.17603) MeV + j=25 gamma p=(-0.0861008,0.479022,0.1170910.500586) MeV + j=26 gamma p=(-0.45587,-0.192999,0.117670.508834) MeV + Collision 301 projectile=kaon+ Ekin[MeV]=22028.5 direction=(0.341342,0.72923,0.593052) material=G4_Ar + --> #secondaries=31 impactParameter[fm]=2.40921 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=3 + Collision 302 projectile=anti_B0 Ekin[MeV]=20533.1 direction=(0.360777,0.926751,0.104753) material=G4_He + --> #secondaries=6 impactParameter[fm]=1.86242 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 303 projectile=B+ Ekin[MeV]=26467.6 direction=(0.977289,0.00694474,0.211797) material=G4_Pb + --> #secondaries=41 impactParameter[fm]=3.88949 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=2 + Collision 304 projectile=anti_xi_b- Ekin[MeV]=4883.17 direction=(0.473115,0.819102,0.324398) material=G4_Si + --> #secondaries=19 impactParameter[fm]=2.32405 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=0 + Collision 305 projectile=Ds- Ekin[MeV]=11207 direction=(0.418913,0.575327,0.702504) material=G4_H + --> #secondaries=2 impactParameter[fm]=0.741562 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 306 projectile=anti_omega_b- Ekin[MeV]=14196.2 direction=(0.367531,0.625927,0.68785) material=G4_Si + --> #secondaries=7 impactParameter[fm]=3.36257 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 307 projectile=anti_hypertriton Ekin[MeV]=27143.5 direction=(0.660512,0.468285,0.586884) material=G4_Fe + --> #secondaries=70 impactParameter[fm]=2.11935 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=5 + Collision 308 projectile=anti_triton Ekin[MeV]=26508.8 direction=(0.743282,0.326451,0.583919) material=G4_C + --> #secondaries=21 impactParameter[fm]=2.0613 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=10 #NNcollisions=3 + Collision 309 projectile=lambda_c+ Ekin[MeV]=6697.67 direction=(0.93833,0.0479898,0.342393) material=G4_Al + --> #secondaries=8 impactParameter[fm]=3.75441 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 310 projectile=lambda Ekin[MeV]=19089.3 direction=(0.998002,0.0624586,0.00951891) material=G4_W + --> #secondaries=42 impactParameter[fm]=5.23805 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=4 + Collision 311 projectile=Bc- Ekin[MeV]=12440.3 direction=(0.54849,0.778539,0.305018) material=G4_Cu + --> #secondaries=8 impactParameter[fm]=1.46409 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 312 projectile=He3 Ekin[MeV]=24345.3 direction=(0.336902,0.358745,0.870516) material=G4_W + --> #secondaries=21 impactParameter[fm]=9.03044 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=185 #NNcollisions=0 + Collision 313 projectile=lambda_c+ Ekin[MeV]=26140.4 direction=(0.566369,0.727841,0.386619) material=G4_C + --> #secondaries=20 impactParameter[fm]=1.27892 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 314 projectile=anti_B0 Ekin[MeV]=22742 direction=(0.748787,0.430882,0.503645) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.415891 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 315 projectile=triton Ekin[MeV]=29390.3 direction=(0.482857,0.721264,0.496615) material=G4_Si + --> #secondaries=40 impactParameter[fm]=0.860871 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=6 + Collision 316 projectile=xi- Ekin[MeV]=8942.1 direction=(0.293482,0.955129,0.0399584) material=G4_W + --> #secondaries=76 impactParameter[fm]=0.357044 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=3 + Collision 317 projectile=pi- Ekin[MeV]=23230.8 direction=(0.589085,0.805103,0.0691958) material=G4_Fe + --> #secondaries=22 impactParameter[fm]=3.3378 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=1 + Collision 318 projectile=anti_omega_c0 Ekin[MeV]=5686.98 direction=(0.106244,0.707433,0.698749) material=G4_Fe + --> #secondaries=8 impactParameter[fm]=4.47098 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 319 projectile=kaon0L Ekin[MeV]=16909.2 direction=(0.804401,0.494255,0.329621) material=G4_Si + --> #secondaries=17 impactParameter[fm]=1.62235 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 320 projectile=hyperHe5 Ekin[MeV]=24810.7 direction=(0.0189909,0.34049,0.940056) material=G4_H + --> #secondaries=5 impactParameter[fm]=2.93996 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 321 projectile=xi0 Ekin[MeV]=11559.4 direction=(0.713775,0.419395,0.560922) material=G4_W + --> #secondaries=87 impactParameter[fm]=2.22882 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=3 + Collision 322 projectile=Bc- Ekin[MeV]=14744.6 direction=(0.313917,0.630722,0.709681) material=G4_W + --> #secondaries=37 impactParameter[fm]=6.02567 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 323 projectile=xi0 Ekin[MeV]=10414.7 direction=(0.284671,0.666717,0.688804) material=G4_Be + --> #secondaries=7 impactParameter[fm]=2.59794 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 324 projectile=triton Ekin[MeV]=19910 direction=(0.887533,0.341021,0.309823) material=G4_Cu + --> #secondaries=34 impactParameter[fm]=5.10248 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=63 #NNcollisions=1 + Collision 325 projectile=triton Ekin[MeV]=2451.25 direction=(0.490708,0.770127,0.407567) material=G4_Pb + --> #secondaries=72 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 326 projectile=neutron Ekin[MeV]=9894.74 direction=(0.792897,0.299722,0.530548) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=4.91553 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 327 projectile=omega- Ekin[MeV]=15567.5 direction=(0.610977,0.219133,0.760716) material=G4_Cu + --> #secondaries=52 impactParameter[fm]=1.27223 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=5 + Collision 328 projectile=anti_omega_b- Ekin[MeV]=28608.3 direction=(0.540938,0.697311,0.470258) material=G4_W + --> #secondaries=27 impactParameter[fm]=5.5017 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 329 projectile=anti_deuteron Ekin[MeV]=7576.08 direction=(0.841617,0.531284,0.0970467) material=G4_Fe + --> #secondaries=21 impactParameter[fm]=5.37691 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 330 projectile=anti_proton Ekin[MeV]=6654.14 direction=(0.687792,0.0989835,0.719128) material=G4_Ar + --> #secondaries=29 impactParameter[fm]=2.20517 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 331 projectile=anti_xi_c+ Ekin[MeV]=2224.91 direction=(0.787162,0.616084,0.0285759) material=G4_W + --> #secondaries=22 impactParameter[fm]=6.4536 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=0 + Collision 332 projectile=anti_lambda_c+ Ekin[MeV]=8597.88 direction=(0.87139,0.433424,0.229832) material=G4_Ar + --> #secondaries=32 impactParameter[fm]=1.32118 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=0 + Collision 333 projectile=anti_sigma- Ekin[MeV]=6859.3 direction=(0.408886,0.0254335,0.912231) material=G4_Ar + --> #secondaries=15 impactParameter[fm]=4.31529 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 334 projectile=xi_c+ Ekin[MeV]=9915.68 direction=(0.175041,0.745941,0.642598) material=G4_He + --> #secondaries=7 impactParameter[fm]=0.783399 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 335 projectile=hyperHe5 Ekin[MeV]=22967.6 direction=(0.236548,0.708339,0.665058) material=G4_W + --> #secondaries=88 impactParameter[fm]=5.71427 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=166 #NNcollisions=6 + Collision 336 projectile=anti_xi_c+ Ekin[MeV]=21880.1 direction=(0.0743986,0.5651,0.821661) material=G4_Al + --> #secondaries=22 impactParameter[fm]=2.9143 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 337 projectile=anti_omega_b- Ekin[MeV]=3985.39 direction=(0.48066,0.637793,0.601819) material=G4_C + --> #secondaries=7 impactParameter[fm]=2.04778 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 338 projectile=deuteron Ekin[MeV]=24275.9 direction=(0.0512409,0.37103,0.927206) material=G4_Cu + --> #secondaries=47 impactParameter[fm]=3.60089 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=58 #NNcollisions=5 + Collision 339 projectile=deuteron Ekin[MeV]=10197 direction=(0.929549,0.214331,0.300001) material=G4_Fe + --> #secondaries=24 impactParameter[fm]=4.16973 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=53 #NNcollisions=2 + Collision 340 projectile=anti_proton Ekin[MeV]=11472.3 direction=(0.797371,0.0912039,0.596558) material=G4_Be + --> #secondaries=6 impactParameter[fm]=2.44319 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 341 projectile=He3 Ekin[MeV]=27536.2 direction=(0.0146028,0.222977,0.974714) material=G4_Be + --> #secondaries=20 impactParameter[fm]=0.556689 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=5 #NNcollisions=4 + Collision 342 projectile=anti_lambda_c+ Ekin[MeV]=29979.3 direction=(0.762524,0.586658,0.272745) material=G4_C + --> #secondaries=15 impactParameter[fm]=0.960585 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 343 projectile=anti_hyperHe5 Ekin[MeV]=3662.43 direction=(0.955857,0.270154,0.115564) material=G4_C + --> #secondaries=13 impactParameter[fm]=4.24178 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 344 projectile=anti_triton Ekin[MeV]=23508.6 direction=(0.918508,0.21626,0.331021) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.85432 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 345 projectile=B+ Ekin[MeV]=9610.29 direction=(0.362192,0.62885,0.688015) material=G4_C + --> #secondaries=8 impactParameter[fm]=2.85281 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 346 projectile=sigma+ Ekin[MeV]=24024.2 direction=(0.741743,0.153193,0.652955) material=G4_Pb + --> #secondaries=34 impactParameter[fm]=6.93319 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 347 projectile=D0 Ekin[MeV]=14569.6 direction=(0.357405,0.525381,0.772163) material=G4_He + --> #secondaries=6 impactParameter[fm]=1.99641 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 348 projectile=doublehyperdoubleneutron Ekin[MeV]=25239.4 direction=(0.52032,0.265072,0.81179) material=G4_Si + --> #secondaries=42 impactParameter[fm]=3.30087 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=20 #NNcollisions=6 + Collision 349 projectile=anti_xi_c0 Ekin[MeV]=12047.9 direction=(0.18344,0.644103,0.742618) material=G4_Cu + --> #secondaries=29 impactParameter[fm]=2.84971 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 350 projectile=anti_D0 Ekin[MeV]=7825.79 direction=(0.508702,0.437891,0.741265) material=G4_H + --> #secondaries=4 impactParameter[fm]=1.05816 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 351 projectile=Bc+ Ekin[MeV]=19148.4 direction=(0.522168,0.0675427,0.850164) material=G4_Ar + --> #secondaries=20 impactParameter[fm]=2.53612 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=3 + Collision 352 projectile=xi_c0 Ekin[MeV]=23162.1 direction=(0.370779,0.81628,0.442957) material=G4_Si + --> #secondaries=36 impactParameter[fm]=1.64732 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 353 projectile=anti_He3 Ekin[MeV]=8189.79 direction=(0.373762,0.657278,0.654437) material=G4_He + --> #secondaries=10 impactParameter[fm]=3.13602 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 354 projectile=hypertriton Ekin[MeV]=26303.7 direction=(0.666538,0.426441,0.611454) material=G4_Cu + --> #secondaries=18 impactParameter[fm]=4.25722 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=0 + Collision 355 projectile=D- Ekin[MeV]=14322.7 direction=(0.685563,0.101285,0.720933) material=G4_Cu + --> #secondaries=16 impactParameter[fm]=1.31313 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 356 projectile=anti_proton Ekin[MeV]=26268.6 direction=(0.576218,0.697032,0.426755) material=G4_Fe + --> #secondaries=15 impactParameter[fm]=5.14411 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 357 projectile=anti_omega_c0 Ekin[MeV]=20039.5 direction=(0.418003,0.907215,0.0472797) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.214 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 358 projectile=anti_He3 Ekin[MeV]=19377 direction=(0.404878,0.723231,0.559473) material=G4_Cu + --> #secondaries=47 impactParameter[fm]=4.27422 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=4 + Collision 359 projectile=anti_sigma- Ekin[MeV]=12948.5 direction=(0.147259,0.785189,0.601492) material=G4_Fe + --> #secondaries=48 impactParameter[fm]=2.71969 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 360 projectile=kaon+ Ekin[MeV]=28487.1 direction=(0.456495,0.748978,0.480254) material=G4_Si + --> #secondaries=14 impactParameter[fm]=1.13774 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 361 projectile=anti_alpha Ekin[MeV]=17535.4 direction=(0.470196,0.739981,0.480981) material=G4_Be + --> #secondaries=24 impactParameter[fm]=1.11145 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=4 + Collision 362 projectile=deuteron Ekin[MeV]=9951.32 direction=(0.544804,0.240356,0.803379) material=G4_C + --> #secondaries=12 impactParameter[fm]=3.22144 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 363 projectile=omega_c0 Ekin[MeV]=22280 direction=(0.364229,0.780887,0.507496) material=G4_C + --> #secondaries=17 impactParameter[fm]=1.78775 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=3 + Collision 364 projectile=D- Ekin[MeV]=8999.79 direction=(0.683493,0.610537,0.400102) material=G4_Be + --> #secondaries=9 impactParameter[fm]=1.61658 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 365 projectile=B+ Ekin[MeV]=18288.8 direction=(0.25736,0.780012,0.570392) material=G4_Be + --> #secondaries=7 impactParameter[fm]=2.28298 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 366 projectile=anti_omega- Ekin[MeV]=9120.11 direction=(0.630509,0.387379,0.672604) material=G4_He + --> #secondaries=11 impactParameter[fm]=0.0875327 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 367 projectile=anti_Bs0 Ekin[MeV]=8186.57 direction=(0.699387,0.702848,0.129855) material=G4_H + --> #secondaries=3 impactParameter[fm]=0.279615 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 368 projectile=lambda_c+ Ekin[MeV]=10318 direction=(0.714075,0.614083,0.336153) material=G4_Be + --> #secondaries=6 impactParameter[fm]=2.12082 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 369 projectile=neutron Ekin[MeV]=21797.2 direction=(0.255817,0.950293,0.177483) material=G4_Si + --> #secondaries=42 impactParameter[fm]=0.769469 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=5 + Collision 370 projectile=hypertriton Ekin[MeV]=19372.1 direction=(0.762517,0.646316,0.0290478) material=G4_C + --> #secondaries=16 impactParameter[fm]=1.49894 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=5 + Collision 371 projectile=kaon0S Ekin[MeV]=21314.3 direction=(0.331444,0.0863893,0.939511) material=G4_Al + --> #secondaries=13 impactParameter[fm]=5.25668 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 372 projectile=anti_doublehyperH4 Ekin[MeV]=26702.3 direction=(0.350309,0.0416746,0.935707) material=G4_Si + --> #secondaries=32 impactParameter[fm]=3.55743 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=4 + Collision 373 projectile=anti_lambda_b Ekin[MeV]=19181.5 direction=(0.369036,0.621202,0.691318) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=4.74337 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 374 projectile=anti_xi_b- Ekin[MeV]=12043.2 direction=(0.627873,0.778058,0.0200548) material=G4_Al + --> #secondaries=13 impactParameter[fm]=2.54667 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 375 projectile=anti_hyperHe5 Ekin[MeV]=21071.9 direction=(0.374882,0.669169,0.64162) material=G4_W + --> #secondaries=152 impactParameter[fm]=3.23877 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=171 #NNcollisions=6 + Collision 376 projectile=anti_deuteron Ekin[MeV]=12405.5 direction=(0.684032,0.432239,0.587596) material=G4_Be + --> #secondaries=13 impactParameter[fm]=5.20683 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 377 projectile=anti_hyperH4 Ekin[MeV]=28419.2 direction=(0.363386,0.530381,0.765929) material=G4_C + --> #secondaries=38 impactParameter[fm]=1.39084 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=5 + Collision 378 projectile=sigma+ Ekin[MeV]=10082.3 direction=(0.595463,0.212428,0.774789) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.3908 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 379 projectile=anti_doublehyperH4 Ekin[MeV]=5301.64 direction=(0.783337,0.444939,0.434064) material=G4_C + --> #secondaries=14 impactParameter[fm]=2.87436 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 380 projectile=omega_c0 Ekin[MeV]=10847.6 direction=(0.494531,0.630889,0.597845) material=G4_W + --> #secondaries=43 impactParameter[fm]=5.39475 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=2 + Collision 381 projectile=xi_b0 Ekin[MeV]=9633.89 direction=(0.659674,0.444242,0.606201) material=G4_Be + --> #secondaries=8 impactParameter[fm]=2.78716 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 382 projectile=xi_b0 Ekin[MeV]=15710.5 direction=(0.329203,0.694172,0.640117) material=G4_Fe + --> #secondaries=29 impactParameter[fm]=3.23379 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=1 + Collision 383 projectile=Bs0 Ekin[MeV]=17181.6 direction=(0.923832,0.125028,0.361805) material=G4_Fe + --> #secondaries=13 impactParameter[fm]=3.00815 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 384 projectile=Ds- Ekin[MeV]=9937.72 direction=(0.93395,0.335682,0.122698) material=G4_He + --> #secondaries=19 impactParameter[fm]=0.889776 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 385 projectile=doublehyperH4 Ekin[MeV]=24547.3 direction=(0.368398,0.5518,0.748197) material=G4_Fe + --> #secondaries=58 impactParameter[fm]=2.74441 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=48 #NNcollisions=9 + Collision 386 projectile=lambda_b Ekin[MeV]=18933 direction=(0.251106,0.967885,0.0119845) material=G4_Si + --> #secondaries=15 impactParameter[fm]=3.5938 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 387 projectile=sigma- Ekin[MeV]=24162.7 direction=(0.705652,0.109556,0.700038) material=G4_Fe + --> #secondaries=9 impactParameter[fm]=5.34526 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 388 projectile=xi_b0 Ekin[MeV]=21234.6 direction=(0.770969,0.582097,0.258396) material=G4_He + --> #secondaries=8 impactParameter[fm]=1.80282 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 389 projectile=lambda_b Ekin[MeV]=5333.22 direction=(0.380031,0.420645,0.823792) material=G4_Al + --> #secondaries=9 impactParameter[fm]=2.19483 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 390 projectile=kaon+ Ekin[MeV]=10396.9 direction=(0.67575,0.654373,0.339349) material=G4_Cu + --> #secondaries=22 impactParameter[fm]=3.78267 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 391 projectile=lambda_c+ Ekin[MeV]=24462.4 direction=(0.559332,0.828882,0.0101378) material=G4_Be + --> #secondaries=8 impactParameter[fm]=2.09637 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 392 projectile=anti_omega_c0 Ekin[MeV]=3912.23 direction=(0.360498,0.668211,0.650796) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.60509 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 + Collision 393 projectile=anti_lambda_b Ekin[MeV]=6284.85 direction=(0.486883,0.376782,0.788023) material=G4_Cu + --> #secondaries=9 impactParameter[fm]=5.70326 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 394 projectile=kaon- Ekin[MeV]=4869.32 direction=(0.521573,0.725171,0.449542) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.70723 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 395 projectile=B+ Ekin[MeV]=4801.57 direction=(0.499929,0.861444,0.0893635) material=G4_Si + --> #secondaries=10 impactParameter[fm]=4.39183 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 396 projectile=alpha Ekin[MeV]=10382.9 direction=(0.580625,0.643229,0.49913) material=G4_Pb + --> #secondaries=26 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 397 projectile=neutron Ekin[MeV]=8693.5 direction=(0.742418,0.584006,0.328256) material=G4_Si + --> #secondaries=16 impactParameter[fm]=3.75268 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 398 projectile=anti_xi_c+ Ekin[MeV]=11357.2 direction=(0.70334,0.674855,0.223347) material=G4_W + --> #secondaries=25 impactParameter[fm]=7.03542 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=2 + Collision 399 projectile=anti_deuteron Ekin[MeV]=14317.1 direction=(0.524443,0.0401421,0.850499) material=G4_W + --> #secondaries=101 impactParameter[fm]=2.69333 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=5 + Collision 400 projectile=anti_neutron Ekin[MeV]=18418.9 direction=(0.664324,0.0490977,0.74583) material=G4_H + --> #secondaries=7 impactParameter[fm]=1.72716 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + List of produced secondaries: + j=0 anti_proton p=(3551.7,15.7607,4332.815680.53) MeV + j=1 pi+ p=(584.575,-166.352,487.072791.277) MeV + j=2 proton p=(438.028,387.227,360.2551162.73) MeV + j=3 pi- p=(2457.28,-352.895,2795.693741.41) MeV + j=4 eta p=(1220.94,330.041,1007.331707.19) MeV + j=5 pi0 p=(1971.68,7.38955,1834.272696.35) MeV + j=6 pi+ p=(2621.05,728.173,3603.814517.42) MeV + Collision 401 projectile=kaon0L Ekin[MeV]=8684.56 direction=(0.76798,0.526714,0.364389) material=G4_Be + --> #secondaries=7 impactParameter[fm]=1.90958 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 402 projectile=lambda_c+ Ekin[MeV]=8511.6 direction=(0.991534,0.102671,0.0794896) material=G4_W + --> #secondaries=45 impactParameter[fm]=5.25272 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 403 projectile=B- Ekin[MeV]=7504.03 direction=(0.448767,0.85702,0.253231) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=1.09634 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=52 #NNcollisions=2 + Collision 404 projectile=deuteron Ekin[MeV]=19755.1 direction=(0.563073,0.770617,0.298495) material=G4_Be + --> #secondaries=13 impactParameter[fm]=2.3272 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 405 projectile=anti_sigma- Ekin[MeV]=10488.7 direction=(0.763156,0.487035,0.424723) material=G4_He + --> #secondaries=5 impactParameter[fm]=3.87593 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 406 projectile=anti_proton Ekin[MeV]=11625.8 direction=(0.39668,0.503169,0.767767) material=G4_Si + --> #secondaries=17 impactParameter[fm]=4.30998 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 407 projectile=anti_deuteron Ekin[MeV]=11402.1 direction=(0.633921,0.624129,0.456736) material=G4_Be + --> #secondaries=9 impactParameter[fm]=3.70044 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 408 projectile=D0 Ekin[MeV]=3168.87 direction=(0.276534,0.682231,0.676823) material=G4_Be + --> #secondaries=7 impactParameter[fm]=1.74906 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 409 projectile=doublehyperH4 Ekin[MeV]=29411.2 direction=(0.0383645,0.754365,0.655333) material=G4_Be + --> #secondaries=10 impactParameter[fm]=2.46284 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 410 projectile=Bc- Ekin[MeV]=4937.37 direction=(0.956143,0.0305016,0.291308) material=G4_Cu + --> #secondaries=7 impactParameter[fm]=4.45813 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 + Collision 411 projectile=alpha Ekin[MeV]=9747.75 direction=(0.301799,0.807616,0.506629) material=G4_Al --> #secondaries=20 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 427 projectile=hyperalpha Ekin[MeV]=6612.87 direction=(0.0684307,0.568989,0.819493) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.60949 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 428 projectile=pi- Ekin[MeV]=6625.3 direction=(0.0494474,0.997984,0.0397916) material=G4_Al - --> #secondaries=7 impactParameter[fm]=3.72206 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 429 projectile=anti_xi_c0 Ekin[MeV]=27867.3 direction=(0.932505,0.106957,0.344957) material=G4_H - --> #secondaries=6 impactParameter[fm]=0.23221 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 430 projectile=anti_B0 Ekin[MeV]=24761.9 direction=(0.752043,0.469321,0.462784) material=G4_Cu - --> #secondaries=15 impactParameter[fm]=1.75022 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 431 projectile=xi_b- Ekin[MeV]=23421.1 direction=(0.675354,0.711428,0.194336) material=G4_W - --> #secondaries=78 impactParameter[fm]=2.35871 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=3 - Collision 432 projectile=anti_lambda_b Ekin[MeV]=11060.1 direction=(0.324533,0.932597,0.157925) material=G4_Pb - --> #secondaries=28 impactParameter[fm]=5.36609 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=2 - Collision 433 projectile=kaon0L Ekin[MeV]=2396.42 direction=(0.500742,0.864621,0.0410886) material=G4_Be - --> #secondaries=13 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 434 projectile=anti_xi_b- Ekin[MeV]=24414 direction=(0.636665,0.550901,0.539597) material=G4_Fe - --> #secondaries=21 impactParameter[fm]=3.21167 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 435 projectile=anti_xi_b0 Ekin[MeV]=3783.97 direction=(0.452497,0.591574,0.667298) material=G4_Ar - --> #secondaries=6 impactParameter[fm]=2.79924 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 436 projectile=anti_doublehyperH4 Ekin[MeV]=26079.2 direction=(0.270311,0.764362,0.585391) material=G4_Pb - --> #secondaries=95 impactParameter[fm]=2.15363 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=8 - Collision 437 projectile=anti_xi_b- Ekin[MeV]=5437.27 direction=(0.24619,0.737899,0.628408) material=G4_C - --> #secondaries=7 impactParameter[fm]=2.97944 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 438 projectile=anti_deuteron Ekin[MeV]=29041.3 direction=(0.702834,0.673993,0.227505) material=G4_Pb - --> #secondaries=101 impactParameter[fm]=3.10093 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=3 - Collision 439 projectile=anti_xi_b0 Ekin[MeV]=6518.43 direction=(0.851587,0.376637,0.364615) material=G4_C - --> #secondaries=5 impactParameter[fm]=2.17024 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 440 projectile=anti_sigma+ Ekin[MeV]=23862.5 direction=(0.493149,0.782332,0.380476) material=G4_C - --> #secondaries=19 impactParameter[fm]=2.26893 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 441 projectile=anti_triton Ekin[MeV]=17064.2 direction=(0.887604,0.00587026,0.460571) material=G4_Al - --> #secondaries=24 impactParameter[fm]=3.78061 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=3 - Collision 442 projectile=kaon- Ekin[MeV]=8041.85 direction=(0.620015,0.645441,0.446081) material=G4_Cu - --> #secondaries=6 impactParameter[fm]=5.15957 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 443 projectile=hyperH4 Ekin[MeV]=2921.66 direction=(0.150376,0.934289,0.32325) material=G4_Cu - --> #secondaries=52 impactParameter[fm]=3.0227 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=47 #NNcollisions=0 - Collision 444 projectile=anti_omega_b- Ekin[MeV]=22239.1 direction=(0.582276,0.753587,0.305059) material=G4_Al - --> #secondaries=7 impactParameter[fm]=1.67057 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 445 projectile=omega- Ekin[MeV]=13181.2 direction=(0.241936,0.829371,0.503597) material=G4_Pb - --> #secondaries=108 impactParameter[fm]=3.00661 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=198 #NNcollisions=6 - Collision 446 projectile=anti_D0 Ekin[MeV]=1927.35 direction=(0.501961,0.720181,0.47893) material=G4_C - --> #secondaries=10 impactParameter[fm]=1.64821 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 447 projectile=anti_deuteron Ekin[MeV]=5456.82 direction=(0.0812236,0.89816,0.432101) material=G4_Pb - --> #secondaries=101 impactParameter[fm]=3.18298 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=2 - Collision 448 projectile=proton Ekin[MeV]=19502.5 direction=(0.815267,0.449389,0.365223) material=G4_Be - --> #secondaries=8 impactParameter[fm]=3.59925 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 449 projectile=anti_B0 Ekin[MeV]=29265.7 direction=(0.684391,0.281393,0.672626) material=G4_Ar - --> #secondaries=20 impactParameter[fm]=2.87039 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=2 - Collision 450 projectile=pi- Ekin[MeV]=17741 direction=(0.497346,0.0324326,0.866946) material=G4_Al - --> #secondaries=14 impactParameter[fm]=3.54556 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 451 projectile=hyperalpha Ekin[MeV]=29110.5 direction=(0.537837,0.417865,0.732202) material=G4_Be - --> #secondaries=15 impactParameter[fm]=1.28761 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 452 projectile=Ds- Ekin[MeV]=10989.4 direction=(0.0299254,0.936623,0.349059) material=G4_Al - --> #secondaries=9 impactParameter[fm]=2.14731 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 453 projectile=Bc+ Ekin[MeV]=8291.74 direction=(0.753073,0.409455,0.515002) material=G4_Be - --> #secondaries=5 impactParameter[fm]=0.747588 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 454 projectile=Ds+ Ekin[MeV]=12031.2 direction=(0.665445,0.265711,0.697553) material=G4_Cu - --> #secondaries=22 impactParameter[fm]=3.41735 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 455 projectile=anti_hypertriton Ekin[MeV]=4921.93 direction=(0.478121,0.841067,0.252996) material=G4_He - --> #secondaries=6 impactParameter[fm]=3.9619 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 456 projectile=Bc+ Ekin[MeV]=11214.8 direction=(0.378779,0.427009,0.821091) material=G4_C - --> #secondaries=4 impactParameter[fm]=1.77364 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 457 projectile=anti_omega_c0 Ekin[MeV]=21646.3 direction=(0.667132,0.272114,0.693462) material=G4_He - --> #secondaries=5 impactParameter[fm]=1.9108 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 458 projectile=anti_xi_c0 Ekin[MeV]=27486.6 direction=(0.0943908,0.741887,0.663847) material=G4_Si - --> #secondaries=22 impactParameter[fm]=1.58265 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 459 projectile=doublehyperdoubleneutron Ekin[MeV]=4104.39 direction=(0.736553,0.434754,0.51815) material=G4_C - --> #secondaries=6 impactParameter[fm]=3.61783 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 460 projectile=anti_omega- Ekin[MeV]=26029.5 direction=(0.522993,0.852294,0.00862115) material=G4_He - --> #secondaries=4 impactParameter[fm]=3.14919 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 461 projectile=hyperH4 Ekin[MeV]=27387.6 direction=(0.113022,0.965968,0.232663) material=G4_W - --> #secondaries=96 impactParameter[fm]=4.93888 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=167 #NNcollisions=11 - Collision 462 projectile=kaon0S Ekin[MeV]=20336.9 direction=(0.838028,0.377752,0.393716) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=3.40444 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 463 projectile=sigma+ Ekin[MeV]=14987 direction=(0.885779,0.313405,0.342305) material=G4_Pb - --> #secondaries=100 impactParameter[fm]=2.69604 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=6 - Collision 464 projectile=anti_hyperalpha Ekin[MeV]=4246.32 direction=(0.330359,0.804125,0.494212) material=G4_Cu - --> #secondaries=47 impactParameter[fm]=2.5319 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=4 - Collision 465 projectile=B- Ekin[MeV]=14408.1 direction=(0.632329,0.0306763,0.774092) material=G4_W - --> #secondaries=28 impactParameter[fm]=6.97473 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 466 projectile=xi_c+ Ekin[MeV]=12548.2 direction=(0.456297,0.883516,0.105796) material=G4_Be - --> #secondaries=8 impactParameter[fm]=2.76779 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 467 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=23419.9 direction=(0.710574,0.166254,0.683699) material=G4_H - --> #secondaries=4 impactParameter[fm]=3.64223 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 468 projectile=Bc+ Ekin[MeV]=15689.1 direction=(0.518401,0.706729,0.481451) material=G4_W - --> #secondaries=38 impactParameter[fm]=3.65942 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 469 projectile=anti_lambda_b Ekin[MeV]=26736.7 direction=(0.347629,0.930905,0.112116) material=G4_Fe - --> #secondaries=22 impactParameter[fm]=2.62702 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 470 projectile=xi- Ekin[MeV]=3890.81 direction=(0.996882,0.0177631,0.0768769) material=G4_Cu + Collision 412 projectile=xi- Ekin[MeV]=29692 direction=(0.746268,0.36279,0.558092) material=G4_Ar + --> #secondaries=22 impactParameter[fm]=2.59204 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 413 projectile=doublehyperH4 Ekin[MeV]=16476.5 direction=(0.992336,0.0120967,0.122976) material=G4_Be + --> #secondaries=17 impactParameter[fm]=2.20725 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 414 projectile=Ds+ Ekin[MeV]=6821.84 direction=(0.67526,0.1991,0.710199) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.62837 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 415 projectile=anti_sigma+ Ekin[MeV]=14579.2 direction=(0.37267,0.91561,0.150915) material=G4_Si + --> #secondaries=29 impactParameter[fm]=0.693774 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 416 projectile=sigma+ Ekin[MeV]=23904.6 direction=(0.312699,0.939626,0.139001) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=4.35054 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 417 projectile=anti_D0 Ekin[MeV]=27442.9 direction=(0.634279,0.671179,0.383679) material=G4_Cu + --> #secondaries=30 impactParameter[fm]=4.03293 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 418 projectile=Bs0 Ekin[MeV]=23417.7 direction=(0.132026,0.83066,0.5409) material=G4_W + --> #secondaries=64 impactParameter[fm]=3.87531 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=2 + Collision 419 projectile=omega- Ekin[MeV]=10007.7 direction=(0.302115,0.338061,0.891314) material=G4_C + --> #secondaries=12 impactParameter[fm]=2.64514 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 420 projectile=xi_b- Ekin[MeV]=26418.5 direction=(0.517294,0.480545,0.708155) material=G4_C + --> #secondaries=17 impactParameter[fm]=1.514 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 421 projectile=doublehyperH4 Ekin[MeV]=26176.9 direction=(0.516112,0.469636,0.716289) material=G4_He + --> #secondaries=14 impactParameter[fm]=1.98669 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=4 + Collision 422 projectile=anti_hyperH4 Ekin[MeV]=16500.2 direction=(0.635061,0.450506,0.627489) material=G4_Si + --> #secondaries=40 impactParameter[fm]=2.61526 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=4 + Collision 423 projectile=anti_hyperalpha Ekin[MeV]=23632.5 direction=(0.690624,0.722992,0.0179192) material=G4_He + --> #secondaries=18 impactParameter[fm]=1.31258 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=2 #NNcollisions=5 + Collision 424 projectile=anti_xi_b- Ekin[MeV]=3150.41 direction=(0.643381,0.712133,0.28094) material=G4_Fe + --> #secondaries=5 impactParameter[fm]=3.0483 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 425 projectile=anti_hyperHe5 Ekin[MeV]=4529.36 direction=(0.343785,0.751847,0.562617) material=G4_Be + --> #secondaries=9 impactParameter[fm]=5.4164 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 426 projectile=anti_omega- Ekin[MeV]=11272.3 direction=(0.525432,0.460433,0.715488) material=G4_Pb + --> #secondaries=72 impactParameter[fm]=4.82397 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 427 projectile=kaon0S Ekin[MeV]=7483.15 direction=(0.187183,0.0699275,0.979833) material=G4_Ar + --> #secondaries=20 impactParameter[fm]=3.57765 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 + Collision 428 projectile=doublehyperH4 Ekin[MeV]=28936.5 direction=(0.202431,0.736958,0.644914) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.01591 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 429 projectile=anti_neutron Ekin[MeV]=5678.36 direction=(0.581676,0.42887,0.691175) material=G4_Pb + --> #secondaries=25 impactParameter[fm]=8.21564 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 430 projectile=triton Ekin[MeV]=1045.6 direction=(0.421976,0.698385,0.578096) material=G4_C + --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 431 projectile=anti_omega- Ekin[MeV]=2478.09 direction=(0.465659,0.884924,0.0084176) material=G4_Be + --> #secondaries=6 impactParameter[fm]=1.61633 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 432 projectile=sigma+ Ekin[MeV]=25666.2 direction=(0.318159,0.9375,0.140954) material=G4_C + --> #secondaries=14 impactParameter[fm]=2.53043 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 433 projectile=Ds- Ekin[MeV]=24302.8 direction=(0.773445,0.507997,0.379106) material=G4_Fe + --> #secondaries=24 impactParameter[fm]=4.59271 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 434 projectile=anti_alpha Ekin[MeV]=27762.7 direction=(0.485157,0.843259,0.231379) material=G4_Al + --> #secondaries=43 impactParameter[fm]=3.69633 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=7 + Collision 435 projectile=doublehyperdoubleneutron Ekin[MeV]=14134.6 direction=(0.730941,0.0761804,0.678176) material=G4_Ar + --> #secondaries=34 impactParameter[fm]=2.88122 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=32 #NNcollisions=5 + Collision 436 projectile=Ds+ Ekin[MeV]=13387.3 direction=(0.646264,0.653955,0.393301) material=G4_W + --> #secondaries=13 impactParameter[fm]=7.82412 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 437 projectile=Bc- Ekin[MeV]=5733.65 direction=(0.841038,0.507737,0.186704) material=G4_Ar + --> #secondaries=11 impactParameter[fm]=2.27845 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 438 projectile=doublehyperdoubleneutron Ekin[MeV]=22475.6 direction=(0.0502524,0.61528,0.786705) material=G4_Be + --> #secondaries=24 impactParameter[fm]=0.446879 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=4 + Collision 439 projectile=Ds+ Ekin[MeV]=22139.4 direction=(0.390252,0.661196,0.640721) material=G4_W + --> #secondaries=57 impactParameter[fm]=3.1272 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=2 + Collision 440 projectile=alpha Ekin[MeV]=8538.96 direction=(0.0368621,0.596077,0.802081) material=G4_Ar + --> #secondaries=17 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 441 projectile=anti_doublehyperH4 Ekin[MeV]=6731.66 direction=(0.200059,0.95282,0.228279) material=G4_C + --> #secondaries=22 impactParameter[fm]=2.81928 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=2 + Collision 442 projectile=xi_b- Ekin[MeV]=20018.4 direction=(0.0231508,0.988429,0.149906) material=G4_Cu + --> #secondaries=18 impactParameter[fm]=3.57863 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=0 + Collision 443 projectile=pi- Ekin[MeV]=22592.7 direction=(0.798032,0.486683,0.355366) material=G4_Al + --> #secondaries=27 impactParameter[fm]=1.85262 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 444 projectile=anti_xi- Ekin[MeV]=27840.9 direction=(0.390156,0.787298,0.477431) material=G4_Pb + --> #secondaries=35 impactParameter[fm]=5.90946 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 445 projectile=anti_hyperalpha Ekin[MeV]=26822 direction=(0.865572,0.451389,0.21687) material=G4_He + --> #secondaries=8 impactParameter[fm]=2.95704 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 446 projectile=Ds- Ekin[MeV]=7828.98 direction=(0.214426,0.861283,0.460666) material=G4_Ar + --> #secondaries=5 impactParameter[fm]=2.90281 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 447 projectile=B0 Ekin[MeV]=1517.3 direction=(0.442921,0.832376,0.333124) material=G4_Si + --> #secondaries=6 impactParameter[fm]=3.20501 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 448 projectile=hypertriton Ekin[MeV]=27236.3 direction=(0.0456909,0.674576,0.73679) material=G4_Cu + --> #secondaries=80 impactParameter[fm]=0.666194 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=49 #NNcollisions=12 + Collision 449 projectile=anti_omega- Ekin[MeV]=4273.97 direction=(0.781191,0.0437838,0.622755) material=G4_C + --> #secondaries=14 impactParameter[fm]=0.92051 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 450 projectile=anti_doublehyperH4 Ekin[MeV]=23290.1 direction=(0.682245,0.650631,0.333498) material=G4_Si + --> #secondaries=42 impactParameter[fm]=4.08004 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=4 + Collision 451 projectile=anti_neutron Ekin[MeV]=15774.8 direction=(0.815735,0.557631,0.153701) material=G4_W + --> #secondaries=22 impactParameter[fm]=6.6617 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 452 projectile=lambda Ekin[MeV]=1598.57 direction=(0.633757,0.027116,0.773057) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 453 projectile=kaon0L Ekin[MeV]=15766.6 direction=(0.257598,0.964294,0.0614855) material=G4_H + --> #secondaries=10 impactParameter[fm]=0.247022 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 454 projectile=anti_He3 Ekin[MeV]=20802.3 direction=(0.613626,0.63564,0.468428) material=G4_He + --> #secondaries=13 impactParameter[fm]=1.24579 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=3 + Collision 455 projectile=anti_D0 Ekin[MeV]=7654.17 direction=(0.65395,0.321189,0.684973) material=G4_Pb + --> #secondaries=82 impactParameter[fm]=2.02896 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=201 #NNcollisions=5 + Collision 456 projectile=xi_c+ Ekin[MeV]=7590.25 direction=(0.910617,0.307307,0.276296) material=G4_Be + --> #secondaries=6 impactParameter[fm]=0.435766 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 457 projectile=anti_omega- Ekin[MeV]=19102.7 direction=(0.608982,0.721038,0.330522) material=G4_Cu + --> #secondaries=20 impactParameter[fm]=4.1985 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=0 + Collision 458 projectile=anti_xi- Ekin[MeV]=9844.85 direction=(0.920666,0.306998,0.241092) material=G4_W + --> #secondaries=53 impactParameter[fm]=6.4875 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=2 + Collision 459 projectile=anti_xi_b0 Ekin[MeV]=6036.65 direction=(0.819163,0.361131,0.445596) material=G4_Al + --> #secondaries=7 impactParameter[fm]=3.31488 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 460 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=19425.5 direction=(0.524929,0.330377,0.784411) material=G4_Pb + --> #secondaries=115 impactParameter[fm]=3.96702 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=4 + Collision 461 projectile=kaon- Ekin[MeV]=7890.7 direction=(0.533814,0.2648,0.803071) material=G4_W + --> #secondaries=34 impactParameter[fm]=5.73893 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=3 + Collision 462 projectile=Bc- Ekin[MeV]=8074.47 direction=(0.493516,0.599852,0.629777) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.2016 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 463 projectile=anti_omega_c0 Ekin[MeV]=12281.1 direction=(0.755598,0.638318,0.147043) material=G4_Fe + --> #secondaries=24 impactParameter[fm]=2.85906 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 464 projectile=doublehyperdoubleneutron Ekin[MeV]=20183.2 direction=(0.496473,0.549628,0.671881) material=G4_W + --> #secondaries=93 impactParameter[fm]=5.01675 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=171 #NNcollisions=5 + Collision 465 projectile=anti_xi_b- Ekin[MeV]=10782.2 direction=(0.623272,0.743124,0.243513) material=G4_C + --> #secondaries=12 impactParameter[fm]=2.60353 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=2 + Collision 466 projectile=Ds- Ekin[MeV]=22045.4 direction=(0.686782,0.588148,0.427097) material=G4_Ar + --> #secondaries=6 impactParameter[fm]=2.64802 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 467 projectile=anti_triton Ekin[MeV]=17077.3 direction=(0.81392,0.0730131,0.576371) material=G4_H + --> #secondaries=9 impactParameter[fm]=3.77904 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 468 projectile=Bs0 Ekin[MeV]=12188.6 direction=(0.725989,0.0132908,0.687578) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=1.96965 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=3 + Collision 469 projectile=anti_He3 Ekin[MeV]=29436.2 direction=(0.625642,0.743251,0.23696) material=G4_W + --> #secondaries=46 impactParameter[fm]=7.78776 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=182 #NNcollisions=2 + Collision 470 projectile=anti_triton Ekin[MeV]=23758.2 direction=(0.0564037,0.97532,0.213472) material=G4_W + --> #secondaries=155 impactParameter[fm]=2.51576 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=4 + Collision 471 projectile=D+ Ekin[MeV]=26094.6 direction=(0.055378,0.332308,0.941544) material=G4_Cu + --> #secondaries=15 impactParameter[fm]=4.18095 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 472 projectile=lambda_b Ekin[MeV]=22980.6 direction=(0.37124,0.258961,0.891695) material=G4_He + --> #secondaries=13 impactParameter[fm]=0.894534 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=3 + Collision 473 projectile=anti_proton Ekin[MeV]=12380.9 direction=(0.628971,0.487577,0.605528) material=G4_Si + --> #secondaries=22 impactParameter[fm]=2.59473 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=28 #NNcollisions=1 + Collision 474 projectile=Ds- Ekin[MeV]=23680.8 direction=(0.561568,0.807275,0.181516) material=G4_Cu + --> #secondaries=48 impactParameter[fm]=1.91412 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=3 + Collision 475 projectile=anti_xi_c0 Ekin[MeV]=5689.77 direction=(0.832702,0.335993,0.440132) material=G4_Fe + --> #secondaries=7 impactParameter[fm]=5.6831 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 476 projectile=D0 Ekin[MeV]=21886.3 direction=(0.857665,0.294103,0.421798) material=G4_Cu + --> #secondaries=22 impactParameter[fm]=4.69266 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 477 projectile=pi- Ekin[MeV]=17674.1 direction=(0.439147,0.817394,0.372851) material=G4_W + --> #secondaries=56 impactParameter[fm]=3.93435 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=178 #NNcollisions=3 + Collision 478 projectile=anti_hyperalpha Ekin[MeV]=29403.2 direction=(0.98098,0.190482,0.0373377) material=G4_Ar + --> #secondaries=26 impactParameter[fm]=4.0374 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=39 #NNcollisions=2 + Collision 479 projectile=anti_sigma- Ekin[MeV]=29565.3 direction=(0.355535,0.645191,0.676256) material=G4_Pb + --> #secondaries=56 impactParameter[fm]=5.76277 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=3 + Collision 480 projectile=anti_lambda_c+ Ekin[MeV]=24812.3 direction=(0.696544,0.709603,0.106254) material=G4_H + --> #secondaries=7 impactParameter[fm]=0.775951 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 481 projectile=lambda_b Ekin[MeV]=3363 direction=(0.0875697,0.492256,0.866034) material=G4_Al + --> #secondaries=9 impactParameter[fm]=4.58728 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 482 projectile=kaon- Ekin[MeV]=10590.9 direction=(0.913313,0.286979,0.288966) material=G4_Ar + --> #secondaries=5 impactParameter[fm]=2.35881 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 483 projectile=xi_b0 Ekin[MeV]=7932.5 direction=(0.379722,0.539478,0.751515) material=G4_Cu + --> #secondaries=10 impactParameter[fm]=3.84923 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 484 projectile=anti_D0 Ekin[MeV]=24028.6 direction=(0.0255979,0.822949,0.567538) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=1.05806 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 485 projectile=xi- Ekin[MeV]=22315.6 direction=(0.019557,0.115044,0.993168) material=G4_Be + --> #secondaries=6 impactParameter[fm]=1.30752 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 486 projectile=sigma+ Ekin[MeV]=23387 direction=(0.736985,0.664136,0.125604) material=G4_Fe + --> #secondaries=20 impactParameter[fm]=5.42858 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 487 projectile=anti_proton Ekin[MeV]=16902.1 direction=(0.276569,0.6697,0.689211) material=G4_Fe + --> #secondaries=26 impactParameter[fm]=5.40128 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 488 projectile=xi_b- Ekin[MeV]=27809.7 direction=(0.828926,0.535172,0.162705) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.80614 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 489 projectile=anti_hyperHe5 Ekin[MeV]=24486.9 direction=(0.835426,0.546088,0.0620487) material=G4_Be + --> #secondaries=13 impactParameter[fm]=2.75125 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 490 projectile=anti_omega_c0 Ekin[MeV]=12426.6 direction=(0.548833,0.507429,0.664303) material=G4_Al + --> #secondaries=11 impactParameter[fm]=2.00749 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 491 projectile=kaon+ Ekin[MeV]=23081.9 direction=(0.875877,0.456078,0.157583) material=G4_He + --> #secondaries=6 impactParameter[fm]=1.27584 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 492 projectile=xi_b- Ekin[MeV]=6436.56 direction=(0.514167,0.437396,0.737779) material=G4_H + --> #secondaries=4 impactParameter[fm]=1.34976 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 493 projectile=anti_xi_c0 Ekin[MeV]=3624.51 direction=(0.629863,0.353492,0.691604) material=G4_W + --> #secondaries=44 impactParameter[fm]=4.08218 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=0 + Collision 494 projectile=anti_hyperHe5 Ekin[MeV]=20618.5 direction=(0.0268127,0.71033,0.703358) material=G4_Fe + --> #secondaries=80 impactParameter[fm]=1.6043 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=50 #NNcollisions=6 + Collision 495 projectile=anti_xi_c0 Ekin[MeV]=13996.5 direction=(0.505534,0.336658,0.794416) material=G4_Cu + --> #secondaries=39 impactParameter[fm]=3.39363 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=1 + Collision 496 projectile=lambda_c+ Ekin[MeV]=4873.48 direction=(0.421794,0.354642,0.834457) material=G4_Be + --> #secondaries=5 impactParameter[fm]=2.48928 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 497 projectile=D- Ekin[MeV]=9387.13 direction=(0.471777,0.331082,0.817197) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=2.72043 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 + Collision 498 projectile=doublehyperH4 Ekin[MeV]=10098.8 direction=(0.288794,0.0490041,0.956136) material=G4_C + --> #secondaries=16 impactParameter[fm]=1.07684 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=2 + Collision 499 projectile=xi_b0 Ekin[MeV]=22109.2 direction=(0.864156,0.331544,0.378567) material=G4_Fe + --> #secondaries=14 impactParameter[fm]=4.56719 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 500 projectile=He3 Ekin[MeV]=12292.9 direction=(0.780574,0.357013,0.513075) material=G4_Be --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 471 projectile=anti_deuteron Ekin[MeV]=5030.18 direction=(0.742294,0.121428,0.65898) material=G4_Al - --> #secondaries=13 impactParameter[fm]=5.46725 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 472 projectile=xi_b- Ekin[MeV]=9247.02 direction=(0.73492,0.676001,0.0539965) material=G4_C - --> #secondaries=6 impactParameter[fm]=2.95206 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 473 projectile=anti_B0 Ekin[MeV]=18034.1 direction=(0.885416,0.354969,0.300058) material=G4_He - --> #secondaries=4 impactParameter[fm]=0.962741 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 474 projectile=anti_xi_c+ Ekin[MeV]=24873.8 direction=(0.867007,0.465082,0.178881) material=G4_C - --> #secondaries=13 impactParameter[fm]=1.92519 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 475 projectile=hypertriton Ekin[MeV]=17919.4 direction=(0.653939,0.742254,0.146364) material=G4_Be - --> #secondaries=19 impactParameter[fm]=2.38277 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=6 #NNcollisions=4 - Collision 476 projectile=anti_alpha Ekin[MeV]=9179.74 direction=(0.69932,0.221393,0.679659) material=G4_Si - --> #secondaries=26 impactParameter[fm]=5.15381 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=28 #NNcollisions=2 - Collision 477 projectile=anti_lambda_c+ Ekin[MeV]=23941.7 direction=(0.642463,0.407509,0.648982) material=G4_Al - --> #secondaries=30 impactParameter[fm]=1.98252 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=2 - Collision 478 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=4350.09 direction=(0.552723,0.555625,0.62111) material=G4_C - --> #secondaries=23 impactParameter[fm]=2.03142 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=7 #NNcollisions=4 - Collision 479 projectile=B0 Ekin[MeV]=21751.5 direction=(0.775137,0.396027,0.492266) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=2.16194 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 480 projectile=anti_neutron Ekin[MeV]=24921.8 direction=(0.858552,0.497389,0.124472) material=G4_H - --> #secondaries=8 impactParameter[fm]=1.56158 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 481 projectile=omega- Ekin[MeV]=6137.32 direction=(0.944989,0.27798,0.172404) material=G4_Pb - --> #secondaries=36 impactParameter[fm]=6.13519 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=0 - Collision 482 projectile=Bc- Ekin[MeV]=10018.6 direction=(0.820303,0.562909,0.101176) material=G4_Ar - --> #secondaries=10 impactParameter[fm]=1.00213 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 483 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=10250.1 direction=(0.0126407,0.16338,0.986482) material=G4_C - --> #secondaries=13 impactParameter[fm]=3.40554 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 484 projectile=pi+ Ekin[MeV]=14663.6 direction=(0.631955,0.680665,0.370579) material=G4_Be - --> #secondaries=14 impactParameter[fm]=1.26965 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 485 projectile=omega_b- Ekin[MeV]=9768.29 direction=(0.200277,0.63723,0.744195) material=G4_Be - --> #secondaries=7 impactParameter[fm]=1.71764 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 486 projectile=hypertriton Ekin[MeV]=24088.3 direction=(0.138315,0.283076,0.949072) material=G4_Ar - --> #secondaries=52 impactParameter[fm]=1.34525 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=28 #NNcollisions=13 - Collision 487 projectile=kaon0S Ekin[MeV]=14733.3 direction=(0.727847,0.300642,0.616322) material=G4_Pb - --> #secondaries=47 impactParameter[fm]=5.44761 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 488 projectile=anti_hyperH4 Ekin[MeV]=28676.4 direction=(0.47104,0.755986,0.454541) material=G4_W - --> #secondaries=105 impactParameter[fm]=4.40942 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=9 - Collision 489 projectile=anti_alpha Ekin[MeV]=26069 direction=(0.761301,0.418328,0.495401) material=G4_Si - --> #secondaries=13 impactParameter[fm]=4.086 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 490 projectile=kaon0S Ekin[MeV]=12514.3 direction=(0.597637,0.272549,0.75402) material=G4_Cu - --> #secondaries=12 impactParameter[fm]=5.07806 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 491 projectile=anti_alpha Ekin[MeV]=9190.77 direction=(0.262233,0.808538,0.526783) material=G4_He - --> #secondaries=10 impactParameter[fm]=2.22422 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=2 - Collision 492 projectile=anti_xi0 Ekin[MeV]=18007.5 direction=(0.245454,0.907469,0.340958) material=G4_C - --> #secondaries=14 impactParameter[fm]=2.84486 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 493 projectile=anti_xi_c+ Ekin[MeV]=1313.28 direction=(0.626861,0.37582,0.682499) material=G4_C - --> #secondaries=7 impactParameter[fm]=0.729755 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=0 - Collision 494 projectile=anti_proton Ekin[MeV]=3739.09 direction=(0.249622,0.834719,0.490848) material=G4_Al - --> #secondaries=19 impactParameter[fm]=2.64282 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 495 projectile=anti_omega- Ekin[MeV]=25753 direction=(0.206123,0.72114,0.661415) material=G4_Al - --> #secondaries=23 impactParameter[fm]=3.34644 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 496 projectile=lambda_b Ekin[MeV]=12690.9 direction=(0.574738,0.521981,0.630248) material=G4_Fe - --> #secondaries=22 impactParameter[fm]=1.72624 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=0 - Collision 497 projectile=anti_xi0 Ekin[MeV]=18718.7 direction=(0.182191,0.735812,0.652217) material=G4_Al - --> #secondaries=31 impactParameter[fm]=2.52522 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 498 projectile=anti_omega_b- Ekin[MeV]=28713.9 direction=(0.0048431,0.992356,0.123311) material=G4_Pb - --> #secondaries=27 impactParameter[fm]=7.66378 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=0 - Collision 499 projectile=hyperHe5 Ekin[MeV]=11861.4 direction=(0.932154,0.361289,0.0236632) material=G4_Be - --> #secondaries=9 impactParameter[fm]=3.31905 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 500 projectile=triton Ekin[MeV]=18969.7 direction=(0.72388,0.06759,0.686607) material=G4_Ar - --> #secondaries=7 impactParameter[fm]=4.63635 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=39 #NNcollisions=1 List of produced secondaries: - j=0 proton p=(5101.23,858.653,5033.647278.57) MeV - j=1 neutron p=(5610.11,291.875,4836.767472.32) MeV - j=2 neutron p=(-192.067,-85.7859,-57.8256964.56) MeV - j=3 Cl38 p=(194.019,-30.6135,142.09135359.1) MeV - j=4 neutron p=(-22.9288,-11.0049,59.4078941.785) MeV - j=5 gamma p=(-0.0386295,-0.0323081,-0.2344150.239763) MeV - j=6 proton p=(4943.11,436.63,4814.626977.52) MeV - Collision 501 projectile=B- Ekin[MeV]=20933.1 direction=(0.16124,0.850241,0.501091) material=G4_C - --> #secondaries=8 impactParameter[fm]=2.16281 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 502 projectile=omega- Ekin[MeV]=29957.2 direction=(0.590703,0.610895,0.527141) material=G4_Si - --> #secondaries=19 impactParameter[fm]=1.24184 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 503 projectile=anti_doublehyperH4 Ekin[MeV]=19192.6 direction=(0.68838,0.150615,0.709541) material=G4_Ar - --> #secondaries=24 impactParameter[fm]=4.8343 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 - Collision 504 projectile=B0 Ekin[MeV]=10626.3 direction=(0.254771,0.665558,0.701516) material=G4_Be - --> #secondaries=6 impactParameter[fm]=0.658355 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 505 projectile=lambda_b Ekin[MeV]=1589.22 direction=(0.848538,0.270605,0.454704) material=G4_Ar - --> #secondaries=10 impactParameter[fm]=3.33324 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 506 projectile=xi0 Ekin[MeV]=27615.6 direction=(0.756779,0.539655,0.36886) material=G4_C - --> #secondaries=19 impactParameter[fm]=1.65132 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 507 projectile=proton Ekin[MeV]=14022.5 direction=(0.83855,0.214904,0.50065) material=G4_Al - --> #secondaries=25 impactParameter[fm]=2.41601 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 508 projectile=anti_sigma- Ekin[MeV]=5684.97 direction=(0.680516,0.404477,0.61098) material=G4_Be - --> #secondaries=5 impactParameter[fm]=2.23544 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 509 projectile=B+ Ekin[MeV]=21963.1 direction=(0.537783,0.498241,0.680107) material=G4_Cu - --> #secondaries=13 impactParameter[fm]=2.44734 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=1 - Collision 510 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=8949.35 direction=(0.242777,0.274143,0.93054) material=G4_Ar - --> #secondaries=43 impactParameter[fm]=2.80647 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=4 - Collision 511 projectile=neutron Ekin[MeV]=24501.6 direction=(0.514113,0.838241,0.181769) material=G4_Be - --> #secondaries=14 impactParameter[fm]=1.54018 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=3 - Collision 512 projectile=doublehyperH4 Ekin[MeV]=20619.3 direction=(0.278626,0.0593353,0.958565) material=G4_Al - --> #secondaries=27 impactParameter[fm]=2.88093 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=5 - Collision 513 projectile=anti_xi0 Ekin[MeV]=29975.1 direction=(0.0796224,0.717122,0.692384) material=G4_W - --> #secondaries=50 impactParameter[fm]=6.39794 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 - Collision 514 projectile=anti_hyperHe5 Ekin[MeV]=15855.3 direction=(0.869489,0.331116,0.366539) material=G4_Cu - --> #secondaries=25 impactParameter[fm]=5.37758 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=61 #NNcollisions=1 - Collision 515 projectile=anti_omega_b- Ekin[MeV]=16331.7 direction=(0.668714,0.362401,0.649221) material=G4_W - --> #secondaries=51 impactParameter[fm]=3.49365 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=3 - Collision 516 projectile=doublehyperdoubleneutron Ekin[MeV]=2990.47 direction=(0.667704,0.560879,0.489475) material=G4_Al - --> #secondaries=16 impactParameter[fm]=2.78735 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=0 - Collision 517 projectile=hyperalpha Ekin[MeV]=10011.8 direction=(0.660711,0.409816,0.628897) material=G4_Si - --> #secondaries=25 impactParameter[fm]=3.22049 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=25 #NNcollisions=4 - Collision 518 projectile=omega_c0 Ekin[MeV]=26570 direction=(0.475327,0.496006,0.726665) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=2.34917 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 519 projectile=anti_xi_b0 Ekin[MeV]=14049.2 direction=(0.36824,0.684045,0.629668) material=G4_Ar - --> #secondaries=22 impactParameter[fm]=1.52102 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 520 projectile=anti_omega- Ekin[MeV]=4111.16 direction=(0.581246,0.28826,0.76096) material=G4_He - --> #secondaries=8 impactParameter[fm]=1.36793 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 521 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=8763.08 direction=(0.386787,0.366614,0.846162) material=G4_Fe - --> #secondaries=48 impactParameter[fm]=3.22515 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=2 - Collision 522 projectile=sigma+ Ekin[MeV]=12021 direction=(0.903674,0.206949,0.374893) material=G4_W - --> #secondaries=67 impactParameter[fm]=4.80122 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=3 - Collision 523 projectile=omega_b- Ekin[MeV]=22746.5 direction=(0.50396,0.816525,0.281622) material=G4_C - --> #secondaries=11 impactParameter[fm]=1.34266 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 524 projectile=Bc+ Ekin[MeV]=11869.8 direction=(0.533014,0.683983,0.49806) material=G4_He - --> #secondaries=8 impactParameter[fm]=0.759356 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 525 projectile=anti_xi0 Ekin[MeV]=26385.2 direction=(0.587389,0.0684711,0.806403) material=G4_He - --> #secondaries=7 impactParameter[fm]=1.3008 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=1 - Collision 526 projectile=alpha Ekin[MeV]=28975.4 direction=(0.44918,0.677868,0.582007) material=G4_H - --> #secondaries=6 impactParameter[fm]=2.2313 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 527 projectile=deuteron Ekin[MeV]=19876 direction=(0.251063,0.676864,0.69197) material=G4_C - --> #secondaries=16 impactParameter[fm]=3.18403 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 528 projectile=Ds+ Ekin[MeV]=10668.1 direction=(0.660422,0.666148,0.346541) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=3.02066 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 529 projectile=D0 Ekin[MeV]=22575.9 direction=(0.986315,0.0387715,0.160246) material=G4_W - --> #secondaries=22 impactParameter[fm]=6.56267 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 530 projectile=He3 Ekin[MeV]=12466.5 direction=(0.710567,0.560617,0.42521) material=G4_Fe + j=0 proton p=(2850.61,1285.73,1873.823764.39) MeV + j=1 pi- p=(-89.4555,175.686,-46.1975245.93) MeV + j=2 neutron p=(701.434,359.319,575.141354.51) MeV + j=3 pi+ p=(246.225,-235.52,30.8581369.498) MeV + j=4 alpha p=(-21.4261,120.345,-64.55583729.94) MeV + j=5 alpha p=(-10.4031,-16.9626,52.61663727.8) MeV + j=6 proton p=(4593.81,2154.76,2906.595922.39) MeV + j=7 neutron p=(3311.29,1453.96,2284.684379.63) MeV + Collision 501 projectile=anti_hyperHe5 Ekin[MeV]=27331.4 direction=(0.189389,0.361555,0.912913) material=G4_Be + --> #secondaries=11 impactParameter[fm]=4.94147 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 502 projectile=lambda_c+ Ekin[MeV]=15861 direction=(0.192984,0.705133,0.682308) material=G4_Fe + --> #secondaries=32 impactParameter[fm]=3.97561 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 503 projectile=anti_hyperHe5 Ekin[MeV]=9881.57 direction=(0.712007,0.0225296,0.701811) material=G4_Al + --> #secondaries=9 impactParameter[fm]=5.92419 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 504 projectile=xi_b- Ekin[MeV]=4791.95 direction=(0.236178,0.970809,0.0418276) material=G4_C + --> #secondaries=9 impactParameter[fm]=2.32385 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 505 projectile=xi_c+ Ekin[MeV]=11519 direction=(0.320063,0.35717,0.87749) material=G4_Al + --> #secondaries=26 impactParameter[fm]=1.85609 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 506 projectile=proton Ekin[MeV]=1760.64 direction=(0.111203,0.379151,0.918629) material=G4_Cu + --> #secondaries=23 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 507 projectile=omega_c0 Ekin[MeV]=14053.1 direction=(0.198454,0.693283,0.692802) material=G4_Be + --> #secondaries=13 impactParameter[fm]=0.458449 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 508 projectile=xi0 Ekin[MeV]=5657.05 direction=(0.698894,0.147695,0.699809) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.03081 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 509 projectile=anti_lambda_b Ekin[MeV]=18990.9 direction=(0.525912,0.849797,0.0355301) material=G4_Pb + --> #secondaries=86 impactParameter[fm]=4.0292 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=199 #NNcollisions=6 + Collision 510 projectile=D0 Ekin[MeV]=17853.1 direction=(0.622567,0.0473724,0.781131) material=G4_He + --> #secondaries=11 impactParameter[fm]=1.38325 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 511 projectile=neutron Ekin[MeV]=13666.5 direction=(0.424599,0.72119,0.547357) material=G4_H + --> #secondaries=2 impactParameter[fm]=1.7749 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 512 projectile=anti_lambda_b Ekin[MeV]=1359.84 direction=(0.786041,0.338366,0.517347) material=G4_Pb + --> #secondaries=33 impactParameter[fm]=6.37415 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=0 + Collision 513 projectile=anti_sigma- Ekin[MeV]=13285.5 direction=(0.103079,0.0411874,0.99382) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.95636 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 514 projectile=anti_neutron Ekin[MeV]=15485.4 direction=(0.57942,0.427521,0.693901) material=G4_Be + --> #secondaries=5 impactParameter[fm]=3.59535 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 515 projectile=B- Ekin[MeV]=6098.63 direction=(0.484759,0.449031,0.750586) material=G4_Al + --> #secondaries=8 impactParameter[fm]=1.40735 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 516 projectile=anti_xi_c+ Ekin[MeV]=8926.95 direction=(0.513377,0.0541029,0.856456) material=G4_Si + --> #secondaries=13 impactParameter[fm]=3.48542 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 517 projectile=xi_b0 Ekin[MeV]=22236.8 direction=(0.814296,0.384778,0.43459) material=G4_Al + --> #secondaries=8 impactParameter[fm]=3.96225 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 518 projectile=alpha Ekin[MeV]=17389.5 direction=(0.735146,0.467509,0.490913) material=G4_Pb + --> #secondaries=58 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 519 projectile=anti_deuteron Ekin[MeV]=8725.77 direction=(0.687521,0.275898,0.671711) material=G4_C + --> #secondaries=23 impactParameter[fm]=0.56388 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=2 + Collision 520 projectile=hyperHe5 Ekin[MeV]=24362.8 direction=(0.633244,0.246793,0.73355) material=G4_Al + --> #secondaries=11 impactParameter[fm]=3.542 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 521 projectile=anti_alpha Ekin[MeV]=29814.6 direction=(0.510546,0.350801,0.785036) material=G4_C + --> #secondaries=11 impactParameter[fm]=2.62736 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 522 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=28935.1 direction=(0.918218,0.263017,0.296138) material=G4_Fe + --> #secondaries=47 impactParameter[fm]=3.7419 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=5 + Collision 523 projectile=xi_c0 Ekin[MeV]=21795.9 direction=(0.86567,0.496938,0.060573) material=G4_H + --> #secondaries=8 impactParameter[fm]=0.162472 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 524 projectile=Ds+ Ekin[MeV]=22504.9 direction=(0.0649785,0.703088,0.708128) material=G4_Cu + --> #secondaries=33 impactParameter[fm]=3.24085 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 + Collision 525 projectile=anti_lambda_c+ Ekin[MeV]=6729.85 direction=(0.127529,0.618062,0.775716) material=G4_H + --> #secondaries=4 impactParameter[fm]=2.17965 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 526 projectile=kaon- Ekin[MeV]=8916.95 direction=(0.192354,0.981287,0.00868738) material=G4_C + --> #secondaries=13 impactParameter[fm]=1.99878 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=2 + Collision 527 projectile=Bc+ Ekin[MeV]=17388.9 direction=(0.46205,0.196852,0.864731) material=G4_Be + --> #secondaries=7 impactParameter[fm]=1.4149 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 528 projectile=xi_b0 Ekin[MeV]=20436.3 direction=(0.542161,0.614014,0.573627) material=G4_Cu + --> #secondaries=43 impactParameter[fm]=1.32389 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=57 #NNcollisions=3 + Collision 529 projectile=anti_sigma+ Ekin[MeV]=27034.1 direction=(0.493885,0.853246,0.167477) material=G4_Fe + --> #secondaries=20 impactParameter[fm]=3.2033 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 530 projectile=xi- Ekin[MeV]=4407.54 direction=(0.207512,0.907054,0.366323) material=G4_Al + --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 531 projectile=anti_xi0 Ekin[MeV]=28975.6 direction=(0.774929,0.532636,0.34027) material=G4_Fe + --> #secondaries=48 impactParameter[fm]=3.54551 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=3 + Collision 532 projectile=kaon0S Ekin[MeV]=20947.7 direction=(0.273374,0.371018,0.887475) material=G4_Pb + --> #secondaries=71 impactParameter[fm]=1.59811 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 533 projectile=D+ Ekin[MeV]=16985.1 direction=(0.292798,0.874891,0.385792) material=G4_W + --> #secondaries=17 impactParameter[fm]=5.59429 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=185 #NNcollisions=1 + Collision 534 projectile=anti_He3 Ekin[MeV]=11013.1 direction=(0.538004,0.340515,0.771104) material=G4_W + --> #secondaries=29 impactParameter[fm]=8.01718 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 535 projectile=kaon0S Ekin[MeV]=5705.73 direction=(0.702368,0.090639,0.70602) material=G4_C + --> #secondaries=16 impactParameter[fm]=0.10703 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 536 projectile=anti_xi_c0 Ekin[MeV]=15214.3 direction=(0.264906,0.959547,0.0953678) material=G4_Be + --> #secondaries=9 impactParameter[fm]=1.70479 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 537 projectile=anti_xi_c0 Ekin[MeV]=5911.42 direction=(0.753535,0.129551,0.644517) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.12018 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 538 projectile=anti_He3 Ekin[MeV]=9493.18 direction=(0.244209,0.740997,0.625528) material=G4_Fe + --> #secondaries=16 impactParameter[fm]=4.88297 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 539 projectile=anti_triton Ekin[MeV]=23414.5 direction=(0.250753,0.591919,0.765999) material=G4_He + --> #secondaries=10 impactParameter[fm]=3.4866 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 540 projectile=Bc- Ekin[MeV]=10847.7 direction=(0.555293,0.607188,0.568307) material=G4_Al + --> #secondaries=10 impactParameter[fm]=3.85928 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 541 projectile=Ds- Ekin[MeV]=7597.02 direction=(0.0358151,0.691908,0.721097) material=G4_C + --> #secondaries=11 impactParameter[fm]=0.190322 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=2 + Collision 542 projectile=anti_lambda_c+ Ekin[MeV]=15402.5 direction=(0.083211,0.616283,0.783116) material=G4_Be + --> #secondaries=14 impactParameter[fm]=0.593001 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 + Collision 543 projectile=xi_c0 Ekin[MeV]=26375.2 direction=(0.516973,0.846812,0.125098) material=G4_Fe + --> #secondaries=10 impactParameter[fm]=4.5283 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 544 projectile=anti_xi0 Ekin[MeV]=8979.72 direction=(0.936996,0.270521,0.221037) material=G4_Fe + --> #secondaries=14 impactParameter[fm]=5.18369 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 545 projectile=D0 Ekin[MeV]=17563.8 direction=(0.0856806,0.641927,0.761964) material=G4_W + --> #secondaries=26 impactParameter[fm]=7.97332 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=185 #NNcollisions=1 + Collision 546 projectile=kaon0L Ekin[MeV]=4995.42 direction=(0.406883,0.676776,0.613531) material=G4_Al + --> #secondaries=17 impactParameter[fm]=2.33836 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 547 projectile=xi_c0 Ekin[MeV]=20966.7 direction=(0.162012,0.947419,0.275953) material=G4_Si + --> #secondaries=15 impactParameter[fm]=4.3088 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 548 projectile=anti_omega_b- Ekin[MeV]=23540.3 direction=(0.344706,0.938523,0.018769) material=G4_Si + --> #secondaries=12 impactParameter[fm]=3.87563 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 549 projectile=anti_xi- Ekin[MeV]=22317.7 direction=(0.795745,0.599897,0.0831422) material=G4_He + --> #secondaries=12 impactParameter[fm]=2.49987 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=1 + Collision 550 projectile=deuteron Ekin[MeV]=4402.79 direction=(0.714253,0.408032,0.568641) material=G4_Ar --> #secondaries=13 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 531 projectile=anti_sigma+ Ekin[MeV]=6943.26 direction=(0.551602,0.200124,0.809744) material=G4_Al - --> #secondaries=26 impactParameter[fm]=1.1208 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=3 - Collision 532 projectile=xi- Ekin[MeV]=17939 direction=(0.957778,0.182972,0.221772) material=G4_Al - --> #secondaries=27 impactParameter[fm]=1.81392 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=22 #NNcollisions=5 - Collision 533 projectile=pi+ Ekin[MeV]=5442.58 direction=(0.46997,0.525991,0.708845) material=G4_Al - --> #secondaries=14 impactParameter[fm]=2.45233 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 534 projectile=anti_hyperH4 Ekin[MeV]=21513.4 direction=(0.0772679,0.600633,0.795782) material=G4_C - --> #secondaries=13 impactParameter[fm]=3.72555 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 535 projectile=sigma+ Ekin[MeV]=8494.08 direction=(0.253573,0.848345,0.46477) material=G4_He - --> #secondaries=7 impactParameter[fm]=1.34853 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 536 projectile=anti_xi_b0 Ekin[MeV]=3607.65 direction=(0.399795,0.765379,0.50434) material=G4_Pb - --> #secondaries=35 impactParameter[fm]=4.4501 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=2 - Collision 537 projectile=anti_omega- Ekin[MeV]=12219.7 direction=(0.534608,0.84487,0.0197024) material=G4_Cu - --> #secondaries=20 impactParameter[fm]=3.54438 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 538 projectile=xi_b0 Ekin[MeV]=7823.45 direction=(0.672641,0.652253,0.349457) material=G4_W - --> #secondaries=27 impactParameter[fm]=2.29967 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=3 - Collision 539 projectile=lambda Ekin[MeV]=5216.29 direction=(0.617883,0.137941,0.774075) material=G4_Cu - --> #secondaries=33 impactParameter[fm]=2.62255 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=3 - Collision 540 projectile=anti_xi_b- Ekin[MeV]=26904.2 direction=(0.680257,0.474299,0.55883) material=G4_Cu - --> #secondaries=22 impactParameter[fm]=3.5323 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=0 - Collision 541 projectile=xi_b- Ekin[MeV]=1419.79 direction=(0.350353,0.186614,0.917839) material=G4_Pb - --> #secondaries=22 impactParameter[fm]=4.94342 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=0 - Collision 542 projectile=anti_triton Ekin[MeV]=15033.7 direction=(0.209501,0.677446,0.705107) material=G4_Si - --> #secondaries=33 impactParameter[fm]=3.6295 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=4 - Collision 543 projectile=kaon- Ekin[MeV]=22121.3 direction=(0.620899,0.740972,0.255824) material=G4_He - --> #secondaries=20 impactParameter[fm]=1.38387 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 544 projectile=omega_b- Ekin[MeV]=15463.4 direction=(0.431253,0.786108,0.442781) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=2.86632 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 545 projectile=xi_c0 Ekin[MeV]=12568.4 direction=(0.335799,0.0417447,0.941008) material=G4_Al - --> #secondaries=30 impactParameter[fm]=0.658077 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=22 #NNcollisions=5 - Collision 546 projectile=anti_hyperalpha Ekin[MeV]=27847.2 direction=(0.659661,0.587156,0.469143) material=G4_Cu - --> #secondaries=15 impactParameter[fm]=5.63148 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 547 projectile=lambda_c+ Ekin[MeV]=23191.5 direction=(0.696559,0.523726,0.490425) material=G4_Al - --> #secondaries=11 impactParameter[fm]=3.68049 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 548 projectile=xi0 Ekin[MeV]=19968.2 direction=(0.631921,0.362592,0.684984) material=G4_W - --> #secondaries=65 impactParameter[fm]=5.1731 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=3 - Collision 549 projectile=anti_hyperalpha Ekin[MeV]=1338.75 direction=(0.15867,0.746765,0.645883) material=G4_He - --> #secondaries=15 impactParameter[fm]=1.62192 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 550 projectile=Ds+ Ekin[MeV]=19778.6 direction=(0.00564924,0.996984,0.0773957) material=G4_Be - --> #secondaries=10 impactParameter[fm]=2.52504 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 551 projectile=alpha Ekin[MeV]=4130.53 direction=(0.463107,0.430525,0.774713) material=G4_Be - --> #secondaries=12 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 552 projectile=triton Ekin[MeV]=14718.9 direction=(0.527382,0.625981,0.57447) material=G4_Cu - --> #secondaries=44 impactParameter[fm]=5.88903 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=61 #NNcollisions=3 - Collision 553 projectile=hypertriton Ekin[MeV]=7625.99 direction=(0.0113107,0.691129,0.722643) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.808426 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=2 - Collision 554 projectile=anti_D0 Ekin[MeV]=17751.7 direction=(0.615924,0.785711,0.0574112) material=G4_Pb - --> #secondaries=74 impactParameter[fm]=0.830259 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 - Collision 555 projectile=kaon- Ekin[MeV]=6977.53 direction=(0.438737,0.864898,0.243847) material=G4_Al - --> #secondaries=13 impactParameter[fm]=3.30418 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 556 projectile=anti_lambda Ekin[MeV]=2791.24 direction=(0.478637,0.514333,0.711596) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.6655 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 557 projectile=D- Ekin[MeV]=19206.2 direction=(0.962133,0.130575,0.239272) material=G4_Si - --> #secondaries=13 impactParameter[fm]=2.31881 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 558 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=24881.2 direction=(0.249039,0.824646,0.507876) material=G4_He - --> #secondaries=9 impactParameter[fm]=3.40776 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=2 #NNcollisions=1 - Collision 559 projectile=anti_lambda_b Ekin[MeV]=29770 direction=(0.695459,0.646828,0.31297) material=G4_H - --> #secondaries=4 impactParameter[fm]=0.36169 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 560 projectile=omega_b- Ekin[MeV]=1537.65 direction=(0.798057,0.262572,0.542366) material=G4_Al - --> #secondaries=17 impactParameter[fm]=2.04807 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=1 - Collision 561 projectile=anti_alpha Ekin[MeV]=24843.1 direction=(0.0503106,0.829089,0.556848) material=G4_Ar - --> #secondaries=24 impactParameter[fm]=4.00791 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=40 #NNcollisions=2 - Collision 562 projectile=lambda_b Ekin[MeV]=12829.4 direction=(0.577443,0.712326,0.398938) material=G4_Pb - --> #secondaries=25 impactParameter[fm]=5.23218 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=1 - Collision 563 projectile=xi_c+ Ekin[MeV]=27909.7 direction=(0.847317,0.213271,0.486383) material=G4_H - --> #secondaries=4 impactParameter[fm]=1.13421 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 564 projectile=sigma- Ekin[MeV]=12356.7 direction=(0.705991,0.513827,0.487399) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.233002 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 565 projectile=hyperH4 Ekin[MeV]=12633.5 direction=(0.61471,0.74167,0.268433) material=G4_C - --> #secondaries=19 impactParameter[fm]=2.21449 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=7 #NNcollisions=4 - Collision 566 projectile=D- Ekin[MeV]=7588 direction=(0.452562,0.637302,0.623726) material=G4_Be - --> #secondaries=5 impactParameter[fm]=0.361754 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 567 projectile=anti_xi0 Ekin[MeV]=3828.36 direction=(0.277084,0.90162,0.332122) material=G4_W - --> #secondaries=34 impactParameter[fm]=6.21645 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=185 #NNcollisions=1 - Collision 568 projectile=kaon- Ekin[MeV]=1786.08 direction=(0.557971,0.0106645,0.829792) material=G4_W - --> #secondaries=60 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 569 projectile=Bs0 Ekin[MeV]=3028.19 direction=(0.117814,0.750157,0.65068) material=G4_Ar - --> #secondaries=7 impactParameter[fm]=0.562043 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 570 projectile=doublehyperdoubleneutron Ekin[MeV]=18918.5 direction=(0.919013,0.29884,0.257117) material=G4_Pb - --> #secondaries=161 impactParameter[fm]=2.4794 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=3 - Collision 571 projectile=pi+ Ekin[MeV]=5692.77 direction=(0.89919,0.435354,0.0438619) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.649362 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 572 projectile=anti_lambda Ekin[MeV]=17611.9 direction=(0.586839,0.505387,0.632616) material=G4_Si - --> #secondaries=39 impactParameter[fm]=0.242601 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 573 projectile=anti_lambda_c+ Ekin[MeV]=16837.8 direction=(0.21966,0.625712,0.748488) material=G4_Pb - --> #secondaries=76 impactParameter[fm]=2.20211 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=200 #NNcollisions=6 - Collision 574 projectile=anti_xi- Ekin[MeV]=6360.08 direction=(0.817103,0.354041,0.454971) material=G4_He - --> #secondaries=3 impactParameter[fm]=1.08578 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 575 projectile=D0 Ekin[MeV]=1433.92 direction=(0.757839,0.0837276,0.647047) material=G4_Cu - --> #secondaries=22 impactParameter[fm]=3.89002 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=59 #NNcollisions=0 - Collision 576 projectile=kaon0S Ekin[MeV]=4826.61 direction=(0.970214,0.119702,0.210611) material=G4_Al - --> #secondaries=12 impactParameter[fm]=1.57438 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 577 projectile=anti_hyperH4 Ekin[MeV]=5449.34 direction=(0.649461,0.758877,0.0480315) material=G4_Pb - --> #secondaries=46 impactParameter[fm]=8.39256 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=208 #NNcollisions=2 - Collision 578 projectile=anti_deuteron Ekin[MeV]=12128.7 direction=(0.605566,0.756687,0.246402) material=G4_Si - --> #secondaries=18 impactParameter[fm]=1.84274 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=25 #NNcollisions=4 - Collision 579 projectile=anti_B0 Ekin[MeV]=22178.7 direction=(0.842078,0.528159,0.109325) material=G4_Si - --> #secondaries=14 impactParameter[fm]=2.73925 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 580 projectile=anti_xi_c+ Ekin[MeV]=22788.2 direction=(0.741504,0.669638,0.0419103) material=G4_Al - --> #secondaries=32 impactParameter[fm]=2.24197 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 581 projectile=anti_doublehyperH4 Ekin[MeV]=2355.61 direction=(0.45806,0.395137,0.796271) material=G4_C - --> #secondaries=21 impactParameter[fm]=2.44051 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=10 #NNcollisions=3 - Collision 582 projectile=Ds+ Ekin[MeV]=15220.6 direction=(0.539285,0.0835036,0.837973) material=G4_Cu - --> #secondaries=25 impactParameter[fm]=4.34966 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 583 projectile=anti_doublehyperH4 Ekin[MeV]=21189.8 direction=(0.615382,0.367755,0.697181) material=G4_Al - --> #secondaries=35 impactParameter[fm]=1.79159 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=4 - Collision 584 projectile=anti_doublehyperH4 Ekin[MeV]=16395.2 direction=(0.64761,0.233105,0.72544) material=G4_C - --> #secondaries=15 impactParameter[fm]=1.79379 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=12 #NNcollisions=2 - Collision 585 projectile=Ds+ Ekin[MeV]=16922.7 direction=(0.0705094,0.157305,0.98503) material=G4_Cu - --> #secondaries=25 impactParameter[fm]=2.16701 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 586 projectile=anti_D0 Ekin[MeV]=17349.3 direction=(0.417715,0.809769,0.412054) material=G4_W - --> #secondaries=79 impactParameter[fm]=2.98505 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=4 - Collision 587 projectile=xi_c0 Ekin[MeV]=20724.5 direction=(0.813404,0.105711,0.572014) material=G4_Be - --> #secondaries=7 impactParameter[fm]=0.866832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 588 projectile=anti_omega_c0 Ekin[MeV]=1155.3 direction=(0.950338,0.111318,0.290631) material=G4_Be - --> #secondaries=7 impactParameter[fm]=1.62754 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 589 projectile=anti_neutron Ekin[MeV]=21962.8 direction=(0.473797,0.0512341,0.879143) material=G4_Si - --> #secondaries=15 impactParameter[fm]=4.58757 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=28 #NNcollisions=1 - Collision 590 projectile=anti_He3 Ekin[MeV]=11044.9 direction=(0.770463,0.583299,0.257195) material=G4_Be - --> #secondaries=13 impactParameter[fm]=2.00138 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 591 projectile=omega_c0 Ekin[MeV]=28545.3 direction=(0.650161,0.647021,0.398315) material=G4_Si - --> #secondaries=12 impactParameter[fm]=3.88329 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 592 projectile=anti_hypertriton Ekin[MeV]=22303.5 direction=(0.559091,0.513123,0.651247) material=G4_Fe - --> #secondaries=17 impactParameter[fm]=3.5861 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 593 projectile=sigma- Ekin[MeV]=19435.9 direction=(0.251121,0.58693,0.769709) material=G4_He - --> #secondaries=7 impactParameter[fm]=1.54971 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 594 projectile=Ds- Ekin[MeV]=25254.5 direction=(0.143768,0.752849,0.642299) material=G4_Cu - --> #secondaries=16 impactParameter[fm]=4.60886 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 595 projectile=anti_omega- Ekin[MeV]=26215 direction=(0.604026,0.61393,0.508176) material=G4_W - --> #secondaries=31 impactParameter[fm]=8.00883 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 596 projectile=anti_sigma- Ekin[MeV]=2251.7 direction=(0.867582,0.449501,0.212721) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=1.76067 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 597 projectile=omega_b- Ekin[MeV]=29048.1 direction=(0.178072,0.97995,0.0893753) material=G4_Pb - --> #secondaries=41 impactParameter[fm]=6.4332 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=0 - Collision 598 projectile=kaon+ Ekin[MeV]=28243.5 direction=(0.646673,0.710395,0.277763) material=G4_C - --> #secondaries=16 impactParameter[fm]=2.62931 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 599 projectile=anti_xi_b- Ekin[MeV]=20910.2 direction=(0.86809,0.452315,0.204529) material=G4_C - --> #secondaries=17 impactParameter[fm]=1.55452 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 600 projectile=anti_xi_b0 Ekin[MeV]=23360.9 direction=(0.757166,0.575382,0.30925) material=G4_Al - --> #secondaries=6 impactParameter[fm]=2.00247 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 - List of produced secondaries: - j=0 anti_xi_b0 p=(21464.2,16375.5,9032.6229051.7) MeV - j=1 neutron p=(77.57,38.3785,-241.653973.996) MeV - j=2 Na22[583.050] p=(365.875,46.3139,-51.508320486) MeV - j=3 triton p=(-243.603,57.9864,18.26512820.12) MeV - j=4 proton p=(-31.3259,-78.9114,76.0089945.167) MeV - j=5 gamma p=(0.758108,0.295507,2.05412.20938) MeV - Collision 601 projectile=pi+ Ekin[MeV]=17287.7 direction=(0.157081,0.186691,0.969779) material=G4_Fe - --> #secondaries=24 impactParameter[fm]=3.23083 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=52 #NNcollisions=2 - Collision 602 projectile=Bc- Ekin[MeV]=17748.8 direction=(0.84894,0.484576,0.210917) material=G4_W - --> #secondaries=36 impactParameter[fm]=3.86885 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 603 projectile=doublehyperH4 Ekin[MeV]=16291 direction=(0.946727,0.285385,0.149205) material=G4_Fe - --> #secondaries=49 impactParameter[fm]=2.27464 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=49 #NNcollisions=6 - Collision 604 projectile=anti_sigma- Ekin[MeV]=26177.8 direction=(0.534544,0.568257,0.625578) material=G4_He - --> #secondaries=7 impactParameter[fm]=0.956047 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=1 - Collision 605 projectile=anti_doublehyperH4 Ekin[MeV]=23645.2 direction=(0.186776,0.412489,0.89161) material=G4_W - --> #secondaries=25 impactParameter[fm]=7.08279 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 606 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=18140.4 direction=(0.499416,0.797371,0.338798) material=G4_Al - --> #secondaries=31 impactParameter[fm]=1.43572 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 - Collision 607 projectile=pi+ Ekin[MeV]=29003.4 direction=(0.193365,0.591829,0.782527) material=G4_H - --> #secondaries=12 impactParameter[fm]=0.886459 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 608 projectile=anti_sigma- Ekin[MeV]=1753.49 direction=(0.838584,0.516964,0.171828) material=G4_C - --> #secondaries=10 impactParameter[fm]=0.756223 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 609 projectile=xi_c+ Ekin[MeV]=17643.5 direction=(0.245225,0.937113,0.248362) material=G4_He - --> #secondaries=10 impactParameter[fm]=1.71512 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 610 projectile=anti_xi_b0 Ekin[MeV]=4862.8 direction=(0.623137,0.781667,0.0264148) material=G4_Fe - --> #secondaries=13 impactParameter[fm]=3.66664 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 611 projectile=anti_neutron Ekin[MeV]=26169.3 direction=(0.369419,0.821579,0.434209) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=4.97083 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 612 projectile=pi- Ekin[MeV]=20981.3 direction=(0.236655,0.659055,0.713891) material=G4_Al - --> #secondaries=11 impactParameter[fm]=2.1812 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 613 projectile=lambda_b Ekin[MeV]=13048.7 direction=(0.487536,0.696473,0.52653) material=G4_Be - --> #secondaries=9 impactParameter[fm]=2.59878 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 614 projectile=omega_b- Ekin[MeV]=18057.1 direction=(0.590022,0.681439,0.433029) material=G4_W - --> #secondaries=28 impactParameter[fm]=6.3418 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 615 projectile=anti_Bs0 Ekin[MeV]=18266.6 direction=(0.658758,0.714113,0.236813) material=G4_C - --> #secondaries=7 impactParameter[fm]=2.6784 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 616 projectile=anti_lambda_b Ekin[MeV]=19745.8 direction=(0.324676,0.685584,0.651583) material=G4_Al - --> #secondaries=11 impactParameter[fm]=2.20087 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 617 projectile=xi- Ekin[MeV]=12746.7 direction=(0.625446,0.131521,0.769103) material=G4_Fe - --> #secondaries=26 impactParameter[fm]=5.55268 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 618 projectile=D+ Ekin[MeV]=8828.42 direction=(0.249648,0.790651,0.559059) material=G4_Al - --> #secondaries=10 impactParameter[fm]=2.23882 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 619 projectile=anti_hyperalpha Ekin[MeV]=3086.19 direction=(0.0390323,0.722681,0.690079) material=G4_Fe - --> #secondaries=41 impactParameter[fm]=1.11341 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=4 - Collision 620 projectile=anti_He3 Ekin[MeV]=22355.1 direction=(0.648051,0.362461,0.669815) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=4.82936 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 621 projectile=lambda_b Ekin[MeV]=26560.4 direction=(0.00627181,0.470785,0.882226) material=G4_He - --> #secondaries=10 impactParameter[fm]=0.101536 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 622 projectile=anti_xi_b- Ekin[MeV]=2150.52 direction=(0.955856,0.258568,0.139578) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=3.31505 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=0 - Collision 623 projectile=kaon0S Ekin[MeV]=23853.7 direction=(0.629842,0.435984,0.64282) material=G4_W - --> #secondaries=46 impactParameter[fm]=5.21701 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=2 - Collision 624 projectile=anti_lambda_c+ Ekin[MeV]=8384.35 direction=(0.606454,0.776094,0.172892) material=G4_Ar - --> #secondaries=12 impactParameter[fm]=4.2615 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 625 projectile=anti_lambda_c+ Ekin[MeV]=4228.01 direction=(0.173348,0.834087,0.523689) material=G4_H - --> #secondaries=3 impactParameter[fm]=0.551942 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 626 projectile=anti_deuteron Ekin[MeV]=12598.6 direction=(0.958201,0.180197,0.222215) material=G4_Cu - --> #secondaries=14 impactParameter[fm]=5.36874 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=63 #NNcollisions=1 - Collision 627 projectile=hyperHe5 Ekin[MeV]=19909.5 direction=(0.913582,0.373182,0.161564) material=G4_He - --> #secondaries=13 impactParameter[fm]=1.11044 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=2 #NNcollisions=3 - Collision 628 projectile=Bc+ Ekin[MeV]=29247.2 direction=(0.0862753,0.995622,0.0359736) material=G4_Pb - --> #secondaries=36 impactParameter[fm]=3.31591 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 629 projectile=anti_He3 Ekin[MeV]=14924.6 direction=(0.165165,0.804813,0.570085) material=G4_C - --> #secondaries=17 impactParameter[fm]=3.23317 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=12 #NNcollisions=2 - Collision 630 projectile=D+ Ekin[MeV]=15423.7 direction=(0.854695,0.353795,0.379901) material=G4_W - --> #secondaries=55 impactParameter[fm]=1.26842 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=2 - Collision 631 projectile=kaon+ Ekin[MeV]=20871.5 direction=(0.537689,0.6675,0.515106) material=G4_C - --> #secondaries=11 impactParameter[fm]=1.79932 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 632 projectile=anti_deuteron Ekin[MeV]=21757.3 direction=(0.395624,0.666083,0.63231) material=G4_C - --> #secondaries=14 impactParameter[fm]=2.69471 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=12 #NNcollisions=1 - Collision 633 projectile=Bs0 Ekin[MeV]=6061.69 direction=(0.895823,0.172505,0.409564) material=G4_Si - --> #secondaries=5 impactParameter[fm]=2.40471 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 634 projectile=hyperH4 Ekin[MeV]=8301.01 direction=(0.508549,0.474775,0.718308) material=G4_Pb - --> #secondaries=68 impactParameter[fm]=6.54589 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=196 #NNcollisions=4 - Collision 635 projectile=anti_alpha Ekin[MeV]=15999.5 direction=(0.316097,0.701641,0.638578) material=G4_C - --> #secondaries=14 impactParameter[fm]=3.46185 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=12 #NNcollisions=1 - Collision 636 projectile=anti_hyperalpha Ekin[MeV]=17470.9 direction=(0.715746,0.191185,0.671681) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=5.37519 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=65 #NNcollisions=1 - Collision 637 projectile=Ds- Ekin[MeV]=13876.2 direction=(0.185946,0.121428,0.975028) material=G4_Be - --> #secondaries=13 impactParameter[fm]=0.556663 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=1 - Collision 638 projectile=anti_lambda_b Ekin[MeV]=20268 direction=(0.700798,0.1549,0.69634) material=G4_W - --> #secondaries=87 impactParameter[fm]=1.37775 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=6 - Collision 639 projectile=doublehyperH4 Ekin[MeV]=10772.3 direction=(0.627793,0.543309,0.557397) material=G4_Si - --> #secondaries=9 impactParameter[fm]=4.68623 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 640 projectile=alpha Ekin[MeV]=10438.5 direction=(0.196622,0.970988,0.136099) material=G4_Be + Collision 551 projectile=anti_sigma+ Ekin[MeV]=21920.7 direction=(0.787311,0.50002,0.360723) material=G4_Be + --> #secondaries=16 impactParameter[fm]=1.89448 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 552 projectile=hyperH4 Ekin[MeV]=16472.3 direction=(0.0661787,0.961205,0.267778) material=G4_Cu + --> #secondaries=40 impactParameter[fm]=5.60799 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=60 #NNcollisions=2 + Collision 553 projectile=xi0 Ekin[MeV]=9856.68 direction=(0.619467,0.446753,0.645501) material=G4_H + --> #secondaries=2 impactParameter[fm]=1.66489 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 554 projectile=kaon+ Ekin[MeV]=24638.5 direction=(0.902903,0.179293,0.390667) material=G4_Al + --> #secondaries=16 impactParameter[fm]=2.78728 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 555 projectile=anti_neutron Ekin[MeV]=21140.2 direction=(0.685978,0.271934,0.674897) material=G4_He + --> #secondaries=8 impactParameter[fm]=0.533806 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=1 + Collision 556 projectile=D+ Ekin[MeV]=3329.2 direction=(0.536715,0.814141,0.221611) material=G4_W + --> #secondaries=42 impactParameter[fm]=3.4463 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=178 #NNcollisions=1 + Collision 557 projectile=D- Ekin[MeV]=9051.69 direction=(0.0258398,0.606361,0.79477) material=G4_Pb + --> #secondaries=38 impactParameter[fm]=6.6882 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=1 + Collision 558 projectile=omega- Ekin[MeV]=16653.6 direction=(0.299693,0.858266,0.41661) material=G4_W + --> #secondaries=45 impactParameter[fm]=6.25511 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=1 + Collision 559 projectile=anti_lambda Ekin[MeV]=4666.81 direction=(0.621934,0.0653358,0.780339) material=G4_C + --> #secondaries=14 impactParameter[fm]=1.56946 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 560 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=28921.4 direction=(0.716327,0.461006,0.523783) material=G4_Si + --> #secondaries=34 impactParameter[fm]=2.77607 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=25 #NNcollisions=4 + Collision 561 projectile=proton Ekin[MeV]=26666.3 direction=(0.734254,0.516165,0.440958) material=G4_Pb + --> #secondaries=83 impactParameter[fm]=2.18474 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=5 + Collision 562 projectile=anti_xi_b- Ekin[MeV]=18571.1 direction=(0.534524,0.308396,0.786878) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.279279 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 563 projectile=pi+ Ekin[MeV]=9344.51 direction=(0.497757,0.301914,0.813072) material=G4_H + --> #secondaries=4 impactParameter[fm]=0.998498 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 564 projectile=anti_hypertriton Ekin[MeV]=5519.24 direction=(0.228886,0.764791,0.602251) material=G4_He + --> #secondaries=16 impactParameter[fm]=2.92443 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=3 #NNcollisions=2 + Collision 565 projectile=xi_b- Ekin[MeV]=13992.2 direction=(0.0489282,0.602684,0.796478) material=G4_C + --> #secondaries=7 impactParameter[fm]=3.56759 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 566 projectile=xi_b0 Ekin[MeV]=22361.7 direction=(0.623582,0.0878447,0.776807) material=G4_He + --> #secondaries=6 impactParameter[fm]=0.954777 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=1 + Collision 567 projectile=anti_neutron Ekin[MeV]=19034.8 direction=(0.146557,0.672228,0.725693) material=G4_He + --> #secondaries=5 impactParameter[fm]=2.6387 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=1 + Collision 568 projectile=kaon0L Ekin[MeV]=21522.6 direction=(0.659741,0.449963,0.601893) material=G4_Si + --> #secondaries=7 impactParameter[fm]=2.38606 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 569 projectile=omega_c0 Ekin[MeV]=14803.1 direction=(0.104943,0.884841,0.453919) material=G4_He + --> #secondaries=12 impactParameter[fm]=1.30797 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 + Collision 570 projectile=anti_xi0 Ekin[MeV]=2014.76 direction=(0.167739,0.446223,0.879061) material=G4_Si + --> #secondaries=19 impactParameter[fm]=3.61308 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 571 projectile=hyperH4 Ekin[MeV]=9116.28 direction=(0.656527,0.367506,0.65872) material=G4_Si + --> #secondaries=8 impactParameter[fm]=7.0724 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=29 #NNcollisions=1 + Collision 572 projectile=doublehyperH4 Ekin[MeV]=9841.39 direction=(0.380062,0.0444058,0.923894) material=G4_Al + --> #secondaries=30 impactParameter[fm]=1.17603 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=19 #NNcollisions=7 + Collision 573 projectile=D- Ekin[MeV]=1797.17 direction=(0.613812,0.366048,0.69946) material=G4_Si + --> #secondaries=11 impactParameter[fm]=2.02058 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 574 projectile=anti_neutron Ekin[MeV]=28882.5 direction=(0.612499,0.426408,0.665599) material=G4_C + --> #secondaries=9 impactParameter[fm]=2.76622 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 575 projectile=Bs0 Ekin[MeV]=19957.2 direction=(0.986336,0.0866096,0.140145) material=G4_Si + --> #secondaries=10 impactParameter[fm]=4.83467 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 576 projectile=anti_hyperalpha Ekin[MeV]=27608.7 direction=(0.360533,0.880898,0.306651) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=6.9173 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 577 projectile=anti_lambda Ekin[MeV]=6945.69 direction=(0.542313,0.808696,0.227832) material=G4_Ar + --> #secondaries=36 impactParameter[fm]=0.596399 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 578 projectile=proton Ekin[MeV]=3037.08 direction=(0.81946,0.241622,0.519715) material=G4_Ar --> #secondaries=11 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 641 projectile=anti_hyperH4 Ekin[MeV]=15404.9 direction=(0.159043,0.570868,0.805491) material=G4_Cu - --> #secondaries=18 impactParameter[fm]=6.76633 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 642 projectile=xi_b0 Ekin[MeV]=15487.7 direction=(0.57558,0.796308,0.186012) material=G4_He - --> #secondaries=4 impactParameter[fm]=2.1365 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 643 projectile=anti_omega- Ekin[MeV]=24960.4 direction=(0.150389,0.918369,0.366034) material=G4_W - --> #secondaries=24 impactParameter[fm]=5.82419 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=1 - Collision 644 projectile=anti_D0 Ekin[MeV]=5514.94 direction=(0.455718,0.575994,0.67864) material=G4_W - --> #secondaries=38 impactParameter[fm]=5.40788 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=4 - Collision 645 projectile=omega_b- Ekin[MeV]=7057.81 direction=(0.332411,0.735396,0.590504) material=G4_Fe - --> #secondaries=19 impactParameter[fm]=3.47519 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 646 projectile=kaon- Ekin[MeV]=15937.5 direction=(0.452662,0.884498,0.112963) material=G4_Al - --> #secondaries=22 impactParameter[fm]=1.85507 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 647 projectile=anti_D0 Ekin[MeV]=29760.8 direction=(0.477928,0.512275,0.713554) material=G4_Fe - --> #secondaries=32 impactParameter[fm]=2.05547 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=51 #NNcollisions=5 - Collision 648 projectile=anti_hyperH4 Ekin[MeV]=20400.8 direction=(0.0164101,0.678331,0.734574) material=G4_C - --> #secondaries=27 impactParameter[fm]=1.6082 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=5 - Collision 649 projectile=lambda_c+ Ekin[MeV]=12199.1 direction=(0.0334149,0.570237,0.8208) material=G4_Be - --> #secondaries=5 impactParameter[fm]=2.32315 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 650 projectile=anti_omega_c0 Ekin[MeV]=25817.7 direction=(0.977447,0.0140164,0.210714) material=G4_He - --> #secondaries=5 impactParameter[fm]=1.29387 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 651 projectile=omega_b- Ekin[MeV]=16440.9 direction=(0.232721,0.659397,0.714868) material=G4_He - --> #secondaries=4 impactParameter[fm]=2.33662 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 652 projectile=Bc- Ekin[MeV]=23759.3 direction=(0.731126,0.0647711,0.679161) material=G4_C - --> #secondaries=6 impactParameter[fm]=2.4677 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 653 projectile=anti_xi- Ekin[MeV]=8178.98 direction=(0.44322,0.650076,0.617217) material=G4_Si - --> #secondaries=21 impactParameter[fm]=3.49407 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 654 projectile=anti_Bs0 Ekin[MeV]=9207.38 direction=(0.55942,0.828227,0.0330083) material=G4_Ar - --> #secondaries=8 impactParameter[fm]=3.01424 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 655 projectile=neutron Ekin[MeV]=7079.41 direction=(0.377767,0.81418,0.440911) material=G4_C - --> #secondaries=13 impactParameter[fm]=1.49766 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 656 projectile=kaon0L Ekin[MeV]=27910.9 direction=(0.620856,0.528084,0.579366) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=3.84888 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 657 projectile=anti_xi_c0 Ekin[MeV]=24228.4 direction=(0.199466,0.713867,0.671273) material=G4_Pb - --> #secondaries=70 impactParameter[fm]=4.2264 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 658 projectile=hypertriton Ekin[MeV]=3472.09 direction=(0.366026,0.836451,0.40789) material=G4_He - --> #secondaries=8 impactParameter[fm]=1.6287 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=2 #NNcollisions=0 - Collision 659 projectile=anti_neutron Ekin[MeV]=5961.35 direction=(0.726282,0.498648,0.473144) material=G4_Fe - --> #secondaries=15 impactParameter[fm]=7.21703 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=1 - Collision 660 projectile=Bs0 Ekin[MeV]=3623.08 direction=(0.622447,0.330341,0.709531) material=G4_H - --> #secondaries=2 impactParameter[fm]=0.79462 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 661 projectile=anti_xi_c0 Ekin[MeV]=23707.8 direction=(0.585688,0.772775,0.244515) material=G4_Al - --> #secondaries=17 impactParameter[fm]=4.02721 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 662 projectile=anti_Bs0 Ekin[MeV]=21849.8 direction=(0.00475786,0.186274,0.982486) material=G4_Be - --> #secondaries=11 impactParameter[fm]=0.366217 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 663 projectile=kaon0L Ekin[MeV]=4859.16 direction=(0.343816,0.493115,0.799142) material=G4_Al - --> #secondaries=14 impactParameter[fm]=1.33407 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=24 #NNcollisions=2 - Collision 664 projectile=anti_D0 Ekin[MeV]=29984.4 direction=(0.553338,0.536786,0.636928) material=G4_Be - --> #secondaries=17 impactParameter[fm]=1.84336 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 665 projectile=anti_omega_c0 Ekin[MeV]=17160.2 direction=(0.985926,0.151638,0.070396) material=G4_Al - --> #secondaries=15 impactParameter[fm]=4.00831 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 666 projectile=xi_c0 Ekin[MeV]=10787.8 direction=(0.505587,0.643467,0.574745) material=G4_Si - --> #secondaries=8 impactParameter[fm]=3.70678 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 667 projectile=D- Ekin[MeV]=8525.68 direction=(0.543018,0.497468,0.676504) material=G4_C - --> #secondaries=7 impactParameter[fm]=2.5609 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 668 projectile=D- Ekin[MeV]=21752.5 direction=(0.514619,0.334856,0.789328) material=G4_W - --> #secondaries=62 impactParameter[fm]=3.95102 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=178 #NNcollisions=2 - Collision 669 projectile=anti_hyperHe5 Ekin[MeV]=21312.8 direction=(0.122359,0.8658,0.4852) material=G4_H - --> #secondaries=6 impactParameter[fm]=0.751605 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 670 projectile=anti_B0 Ekin[MeV]=22151.3 direction=(0.538691,0.785523,0.304575) material=G4_Be - --> #secondaries=9 impactParameter[fm]=1.64504 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 671 projectile=Ds- Ekin[MeV]=2075.03 direction=(0.993552,0.0562864,0.0984208) material=G4_Be - --> #secondaries=4 impactParameter[fm]=2.26348 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 672 projectile=anti_xi_b0 Ekin[MeV]=11590.5 direction=(0.729915,0.683105,0.0243247) material=G4_Be - --> #secondaries=9 impactParameter[fm]=2.65639 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 673 projectile=anti_neutron Ekin[MeV]=7204.22 direction=(0.853488,0.470777,0.223445) material=G4_Cu - --> #secondaries=23 impactParameter[fm]=2.32209 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=1 - Collision 674 projectile=anti_omega- Ekin[MeV]=4878.64 direction=(0.970155,0.0996807,0.221052) material=G4_Ar - --> #secondaries=29 impactParameter[fm]=1.53339 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=1 - Collision 675 projectile=hyperHe5 Ekin[MeV]=18763.1 direction=(0.358506,0.325506,0.87494) material=G4_Ar - --> #secondaries=23 impactParameter[fm]=6.14771 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 676 projectile=anti_omega_b- Ekin[MeV]=16056.5 direction=(0.31453,0.0256507,0.948901) material=G4_Pb - --> #secondaries=69 impactParameter[fm]=1.08699 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=200 #NNcollisions=4 - Collision 677 projectile=anti_Bs0 Ekin[MeV]=2293.96 direction=(0.393883,0.894745,0.210448) material=G4_Fe - --> #secondaries=9 impactParameter[fm]=3.7729 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 678 projectile=xi_c0 Ekin[MeV]=11377.3 direction=(0.37134,0.229273,0.899745) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.736535 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 679 projectile=pi- Ekin[MeV]=2874.69 direction=(0.937818,0.0482415,0.343758) material=G4_Fe - --> #secondaries=7 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 680 projectile=anti_lambda_c+ Ekin[MeV]=23527.6 direction=(0.621498,0.755573,0.207002) material=G4_He - --> #secondaries=5 impactParameter[fm]=1.12053 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 681 projectile=pi- Ekin[MeV]=10339.7 direction=(0.514247,0.658151,0.549898) material=G4_Pb - --> #secondaries=25 impactParameter[fm]=6.00673 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 682 projectile=anti_hypertriton Ekin[MeV]=11479.5 direction=(0.384869,0.898039,0.213076) material=G4_Si - --> #secondaries=12 impactParameter[fm]=4.88765 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 683 projectile=anti_xi_c0 Ekin[MeV]=16673.7 direction=(0.0755258,0.89258,0.444518) material=G4_Be - --> #secondaries=11 impactParameter[fm]=1.05001 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 684 projectile=anti_doublehyperH4 Ekin[MeV]=10418 direction=(0.702403,0.58976,0.398515) material=G4_Be - --> #secondaries=9 impactParameter[fm]=3.23126 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=1 - Collision 685 projectile=anti_omega- Ekin[MeV]=19120.4 direction=(0.885975,0.441064,0.143217) material=G4_Be - --> #secondaries=18 impactParameter[fm]=0.781551 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 - Collision 686 projectile=omega_c0 Ekin[MeV]=11396 direction=(0.986243,0.00125976,0.165296) material=G4_Be - --> #secondaries=9 impactParameter[fm]=2.1147 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 687 projectile=xi_b- Ekin[MeV]=8912.43 direction=(0.651557,0.631232,0.420738) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=3.9801 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 688 projectile=D0 Ekin[MeV]=14511.7 direction=(0.711348,0.660134,0.241261) material=G4_W - --> #secondaries=13 impactParameter[fm]=4.36519 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 - Collision 689 projectile=doublehyperH4 Ekin[MeV]=24777.1 direction=(0.454109,0.807248,0.377008) material=G4_W - --> #secondaries=18 impactParameter[fm]=8.02021 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=183 #NNcollisions=3 - Collision 690 projectile=anti_xi- Ekin[MeV]=21686.2 direction=(0.652252,0.537207,0.534768) material=G4_Fe - --> #secondaries=11 impactParameter[fm]=6.15105 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 691 projectile=kaon- Ekin[MeV]=20381.4 direction=(0.617657,0.753951,0.223737) material=G4_Al - --> #secondaries=9 impactParameter[fm]=3.6892 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 692 projectile=xi_b- Ekin[MeV]=2200.81 direction=(0.297365,0.856549,0.42178) material=G4_Cu - --> #secondaries=15 impactParameter[fm]=1.39396 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=1 - Collision 693 projectile=kaon- Ekin[MeV]=3595.98 direction=(0.816581,0.494512,0.297747) material=G4_H + Collision 579 projectile=anti_lambda Ekin[MeV]=4918.97 direction=(0.766918,0.306964,0.563569) material=G4_Pb + --> #secondaries=92 impactParameter[fm]=1.51551 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 580 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=5893.85 direction=(0.233112,0.953027,0.193386) material=G4_W + --> #secondaries=103 impactParameter[fm]=3.69437 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=4 + Collision 581 projectile=hyperHe5 Ekin[MeV]=20521.9 direction=(0.55356,0.636662,0.536873) material=G4_Al + --> #secondaries=29 impactParameter[fm]=4.3829 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 582 projectile=B0 Ekin[MeV]=4154.88 direction=(0.946879,0.317699,0.0498843) material=G4_Pb + --> #secondaries=7 impactParameter[fm]=8.84318 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 583 projectile=hyperalpha Ekin[MeV]=22270.4 direction=(0.339792,0.899072,0.276062) material=G4_He + --> #secondaries=11 impactParameter[fm]=0.569165 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=2 #NNcollisions=3 + Collision 584 projectile=xi_c0 Ekin[MeV]=28964.5 direction=(0.756888,0.336399,0.560318) material=G4_W + --> #secondaries=64 impactParameter[fm]=4.36524 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=2 + Collision 585 projectile=Ds- Ekin[MeV]=24026.9 direction=(0.694534,0.254043,0.673116) material=G4_Si + --> #secondaries=9 impactParameter[fm]=4.23611 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 586 projectile=anti_omega_b- Ekin[MeV]=10994 direction=(0.178973,0.869026,0.461262) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.05788 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 587 projectile=anti_xi_c0 Ekin[MeV]=28964.8 direction=(0.544914,0.758554,0.3573) material=G4_C + --> #secondaries=16 impactParameter[fm]=0.288601 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 588 projectile=anti_neutron Ekin[MeV]=23813.8 direction=(0.824494,0.143112,0.547475) material=G4_H + --> #secondaries=6 impactParameter[fm]=1.63564 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 589 projectile=xi_b0 Ekin[MeV]=21923.9 direction=(0.718304,0.533809,0.446193) material=G4_Pb + --> #secondaries=63 impactParameter[fm]=6.01542 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=2 + Collision 590 projectile=anti_hyperalpha Ekin[MeV]=24299 direction=(0.791719,0.266417,0.54973) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=6.27412 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=56 #NNcollisions=1 + Collision 591 projectile=anti_lambda_c+ Ekin[MeV]=8964.89 direction=(0.496504,0.406562,0.766936) material=G4_C + --> #secondaries=12 impactParameter[fm]=1.12706 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 592 projectile=anti_omega_c0 Ekin[MeV]=19474.4 direction=(0.0889775,0.0280156,0.99564) material=G4_Cu + --> #secondaries=34 impactParameter[fm]=2.68741 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 593 projectile=anti_xi_c+ Ekin[MeV]=5688.97 direction=(0.448507,0.32304,0.833359) material=G4_C + --> #secondaries=11 impactParameter[fm]=1.95604 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 + Collision 594 projectile=anti_He3 Ekin[MeV]=15650.5 direction=(0.970559,0.135776,0.198946) material=G4_C + --> #secondaries=22 impactParameter[fm]=1.6163 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=10 #NNcollisions=3 + Collision 595 projectile=pi+ Ekin[MeV]=20493.6 direction=(0.422008,0.396624,0.815229) material=G4_Fe + --> #secondaries=25 impactParameter[fm]=4.40313 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 596 projectile=kaon+ Ekin[MeV]=2867.99 direction=(0.561524,0.544967,0.622658) material=G4_Si + --> #secondaries=25 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 597 projectile=Bc+ Ekin[MeV]=25301 direction=(0.151448,0.853289,0.49896) material=G4_Si + --> #secondaries=13 impactParameter[fm]=1.84764 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=28 #NNcollisions=1 + Collision 598 projectile=anti_omega_c0 Ekin[MeV]=24227.6 direction=(0.622395,0.741494,0.25062) material=G4_W + --> #secondaries=72 impactParameter[fm]=2.12628 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=2 + Collision 599 projectile=triton Ekin[MeV]=18850.8 direction=(0.582386,0.528779,0.617429) material=G4_Si + --> #secondaries=41 impactParameter[fm]=1.82398 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=20 #NNcollisions=7 + Collision 600 projectile=doublehyperH4 Ekin[MeV]=16065.9 direction=(0.812772,0.367977,0.451658) material=G4_He + --> #secondaries=10 impactParameter[fm]=2.01832 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=0 #NNcollisions=2 + List of produced secondaries: + j=0 neutron p=(3183.08,1606.1,1732.494073.8) MeV + j=1 proton p=(3473.7,1221,2489.874542.82) MeV + j=2 neutron p=(2882.6,1592.45,1643.053798.37) MeV + j=3 pi+ p=(777.023,262.268,4.09724831.893) MeV + j=4 lambda p=(4487.7,1860.77,2451.135554.7) MeV + j=5 proton p=(206.388,207.214,-445.3321078.98) MeV + j=6 neutron p=(387.041,-220.338,312.8211085.81) MeV + j=7 sigma0 p=(553.913,77.8978,780.8941531.36) MeV + j=8 neutron p=(-149.038,525.298,-47.02951087.72) MeV + j=9 pi0 p=(249.99,134.954,-1.64786314.53) MeV + Collision 601 projectile=anti_proton Ekin[MeV]=15053.2 direction=(0.178092,0.977633,0.111883) material=G4_Si + --> #secondaries=16 impactParameter[fm]=2.59868 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 602 projectile=pi- Ekin[MeV]=6793.33 direction=(0.367748,0.02032,0.929703) material=G4_Al + --> #secondaries=6 impactParameter[fm]=3.16154 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 603 projectile=xi_b- Ekin[MeV]=10763.5 direction=(0.810904,0.54572,0.211245) material=G4_Si + --> #secondaries=5 impactParameter[fm]=4.07549 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 604 projectile=anti_doublehyperH4 Ekin[MeV]=13110.3 direction=(0.73234,0.603315,0.315735) material=G4_Si + --> #secondaries=31 impactParameter[fm]=3.68997 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=28 #NNcollisions=5 + Collision 605 projectile=anti_He3 Ekin[MeV]=16038.8 direction=(0.186195,0.98045,0.0636364) material=G4_Fe + --> #secondaries=39 impactParameter[fm]=2.44198 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=4 + Collision 606 projectile=anti_xi_b- Ekin[MeV]=24174.2 direction=(0.0717549,0.396262,0.915329) material=G4_Pb + --> #secondaries=61 impactParameter[fm]=4.78537 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=3 + Collision 607 projectile=xi_c0 Ekin[MeV]=28386.4 direction=(0.870201,0.204419,0.44829) material=G4_Be + --> #secondaries=15 impactParameter[fm]=0.999252 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 + Collision 608 projectile=xi0 Ekin[MeV]=2239.71 direction=(0.265321,0.950974,0.158911) material=G4_Si + --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 609 projectile=anti_deuteron Ekin[MeV]=2611.79 direction=(0.383815,0.654508,0.651387) material=G4_W + --> #secondaries=17 impactParameter[fm]=7.86409 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=184 #NNcollisions=1 + Collision 610 projectile=anti_B0 Ekin[MeV]=17350.8 direction=(0.300136,0.746032,0.594436) material=G4_Ar + --> #secondaries=16 impactParameter[fm]=0.0842936 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=1 + Collision 611 projectile=D0 Ekin[MeV]=15086.9 direction=(0.0702425,0.953001,0.294711) material=G4_Be + --> #secondaries=5 impactParameter[fm]=2.12986 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 612 projectile=anti_hyperH4 Ekin[MeV]=14304.7 direction=(0.380908,0.580338,0.719803) material=G4_C + --> #secondaries=5 impactParameter[fm]=4.47741 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=12 #NNcollisions=1 + Collision 613 projectile=doublehyperH4 Ekin[MeV]=12448.7 direction=(0.914765,0.238216,0.32628) material=G4_Be + --> #secondaries=12 impactParameter[fm]=3.94735 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 614 projectile=proton Ekin[MeV]=4834.04 direction=(0.378252,0.193646,0.905222) material=G4_Pb + --> #secondaries=77 impactParameter[fm]=3.4542 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=199 #NNcollisions=1 + Collision 615 projectile=He3 Ekin[MeV]=19231 direction=(0.628766,0.583703,0.513755) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.417358 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 616 projectile=B+ Ekin[MeV]=29844.4 direction=(0.530042,0.154474,0.833782) material=G4_Fe + --> #secondaries=17 impactParameter[fm]=3.76876 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 617 projectile=anti_xi_c+ Ekin[MeV]=15387.6 direction=(0.960523,0.043438,0.274789) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.62489 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 618 projectile=pi- Ekin[MeV]=24830.9 direction=(0.942083,0.312642,0.121387) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.27098 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 619 projectile=anti_xi_b0 Ekin[MeV]=11178.8 direction=(0.798386,0.319905,0.510137) material=G4_W + --> #secondaries=15 impactParameter[fm]=5.84494 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 620 projectile=B0 Ekin[MeV]=4345.38 direction=(0.609213,0.0254925,0.792597) material=G4_Ar + --> #secondaries=8 impactParameter[fm]=4.77233 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 621 projectile=anti_sigma+ Ekin[MeV]=29385.9 direction=(0.978009,0.208514,0.00451549) material=G4_Be + --> #secondaries=12 impactParameter[fm]=2.25151 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 622 projectile=xi_b0 Ekin[MeV]=9468.61 direction=(0.715406,0.00762505,0.698667) material=G4_Ar + --> #secondaries=8 impactParameter[fm]=3.42609 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 623 projectile=anti_sigma- Ekin[MeV]=19362.5 direction=(0.408731,0.323864,0.853259) material=G4_He + --> #secondaries=9 impactParameter[fm]=1.08416 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=1 + Collision 624 projectile=pi- Ekin[MeV]=1017.49 direction=(0.832098,0.437785,0.340525) material=G4_He + --> #secondaries=5 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 625 projectile=kaon- Ekin[MeV]=1440.17 direction=(0.960696,0.205879,0.186218) material=G4_Cu + --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 626 projectile=anti_hyperHe5 Ekin[MeV]=26951.5 direction=(0.638888,0.735622,0.225126) material=G4_C + --> #secondaries=12 impactParameter[fm]=4.64546 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 627 projectile=anti_xi_b- Ekin[MeV]=17293.8 direction=(0.577015,0.24391,0.779462) material=G4_Si + --> #secondaries=23 impactParameter[fm]=0.328244 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 628 projectile=D+ Ekin[MeV]=17186.8 direction=(0.47187,0.799933,0.370736) material=G4_Fe + --> #secondaries=13 impactParameter[fm]=2.92896 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 629 projectile=anti_omega_b- Ekin[MeV]=16241.8 direction=(0.595375,0.571734,0.56449) material=G4_Ar + --> #secondaries=34 impactParameter[fm]=2.06933 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=3 + Collision 630 projectile=anti_omega_c0 Ekin[MeV]=15696.4 direction=(0.31484,0.569286,0.759466) material=G4_He + --> #secondaries=8 impactParameter[fm]=1.72868 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 + Collision 631 projectile=anti_alpha Ekin[MeV]=20208.4 direction=(0.760739,0.567804,0.314444) material=G4_Al + --> #secondaries=37 impactParameter[fm]=2.10204 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 632 projectile=B0 Ekin[MeV]=26328.6 direction=(0.318146,0.701958,0.637211) material=G4_Fe + --> #secondaries=13 impactParameter[fm]=3.90821 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 633 projectile=doublehyperH4 Ekin[MeV]=18790.3 direction=(0.382414,0.768791,0.512562) material=G4_Fe + --> #secondaries=52 impactParameter[fm]=3.1155 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=48 #NNcollisions=8 + Collision 634 projectile=proton Ekin[MeV]=18911.8 direction=(0.981309,0.184608,0.0543407) material=G4_Pb + --> #secondaries=66 impactParameter[fm]=4.45126 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=4 + Collision 635 projectile=anti_triton Ekin[MeV]=27305.9 direction=(0.141259,0.809492,0.569885) material=G4_W + --> #secondaries=130 impactParameter[fm]=3.8959 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=174 #NNcollisions=7 + Collision 636 projectile=pi+ Ekin[MeV]=19567.8 direction=(0.648587,0.443491,0.618588) material=G4_W + --> #secondaries=73 impactParameter[fm]=2.63607 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=178 #NNcollisions=2 + Collision 637 projectile=triton Ekin[MeV]=8239.84 direction=(0.545807,0.821187,0.16657) material=G4_Be + --> #secondaries=13 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 638 projectile=pi+ Ekin[MeV]=7671.92 direction=(0.901864,0.426374,0.0696177) material=G4_W + --> #secondaries=47 impactParameter[fm]=5.56977 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=2 + Collision 639 projectile=anti_hyperH4 Ekin[MeV]=17842.6 direction=(0.723246,0.239548,0.647712) material=G4_Ar + --> #secondaries=7 impactParameter[fm]=5.08441 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 640 projectile=D0 Ekin[MeV]=15811.9 direction=(0.00965654,0.808213,0.588811) material=G4_Si + --> #secondaries=10 impactParameter[fm]=5.04875 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 641 projectile=kaon0S Ekin[MeV]=27570.4 direction=(0.700796,0.169082,0.693034) material=G4_Pb + --> #secondaries=80 impactParameter[fm]=3.57275 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=4 + Collision 642 projectile=xi0 Ekin[MeV]=28386.5 direction=(0.00750293,0.972126,0.234338) material=G4_He + --> #secondaries=5 impactParameter[fm]=0.579248 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 643 projectile=Bc- Ekin[MeV]=7313.88 direction=(0.909763,0.410649,0.0608126) material=G4_Be + --> #secondaries=4 impactParameter[fm]=1.81381 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 644 projectile=sigma+ Ekin[MeV]=6881.37 direction=(0.0692432,0.272107,0.959773) material=G4_Pb + --> #secondaries=38 impactParameter[fm]=4.90355 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 645 projectile=doublehyperH4 Ekin[MeV]=22094 direction=(0.44534,0.765495,0.464424) material=G4_Fe + --> #secondaries=10 impactParameter[fm]=6.90885 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 646 projectile=anti_doublehyperH4 Ekin[MeV]=27332.7 direction=(0.0636666,0.0159544,0.997844) material=G4_H + --> #secondaries=11 impactParameter[fm]=2.07134 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=2 + Collision 647 projectile=sigma- Ekin[MeV]=14707.9 direction=(0.200514,0.796672,0.570182) material=G4_Be + --> #secondaries=11 impactParameter[fm]=1.08178 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 648 projectile=Bs0 Ekin[MeV]=24719 direction=(0.93406,0.348669,0.0772175) material=G4_Fe + --> #secondaries=9 impactParameter[fm]=4.6577 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 649 projectile=anti_doublehyperH4 Ekin[MeV]=25208.1 direction=(0.877705,0.467573,0.104923) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.70407 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=4 #NNcollisions=1 + Collision 650 projectile=lambda_c+ Ekin[MeV]=1809.09 direction=(0.895386,0.195457,0.4001) material=G4_Cu + --> #secondaries=9 impactParameter[fm]=4.19194 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=0 + Collision 651 projectile=pi+ Ekin[MeV]=6590.48 direction=(0.61924,0.756061,0.211927) material=G4_Fe + --> #secondaries=16 impactParameter[fm]=3.96304 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 652 projectile=anti_lambda_b Ekin[MeV]=2285.68 direction=(0.00484716,0.964887,0.26262) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=4.42824 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=0 + Collision 653 projectile=anti_lambda Ekin[MeV]=21579.6 direction=(0.178526,0.471923,0.863375) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.82617 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 654 projectile=anti_lambda Ekin[MeV]=2358.97 direction=(0.538051,0.728315,0.424333) material=G4_C + --> #secondaries=7 impactParameter[fm]=2.50211 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 655 projectile=omega_b- Ekin[MeV]=9023.97 direction=(0.905977,0.35199,0.235177) material=G4_H + --> #secondaries=2 impactParameter[fm]=0.790242 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 656 projectile=proton Ekin[MeV]=26539.5 direction=(0.685358,0.51326,0.516574) material=G4_Si + --> #secondaries=25 impactParameter[fm]=1.85358 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 657 projectile=neutron Ekin[MeV]=24693.6 direction=(0.533066,0.130581,0.835936) material=G4_Fe + --> #secondaries=22 impactParameter[fm]=5.19742 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 658 projectile=anti_Bs0 Ekin[MeV]=21979.3 direction=(0.593544,0.770374,0.232873) material=G4_Be + --> #secondaries=11 impactParameter[fm]=1.93694 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 659 projectile=anti_omega_c0 Ekin[MeV]=29935.3 direction=(0.318524,0.701579,0.637439) material=G4_Cu + --> #secondaries=39 impactParameter[fm]=3.19914 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=3 + Collision 660 projectile=alpha Ekin[MeV]=1023.18 direction=(0.374783,0.865531,0.332254) material=G4_Si + --> #secondaries=15 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 661 projectile=anti_sigma- Ekin[MeV]=28226.7 direction=(0.664718,0.562963,0.491145) material=G4_Be + --> #secondaries=6 impactParameter[fm]=3.78832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 662 projectile=xi_c+ Ekin[MeV]=17866 direction=(0.748263,0.303253,0.590034) material=G4_Ar + --> #secondaries=27 impactParameter[fm]=2.84335 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 663 projectile=B0 Ekin[MeV]=15788.8 direction=(0.81796,0.485528,0.308552) material=G4_Si + --> #secondaries=14 impactParameter[fm]=2.74106 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 664 projectile=Bc- Ekin[MeV]=5218.28 direction=(0.612928,0.769544,0.179221) material=G4_W + --> #secondaries=10 impactParameter[fm]=3.05669 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 665 projectile=Ds+ Ekin[MeV]=12404.5 direction=(0.660825,0.295482,0.689928) material=G4_Fe + --> #secondaries=19 impactParameter[fm]=2.17976 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 666 projectile=anti_hyperH4 Ekin[MeV]=29124.6 direction=(0.221655,0.948915,0.224564) material=G4_He + --> #secondaries=11 impactParameter[fm]=2.85756 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 667 projectile=omega- Ekin[MeV]=13997.2 direction=(0.811099,0.584478,0.0224427) material=G4_C + --> #secondaries=11 impactParameter[fm]=1.59077 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 + Collision 668 projectile=Bs0 Ekin[MeV]=15127.6 direction=(0.993003,0.113494,0.0326096) material=G4_Cu + --> #secondaries=14 impactParameter[fm]=3.31692 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 + Collision 669 projectile=anti_xi- Ekin[MeV]=9720.87 direction=(0.212217,0.762576,0.611099) material=G4_Al + --> #secondaries=16 impactParameter[fm]=2.3413 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 670 projectile=omega- Ekin[MeV]=15214.8 direction=(0.211708,0.704754,0.677128) material=G4_Si + --> #secondaries=12 impactParameter[fm]=4.80706 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 671 projectile=lambda_b Ekin[MeV]=3541.03 direction=(0.807427,0.552816,0.206048) material=G4_Fe + --> #secondaries=21 impactParameter[fm]=0.930186 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=50 #NNcollisions=0 + Collision 672 projectile=xi_c+ Ekin[MeV]=12192.7 direction=(0.688391,0.572431,0.445466) material=G4_Fe + --> #secondaries=9 impactParameter[fm]=4.19945 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=0 + Collision 673 projectile=kaon+ Ekin[MeV]=15175.1 direction=(0.774415,0.611716,0.161508) material=G4_Fe + --> #secondaries=27 impactParameter[fm]=0.862099 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=3 + Collision 674 projectile=xi_c0 Ekin[MeV]=23824.6 direction=(0.529079,0.490759,0.692265) material=G4_Pb + --> #secondaries=19 impactParameter[fm]=7.10299 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 675 projectile=deuteron Ekin[MeV]=16301.6 direction=(0.168498,0.824981,0.539458) material=G4_He + --> #secondaries=5 impactParameter[fm]=4.45677 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 676 projectile=Bs0 Ekin[MeV]=24934.3 direction=(0.598573,0.640044,0.481719) material=G4_Cu + --> #secondaries=9 impactParameter[fm]=4.28306 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 677 projectile=anti_triton Ekin[MeV]=11139.8 direction=(0.214135,0.766717,0.60522) material=G4_Al + --> #secondaries=27 impactParameter[fm]=5.06948 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 678 projectile=anti_B0 Ekin[MeV]=28717 direction=(0.886694,0.387043,0.252925) material=G4_Al + --> #secondaries=16 impactParameter[fm]=1.39463 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 679 projectile=anti_xi_c0 Ekin[MeV]=24631.4 direction=(0.0564622,0.54158,0.838751) material=G4_Pb + --> #secondaries=35 impactParameter[fm]=7.15228 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 680 projectile=hyperHe5 Ekin[MeV]=16755.8 direction=(0.748701,0.633398,0.195585) material=G4_Be + --> #secondaries=7 impactParameter[fm]=2.9899 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 681 projectile=anti_xi- Ekin[MeV]=8933.06 direction=(0.251591,0.912444,0.32272) material=G4_Si + --> #secondaries=37 impactParameter[fm]=0.996327 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 682 projectile=anti_neutron Ekin[MeV]=21016.4 direction=(0.370122,0.777545,0.508364) material=G4_Fe + --> #secondaries=30 impactParameter[fm]=2.54277 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=2 + Collision 683 projectile=anti_xi_b0 Ekin[MeV]=10100.9 direction=(0.836853,0.505267,0.210673) material=G4_W + --> #secondaries=22 impactParameter[fm]=5.40586 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=185 #NNcollisions=1 + Collision 684 projectile=deuteron Ekin[MeV]=18815.7 direction=(0.588049,0.442278,0.677192) material=G4_He + --> #secondaries=13 impactParameter[fm]=0.532154 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=4 + Collision 685 projectile=B0 Ekin[MeV]=4597.09 direction=(0.272612,0.735367,0.620417) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=2.11698 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=60 #NNcollisions=1 + Collision 686 projectile=anti_hyperHe5 Ekin[MeV]=17654.5 direction=(0.000918625,0.278967,0.9603) material=G4_Fe + --> #secondaries=70 impactParameter[fm]=1.35925 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=5 + Collision 687 projectile=pi- Ekin[MeV]=13858.6 direction=(0.639534,0.302699,0.706661) material=G4_Al + --> #secondaries=17 impactParameter[fm]=1.10484 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 688 projectile=anti_neutron Ekin[MeV]=24990.7 direction=(0.395098,0.384677,0.834219) material=G4_Be + --> #secondaries=10 impactParameter[fm]=2.40624 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 689 projectile=xi_b- Ekin[MeV]=8043.69 direction=(0.726024,0.00181903,0.687667) material=G4_Si + --> #secondaries=11 impactParameter[fm]=3.60084 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 690 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=20453.2 direction=(0.674695,0.668539,0.312798) material=G4_Be + --> #secondaries=7 impactParameter[fm]=3.52924 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 691 projectile=hyperHe5 Ekin[MeV]=8243.66 direction=(0.750173,0.658901,0.05559) material=G4_Be + --> #secondaries=7 impactParameter[fm]=4.7123 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 692 projectile=anti_hyperalpha Ekin[MeV]=17336 direction=(0.0380138,0.59809,0.800527) material=G4_Pb + --> #secondaries=49 impactParameter[fm]=7.01429 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=204 #NNcollisions=1 + Collision 693 projectile=anti_xi0 Ekin[MeV]=5628.77 direction=(0.7811,0.591353,0.200461) material=G4_H + --> #secondaries=7 impactParameter[fm]=1.36114 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 694 projectile=Bs0 Ekin[MeV]=6889.97 direction=(0.199874,0.861045,0.467602) material=G4_He + --> #secondaries=4 impactParameter[fm]=1.40918 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 695 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=9825.03 direction=(0.625443,0.052493,0.778502) material=G4_Al + --> #secondaries=12 impactParameter[fm]=5.62963 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 696 projectile=anti_proton Ekin[MeV]=1881.97 direction=(0.379923,0.204762,0.90207) material=G4_Pb + --> #secondaries=52 impactParameter[fm]=6.27023 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 697 projectile=anti_proton Ekin[MeV]=28484.8 direction=(0.549432,0.0317112,0.834937) material=G4_W + --> #secondaries=84 impactParameter[fm]=3.01745 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=4 + Collision 698 projectile=anti_triton Ekin[MeV]=14180.1 direction=(0.408135,0.432602,0.803916) material=G4_W + --> #secondaries=46 impactParameter[fm]=8.37979 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=186 #NNcollisions=1 + Collision 699 projectile=anti_xi_b- Ekin[MeV]=24971.8 direction=(0.586868,0.0447249,0.808446) material=G4_C + --> #secondaries=18 impactParameter[fm]=1.07486 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=2 + Collision 700 projectile=pi+ Ekin[MeV]=19827.7 direction=(0.91991,0.135344,0.368033) material=G4_Ar + --> #secondaries=15 impactParameter[fm]=6.20483 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + List of produced secondaries: + j=0 pi0 p=(3953.75,363.508,1163.654139.63) MeV + j=1 pi+ p=(553.937,-80.2154,11.3872576.966) MeV + j=2 neutron p=(902.643,414.536,238.0471387.82) MeV + j=3 pi+ p=(433.633,227.305,21.905509.573) MeV + j=4 pi0 p=(542.625,269.988,342.72709.233) MeV + j=5 pi- p=(826.707,326.762,411.262989.361) MeV + j=6 pi+ p=(9753.97,1404.03,4300.410752.9) MeV + j=7 pi0 p=(1029.28,72.3081,310.4661085.93) MeV + j=8 pi- p=(181.515,-304.05,460.643597.549) MeV + j=9 proton p=(214.918,212.998,359.5431049.37) MeV + j=10 Cl36 p=(-92.9376,-192.029,-291.19833497.5) MeV + j=11 neutron p=(80.6039,12.0003,-9.49913943.141) MeV + j=12 neutron p=(-15.9339,-24.7694,29.3036940.483) MeV + j=13 gamma p=(0.640598,-0.535572,-0.4849340.96559) MeV + j=14 gamma p=(2.41677,0.56113,0.3483642.50539) MeV + Collision 701 projectile=anti_hyperHe5 Ekin[MeV]=14573.9 direction=(0.963763,0.266494,0.0119072) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=6.82606 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=63 #NNcollisions=1 + Collision 702 projectile=xi_b0 Ekin[MeV]=27317 direction=(0.297126,0.948557,0.109344) material=G4_Cu + --> #secondaries=25 impactParameter[fm]=4.61642 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 703 projectile=hypertriton Ekin[MeV]=25037 direction=(0.410479,0.0259968,0.9115) material=G4_Ar + --> #secondaries=34 impactParameter[fm]=2.96832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=6 + Collision 704 projectile=B+ Ekin[MeV]=9112.1 direction=(0.255793,0.0168929,0.966584) material=G4_Si + --> #secondaries=4 impactParameter[fm]=3.84503 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 705 projectile=sigma- Ekin[MeV]=25702.2 direction=(0.726905,0.0707345,0.683085) material=G4_Ar + --> #secondaries=29 impactParameter[fm]=2.16897 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 706 projectile=anti_proton Ekin[MeV]=21059.5 direction=(0.152372,0.407317,0.900486) material=G4_Si + --> #secondaries=25 impactParameter[fm]=2.5086 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=5 + Collision 707 projectile=D+ Ekin[MeV]=4192.32 direction=(0.590477,0.734024,0.33548) material=G4_Be + --> #secondaries=8 impactParameter[fm]=2.05153 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=0 + Collision 708 projectile=kaon0L Ekin[MeV]=20158.1 direction=(0.514677,0.606366,0.606158) material=G4_He + --> #secondaries=9 impactParameter[fm]=1.64474 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 709 projectile=sigma- Ekin[MeV]=14438 direction=(0.436953,0.304161,0.846497) material=G4_Cu + --> #secondaries=10 impactParameter[fm]=6.31422 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 710 projectile=anti_proton Ekin[MeV]=26475.7 direction=(0.248433,0.820338,0.515099) material=G4_Ar + --> #secondaries=14 impactParameter[fm]=5.428 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 711 projectile=Bs0 Ekin[MeV]=18053.2 direction=(0.740114,0.0348951,0.671576) material=G4_Be + --> #secondaries=8 impactParameter[fm]=3.65421 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 712 projectile=Bc- Ekin[MeV]=24981.6 direction=(0.501927,0.742967,0.442797) material=G4_Al + --> #secondaries=6 impactParameter[fm]=0.380795 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 713 projectile=xi_c0 Ekin[MeV]=5125.43 direction=(0.355045,0.914369,0.194608) material=G4_W + --> #secondaries=40 impactParameter[fm]=4.80929 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=3 + Collision 714 projectile=Bc+ Ekin[MeV]=27034.5 direction=(0.783363,0.158109,0.601119) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.503929 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 715 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=21948.4 direction=(0.671491,0.393569,0.627855) material=G4_Fe + --> #secondaries=35 impactParameter[fm]=3.91355 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=6 + Collision 716 projectile=Bc+ Ekin[MeV]=15897.4 direction=(0.287364,0.956803,0.0441644) material=G4_Ar + --> #secondaries=10 impactParameter[fm]=0.805391 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 717 projectile=anti_xi_c0 Ekin[MeV]=1365.18 direction=(0.635159,0.662955,0.396312) material=G4_Cu + --> #secondaries=13 impactParameter[fm]=4.11038 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=0 + Collision 718 projectile=proton Ekin[MeV]=11019 direction=(0.842984,0.184825,0.505192) material=G4_Pb + --> #secondaries=71 impactParameter[fm]=5.04159 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=5 + Collision 719 projectile=anti_deuteron Ekin[MeV]=3177.99 direction=(0.375264,0.641507,0.669064) material=G4_Be + --> #secondaries=7 impactParameter[fm]=2.82257 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 720 projectile=anti_xi_c+ Ekin[MeV]=5403.32 direction=(0.148845,0.920244,0.361934) material=G4_Fe + --> #secondaries=28 impactParameter[fm]=2.80597 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=2 + Collision 721 projectile=anti_xi_b0 Ekin[MeV]=24401 direction=(0.72122,0.648908,0.242405) material=G4_C + --> #secondaries=15 impactParameter[fm]=2.57252 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 + Collision 722 projectile=xi_b0 Ekin[MeV]=24416.1 direction=(0.877987,0.261867,0.400705) material=G4_He + --> #secondaries=4 impactParameter[fm]=2.57799 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 723 projectile=anti_xi_c0 Ekin[MeV]=13658.8 direction=(0.70206,0.664781,0.255299) material=G4_Be + --> #secondaries=9 impactParameter[fm]=1.04835 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 724 projectile=anti_xi0 Ekin[MeV]=23785.5 direction=(0.286597,0.0359163,0.957378) material=G4_Ar + --> #secondaries=45 impactParameter[fm]=2.74719 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=34 #NNcollisions=4 + Collision 725 projectile=xi_b0 Ekin[MeV]=2861.21 direction=(0.540513,0.703234,0.461853) material=G4_Si + --> #secondaries=10 impactParameter[fm]=3.08391 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=28 #NNcollisions=0 + Collision 726 projectile=anti_omega_b- Ekin[MeV]=24131.8 direction=(0.214088,0.763074,0.609823) material=G4_Cu + --> #secondaries=48 impactParameter[fm]=1.53018 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=3 + Collision 727 projectile=lambda_b Ekin[MeV]=23840.9 direction=(0.567574,0.733418,0.374108) material=G4_Cu + --> #secondaries=10 impactParameter[fm]=5.58844 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 + Collision 728 projectile=hyperalpha Ekin[MeV]=13211.1 direction=(0.522179,0.031348,0.85226) material=G4_Cu + --> #secondaries=50 impactParameter[fm]=4.40867 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=57 #NNcollisions=5 + Collision 729 projectile=anti_sigma- Ekin[MeV]=14176.3 direction=(0.862874,0.15113,0.482295) material=G4_Al + --> #secondaries=28 impactParameter[fm]=0.630026 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 730 projectile=xi_c+ Ekin[MeV]=13867.6 direction=(0.689891,0.392735,0.608119) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.69535 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 731 projectile=D+ Ekin[MeV]=25348.7 direction=(0.697292,0.610155,0.376158) material=G4_Fe + --> #secondaries=24 impactParameter[fm]=0.59855 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 732 projectile=Bc- Ekin[MeV]=18732.1 direction=(0.448131,0.754813,0.478995) material=G4_Pb + --> #secondaries=29 impactParameter[fm]=4.56185 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 733 projectile=anti_xi_c0 Ekin[MeV]=25619.5 direction=(0.609829,0.672277,0.419705) material=G4_H + --> #secondaries=6 impactParameter[fm]=2.20581 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 734 projectile=kaon0S Ekin[MeV]=29302 direction=(0.681491,0.194267,0.705571) material=G4_Be + --> #secondaries=20 impactParameter[fm]=0.985412 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=6 #NNcollisions=3 + Collision 735 projectile=pi+ Ekin[MeV]=25188.3 direction=(0.107062,0.985945,0.128255) material=G4_Si + --> #secondaries=27 impactParameter[fm]=2.79799 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 736 projectile=xi0 Ekin[MeV]=17173.8 direction=(0.750715,0.408753,0.518987) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.968309 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 737 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=6866.94 direction=(0.561225,0.312437,0.766427) material=G4_H + --> #secondaries=3 impactParameter[fm]=0.845015 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 738 projectile=hyperH4 Ekin[MeV]=28392.9 direction=(0.50205,0.758159,0.4161) material=G4_Cu + --> #secondaries=47 impactParameter[fm]=5.22499 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=58 #NNcollisions=8 + Collision 739 projectile=anti_alpha Ekin[MeV]=8572.02 direction=(0.481677,0.653741,0.583617) material=G4_H + --> #secondaries=9 impactParameter[fm]=2.40601 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 740 projectile=anti_alpha Ekin[MeV]=13326.1 direction=(0.270399,0.674839,0.686642) material=G4_Ar + --> #secondaries=15 impactParameter[fm]=5.50074 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=40 #NNcollisions=1 + Collision 741 projectile=anti_He3 Ekin[MeV]=15500.2 direction=(0.985967,0.149461,0.0743631) material=G4_He + --> #secondaries=16 impactParameter[fm]=1.18041 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=4 + Collision 742 projectile=anti_hyperHe5 Ekin[MeV]=10921.9 direction=(0.102694,0.812187,0.574287) material=G4_W + --> #secondaries=78 impactParameter[fm]=4.6495 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=4 + Collision 743 projectile=anti_xi0 Ekin[MeV]=18465.1 direction=(0.547089,0.200288,0.81276) material=G4_W + --> #secondaries=31 impactParameter[fm]=6.46288 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 744 projectile=anti_hyperHe5 Ekin[MeV]=16162.6 direction=(0.512539,0.662899,0.545773) material=G4_Cu + --> #secondaries=71 impactParameter[fm]=2.613 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=6 + Collision 745 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=19786.1 direction=(0.134636,0.811717,0.568321) material=G4_Al + --> #secondaries=45 impactParameter[fm]=0.996668 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=4 + Collision 746 projectile=xi_c0 Ekin[MeV]=28250.2 direction=(0.604206,0.614451,0.507332) material=G4_Be + --> #secondaries=11 impactParameter[fm]=2.1324 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 747 projectile=B+ Ekin[MeV]=17653.2 direction=(0.550228,0.424676,0.718958) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.61588 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 748 projectile=anti_triton Ekin[MeV]=20944.9 direction=(0.366898,0.0607787,0.928274) material=G4_Al + --> #secondaries=13 impactParameter[fm]=5.83439 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 749 projectile=anti_hypertriton Ekin[MeV]=5427.08 direction=(0.530494,0.726108,0.437428) material=G4_C + --> #secondaries=14 impactParameter[fm]=3.67096 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 750 projectile=lambda_c+ Ekin[MeV]=19986.4 direction=(0.6051,0.762472,0.229108) material=G4_W + --> #secondaries=70 impactParameter[fm]=2.42632 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=5 + Collision 751 projectile=Bc+ Ekin[MeV]=26920.1 direction=(0.357694,0.684073,0.635688) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=2.36943 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 752 projectile=anti_D0 Ekin[MeV]=27506.1 direction=(0.333689,0.926451,0.174181) material=G4_Ar + --> #secondaries=33 impactParameter[fm]=2.92475 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 753 projectile=lambda_b Ekin[MeV]=19804.9 direction=(0.371743,0.835913,0.403802) material=G4_H + --> #secondaries=6 impactParameter[fm]=1.30889 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 754 projectile=anti_hyperHe5 Ekin[MeV]=12251.5 direction=(0.96164,0.147803,0.231089) material=G4_C + --> #secondaries=25 impactParameter[fm]=1.50694 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=4 + Collision 755 projectile=anti_lambda_b Ekin[MeV]=24794.5 direction=(0.541346,0.516355,0.663567) material=G4_Cu + --> #secondaries=37 impactParameter[fm]=2.37064 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=2 + Collision 756 projectile=neutron Ekin[MeV]=7454.5 direction=(0.263293,0.552781,0.790639) material=G4_Be + --> #secondaries=12 impactParameter[fm]=1.12844 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=6 #NNcollisions=2 + Collision 757 projectile=anti_sigma- Ekin[MeV]=14201.6 direction=(0.217467,0.742748,0.633272) material=G4_Ar + --> #secondaries=33 impactParameter[fm]=0.930041 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=2 + Collision 758 projectile=Bs0 Ekin[MeV]=13959.8 direction=(0.174272,0.843797,0.507578) material=G4_Si + --> #secondaries=8 impactParameter[fm]=1.75515 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 759 projectile=anti_Bs0 Ekin[MeV]=3412.32 direction=(0.00904596,0.894638,0.4467) material=G4_W + --> #secondaries=31 impactParameter[fm]=2.0545 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=2 + Collision 760 projectile=lambda_b Ekin[MeV]=16911.1 direction=(0.664467,0.488704,0.565378) material=G4_W + --> #secondaries=34 impactParameter[fm]=5.71783 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=1 + Collision 761 projectile=anti_hyperHe5 Ekin[MeV]=10218.8 direction=(0.176297,0.892402,0.415377) material=G4_Pb + --> #secondaries=75 impactParameter[fm]=6.41824 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=202 #NNcollisions=3 + Collision 762 projectile=proton Ekin[MeV]=14596.8 direction=(0.50163,0.697014,0.512386) material=G4_C + --> #secondaries=17 impactParameter[fm]=2.96793 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 + Collision 763 projectile=anti_xi- Ekin[MeV]=21788.5 direction=(0.502295,0.861011,0.0797534) material=G4_H + --> #secondaries=4 impactParameter[fm]=1.147 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 764 projectile=anti_xi_b0 Ekin[MeV]=18536.4 direction=(0.0527192,0.853882,0.517789) material=G4_H + --> #secondaries=3 impactParameter[fm]=0.0159804 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 765 projectile=doublehyperH4 Ekin[MeV]=20577 direction=(0.940427,0.128417,0.314812) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.61884 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 766 projectile=anti_omega- Ekin[MeV]=25556.4 direction=(0.445968,0.00951013,0.894999) material=G4_Fe + --> #secondaries=39 impactParameter[fm]=2.36829 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 767 projectile=anti_omega_b- Ekin[MeV]=22423.5 direction=(0.683754,0.605095,0.407849) material=G4_H + --> #secondaries=3 impactParameter[fm]=0.630529 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 768 projectile=anti_omega_b- Ekin[MeV]=29138.7 direction=(0.387248,0.84724,0.363625) material=G4_C + --> #secondaries=10 impactParameter[fm]=3.08248 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 769 projectile=anti_omega- Ekin[MeV]=2528.61 direction=(0.84458,0.372183,0.384921) material=G4_Pb + --> #secondaries=7 impactParameter[fm]=8.60325 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=0 + Collision 770 projectile=xi_c+ Ekin[MeV]=27545.1 direction=(0.986346,0.127718,0.103972) material=G4_Fe + --> #secondaries=38 impactParameter[fm]=2.82387 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=50 #NNcollisions=3 + Collision 771 projectile=anti_xi_c+ Ekin[MeV]=3674.32 direction=(0.120988,0.933787,0.336755) material=G4_Be + --> #secondaries=6 impactParameter[fm]=1.34435 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 772 projectile=anti_xi- Ekin[MeV]=1964.26 direction=(0.200186,0.096268,0.975017) material=G4_Cu + --> #secondaries=11 impactParameter[fm]=5.52485 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=0 + Collision 773 projectile=omega_b- Ekin[MeV]=11240.4 direction=(0.449722,0.279501,0.84831) material=G4_Ar + --> #secondaries=14 impactParameter[fm]=3.43522 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 774 projectile=anti_omega- Ekin[MeV]=26747.7 direction=(0.351652,0.750963,0.558924) material=G4_Al + --> #secondaries=30 impactParameter[fm]=2.38398 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=2 + Collision 775 projectile=anti_omega_c0 Ekin[MeV]=28655 direction=(0.535782,0.638841,0.552105) material=G4_Cu + --> #secondaries=40 impactParameter[fm]=3.4166 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=3 + Collision 776 projectile=xi_b- Ekin[MeV]=18331.1 direction=(0.720979,0.144701,0.67768) material=G4_H + --> #secondaries=6 impactParameter[fm]=1.6058 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 777 projectile=anti_Bs0 Ekin[MeV]=15311.4 direction=(0.597753,0.591893,0.540698) material=G4_Cu + --> #secondaries=7 impactParameter[fm]=2.94507 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 778 projectile=Bc+ Ekin[MeV]=3106.58 direction=(0.660925,0.339571,0.66923) material=G4_Fe + --> #secondaries=7 impactParameter[fm]=1.9991 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=0 + Collision 779 projectile=anti_hypertriton Ekin[MeV]=24061.9 direction=(0.0613434,0.672929,0.737159) material=G4_Pb + --> #secondaries=75 impactParameter[fm]=6.01805 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=4 + Collision 780 projectile=anti_doublehyperH4 Ekin[MeV]=19645.4 direction=(0.533455,0.753728,0.383824) material=G4_Al + --> #secondaries=35 impactParameter[fm]=2.7065 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=24 #NNcollisions=4 + Collision 781 projectile=pi- Ekin[MeV]=3727.06 direction=(0.477151,0.497017,0.724777) material=G4_W + --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 782 projectile=anti_hyperH4 Ekin[MeV]=18642.6 direction=(0.60224,0.160505,0.782014) material=G4_Al + --> #secondaries=17 impactParameter[fm]=4.51685 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 783 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=14549.2 direction=(0.12772,0.315664,0.940236) material=G4_Si + --> #secondaries=14 impactParameter[fm]=3.75188 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=27 #NNcollisions=2 + Collision 784 projectile=anti_hypertriton Ekin[MeV]=6033.48 direction=(0.733306,0.620405,0.278136) material=G4_Be + --> #secondaries=16 impactParameter[fm]=1.93398 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=3 + Collision 785 projectile=omega- Ekin[MeV]=3089.56 direction=(0.186238,0.73401,0.653104) material=G4_W + --> #secondaries=43 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 786 projectile=neutron Ekin[MeV]=7950.94 direction=(0.481585,0.743464,0.464044) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.93109 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 787 projectile=anti_omega_b- Ekin[MeV]=3351.83 direction=(0.571144,0.159149,0.805274) material=G4_Si + --> #secondaries=4 impactParameter[fm]=4.06867 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 788 projectile=proton Ekin[MeV]=25129.5 direction=(0.101219,0.989629,0.101923) material=G4_Al + --> #secondaries=32 impactParameter[fm]=1.41948 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=3 + Collision 789 projectile=xi- Ekin[MeV]=4711.9 direction=(0.224947,0.302082,0.926361) material=G4_Si + --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 790 projectile=alpha Ekin[MeV]=13998.4 direction=(0.285771,0.679768,0.675463) material=G4_Si + --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 791 projectile=kaon0L Ekin[MeV]=20980.6 direction=(0.592563,0.59051,0.547876) material=G4_W + --> #secondaries=33 impactParameter[fm]=5.48516 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=184 #NNcollisions=2 + Collision 792 projectile=hypertriton Ekin[MeV]=19454.3 direction=(0.139013,0.821436,0.5531) material=G4_C + --> #secondaries=14 impactParameter[fm]=1.83939 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=5 + Collision 793 projectile=B- Ekin[MeV]=24937.6 direction=(0.671963,0.737436,0.0682242) material=G4_He + --> #secondaries=10 impactParameter[fm]=1.17728 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 794 projectile=anti_He3 Ekin[MeV]=10539.8 direction=(0.325371,0.755677,0.568407) material=G4_Cu + --> #secondaries=53 impactParameter[fm]=2.4288 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=3 + Collision 795 projectile=anti_omega_c0 Ekin[MeV]=16482.8 direction=(0.424931,0.901116,0.0861622) material=G4_Pb + --> #secondaries=68 impactParameter[fm]=3.41683 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=2 + Collision 796 projectile=anti_omega_c0 Ekin[MeV]=3883.15 direction=(0.320562,0.0238547,0.946927) material=G4_He + --> #secondaries=4 impactParameter[fm]=3.6383 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 797 projectile=kaon- Ekin[MeV]=3182.43 direction=(0.55551,0.615477,0.559104) material=G4_H --> #secondaries=4 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 694 projectile=anti_deuteron Ekin[MeV]=25978.3 direction=(0.134465,0.147714,0.979847) material=G4_Cu - --> #secondaries=42 impactParameter[fm]=4.80599 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=59 #NNcollisions=2 - Collision 695 projectile=lambda Ekin[MeV]=10698.8 direction=(0.65717,0.61611,0.434207) material=G4_H - --> #secondaries=4 impactParameter[fm]=0.838453 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 696 projectile=sigma- Ekin[MeV]=27097.8 direction=(0.466342,0.721839,0.511344) material=G4_C - --> #secondaries=7 impactParameter[fm]=3.38982 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 697 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=17429.9 direction=(0.596333,0.553351,0.581541) material=G4_He - --> #secondaries=17 impactParameter[fm]=1.43095 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=3 - Collision 698 projectile=anti_omega_b- Ekin[MeV]=1759.96 direction=(0.386622,0.38219,0.839318) material=G4_Fe - --> #secondaries=13 impactParameter[fm]=2.3168 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=0 - Collision 699 projectile=xi_b- Ekin[MeV]=23006.8 direction=(0.779591,0.33536,0.528933) material=G4_W - --> #secondaries=46 impactParameter[fm]=1.64789 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=2 - Collision 700 projectile=hypertriton Ekin[MeV]=25587.3 direction=(0.183781,0.315395,0.930994) material=G4_W - --> #secondaries=145 impactParameter[fm]=1.22778 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=165 #NNcollisions=7 + Collision 798 projectile=anti_omega_c0 Ekin[MeV]=13552.2 direction=(0.499557,0.865676,0.0323849) material=G4_Si + --> #secondaries=21 impactParameter[fm]=1.29512 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 799 projectile=pi- Ekin[MeV]=21030.3 direction=(0.0518353,0.941778,0.332217) material=G4_Al + --> #secondaries=18 impactParameter[fm]=2.71561 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 800 projectile=kaon0L Ekin[MeV]=23539.6 direction=(0.214994,0.8194,0.531377) material=G4_Ar + --> #secondaries=19 impactParameter[fm]=2.58402 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 List of produced secondaries: - j=0 neutron p=(1014.74,3270.47,7874.998638.51) MeV - j=1 neutron p=(1264.19,1291.85,4190.034658.99) MeV - j=2 proton p=(269.879,376.936,1072.051498.18) MeV - j=3 pi0 p=(333.091,-2.49703,20.8537360.013) MeV - j=4 pi+ p=(19.396,4.31182,-42.9306147.369) MeV - j=5 proton p=(-498.657,-311.455,77.75031109.98) MeV - j=6 pi- p=(162.719,-47.3665,10.7018219.807) MeV - j=7 neutron p=(501.146,-505.704,582.5971314.95) MeV - j=8 proton p=(-548.119,273.908,1257.691684.52) MeV - j=9 pi0 p=(280.553,186.607,267.957451.167) MeV - j=10 pi- p=(69.9961,108.474,371.432417.262) MeV - j=11 neutron p=(-92.7809,704.594,994.8841541.96) MeV - j=12 pi+ p=(-30.9129,252.658,65.4181297.576) MeV - j=13 eta p=(376.99,171.994,784.7891042.95) MeV - j=14 neutron p=(-136.601,273.631,398.9941065.6) MeV - j=15 sigma0 p=(329.877,-38.6672,-217.5211256.99) MeV - j=16 proton p=(185.371,567.23,-84.53031115.17) MeV - j=17 neutron p=(-152.759,-437.146,63.78011049.42) MeV - j=18 neutron p=(-80.3416,377.518,309.7151061.92) MeV - j=19 pi0 p=(135.464,227.382,184.268349.609) MeV - j=20 proton p=(-71.1772,55.255,892.0571297.78) MeV - j=21 proton p=(221.944,487.662,-127.4821087.97) MeV - j=22 proton p=(-677.813,-171.076,362.111224.82) MeV - j=23 proton p=(167.438,-64.0641,-361.821021.47) MeV - j=24 pi- p=(12.2812,-128.64,167.825253.661) MeV - j=25 neutron p=(-292.862,-32.2362,251.5781016.31) MeV - j=26 proton p=(-194.497,195.289,55.3548979.482) MeV - j=27 neutron p=(-95.5227,95.0115,-377.7161021.57) MeV - j=28 neutron p=(-132.819,-153.056,-200.3981.82) MeV - j=29 proton p=(325.287,241.115,234.0791048.38) MeV - j=30 proton p=(-75.8513,495.978,258.7261095.01) MeV - j=31 neutron p=(174.486,162.808,433.5881061.95) MeV - j=32 proton p=(-52.1636,275.776,254.711011.93) MeV - j=33 neutron p=(65.4344,361.031,-138.5461018.14) MeV - j=34 neutron p=(-47.4704,82.9105,-340.5211003.93) MeV - j=35 neutron p=(-51.5897,136.978,114.888957.813) MeV - j=36 pi0 p=(-84.961,-164.648,-88.6705245.781) MeV - j=37 deuteron p=(225.5,-81.12,292.9041913.41) MeV - j=38 deuteron p=(378.679,345.252,114.7131947.74) MeV - j=39 deuteron p=(142.676,195.566,-122.4281895.13) MeV - j=40 deuteron p=(345.622,598.687,-4.133841998.96) MeV - j=41 deuteron p=(188.988,82.3166,-32.53321887.19) MeV - j=42 alpha p=(369.569,665.682,-111.0113805.97) MeV - j=43 neutron p=(177.684,42.4652,-0.344567957.162) MeV - j=44 proton p=(138.209,72.5431,260.398986.167) MeV - j=45 neutron p=(173.24,15.3484,26.2972955.888) MeV - j=46 proton p=(-191.445,-33.5011,-46.6086959.323) MeV - j=47 neutron p=(177.873,111.781,35.6239963.424) MeV - j=48 neutron p=(-39.4107,-151.768,-106.978958.548) MeV - j=49 proton p=(-87.8108,-98.4278,-45.3763948.584) MeV - j=50 neutron p=(259.53,146.635,-151.968997.364) MeV - j=51 proton p=(145.128,52.5524,284.619992.565) MeV - j=52 proton p=(-7.13093,233.233,53.6042968.337) MeV - j=53 neutron p=(88.7352,-54.2727,176.808961.698) MeV - j=54 neutron p=(-25.7308,277.685,253.0131012.21) MeV - j=55 neutron p=(170.004,66.9126,-20.2703957.378) MeV - j=56 neutron p=(-159.471,-109.635,199.814979.877) MeV - j=57 neutron p=(-207.347,-87.26,57.075967.806) MeV - j=58 neutron p=(108.27,-27.0699,28.1762946.59) MeV - j=59 proton p=(48.2052,-165.244,-92.3501958.39) MeV - j=60 deuteron p=(451.204,215.459,-91.26271943.26) MeV - j=61 neutron p=(-140.349,124.902,238.382987.374) MeV - j=62 neutron p=(119.452,-49.3192,157.735961.439) MeV - j=63 triton p=(217.842,98.0661,355.3012841.36) MeV - j=64 proton p=(-260.794,-2.18051,33.9697974.436) MeV - j=65 neutron p=(16.6961,70.3365,349.5411005.08) MeV - j=66 neutron p=(-62.047,118.607,-32.2033949.599) MeV - j=67 proton p=(-125.755,179.824,17.9967963.758) MeV - j=68 deuteron p=(-249.665,-422.479,69.01981939.98) MeV - j=69 proton p=(8.76173,-77.8068,41.9565942.468) MeV - j=70 proton p=(-104.215,-14.1322,-43.8948945.167) MeV - j=71 proton p=(67.0868,31.883,151.932953.391) MeV - j=72 neutron p=(153.082,408.013,-25.04741036.01) MeV - j=73 neutron p=(-10.3901,-2.16635,148.452951.28) MeV - j=74 neutron p=(108.871,-24.3678,-203.12967.723) MeV - j=75 neutron p=(-66.0353,-27.5579,28.7359942.724) MeV - j=76 neutron p=(276.467,-10.6684,141.736989.656) MeV - j=77 proton p=(261.919,-61.1309,12.2442976.137) MeV - j=78 triton p=(-209.046,301.052,413.0512862.69) MeV - j=79 neutron p=(135.261,189.818,29.8288968.504) MeV - j=80 deuteron p=(261.063,208.099,35.79021905.43) MeV - j=81 triton p=(-71.6436,27.3366,109.1252812.09) MeV - j=82 deuteron p=(-471.489,-479.971,65.51961993.71) MeV - j=83 triton p=(-423.492,162.265,683.1972926.17) MeV - j=84 proton p=(-70.0031,187.745,-8.11164959.463) MeV - j=85 deuteron p=(122.209,292.499,-15.35021902.28) MeV - j=86 deuteron p=(104.796,-67.585,-215.5521892.07) MeV - j=87 proton p=(158.372,-105.524,-89.5543961.557) MeV - j=88 neutron p=(105.47,31.8651,-19.3571946.201) MeV - j=89 deuteron p=(214.914,-77.8543,431.0061938.02) MeV - j=90 deuteron p=(-159.451,377.702,184.5381928.75) MeV - j=91 neutron p=(110.87,69.5295,242.636979.174) MeV - j=92 neutron p=(185.291,145.942,104.153974.301) MeV - j=93 proton p=(-229.162,307.262,0.6044251013.55) MeV - j=94 deuteron p=(132.236,-471.939,79.57451940.22) MeV - j=95 alpha p=(138.124,292.31,-54.16043741.77) MeV - j=96 He3 p=(-212.052,-245.272,-368.3052850.94) MeV - j=97 neutron p=(4.00768,-60.0691,-36.1531942.186) MeV - j=98 deuteron p=(283.278,-132.007,530.6521974.13) MeV - j=99 deuteron p=(-482.922,-356.431,116.9911972.78) MeV - j=100 neutron p=(-163.76,243.385,90.9467988.488) MeV - j=101 neutron p=(95.3244,-61.5445,116.298953.511) MeV - j=102 neutron p=(90.0889,161.815,281.812998.249) MeV - j=103 neutron p=(53.0507,-191.008,-261.604995.248) MeV - j=104 deuteron p=(-277.728,275.514,-71.14341917.3) MeV - j=105 triton p=(-57.5582,107.195,182.372817.46) MeV - j=106 neutron p=(97.151,54.351,54.9768947.733) MeV - j=107 triton p=(-277.95,-377.911,297.032863.27) MeV - j=108 neutron p=(-6.25233,32.973,20.7621940.394) MeV - j=109 neutron p=(-196.194,-250.523,136.2321001.3) MeV - j=110 neutron p=(-10.9149,-140.874,219.728975.207) MeV - j=111 proton p=(24.8388,-17.1936,-295.809984.261) MeV - j=112 neutron p=(157.855,-190.76,155.164983.955) MeV - j=113 deuteron p=(-90.312,-204.796,276.8211909.1) MeV - j=114 deuteron p=(93.5659,105.534,5.415351880.92) MeV - j=115 triton p=(173.207,271.605,379.5112852.69) MeV - j=116 neutron p=(-15.0002,-124.53,129.906956.761) MeV - j=117 neutron p=(262.619,-249.144,-287.6761047.18) MeV - j=118 neutron p=(-182.619,17.7759,196.829977.339) MeV - j=119 alpha p=(950.853,-415.145,-226.7593875.72) MeV - j=120 neutron p=(77.2819,-114.095,-109.319955.889) MeV - j=121 neutron p=(-120.661,-184.732,160.702978.414) MeV - j=122 proton p=(204.97,-302.862,60.02941008.81) MeV - j=123 deuteron p=(332.42,108.042,277.3591927.96) MeV - j=124 deuteron p=(130.654,75.7853,60.45181882.66) MeV - j=125 deuteron p=(-148.769,-4.16789,-64.1051882.6) MeV - j=126 neutron p=(-95.0549,-66.6318,290.678990.329) MeV - j=127 proton p=(-29.2316,-92.3338,-238.912973.043) MeV - j=128 neutron p=(13.7901,-62.1483,-157.734954.838) MeV - j=129 proton p=(-218.91,18.0021,238.957992.825) MeV - j=130 neutron p=(0.197108,-143.991,-180.392967.501) MeV - j=131 neutron p=(-79.6947,92.1512,-67.1288949.807) MeV - j=132 proton p=(168.801,-240.805,120.887990.681) MeV - j=133 deuteron p=(10.5956,-281.818,-225.411910.04) MeV - j=134 triton p=(-148.254,195.687,357.0382842.14) MeV - j=135 neutron p=(-59.6913,-211.893,-89.627969.163) MeV - j=136 neutron p=(3.84982,-133.879,148.123960.553) MeV - j=137 neutron p=(-122.947,209.109,-95.5598975.068) MeV - j=138 deuteron p=(-280.941,22.7326,52.96041897.41) MeV - j=139 deuteron p=(65.3096,54.1701,61.12241878.53) MeV - j=140 proton p=(-100.581,-95.5466,-87.6531952.514) MeV - j=141 deuteron p=(-152.678,-445.791,-231.1541947.66) MeV - j=142 neutron p=(-78.821,-10.3366,138.887953.096) MeV - j=143 neutron p=(254.43,5.73744,-31.5448973.933) MeV - j=144 deuteron p=(-349.289,-291.737,475.0441987.64) MeV - Collision 701 projectile=anti_omega_c0 Ekin[MeV]=13712.8 direction=(0.494348,0.279892,0.822971) material=G4_Pb - --> #secondaries=79 impactParameter[fm]=2.0873 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=197 #NNcollisions=8 - Collision 702 projectile=anti_alpha Ekin[MeV]=20847.6 direction=(0.0670426,0.236897,0.969219) material=G4_C - --> #secondaries=29 impactParameter[fm]=1.29868 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=9 #NNcollisions=4 - Collision 703 projectile=hypertriton Ekin[MeV]=8344.87 direction=(0.525444,0.523913,0.670391) material=G4_C - --> #secondaries=7 impactParameter[fm]=3.09334 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 704 projectile=anti_lambda Ekin[MeV]=16705 direction=(0.111641,0.977171,0.180756) material=G4_Al - --> #secondaries=30 impactParameter[fm]=2.67351 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 705 projectile=kaon+ Ekin[MeV]=15290.5 direction=(0.693137,0.373932,0.616228) material=G4_Al - --> #secondaries=14 impactParameter[fm]=1.72127 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 706 projectile=B- Ekin[MeV]=11619.7 direction=(0.150386,0.596646,0.788287) material=G4_He - --> #secondaries=6 impactParameter[fm]=1.21367 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 707 projectile=pi- Ekin[MeV]=16502.7 direction=(0.515407,0.379318,0.768423) material=G4_Ar - --> #secondaries=33 impactParameter[fm]=1.34766 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=34 #NNcollisions=3 - Collision 708 projectile=Bs0 Ekin[MeV]=15246.1 direction=(0.228913,0.94211,0.245006) material=G4_Si - --> #secondaries=9 impactParameter[fm]=1.23918 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 709 projectile=xi_c0 Ekin[MeV]=26728.8 direction=(0.82962,0.19967,0.521405) material=G4_Cu - --> #secondaries=24 impactParameter[fm]=5.00443 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 710 projectile=anti_sigma- Ekin[MeV]=2566.08 direction=(0.502696,0.200236,0.840953) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=2.55687 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 711 projectile=B- Ekin[MeV]=23094.8 direction=(0.964572,0.0832265,0.250347) material=G4_Fe - --> #secondaries=19 impactParameter[fm]=4.39997 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 712 projectile=doublehyperH4 Ekin[MeV]=27312.9 direction=(0.586507,0.606557,0.536748) material=G4_Ar - --> #secondaries=36 impactParameter[fm]=2.99559 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=36 #NNcollisions=6 - Collision 713 projectile=omega- Ekin[MeV]=21310.6 direction=(0.123785,0.34894,0.928934) material=G4_H - --> #secondaries=6 impactParameter[fm]=1.34997 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 714 projectile=anti_triton Ekin[MeV]=27559.8 direction=(0.78705,0.0456376,0.615198) material=G4_Ar - --> #secondaries=52 impactParameter[fm]=1.11967 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=5 - Collision 715 projectile=B- Ekin[MeV]=4983.5 direction=(0.10048,0.769472,0.630727) material=G4_Be - --> #secondaries=6 impactParameter[fm]=2.43807 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 716 projectile=sigma- Ekin[MeV]=18000.2 direction=(0.696413,0.487782,0.526382) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=5.0944 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=61 #NNcollisions=1 - Collision 717 projectile=lambda Ekin[MeV]=22611.5 direction=(0.703763,0.704323,0.0929931) material=G4_Fe - --> #secondaries=23 impactParameter[fm]=5.4855 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 718 projectile=xi_b- Ekin[MeV]=18033 direction=(0.806361,0.0365785,0.590292) material=G4_Pb - --> #secondaries=54 impactParameter[fm]=3.90574 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=2 - Collision 719 projectile=xi_c0 Ekin[MeV]=21592.6 direction=(0.400768,0.770777,0.495266) material=G4_Ar - --> #secondaries=43 impactParameter[fm]=2.34331 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=3 - Collision 720 projectile=anti_omega- Ekin[MeV]=3103.19 direction=(0.0526549,0.14818,0.987558) material=G4_Cu - --> #secondaries=31 impactParameter[fm]=3.20636 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 721 projectile=anti_hyperH4 Ekin[MeV]=3491.8 direction=(0.0419918,0.879685,0.473699) material=G4_Cu - --> #secondaries=29 impactParameter[fm]=6.67878 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 722 projectile=omega_b- Ekin[MeV]=20397.9 direction=(0.666736,0.702057,0.250159) material=G4_Pb - --> #secondaries=44 impactParameter[fm]=5.22209 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=1 - Collision 723 projectile=xi0 Ekin[MeV]=28990.7 direction=(0.668325,0.319257,0.671875) material=G4_Fe - --> #secondaries=30 impactParameter[fm]=2.36774 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=2 - Collision 724 projectile=proton Ekin[MeV]=7298.73 direction=(0.52804,0.731926,0.430649) material=G4_Si - --> #secondaries=16 impactParameter[fm]=2.16223 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 725 projectile=anti_lambda_c+ Ekin[MeV]=15655.7 direction=(0.482576,0.875102,0.0362822) material=G4_Be - --> #secondaries=10 impactParameter[fm]=2.07721 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 726 projectile=anti_xi_c+ Ekin[MeV]=6593.86 direction=(0.479328,0.541947,0.690317) material=G4_C - --> #secondaries=12 impactParameter[fm]=2.38498 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 727 projectile=kaon- Ekin[MeV]=14191.8 direction=(0.990673,0.111675,0.0780722) material=G4_Si - --> #secondaries=13 impactParameter[fm]=3.32997 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 728 projectile=xi_b0 Ekin[MeV]=21875.2 direction=(0.308888,0.95088,0.0204004) material=G4_Fe - --> #secondaries=7 impactParameter[fm]=4.14819 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 729 projectile=anti_hyperalpha Ekin[MeV]=10472.5 direction=(0.026781,0.767109,0.640958) material=G4_C - --> #secondaries=17 impactParameter[fm]=2.92825 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=3 - Collision 730 projectile=sigma+ Ekin[MeV]=27764.1 direction=(0.341484,0.47208,0.812729) material=G4_Si - --> #secondaries=14 impactParameter[fm]=2.83427 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 731 projectile=xi_b- Ekin[MeV]=3566.63 direction=(0.702037,0.70326,0.112113) material=G4_He - --> #secondaries=4 impactParameter[fm]=0.957146 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 732 projectile=pi+ Ekin[MeV]=3320.89 direction=(0.633959,0.318689,0.704651) material=G4_W - --> #secondaries=47 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 733 projectile=D+ Ekin[MeV]=12044.9 direction=(0.609328,0.150766,0.778453) material=G4_Fe - --> #secondaries=28 impactParameter[fm]=3.61165 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=3 - Collision 734 projectile=D0 Ekin[MeV]=23632.8 direction=(0.725467,0.68483,0.0685956) material=G4_W - --> #secondaries=65 impactParameter[fm]=4.70735 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=3 - Collision 735 projectile=doublehyperdoubleneutron Ekin[MeV]=29993.6 direction=(0.349666,0.869651,0.348484) material=G4_Al - --> #secondaries=28 impactParameter[fm]=5.0667 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=24 #NNcollisions=2 - Collision 736 projectile=omega- Ekin[MeV]=14331.6 direction=(0.665258,0.683837,0.299665) material=G4_Cu - --> #secondaries=42 impactParameter[fm]=1.39736 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=3 - Collision 737 projectile=lambda Ekin[MeV]=29292.8 direction=(0.0538649,0.51698,0.854301) material=G4_He - --> #secondaries=15 impactParameter[fm]=3.87315 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 738 projectile=alpha Ekin[MeV]=22957.7 direction=(0.508091,0.572692,0.643325) material=G4_Cu - --> #secondaries=64 impactParameter[fm]=1.76306 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=7 - Collision 739 projectile=anti_omega- Ekin[MeV]=9442.11 direction=(0.745288,0.519512,0.417915) material=G4_Al - --> #secondaries=15 impactParameter[fm]=3.32588 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 740 projectile=kaon- Ekin[MeV]=28544.5 direction=(0.412294,0.61893,0.668536) material=G4_Al - --> #secondaries=21 impactParameter[fm]=2.78195 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 741 projectile=anti_hyperHe5 Ekin[MeV]=22477.5 direction=(0.0360532,0.0637654,0.997313) material=G4_H - --> #secondaries=9 impactParameter[fm]=1.45909 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 742 projectile=Ds+ Ekin[MeV]=14704.3 direction=(0.00856402,0.91495,0.403476) material=G4_Fe - --> #secondaries=10 impactParameter[fm]=3.6028 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 743 projectile=Bs0 Ekin[MeV]=1625.25 direction=(0.479797,0.392356,0.784762) material=G4_Be - --> #secondaries=6 impactParameter[fm]=2.28369 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 744 projectile=hyperH4 Ekin[MeV]=5225.47 direction=(0.874151,0.393574,0.284535) material=G4_Pb - --> #secondaries=13 impactParameter[fm]=8.63087 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 745 projectile=D0 Ekin[MeV]=18762.4 direction=(0.726458,0.631728,0.270513) material=G4_C - --> #secondaries=18 impactParameter[fm]=0.784756 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=9 #NNcollisions=3 - Collision 746 projectile=neutron Ekin[MeV]=25393.9 direction=(0.292837,0.955881,0.0232162) material=G4_Be - --> #secondaries=9 impactParameter[fm]=4.38561 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 747 projectile=anti_lambda_c+ Ekin[MeV]=26139.5 direction=(0.754253,0.559896,0.342955) material=G4_Fe - --> #secondaries=31 impactParameter[fm]=3.41394 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 748 projectile=hypertriton Ekin[MeV]=23557 direction=(0.764303,0.40236,0.503932) material=G4_Cu - --> #secondaries=41 impactParameter[fm]=4.79197 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=58 #NNcollisions=4 - Collision 749 projectile=Ds+ Ekin[MeV]=3517.03 direction=(0.78035,0.426717,0.457129) material=G4_Be - --> #secondaries=8 impactParameter[fm]=0.778209 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 750 projectile=hypertriton Ekin[MeV]=16568 direction=(0.527829,0.775687,0.345987) material=G4_Be - --> #secondaries=11 impactParameter[fm]=3.66089 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=7 #NNcollisions=1 - Collision 751 projectile=omega_b- Ekin[MeV]=6778.1 direction=(0.611985,0.6863,0.393022) material=G4_Fe - --> #secondaries=11 impactParameter[fm]=1.94037 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 752 projectile=D+ Ekin[MeV]=21176.1 direction=(0.10386,0.516491,0.849971) material=G4_Fe - --> #secondaries=27 impactParameter[fm]=3.32946 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 753 projectile=kaon0L Ekin[MeV]=7630.65 direction=(0.714731,0.173699,0.677487) material=G4_H - --> #secondaries=3 impactParameter[fm]=0.905322 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 754 projectile=sigma- Ekin[MeV]=9225.99 direction=(0.38944,0.174874,0.904298) material=G4_Al - --> #secondaries=16 impactParameter[fm]=3.20621 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 755 projectile=anti_sigma+ Ekin[MeV]=7690.46 direction=(0.546123,0.221626,0.807856) material=G4_H - --> #secondaries=5 impactParameter[fm]=1.66922 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 756 projectile=anti_deuteron Ekin[MeV]=1581.87 direction=(0.442562,0.668868,0.597289) material=G4_W - --> #secondaries=52 impactParameter[fm]=4.82419 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=2 - Collision 757 projectile=anti_Bs0 Ekin[MeV]=8737.4 direction=(0.616166,0.553734,0.560105) material=G4_Al - --> #secondaries=11 impactParameter[fm]=3.21479 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 758 projectile=D- Ekin[MeV]=21433.1 direction=(0.127172,0.97266,0.194319) material=G4_Cu - --> #secondaries=9 impactParameter[fm]=4.62698 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 759 projectile=neutron Ekin[MeV]=28416.5 direction=(0.961904,0.23721,0.135915) material=G4_W - --> #secondaries=63 impactParameter[fm]=5.86394 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 760 projectile=anti_alpha Ekin[MeV]=18519 direction=(0.555862,0.596184,0.579295) material=G4_Pb - --> #secondaries=99 impactParameter[fm]=2.20986 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=5 - Collision 761 projectile=D0 Ekin[MeV]=27395.3 direction=(0.729182,0.648358,0.218919) material=G4_Pb - --> #secondaries=37 impactParameter[fm]=6.25409 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 762 projectile=anti_xi0 Ekin[MeV]=2825.4 direction=(0.188196,0.0169657,0.981985) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=3.44384 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 763 projectile=omega_c0 Ekin[MeV]=17946.5 direction=(0.566054,0.450703,0.690253) material=G4_Pb - --> #secondaries=81 impactParameter[fm]=2.2105 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=202 #NNcollisions=3 - Collision 764 projectile=anti_sigma- Ekin[MeV]=22325.5 direction=(0.727503,0.683313,0.0618342) material=G4_H - --> #secondaries=10 impactParameter[fm]=2.05893 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 765 projectile=hyperalpha Ekin[MeV]=2561.27 direction=(0.49433,0.0855908,0.865051) material=G4_He - --> #secondaries=5 impactParameter[fm]=5.04011 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 766 projectile=omega- Ekin[MeV]=17196.1 direction=(0.723891,0.312389,0.615138) material=G4_W - --> #secondaries=36 impactParameter[fm]=5.44716 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=2 - Collision 767 projectile=B+ Ekin[MeV]=6747.02 direction=(0.850344,0.368984,0.375189) material=G4_H - --> #secondaries=3 impactParameter[fm]=1.20373 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 768 projectile=xi_b0 Ekin[MeV]=23867.8 direction=(0.429503,0.308024,0.84891) material=G4_Cu - --> #secondaries=12 impactParameter[fm]=4.24223 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 769 projectile=kaon+ Ekin[MeV]=21355.5 direction=(0.0130726,0.791834,0.610597) material=G4_Fe - --> #secondaries=16 impactParameter[fm]=2.24266 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 770 projectile=lambda Ekin[MeV]=1138.43 direction=(0.00575045,0.982613,0.185577) material=G4_Cu + j=0 kaon0S p=(215.194,749.813,573.8191088.77) MeV + j=1 pi+ p=(377.616,1520.52,12692020.99) MeV + j=2 pi- p=(77.5558,326.21,384.714529.067) MeV + j=3 neutron p=(546.801,2949.19,873.0723262.17) MeV + j=4 pi+ p=(591.907,411.134,691.7031008.62) MeV + j=5 pi0 p=(-30.5669,175.764,82.2905238.365) MeV + j=6 kaon- p=(433.425,766.534,396.0521084.44) MeV + j=7 pi- p=(543.762,1127.95,753.9031468.27) MeV + j=8 pi0 p=(1213.21,7247.33,4794.118774.82) MeV + j=9 pi0 p=(-18.3299,550.874,339.277661.155) MeV + j=10 kaon+ p=(1444.37,3520.63,2306.884477.32) MeV + j=11 neutron p=(-263.857,535.364,403.1641183.87) MeV + j=12 proton p=(15.5572,28.2597,242.981969.76) MeV + j=13 proton p=(155.488,30.5498,-87.3057955.556) MeV + j=14 Si31 p=(24.0431,-224.472,-89.724128847.2) MeV + j=15 alpha p=(-193.62,26.7091,-92.0953733.64) MeV + j=16 neutron p=(36.9664,-51.8763,-73.635944.597) MeV + j=17 gamma p=(-2.74091,0.587699,1.58873.22211) MeV + j=18 gamma p=(-0.0576624,0.70947,0.2230910.745951) MeV + Collision 801 projectile=Bc- Ekin[MeV]=24635.6 direction=(0.67162,0.511806,0.535707) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.2248 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 802 projectile=B- Ekin[MeV]=11700.5 direction=(0.28973,0.775661,0.560719) material=G4_Al + --> #secondaries=10 impactParameter[fm]=2.07048 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 803 projectile=Bc+ Ekin[MeV]=29100.8 direction=(0.398189,0.750198,0.527871) material=G4_Pb + --> #secondaries=28 impactParameter[fm]=4.26647 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 804 projectile=pi+ Ekin[MeV]=1740.03 direction=(0.943998,0.303247,0.130037) material=G4_Be + --> #secondaries=11 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 805 projectile=anti_omega_b- Ekin[MeV]=5206.83 direction=(0.0143056,0.36606,0.930481) material=G4_He + --> #secondaries=4 impactParameter[fm]=0.967667 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 806 projectile=sigma+ Ekin[MeV]=20720.9 direction=(0.378762,0.890668,0.251494) material=G4_Pb + --> #secondaries=56 impactParameter[fm]=6.25965 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=3 + Collision 807 projectile=anti_hypertriton Ekin[MeV]=7053.82 direction=(0.655458,0.239627,0.716208) material=G4_Pb + --> #secondaries=43 impactParameter[fm]=7.61705 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 808 projectile=neutron Ekin[MeV]=13021 direction=(0.225522,0.0416598,0.973347) material=G4_Be + --> #secondaries=6 impactParameter[fm]=2.53615 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 809 projectile=pi+ Ekin[MeV]=24324.4 direction=(0.307571,0.35867,0.881337) material=G4_Al + --> #secondaries=15 impactParameter[fm]=3.64216 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 810 projectile=kaon+ Ekin[MeV]=12581.8 direction=(0.0674511,0.280356,0.957523) material=G4_Ar + --> #secondaries=14 impactParameter[fm]=3.32595 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 811 projectile=hyperH4 Ekin[MeV]=15545.7 direction=(0.952482,0.258981,0.160334) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=6.38139 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 812 projectile=anti_hyperH4 Ekin[MeV]=11965.2 direction=(0.591638,0.355779,0.723455) material=G4_Pb + --> #secondaries=44 impactParameter[fm]=7.96965 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=205 #NNcollisions=2 + Collision 813 projectile=anti_omega_b- Ekin[MeV]=24302.7 direction=(0.771192,0.356093,0.527693) material=G4_Al + --> #secondaries=14 impactParameter[fm]=4.16144 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 814 projectile=triton Ekin[MeV]=25526.2 direction=(0.860637,0.434604,0.265373) material=G4_He + --> #secondaries=14 impactParameter[fm]=1.10904 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=1 #NNcollisions=4 + Collision 815 projectile=hypertriton Ekin[MeV]=8804.06 direction=(0.234592,0.480869,0.844826) material=G4_Cu + --> #secondaries=46 impactParameter[fm]=1.39009 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=3 + Collision 816 projectile=anti_alpha Ekin[MeV]=12114.4 direction=(0.503172,0.22076,0.835513) material=G4_W + --> #secondaries=52 impactParameter[fm]=7.14418 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=2 + Collision 817 projectile=anti_Bs0 Ekin[MeV]=7187.91 direction=(0.874119,0.466029,0.13687) material=G4_Al + --> #secondaries=7 impactParameter[fm]=0.512144 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 818 projectile=Bc+ Ekin[MeV]=10731.8 direction=(0.435983,0.0783273,0.89654) material=G4_Si + --> #secondaries=7 impactParameter[fm]=2.72033 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 819 projectile=deuteron Ekin[MeV]=4989.15 direction=(0.392751,0.88823,0.238316) material=G4_W + --> #secondaries=49 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 820 projectile=xi- Ekin[MeV]=17681.2 direction=(0.364502,0.612936,0.701034) material=G4_Pb + --> #secondaries=61 impactParameter[fm]=4.33251 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=0 + Collision 821 projectile=anti_sigma- Ekin[MeV]=23690.9 direction=(0.737808,0.399085,0.544399) material=G4_W + --> #secondaries=57 impactParameter[fm]=5.24329 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 822 projectile=omega_c0 Ekin[MeV]=1500.33 direction=(0.600716,0.543283,0.586502) material=G4_W + --> #secondaries=24 impactParameter[fm]=2.13848 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=0 + Collision 823 projectile=hyperHe5 Ekin[MeV]=25358.1 direction=(0.448218,0.849731,0.277592) material=G4_Al + --> #secondaries=14 impactParameter[fm]=4.9419 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 824 projectile=anti_neutron Ekin[MeV]=7455.68 direction=(0.142201,0.97291,0.182279) material=G4_Al + --> #secondaries=27 impactParameter[fm]=0.748752 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 825 projectile=neutron Ekin[MeV]=1529.99 direction=(0.842328,0.0571549,0.535926) material=G4_Pb + --> #secondaries=9 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 826 projectile=anti_triton Ekin[MeV]=18810.2 direction=(0.346594,0.603185,0.71836) material=G4_C + --> #secondaries=24 impactParameter[fm]=2.05227 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=6 + Collision 827 projectile=doublehyperH4 Ekin[MeV]=23143.5 direction=(0.196367,0.586397,0.785862) material=G4_Si + --> #secondaries=36 impactParameter[fm]=2.3898 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=19 #NNcollisions=10 + Collision 828 projectile=xi- Ekin[MeV]=21874.9 direction=(0.213247,0.929667,0.300407) material=G4_Pb + --> #secondaries=34 impactParameter[fm]=7.40685 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=207 #NNcollisions=0 + Collision 829 projectile=anti_hyperHe5 Ekin[MeV]=12399 direction=(0.875752,0.199089,0.439798) material=G4_H + --> #secondaries=6 impactParameter[fm]=2.62319 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 830 projectile=lambda Ekin[MeV]=16117.1 direction=(0.504747,0.809649,0.299497) material=G4_W + --> #secondaries=71 impactParameter[fm]=3.18393 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=175 #NNcollisions=7 + Collision 831 projectile=xi- Ekin[MeV]=21378.1 direction=(0.622444,0.129137,0.771937) material=G4_Fe + --> #secondaries=15 impactParameter[fm]=5.75921 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 832 projectile=He3 Ekin[MeV]=25611.6 direction=(0.68539,0.577235,0.443891) material=G4_Be + --> #secondaries=14 impactParameter[fm]=3.0354 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 833 projectile=anti_sigma+ Ekin[MeV]=28445.1 direction=(0.107756,0.944252,0.311088) material=G4_Al + --> #secondaries=17 impactParameter[fm]=3.77782 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 834 projectile=anti_doublehyperH4 Ekin[MeV]=20963 direction=(0.495986,0.417008,0.761645) material=G4_He + --> #secondaries=8 impactParameter[fm]=1.92913 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=4 #NNcollisions=1 + Collision 835 projectile=anti_sigma- Ekin[MeV]=6575.11 direction=(0.923295,0.343595,0.171666) material=G4_W + --> #secondaries=67 impactParameter[fm]=2.55258 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 836 projectile=xi_c+ Ekin[MeV]=26134.3 direction=(0.292611,0.955082,0.0468752) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.0089 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 837 projectile=hypertriton Ekin[MeV]=29504.8 direction=(0.272058,0.815446,0.510914) material=G4_W + --> #secondaries=117 impactParameter[fm]=3.5897 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=167 #NNcollisions=14 + Collision 838 projectile=anti_alpha Ekin[MeV]=25459.6 direction=(0.978633,0.191056,0.0760003) material=G4_Fe + --> #secondaries=65 impactParameter[fm]=2.77513 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=5 + Collision 839 projectile=B- Ekin[MeV]=29494.2 direction=(0.886654,0.402716,0.227298) material=G4_C + --> #secondaries=6 impactParameter[fm]=2.00275 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 840 projectile=neutron Ekin[MeV]=12934.9 direction=(0.0350852,0.434607,0.899936) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.958774 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 841 projectile=B0 Ekin[MeV]=23354 direction=(0.468592,0.666092,0.580296) material=G4_H + --> #secondaries=3 impactParameter[fm]=1.11373 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 842 projectile=Bc+ Ekin[MeV]=10787.7 direction=(0.736545,0.268614,0.620764) material=G4_Ar + --> #secondaries=6 impactParameter[fm]=2.90008 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 843 projectile=anti_alpha Ekin[MeV]=15031.4 direction=(0.559582,0.533347,0.634358) material=G4_Fe + --> #secondaries=39 impactParameter[fm]=5.46412 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=3 + Collision 844 projectile=xi- Ekin[MeV]=15398.7 direction=(0.723091,0.299763,0.62232) material=G4_Cu + --> #secondaries=25 impactParameter[fm]=4.79025 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=1 + Collision 845 projectile=hyperalpha Ekin[MeV]=7816.84 direction=(0.866848,0.475846,0.148812) material=G4_Be + --> #secondaries=14 impactParameter[fm]=2.4069 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=5 #NNcollisions=3 + Collision 846 projectile=anti_D0 Ekin[MeV]=10274.9 direction=(0.18145,0.561263,0.807503) material=G4_Fe + --> #secondaries=25 impactParameter[fm]=1.88988 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 + Collision 847 projectile=hypertriton Ekin[MeV]=14238.6 direction=(0.31513,0.0926221,0.944518) material=G4_Be + --> #secondaries=11 impactParameter[fm]=3.18285 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 848 projectile=hyperH4 Ekin[MeV]=18211.7 direction=(0.763582,0.61945,0.182278) material=G4_Be + --> #secondaries=11 impactParameter[fm]=4.61773 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 849 projectile=hyperHe5 Ekin[MeV]=11283.5 direction=(0.232955,0.972051,0.0291416) material=G4_H + --> #secondaries=4 impactParameter[fm]=3.65816 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 850 projectile=alpha Ekin[MeV]=22075.2 direction=(0.496855,0.858195,0.128987) material=G4_Al + --> #secondaries=36 impactParameter[fm]=1.68454 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=21 #NNcollisions=5 + Collision 851 projectile=anti_sigma- Ekin[MeV]=16083.1 direction=(0.117425,0.0618383,0.991155) material=G4_C + --> #secondaries=17 impactParameter[fm]=1.32768 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 852 projectile=Bc- Ekin[MeV]=1947.5 direction=(0.212078,0.337454,0.917141) material=G4_Pb + --> #secondaries=27 impactParameter[fm]=5.38537 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=204 #NNcollisions=0 + Collision 853 projectile=anti_D0 Ekin[MeV]=10389.2 direction=(0.844645,0.286549,0.452178) material=G4_He + --> #secondaries=6 impactParameter[fm]=0.91293 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 854 projectile=anti_sigma- Ekin[MeV]=20298.1 direction=(0.379742,0.9048,0.1927) material=G4_Al + --> #secondaries=11 impactParameter[fm]=3.14256 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 855 projectile=anti_omega- Ekin[MeV]=24421 direction=(0.43765,0.307431,0.844955) material=G4_C + --> #secondaries=13 impactParameter[fm]=2.83678 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 856 projectile=D+ Ekin[MeV]=18183.9 direction=(0.0391824,0.098883,0.994327) material=G4_Al + --> #secondaries=9 impactParameter[fm]=3.18669 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 857 projectile=hyperH4 Ekin[MeV]=20092.8 direction=(0.710898,0.702549,0.0323834) material=G4_Ar + --> #secondaries=11 impactParameter[fm]=5.3355 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 858 projectile=anti_neutron Ekin[MeV]=29303.7 direction=(0.374486,0.426765,0.823184) material=G4_Al + --> #secondaries=38 impactParameter[fm]=0.955185 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=21 #NNcollisions=6 + Collision 859 projectile=neutron Ekin[MeV]=16024.7 direction=(0.674732,0.655438,0.339319) material=G4_Ar + --> #secondaries=36 impactParameter[fm]=1.14225 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=37 #NNcollisions=2 + Collision 860 projectile=anti_xi_b- Ekin[MeV]=5627.79 direction=(0.319404,0.335949,0.88607) material=G4_Pb + --> #secondaries=26 impactParameter[fm]=3.97518 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=0 + Collision 861 projectile=B+ Ekin[MeV]=8777.59 direction=(0.904794,0.30883,0.293209) material=G4_Ar + --> #secondaries=10 impactParameter[fm]=3.01835 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=2 + Collision 862 projectile=xi0 Ekin[MeV]=29856.7 direction=(0.554153,0.728616,0.402533) material=G4_Si + --> #secondaries=13 impactParameter[fm]=3.69949 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 863 projectile=anti_xi_c+ Ekin[MeV]=26885.7 direction=(0.715196,0.658803,0.233394) material=G4_Be + --> #secondaries=6 impactParameter[fm]=1.55516 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 864 projectile=Bc+ Ekin[MeV]=13952.4 direction=(0.646339,0.589857,0.484061) material=G4_Si + --> #secondaries=10 impactParameter[fm]=2.71122 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 865 projectile=sigma- Ekin[MeV]=3173.42 direction=(0.467494,0.6675,0.579563) material=G4_C --> #secondaries=16 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 771 projectile=anti_omega_b- Ekin[MeV]=14776.6 direction=(0.706422,0.510044,0.490737) material=G4_Be - --> #secondaries=6 impactParameter[fm]=3.7473 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 772 projectile=anti_B0 Ekin[MeV]=5449.08 direction=(0.546842,0.690078,0.474084) material=G4_Ar - --> #secondaries=9 impactParameter[fm]=2.36241 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 773 projectile=sigma+ Ekin[MeV]=12060.5 direction=(0.65967,0.407471,0.631508) material=G4_He - --> #secondaries=8 impactParameter[fm]=1.2788 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=2 - Collision 774 projectile=alpha Ekin[MeV]=18342.1 direction=(0.114163,0.140313,0.983503) material=G4_Fe - --> #secondaries=48 impactParameter[fm]=3.52341 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=52 #NNcollisions=3 - Collision 775 projectile=Bs0 Ekin[MeV]=14810.1 direction=(0.44612,0.55731,0.700274) material=G4_W - --> #secondaries=40 impactParameter[fm]=3.85294 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 776 projectile=sigma- Ekin[MeV]=10310.9 direction=(0.127206,0.943386,0.306336) material=G4_He - --> #secondaries=9 impactParameter[fm]=0.483068 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 777 projectile=Bc- Ekin[MeV]=14529.9 direction=(0.534467,0.777105,0.332346) material=G4_Si - --> #secondaries=6 impactParameter[fm]=1.71679 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 778 projectile=anti_xi_b- Ekin[MeV]=14444.2 direction=(0.0498396,0.807123,0.588276) material=G4_He - --> #secondaries=9 impactParameter[fm]=0.278561 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=2 - Collision 779 projectile=anti_hyperHe5 Ekin[MeV]=5821.81 direction=(0.430832,0.865981,0.253893) material=G4_Si - --> #secondaries=10 impactParameter[fm]=5.10147 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=29 #NNcollisions=0 - Collision 780 projectile=deuteron Ekin[MeV]=2776.21 direction=(0.822103,0.00250501,0.569334) material=G4_Ar - --> #secondaries=29 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 781 projectile=D0 Ekin[MeV]=6541.63 direction=(0.437815,0.149344,0.886575) material=G4_Si - --> #secondaries=11 impactParameter[fm]=1.5415 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 782 projectile=anti_hyperHe5 Ekin[MeV]=2541.17 direction=(0.575225,0.430033,0.695836) material=G4_He - --> #secondaries=8 impactParameter[fm]=4.23633 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=4 #NNcollisions=1 - Collision 783 projectile=proton Ekin[MeV]=9287.88 direction=(0.613236,0.775905,0.148032) material=G4_W - --> #secondaries=51 impactParameter[fm]=5.96011 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=3 - Collision 784 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=16454.6 direction=(0.509979,0.314343,0.800693) material=G4_He - --> #secondaries=12 impactParameter[fm]=2.37374 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 785 projectile=anti_omega- Ekin[MeV]=15309.5 direction=(0.118529,0.66121,0.740778) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.86925 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 786 projectile=xi_b0 Ekin[MeV]=3198.98 direction=(0.0983789,0.724756,0.681946) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=3.15044 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=0 - Collision 787 projectile=D- Ekin[MeV]=5184.22 direction=(0.660854,0.330946,0.673607) material=G4_Al - --> #secondaries=12 impactParameter[fm]=1.24117 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 - Collision 788 projectile=anti_hypertriton Ekin[MeV]=1743.81 direction=(0.752147,0.287198,0.593121) material=G4_C - --> #secondaries=13 impactParameter[fm]=3.46509 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=12 #NNcollisions=1 - Collision 789 projectile=anti_xi_c+ Ekin[MeV]=3591.94 direction=(0.721728,0.480004,0.498703) material=G4_Be - --> #secondaries=8 impactParameter[fm]=2.62087 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 790 projectile=kaon+ Ekin[MeV]=3923.11 direction=(0.741254,0.582522,0.333482) material=G4_Al - --> #secondaries=12 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 791 projectile=anti_xi_c0 Ekin[MeV]=9557.36 direction=(0.309118,0.113577,0.944217) material=G4_Fe - --> #secondaries=27 impactParameter[fm]=3.49822 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=3 - Collision 792 projectile=xi_b- Ekin[MeV]=14253.1 direction=(0.511482,0.847288,0.143137) material=G4_Fe - --> #secondaries=17 impactParameter[fm]=3.5191 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 - Collision 793 projectile=hyperHe5 Ekin[MeV]=22755.7 direction=(0.499926,0.691826,0.521009) material=G4_Pb - --> #secondaries=107 impactParameter[fm]=4.93422 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=191 #NNcollisions=12 - Collision 794 projectile=anti_triton Ekin[MeV]=9597.23 direction=(0.353998,0.782611,0.51206) material=G4_He - --> #secondaries=16 impactParameter[fm]=1.871 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=4 #NNcollisions=2 - Collision 795 projectile=anti_deuteron Ekin[MeV]=19058.8 direction=(0.67376,0.708109,0.211254) material=G4_W - --> #secondaries=154 impactParameter[fm]=1.8189 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=4 - Collision 796 projectile=anti_hypertriton Ekin[MeV]=2350.17 direction=(0.547657,0.567836,0.614519) material=G4_Be - --> #secondaries=11 impactParameter[fm]=4.11616 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 797 projectile=kaon+ Ekin[MeV]=18061.9 direction=(0.162576,0.849768,0.501461) material=G4_Cu - --> #secondaries=33 impactParameter[fm]=2.54335 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=61 #NNcollisions=2 - Collision 798 projectile=Bc- Ekin[MeV]=4486.72 direction=(0.89228,0.186876,0.410992) material=G4_C - --> #secondaries=7 impactParameter[fm]=1.15339 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 799 projectile=anti_doublehyperH4 Ekin[MeV]=17484.4 direction=(0.280535,0.119713,0.952349) material=G4_Ar - --> #secondaries=41 impactParameter[fm]=2.95344 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=38 #NNcollisions=3 - Collision 800 projectile=D+ Ekin[MeV]=2914.7 direction=(0.789408,0.540925,0.290234) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=2.92962 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 + Collision 866 projectile=Bs0 Ekin[MeV]=12324.4 direction=(0.443653,0.384718,0.809422) material=G4_Al + --> #secondaries=12 impactParameter[fm]=1.21159 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 867 projectile=anti_hyperalpha Ekin[MeV]=8703.94 direction=(0.587425,0.783913,0.201029) material=G4_Pb + --> #secondaries=14 impactParameter[fm]=8.21642 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=207 #NNcollisions=1 + Collision 868 projectile=triton Ekin[MeV]=17472.3 direction=(0.588311,0.57989,0.563576) material=G4_W + --> #secondaries=150 impactParameter[fm]=2.29233 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=163 #NNcollisions=7 + Collision 869 projectile=lambda_b Ekin[MeV]=25226.3 direction=(0.787534,0.232052,0.570914) material=G4_Pb + --> #secondaries=48 impactParameter[fm]=6.22918 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=4 + Collision 870 projectile=anti_xi_b0 Ekin[MeV]=2148.95 direction=(0.416929,0.65609,0.629059) material=G4_W + --> #secondaries=38 impactParameter[fm]=2.69983 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=0 + Collision 871 projectile=anti_hyperHe5 Ekin[MeV]=25848.1 direction=(0.204893,0.708607,0.6752) material=G4_Pb + --> #secondaries=135 impactParameter[fm]=2.49461 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=203 #NNcollisions=6 + Collision 872 projectile=omega- Ekin[MeV]=13828.2 direction=(0.731975,0.668739,0.130387) material=G4_He + --> #secondaries=13 impactParameter[fm]=1.27951 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=2 + Collision 873 projectile=anti_doublehyperH4 Ekin[MeV]=18167.5 direction=(0.412631,0.855805,0.311984) material=G4_W + --> #secondaries=109 impactParameter[fm]=4.7572 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=4 + Collision 874 projectile=alpha Ekin[MeV]=1870.41 direction=(0.802855,0.205513,0.559632) material=G4_W + --> #secondaries=27 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 875 projectile=anti_triton Ekin[MeV]=19106.8 direction=(0.577008,0.776921,0.251905) material=G4_C + --> #secondaries=20 impactParameter[fm]=3.56321 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=5 + Collision 876 projectile=triton Ekin[MeV]=13218.2 direction=(0.462118,0.885288,0.0520719) material=G4_Si + --> #secondaries=14 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 877 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=24087.5 direction=(0.101125,0.295084,0.950105) material=G4_C + --> #secondaries=31 impactParameter[fm]=0.852238 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=6 + Collision 878 projectile=anti_omega_b- Ekin[MeV]=17775.5 direction=(0.340063,0.628876,0.699194) material=G4_C + --> #secondaries=8 impactParameter[fm]=0.410665 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 879 projectile=B0 Ekin[MeV]=19575.7 direction=(0.581216,0.0407467,0.812729) material=G4_Pb + --> #secondaries=63 impactParameter[fm]=2.05379 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=201 #NNcollisions=5 + Collision 880 projectile=triton Ekin[MeV]=29134.4 direction=(0.731319,0.350692,0.584968) material=G4_H + --> #secondaries=7 impactParameter[fm]=2.28692 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 881 projectile=anti_sigma- Ekin[MeV]=11180.2 direction=(0.466723,0.495002,0.7329) material=G4_Si + --> #secondaries=24 impactParameter[fm]=2.05554 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 882 projectile=anti_B0 Ekin[MeV]=16813.7 direction=(0.743454,0.198043,0.638792) material=G4_H + --> #secondaries=5 impactParameter[fm]=0.883311 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 883 projectile=Ds- Ekin[MeV]=13616.3 direction=(0.556857,0.452997,0.696206) material=G4_Ar + --> #secondaries=7 impactParameter[fm]=4.02271 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 + Collision 884 projectile=anti_omega_b- Ekin[MeV]=17820.4 direction=(0.611503,0.438926,0.658337) material=G4_Be + --> #secondaries=6 impactParameter[fm]=1.59489 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 + Collision 885 projectile=D+ Ekin[MeV]=10945.5 direction=(0.405968,0.481194,0.776944) material=G4_Si + --> #secondaries=8 impactParameter[fm]=3.70291 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 + Collision 886 projectile=He3 Ekin[MeV]=29417.7 direction=(0.542638,0.406408,0.735103) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=6.08255 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=1 + Collision 887 projectile=anti_doublehyperH4 Ekin[MeV]=27585.1 direction=(0.0543119,0.775764,0.628681) material=G4_Ar + --> #secondaries=40 impactParameter[fm]=2.66264 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=5 + Collision 888 projectile=B- Ekin[MeV]=8764.65 direction=(0.30353,0.649921,0.696759) material=G4_Be + --> #secondaries=8 impactParameter[fm]=0.933146 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 889 projectile=deuteron Ekin[MeV]=20708.6 direction=(0.708976,0.145807,0.689995) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=4.11386 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 890 projectile=omega_c0 Ekin[MeV]=22430.4 direction=(0.466983,0.222057,0.855931) material=G4_H + --> #secondaries=2 impactParameter[fm]=0.338493 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 891 projectile=xi- Ekin[MeV]=14089 direction=(0.615952,0.684543,0.389877) material=G4_Si + --> #secondaries=7 impactParameter[fm]=3.72015 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=0 + Collision 892 projectile=anti_xi_c+ Ekin[MeV]=20768 direction=(0.623324,0.234661,0.745923) material=G4_H + --> #secondaries=8 impactParameter[fm]=1.8581 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 893 projectile=xi_c+ Ekin[MeV]=3918.06 direction=(0.445384,0.614626,0.651051) material=G4_Al + --> #secondaries=15 impactParameter[fm]=4.11 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 894 projectile=anti_B0 Ekin[MeV]=25825.2 direction=(0.392012,0.880887,0.265264) material=G4_Fe + --> #secondaries=11 impactParameter[fm]=3.10982 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 895 projectile=D+ Ekin[MeV]=14325.3 direction=(0.277594,0.503016,0.818484) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.39663 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 896 projectile=anti_xi0 Ekin[MeV]=20533.5 direction=(0.717224,0.196706,0.668503) material=G4_He + --> #secondaries=6 impactParameter[fm]=3.06791 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 897 projectile=anti_xi0 Ekin[MeV]=7673.82 direction=(0.469761,0.211889,0.856987) material=G4_Al + --> #secondaries=23 impactParameter[fm]=1.52751 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 898 projectile=pi- Ekin[MeV]=8940.52 direction=(0.641466,0.701097,0.311425) material=G4_Al + --> #secondaries=18 impactParameter[fm]=2.58335 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=24 #NNcollisions=3 + Collision 899 projectile=proton Ekin[MeV]=1677.35 direction=(0.630111,0.625306,0.460383) material=G4_W + --> #secondaries=20 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 900 projectile=kaon0S Ekin[MeV]=29201.9 direction=(0.183962,0.472862,0.861719) material=G4_He + --> #secondaries=7 impactParameter[fm]=2.89804 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 List of produced secondaries: - j=0 pi+ p=(1897.39,548.725,708.22102.91) MeV - j=1 sigma_c0 p=(1512.1,1941.02,250.213483.89) MeV - j=2 proton p=(-151.175,-51.1781,-162.147965.463) MeV - j=3 triton p=(197.952,13.733,196.4962822.77) MeV - j=4 Mg26 p=(-39.0133,167.64,309.45924199.1) MeV - j=5 alpha p=(14.4907,-184.806,233.6043739.29) MeV - j=6 alpha p=(140.225,-38.0926,-205.6963735.88) MeV - j=7 neutron p=(-94.4797,-15.635,-52.9945945.919) MeV - j=8 gamma p=(0.594904,-0.110153,1.79591.89507) MeV - j=9 gamma p=(-1.16943,0.965154,-1.259171.97094) MeV - j=10 gamma p=(-0.0430047,0.459165,0.5543090.721069) MeV - Collision 801 projectile=anti_omega_c0 Ekin[MeV]=29515.3 direction=(0.0448324,0.305211,0.951229) material=G4_Pb - --> #secondaries=51 impactParameter[fm]=5.57635 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=204 #NNcollisions=2 - Collision 802 projectile=Ds- Ekin[MeV]=4356.73 direction=(0.723833,0.480167,0.495485) material=G4_H - --> #secondaries=5 impactParameter[fm]=1.78682 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 803 projectile=xi_c0 Ekin[MeV]=21279.3 direction=(0.693964,0.631288,0.346251) material=G4_H - --> #secondaries=9 impactParameter[fm]=0.929056 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 804 projectile=lambda Ekin[MeV]=8584.15 direction=(0.57945,0.672194,0.46086) material=G4_W - --> #secondaries=23 impactParameter[fm]=6.19623 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 805 projectile=anti_D0 Ekin[MeV]=8251.47 direction=(0.610631,0.195114,0.767502) material=G4_Be - --> #secondaries=6 impactParameter[fm]=2.38412 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 806 projectile=anti_He3 Ekin[MeV]=7754.32 direction=(0.409705,0.590117,0.695631) material=G4_Ar - --> #secondaries=38 impactParameter[fm]=2.48919 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=3 - Collision 807 projectile=lambda_b Ekin[MeV]=3344.95 direction=(0.122282,0.538944,0.833419) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.44621 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 808 projectile=anti_xi0 Ekin[MeV]=8202.2 direction=(0.283523,0.617036,0.734086) material=G4_Cu - --> #secondaries=18 impactParameter[fm]=2.96227 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=65 #NNcollisions=1 - Collision 809 projectile=anti_omega_b- Ekin[MeV]=16626.3 direction=(0.376681,0.134596,0.916513) material=G4_Cu - --> #secondaries=15 impactParameter[fm]=4.25004 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 810 projectile=anti_lambda Ekin[MeV]=15444.8 direction=(0.21463,0.211277,0.95357) material=G4_Pb - --> #secondaries=48 impactParameter[fm]=5.55652 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 - Collision 811 projectile=alpha Ekin[MeV]=16347.4 direction=(0.458768,0.321285,0.828437) material=G4_Ar + j=0 pi0 p=(233.427,610.854,1583.791718.79) MeV + j=1 neutron p=(305.303,518.51,172.4111128.97) MeV + j=2 pi+ p=(323.635,752.908,885.4621214.55) MeV + j=3 pi0 p=(2961.26,7543.02,14412.316534.7) MeV + j=4 kaon0S p=(1617.89,4742.77,8574.459943.86) MeV + j=5 deuteron p=(-83.9453,193.937,-40.02251887.9) MeV + j=6 neutron p=(105.276,-320.158,0.773493998.182) MeV + Collision 901 projectile=anti_deuteron Ekin[MeV]=8676.34 direction=(0.701498,0.710334,0.057672) material=G4_W + --> #secondaries=72 impactParameter[fm]=5.33242 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=4 + Collision 902 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=10155.5 direction=(0.436834,0.260181,0.861093) material=G4_Be + --> #secondaries=11 impactParameter[fm]=4.63514 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 903 projectile=anti_deuteron Ekin[MeV]=19910.9 direction=(0.0438368,0.948395,0.314048) material=G4_C + --> #secondaries=17 impactParameter[fm]=2.98817 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=2 + Collision 904 projectile=anti_xi- Ekin[MeV]=19385.3 direction=(0.586187,0.245908,0.771955) material=G4_He + --> #secondaries=14 impactParameter[fm]=3.11532 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 905 projectile=kaon0S Ekin[MeV]=22110.4 direction=(0.683526,0.664008,0.303126) material=G4_C + --> #secondaries=19 impactParameter[fm]=1.3345 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=9 #NNcollisions=3 + Collision 906 projectile=anti_xi- Ekin[MeV]=12830.1 direction=(0.461548,0.585002,0.666892) material=G4_Pb + --> #secondaries=62 impactParameter[fm]=3.22267 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 907 projectile=anti_xi_b- Ekin[MeV]=23717 direction=(0.977978,0.141959,0.152993) material=G4_He + --> #secondaries=7 impactParameter[fm]=2.71263 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 908 projectile=kaon- Ekin[MeV]=11365.6 direction=(0.721868,0.685024,0.0982318) material=G4_He + --> #secondaries=4 impactParameter[fm]=0.635086 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 + Collision 909 projectile=doublehyperH4 Ekin[MeV]=13606.3 direction=(0.565091,0.120827,0.816133) material=G4_W + --> #secondaries=88 impactParameter[fm]=5.62399 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=168 #NNcollisions=5 + Collision 910 projectile=xi_c+ Ekin[MeV]=20046.5 direction=(0.801877,0.0925853,0.590272) material=G4_C + --> #secondaries=16 impactParameter[fm]=1.0557 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=1 + Collision 911 projectile=anti_xi_b- Ekin[MeV]=18699.4 direction=(0.628935,0.656973,0.415726) material=G4_Cu + --> #secondaries=33 impactParameter[fm]=1.96851 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=2 + Collision 912 projectile=kaon0L Ekin[MeV]=8620.48 direction=(0.632892,0.48406,0.604263) material=G4_H + --> #secondaries=3 impactParameter[fm]=0.529075 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 913 projectile=sigma- Ekin[MeV]=11786.1 direction=(0.775984,0.23553,0.585128) material=G4_Cu + --> #secondaries=13 impactParameter[fm]=4.45251 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 914 projectile=anti_hyperHe5 Ekin[MeV]=2055.73 direction=(0.547112,0.784687,0.291435) material=G4_Ar + --> #secondaries=6 impactParameter[fm]=8.78325 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 915 projectile=kaon0S Ekin[MeV]=18010.6 direction=(0.642216,0.296179,0.706991) material=G4_W + --> #secondaries=40 impactParameter[fm]=6.16484 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 916 projectile=anti_D0 Ekin[MeV]=17227.9 direction=(0.389395,0.807508,0.443061) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.863172 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 917 projectile=pi- Ekin[MeV]=9094.84 direction=(0.665117,0.746365,0.0236293) material=G4_C + --> #secondaries=12 impactParameter[fm]=0.508778 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 918 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=3302.68 direction=(0.562883,0.643175,0.519123) material=G4_W + --> #secondaries=57 impactParameter[fm]=8.53512 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=3 + Collision 919 projectile=anti_xi_c0 Ekin[MeV]=16266.2 direction=(0.348448,0.817361,0.458808) material=G4_Al + --> #secondaries=19 impactParameter[fm]=3.09743 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 920 projectile=lambda_b Ekin[MeV]=9690.94 direction=(0.66133,0.506651,0.553125) material=G4_Cu + --> #secondaries=20 impactParameter[fm]=5.26899 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=0 + Collision 921 projectile=anti_lambda_c+ Ekin[MeV]=13028.3 direction=(0.565157,0.434035,0.701578) material=G4_Fe + --> #secondaries=14 impactParameter[fm]=4.15585 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 922 projectile=Bs0 Ekin[MeV]=4450.3 direction=(0.918651,0.140384,0.369286) material=G4_Fe + --> #secondaries=21 impactParameter[fm]=0.558876 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 + Collision 923 projectile=Ds- Ekin[MeV]=10115.5 direction=(0.712106,0.361454,0.601877) material=G4_He + --> #secondaries=5 impactParameter[fm]=1.1041 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 924 projectile=kaon0L Ekin[MeV]=2489.61 direction=(0.654584,0.556332,0.511874) material=G4_Fe --> #secondaries=7 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 812 projectile=anti_D0 Ekin[MeV]=11716.9 direction=(0.848924,0.20573,0.48683) material=G4_Al - --> #secondaries=16 impactParameter[fm]=1.50194 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 813 projectile=kaon0S Ekin[MeV]=10004.4 direction=(0.371038,0.691609,0.619683) material=G4_H - --> #secondaries=8 impactParameter[fm]=0.70166 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 814 projectile=anti_omega_b- Ekin[MeV]=8484.68 direction=(0.557873,0.555497,0.616604) material=G4_Ar - --> #secondaries=12 impactParameter[fm]=2.46235 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 815 projectile=hypertriton Ekin[MeV]=25863.4 direction=(0.567233,0.511151,0.645733) material=G4_Fe - --> #secondaries=59 impactParameter[fm]=0.914999 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=48 #NNcollisions=7 - Collision 816 projectile=xi_b0 Ekin[MeV]=3398.34 direction=(0.735698,0.644253,0.209012) material=G4_H - --> #secondaries=2 impactParameter[fm]=0.845889 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 817 projectile=anti_neutron Ekin[MeV]=2872.1 direction=(0.843381,0.322103,0.430068) material=G4_Si - --> #secondaries=20 impactParameter[fm]=2.31262 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=28 #NNcollisions=1 - Collision 818 projectile=anti_xi_b0 Ekin[MeV]=9094.81 direction=(0.41323,0.436936,0.798954) material=G4_Pb - --> #secondaries=38 impactParameter[fm]=4.97481 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=201 #NNcollisions=2 - Collision 819 projectile=omega- Ekin[MeV]=25343.8 direction=(0.760111,0.640869,0.107322) material=G4_Ar - --> #secondaries=38 impactParameter[fm]=2.66739 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=35 #NNcollisions=4 - Collision 820 projectile=hyperalpha Ekin[MeV]=13383.4 direction=(0.899537,0.421968,0.113029) material=G4_W - --> #secondaries=40 impactParameter[fm]=7.34479 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=179 #NNcollisions=2 - Collision 821 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=12685.7 direction=(0.824084,0.238694,0.513722) material=G4_Ar - --> #secondaries=26 impactParameter[fm]=3.60397 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 822 projectile=anti_xi0 Ekin[MeV]=1827.49 direction=(0.719902,0.663003,0.20535) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=2.23191 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 823 projectile=lambda_c+ Ekin[MeV]=3921.8 direction=(0.420938,0.58932,0.689575) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.89001 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 824 projectile=sigma+ Ekin[MeV]=28144.4 direction=(0.854877,0.508497,0.103034) material=G4_W - --> #secondaries=96 impactParameter[fm]=3.07353 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=5 - Collision 825 projectile=Ds- Ekin[MeV]=5775.75 direction=(0.853361,0.493999,0.166553) material=G4_H - --> #secondaries=2 impactParameter[fm]=1.4636 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 826 projectile=anti_xi- Ekin[MeV]=17726.5 direction=(0.580538,0.536957,0.612089) material=G4_W - --> #secondaries=45 impactParameter[fm]=6.27736 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=2 - Collision 827 projectile=xi- Ekin[MeV]=9706.85 direction=(0.21324,0.34345,0.914642) material=G4_Al - --> #secondaries=13 impactParameter[fm]=4.25097 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 828 projectile=anti_neutron Ekin[MeV]=16422.8 direction=(0.706591,0.292685,0.644256) material=G4_C - --> #secondaries=15 impactParameter[fm]=1.43881 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 829 projectile=alpha Ekin[MeV]=22722 direction=(0.0692661,0.62851,0.774711) material=G4_Si - --> #secondaries=30 impactParameter[fm]=0.89707 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=14 #NNcollisions=9 - Collision 830 projectile=anti_xi_b0 Ekin[MeV]=12468.7 direction=(0.725399,0.56988,0.386048) material=G4_H - --> #secondaries=5 impactParameter[fm]=1.83259 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 831 projectile=omega- Ekin[MeV]=14703.3 direction=(0.0289845,0.429495,0.902604) material=G4_Si - --> #secondaries=25 impactParameter[fm]=1.43989 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 832 projectile=anti_hyperH4 Ekin[MeV]=16297.6 direction=(0.26781,0.827732,0.493089) material=G4_Fe - --> #secondaries=16 impactParameter[fm]=3.43642 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 833 projectile=B0 Ekin[MeV]=28110 direction=(0.402367,0.58739,0.702193) material=G4_H - --> #secondaries=4 impactParameter[fm]=1.18207 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 834 projectile=B0 Ekin[MeV]=24350.3 direction=(0.53786,0.335645,0.773337) material=G4_Ar - --> #secondaries=15 impactParameter[fm]=3.35384 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 835 projectile=kaon0L Ekin[MeV]=22536.8 direction=(0.668924,0.742734,0.0297838) material=G4_Pb - --> #secondaries=74 impactParameter[fm]=3.9875 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=203 #NNcollisions=4 - Collision 836 projectile=D0 Ekin[MeV]=13753 direction=(0.51878,0.0542977,0.853182) material=G4_Cu - --> #secondaries=9 impactParameter[fm]=5.48032 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 837 projectile=omega_b- Ekin[MeV]=5879.43 direction=(0.0550171,0.265473,0.962547) material=G4_Cu - --> #secondaries=10 impactParameter[fm]=3.73551 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=2 - Collision 838 projectile=kaon0L Ekin[MeV]=2228.35 direction=(0.367755,0.682633,0.631481) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 839 projectile=pi+ Ekin[MeV]=7226.68 direction=(0.830893,0.157685,0.533622) material=G4_Pb - --> #secondaries=20 impactParameter[fm]=7.17382 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=0 - Collision 840 projectile=anti_hyperHe5 Ekin[MeV]=16651 direction=(0.355043,0.332215,0.873829) material=G4_Fe - --> #secondaries=69 impactParameter[fm]=1.69184 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=5 - Collision 841 projectile=kaon0S Ekin[MeV]=9502.72 direction=(0.11887,0.961179,0.249007) material=G4_Al - --> #secondaries=20 impactParameter[fm]=4.08516 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 - Collision 842 projectile=lambda Ekin[MeV]=26306.1 direction=(0.170014,0.533235,0.828707) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.327437 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 843 projectile=doublehyperdoubleneutron Ekin[MeV]=18350.8 direction=(0.597768,0.647735,0.472348) material=G4_Si - --> #secondaries=28 impactParameter[fm]=3.66181 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=22 #NNcollisions=3 - Collision 844 projectile=anti_He3 Ekin[MeV]=12903.6 direction=(0.52383,0.700063,0.485298) material=G4_Cu - --> #secondaries=22 impactParameter[fm]=5.62387 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=64 #NNcollisions=1 - Collision 845 projectile=anti_proton Ekin[MeV]=19352.9 direction=(0.546294,0.759766,0.352589) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.38305 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 846 projectile=pi+ Ekin[MeV]=5414.36 direction=(0.394676,0.64494,0.654433) material=G4_Ar - --> #secondaries=23 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 847 projectile=Bc- Ekin[MeV]=25506.8 direction=(0.299107,0.751776,0.58768) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.16207 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 848 projectile=anti_deuteron Ekin[MeV]=22643.3 direction=(0.153462,0.988048,0.014544) material=G4_Si - --> #secondaries=32 impactParameter[fm]=3.28134 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=3 - Collision 849 projectile=anti_hyperalpha Ekin[MeV]=3475.71 direction=(0.0750945,0.996058,0.047209) material=G4_Fe - --> #secondaries=41 impactParameter[fm]=4.5967 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=3 - Collision 850 projectile=anti_xi0 Ekin[MeV]=23313.5 direction=(0.392873,0.689561,0.608405) material=G4_W - --> #secondaries=96 impactParameter[fm]=2.13669 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=4 - Collision 851 projectile=kaon0L Ekin[MeV]=12189.9 direction=(0.350111,0.230965,0.907787) material=G4_W - --> #secondaries=43 impactParameter[fm]=4.98268 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=2 - Collision 852 projectile=hyperH4 Ekin[MeV]=14930.9 direction=(0.445397,0.519779,0.729007) material=G4_Si - --> #secondaries=35 impactParameter[fm]=1.6639 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=16 #NNcollisions=6 - Collision 853 projectile=proton Ekin[MeV]=17733.7 direction=(0.6085,0.776122,0.165414) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.03607 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 854 projectile=triton Ekin[MeV]=24778.8 direction=(0.648739,0.552136,0.523721) material=G4_Ar - --> #secondaries=32 impactParameter[fm]=4.01704 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 855 projectile=kaon0L Ekin[MeV]=11439.5 direction=(0.965223,0.260573,0.0210992) material=G4_H - --> #secondaries=8 impactParameter[fm]=0.871204 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 856 projectile=B+ Ekin[MeV]=1530.94 direction=(0.893051,0.166404,0.418054) material=G4_Si - --> #secondaries=10 impactParameter[fm]=4.27115 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 857 projectile=omega_b- Ekin[MeV]=16076.7 direction=(0.666723,0.616549,0.418746) material=G4_C - --> #secondaries=7 impactParameter[fm]=1.56975 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 858 projectile=xi_c+ Ekin[MeV]=4578.93 direction=(0.366593,0.611382,0.7013) material=G4_H - --> #secondaries=4 impactParameter[fm]=0.713229 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 859 projectile=lambda_c+ Ekin[MeV]=28820.6 direction=(0.0463156,0.668103,0.742626) material=G4_C - --> #secondaries=17 impactParameter[fm]=2.67445 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=1 - Collision 860 projectile=Bc+ Ekin[MeV]=1161.29 direction=(0.629955,0.541371,0.556843) material=G4_Ar - --> #secondaries=6 impactParameter[fm]=2.9885 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 861 projectile=kaon0S Ekin[MeV]=16965.1 direction=(0.758892,0.512896,0.401274) material=G4_He - --> #secondaries=11 impactParameter[fm]=1.19656 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 862 projectile=anti_hypertriton Ekin[MeV]=16302.4 direction=(0.524745,0.740034,0.420704) material=G4_He - --> #secondaries=14 impactParameter[fm]=1.73056 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=4 #NNcollisions=3 - Collision 863 projectile=anti_doublehyperH4 Ekin[MeV]=1396.2 direction=(0.877925,0.436024,0.197815) material=G4_W - --> #secondaries=33 impactParameter[fm]=4.93582 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=4 - Collision 864 projectile=anti_xi0 Ekin[MeV]=2485.14 direction=(0.655566,0.686209,0.315199) material=G4_Al - --> #secondaries=19 impactParameter[fm]=3.51464 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 865 projectile=anti_triton Ekin[MeV]=1525.7 direction=(0.379132,0.64304,0.665401) material=G4_Cu - --> #secondaries=38 impactParameter[fm]=3.7448 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=3 - Collision 866 projectile=sigma+ Ekin[MeV]=3633.14 direction=(0.679445,0.218797,0.700344) material=G4_Be - --> #secondaries=10 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 867 projectile=D- Ekin[MeV]=25663.2 direction=(0.771219,0.595404,0.225198) material=G4_W - --> #secondaries=46 impactParameter[fm]=1.28975 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 868 projectile=anti_lambda Ekin[MeV]=11585 direction=(0.106168,0.788221,0.606165) material=G4_Si - --> #secondaries=26 impactParameter[fm]=0.975784 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 869 projectile=kaon- Ekin[MeV]=10710.2 direction=(0.157831,0.956859,0.243946) material=G4_Pb - --> #secondaries=59 impactParameter[fm]=5.96818 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 - Collision 870 projectile=anti_B0 Ekin[MeV]=27391.6 direction=(0.810374,0.308184,0.498314) material=G4_Cu - --> #secondaries=19 impactParameter[fm]=3.50785 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 871 projectile=proton Ekin[MeV]=24019.3 direction=(0.00175737,0.968974,0.247156) material=G4_W - --> #secondaries=73 impactParameter[fm]=2.50289 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=3 - Collision 872 projectile=B+ Ekin[MeV]=9211.23 direction=(0.591766,0.51189,0.622721) material=G4_W - --> #secondaries=15 impactParameter[fm]=7.14451 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=1 - Collision 873 projectile=doublehyperH4 Ekin[MeV]=24485.5 direction=(0.317206,0.948204,0.0169923) material=G4_Al - --> #secondaries=39 impactParameter[fm]=3.82382 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=21 #NNcollisions=7 - Collision 874 projectile=D0 Ekin[MeV]=10341.4 direction=(0.546842,0.488129,0.680216) material=G4_Al - --> #secondaries=14 impactParameter[fm]=4.57257 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 875 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=29069.4 direction=(0.565821,0.520173,0.639739) material=G4_Si - --> #secondaries=29 impactParameter[fm]=2.05887 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=1 - Collision 876 projectile=doublehyperH4 Ekin[MeV]=23481.3 direction=(0.553918,0.591803,0.585614) material=G4_Al - --> #secondaries=22 impactParameter[fm]=4.44367 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=24 #NNcollisions=2 - Collision 877 projectile=anti_sigma+ Ekin[MeV]=6661.38 direction=(0.585096,0.129889,0.800495) material=G4_Fe - --> #secondaries=20 impactParameter[fm]=4.39241 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 878 projectile=anti_B0 Ekin[MeV]=2620.08 direction=(0.401182,0.604976,0.687791) material=G4_W - --> #secondaries=28 impactParameter[fm]=1.2606 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=179 #NNcollisions=1 - Collision 879 projectile=kaon- Ekin[MeV]=22765.8 direction=(0.397993,0.651935,0.645431) material=G4_W - --> #secondaries=44 impactParameter[fm]=6.57172 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=184 #NNcollisions=2 - Collision 880 projectile=lambda_c+ Ekin[MeV]=26608.6 direction=(0.0327603,0.571557,0.819908) material=G4_He - --> #secondaries=12 impactParameter[fm]=2.00587 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 881 projectile=D+ Ekin[MeV]=29749.9 direction=(0.629167,0.21473,0.747021) material=G4_Si - --> #secondaries=22 impactParameter[fm]=0.791947 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 882 projectile=anti_xi_b0 Ekin[MeV]=13698.6 direction=(0.382489,0.412534,0.826751) material=G4_Be - --> #secondaries=10 impactParameter[fm]=1.45541 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 - Collision 883 projectile=anti_xi_b- Ekin[MeV]=11721.7 direction=(0.557423,0.822854,0.110411) material=G4_W - --> #secondaries=14 impactParameter[fm]=6.60668 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=183 #NNcollisions=1 - Collision 884 projectile=xi_c+ Ekin[MeV]=8037.36 direction=(0.242433,0.892314,0.380792) material=G4_C - --> #secondaries=13 impactParameter[fm]=1.0832 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 885 projectile=anti_B0 Ekin[MeV]=4053.49 direction=(0.659457,0.742555,0.117164) material=G4_C - --> #secondaries=11 impactParameter[fm]=2.08312 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=10 #NNcollisions=2 - Collision 886 projectile=xi_c0 Ekin[MeV]=27869.7 direction=(0.675874,0.543418,0.497886) material=G4_H - --> #secondaries=2 impactParameter[fm]=1.15063 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 887 projectile=anti_hyperHe5 Ekin[MeV]=11586.3 direction=(0.368074,0.100051,0.924398) material=G4_W - --> #secondaries=23 impactParameter[fm]=8.52861 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=185 #NNcollisions=1 - Collision 888 projectile=anti_deuteron Ekin[MeV]=29416.4 direction=(0.938634,0.316999,0.135934) material=G4_Be - --> #secondaries=14 impactParameter[fm]=3.41516 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 889 projectile=lambda_c+ Ekin[MeV]=20871.9 direction=(0.257798,0.926527,0.27402) material=G4_He - --> #secondaries=12 impactParameter[fm]=0.437305 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=2 #NNcollisions=2 - Collision 890 projectile=anti_D0 Ekin[MeV]=23092.3 direction=(0.0067765,0.40335,0.915021) material=G4_Pb - --> #secondaries=54 impactParameter[fm]=2.0428 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 891 projectile=pi+ Ekin[MeV]=7478.98 direction=(0.667239,0.63441,0.390277) material=G4_He - --> #secondaries=8 impactParameter[fm]=1.26242 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 892 projectile=B+ Ekin[MeV]=18764.9 direction=(0.908706,0.278762,0.310716) material=G4_Pb - --> #secondaries=8 impactParameter[fm]=6.49647 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 893 projectile=anti_alpha Ekin[MeV]=17359.3 direction=(0.285001,0.764436,0.578284) material=G4_He - --> #secondaries=13 impactParameter[fm]=3.02533 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=3 #NNcollisions=2 - Collision 894 projectile=B- Ekin[MeV]=11291.8 direction=(0.336601,0.622293,0.706718) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=4.695 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 895 projectile=Bc- Ekin[MeV]=24233.7 direction=(0.856736,0.246476,0.453049) material=G4_Fe - --> #secondaries=21 impactParameter[fm]=2.60173 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=2 - Collision 896 projectile=omega- Ekin[MeV]=29958.3 direction=(0.293705,0.777982,0.555411) material=G4_Cu - --> #secondaries=42 impactParameter[fm]=2.90724 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=56 #NNcollisions=4 - Collision 897 projectile=anti_sigma- Ekin[MeV]=22826.7 direction=(0.895415,0.370321,0.247174) material=G4_Cu - --> #secondaries=58 impactParameter[fm]=1.89313 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=57 #NNcollisions=5 - Collision 898 projectile=anti_lambda_c+ Ekin[MeV]=4174.48 direction=(0.65766,0.550956,0.513742) material=G4_He - --> #secondaries=4 impactParameter[fm]=2.24915 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 899 projectile=alpha Ekin[MeV]=9752.51 direction=(0.119337,0.446732,0.886673) material=G4_Si - --> #secondaries=29 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 900 projectile=D0 Ekin[MeV]=10131.9 direction=(0.123841,0.464413,0.876918) material=G4_Fe - --> #secondaries=43 impactParameter[fm]=2.87601 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=1 - List of produced secondaries: - j=0 D0 p=(716.86,1564.87,3010.523937.46) MeV - j=1 pi- p=(127.441,397.92,350.775563.121) MeV - j=2 pi+ p=(-215.473,36.6832,395.516472.956) MeV - j=3 proton p=(346.367,967.613,1518.882060) MeV - j=4 pi+ p=(106.406,467.911,716.322873.419) MeV - j=5 pi0 p=(-256.006,155.264,1213.341257) MeV - j=6 proton p=(296.973,-143.153,-99.9311999.513) MeV - j=7 neutron p=(86.1103,240.649,135.275983.061) MeV - j=8 proton p=(-374.598,-26.9283,-86.75341014.36) MeV - j=9 neutron p=(-104.607,255.8,14.3375979.472) MeV - j=10 pi0 p=(-20.6098,-76.0122,393.571423.461) MeV - j=11 pi- p=(-25.7422,994.342,1464.721776.02) MeV - j=12 proton p=(32.4677,247.976,-24.0169971.328) MeV - j=13 neutron p=(180.096,-48.3829,-231.108985.378) MeV - j=14 deuteron p=(-367.879,-380.402,227.8421962.11) MeV - j=15 proton p=(127.078,316.688,-32.2271998.916) MeV - j=16 proton p=(197.569,62.4983,140.782971.14) MeV - j=17 neutron p=(327.273,637.02,186.5951196.04) MeV - j=18 deuteron p=(-492.658,-186.313,112.2511951.4) MeV - j=19 proton p=(-17.2161,-192.166,-29.436958.355) MeV - j=20 neutron p=(157.675,-23.5937,9.86436953.047) MeV - j=21 proton p=(9.59481,145.84,328.0891004.67) MeV - j=22 proton p=(189.217,160.261,-51.5088971.851) MeV - j=23 deuteron p=(254.183,-9.22054,87.08281894.78) MeV - j=24 triton p=(129.767,92.1723,315.2042831.03) MeV - j=25 neutron p=(-122.321,110.733,142.917964.589) MeV - j=26 neutron p=(3.69899,-35.0321,-113.707947.076) MeV - j=27 proton p=(-12.2496,32.3132,-98.1466944.024) MeV - j=28 proton p=(34.629,81.7782,134.495952.014) MeV - j=29 neutron p=(-86.8756,53.6263,9.52111945.144) MeV - j=30 neutron p=(-102.99,-129.548,38.0783954.789) MeV - j=31 triton p=(66.7599,-141.503,292.0452828.39) MeV - j=32 neutron p=(119.716,-88.6759,96.7363956.209) MeV - j=33 triton p=(-180.309,-112.202,-74.28182817.92) MeV - j=34 proton p=(107.207,-15.8581,-148.012956.037) MeV - j=35 neutron p=(-8.25554,-95.9179,-65.2704946.737) MeV - j=36 triton p=(-96.8116,-38.5578,-205.6332818.36) MeV - j=37 triton p=(355.977,83.7613,-83.02252833.84) MeV - j=38 deuteron p=(-127.909,-69.7141,156.721887.78) MeV - j=39 neutron p=(-4.95738,-34.2082,-16.1987940.34) MeV - j=40 proton p=(49.6975,21.8015,-8.32271939.877) MeV - j=41 alpha p=(17.6294,123.719,129.8933731.73) MeV - j=42 alpha p=(44.6868,99.7926,138.3533731.55) MeV - Collision 901 projectile=anti_xi_b- Ekin[MeV]=29956.6 direction=(0.426374,0.54556,0.721505) material=G4_Si - --> #secondaries=12 impactParameter[fm]=3.36929 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 902 projectile=Bc- Ekin[MeV]=16983.6 direction=(0.345883,0.799307,0.491399) material=G4_Pb - --> #secondaries=36 impactParameter[fm]=5.57827 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=207 #NNcollisions=1 - Collision 903 projectile=anti_xi_c+ Ekin[MeV]=8141.05 direction=(0.752432,0.522985,0.400415) material=G4_W - --> #secondaries=43 impactParameter[fm]=6.09879 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=185 #NNcollisions=1 - Collision 904 projectile=anti_He3 Ekin[MeV]=29813.2 direction=(0.690599,0.0904176,0.717564) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=6.73999 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 905 projectile=B- Ekin[MeV]=11202.8 direction=(0.777912,0.580031,0.241695) material=G4_C - --> #secondaries=12 impactParameter[fm]=1.53884 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=9 #NNcollisions=2 - Collision 906 projectile=anti_hyperH4 Ekin[MeV]=4103.58 direction=(0.537496,0.415743,0.733659) material=G4_Ar - --> #secondaries=19 impactParameter[fm]=5.20398 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=37 #NNcollisions=1 - Collision 907 projectile=neutron Ekin[MeV]=15090.6 direction=(0.248122,0.763267,0.596539) material=G4_Cu - --> #secondaries=59 impactParameter[fm]=1.22172 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=50 #NNcollisions=7 - Collision 908 projectile=D0 Ekin[MeV]=8508.09 direction=(0.719389,0.434214,0.54216) material=G4_Be - --> #secondaries=6 impactParameter[fm]=2.48606 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 909 projectile=xi_c+ Ekin[MeV]=22462.9 direction=(0.735049,0.531797,0.42059) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=5.5723 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 910 projectile=anti_hyperH4 Ekin[MeV]=1637.65 direction=(0.215074,0.761869,0.610982) material=G4_He - --> #secondaries=9 impactParameter[fm]=4.73807 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=4 #NNcollisions=1 - Collision 911 projectile=doublehyperH4 Ekin[MeV]=27188.9 direction=(0.178622,0.481287,0.858171) material=G4_C - --> #secondaries=21 impactParameter[fm]=1.57265 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=8 - Collision 912 projectile=proton Ekin[MeV]=18299.3 direction=(0.895526,0.35913,0.262788) material=G4_C - --> #secondaries=18 impactParameter[fm]=1.6235 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=3 - Collision 913 projectile=B0 Ekin[MeV]=17128.2 direction=(0.0549253,0.117903,0.991505) material=G4_Ar - --> #secondaries=10 impactParameter[fm]=2.76732 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 914 projectile=neutron Ekin[MeV]=28986 direction=(0.118437,0.741705,0.660187) material=G4_He - --> #secondaries=11 impactParameter[fm]=1.64596 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 915 projectile=anti_omega_b- Ekin[MeV]=7396.48 direction=(0.858093,0.193414,0.475675) material=G4_Si - --> #secondaries=13 impactParameter[fm]=1.86232 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 916 projectile=anti_omega_c0 Ekin[MeV]=18583 direction=(0.559738,0.525381,0.640834) material=G4_He - --> #secondaries=5 impactParameter[fm]=1.72167 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 917 projectile=anti_hyperalpha Ekin[MeV]=19261.5 direction=(0.0354227,0.914061,0.404027) material=G4_Ar - --> #secondaries=18 impactParameter[fm]=6.64922 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=38 #NNcollisions=0 - Collision 918 projectile=anti_xi_b0 Ekin[MeV]=16666.9 direction=(0.777107,0.454913,0.434924) material=G4_H - --> #secondaries=5 impactParameter[fm]=0.267399 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 919 projectile=pi- Ekin[MeV]=28358.4 direction=(0.0376728,0.914939,0.401829) material=G4_Ar - --> #secondaries=10 impactParameter[fm]=4.52085 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 920 projectile=anti_Bs0 Ekin[MeV]=21674.1 direction=(0.482064,0.61115,0.627781) material=G4_Ar - --> #secondaries=15 impactParameter[fm]=1.36182 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 921 projectile=D- Ekin[MeV]=4927.69 direction=(0.1345,0.435942,0.889867) material=G4_Fe - --> #secondaries=17 impactParameter[fm]=3.27842 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=1 - Collision 922 projectile=doublehyperH4 Ekin[MeV]=27212.3 direction=(0.648236,0.629394,0.428549) material=G4_Cu - --> #secondaries=32 impactParameter[fm]=6.51951 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=60 #NNcollisions=2 - Collision 923 projectile=omega_c0 Ekin[MeV]=7885.35 direction=(0.155729,0.514371,0.843309) material=G4_Cu - --> #secondaries=14 impactParameter[fm]=4.89495 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=0 - Collision 924 projectile=anti_omega_c0 Ekin[MeV]=12692.1 direction=(0.733002,0.516396,0.442768) material=G4_Pb - --> #secondaries=58 impactParameter[fm]=4.31253 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=2 - Collision 925 projectile=anti_proton Ekin[MeV]=18034.5 direction=(0.558238,0.510304,0.654187) material=G4_Si - --> #secondaries=24 impactParameter[fm]=1.36137 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=3 - Collision 926 projectile=hyperalpha Ekin[MeV]=20954.2 direction=(0.761403,0.647942,0.0209131) material=G4_Cu - --> #secondaries=68 impactParameter[fm]=2.58963 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=7 - Collision 927 projectile=anti_alpha Ekin[MeV]=25911.2 direction=(0.68498,0.0674912,0.725429) material=G4_Fe - --> #secondaries=42 impactParameter[fm]=3.59169 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=51 #NNcollisions=3 - Collision 928 projectile=kaon0S Ekin[MeV]=9063.38 direction=(0.403865,0.725931,0.556702) material=G4_He - --> #secondaries=8 impactParameter[fm]=0.701823 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 929 projectile=pi- Ekin[MeV]=23205.4 direction=(0.74574,0.3392,0.573425) material=G4_Si - --> #secondaries=19 impactParameter[fm]=3.44364 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 930 projectile=anti_xi_c+ Ekin[MeV]=26334.1 direction=(0.658918,0.627488,0.414832) material=G4_Al - --> #secondaries=12 impactParameter[fm]=4.39466 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 931 projectile=xi0 Ekin[MeV]=20609.4 direction=(0.2198,0.723883,0.653973) material=G4_Al - --> #secondaries=15 impactParameter[fm]=4.3151 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 932 projectile=anti_alpha Ekin[MeV]=2813.61 direction=(0.718338,0.428402,0.548145) material=G4_Be - --> #secondaries=13 impactParameter[fm]=4.64528 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 933 projectile=anti_lambda_c+ Ekin[MeV]=1999.26 direction=(0.256706,0.842178,0.474172) material=G4_W - --> #secondaries=47 impactParameter[fm]=2.11261 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=180 #NNcollisions=0 - Collision 934 projectile=omega_c0 Ekin[MeV]=28629.9 direction=(0.53228,0.815977,0.225521) material=G4_Be - --> #secondaries=5 impactParameter[fm]=2.81063 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 935 projectile=anti_lambda_b Ekin[MeV]=19003 direction=(0.915866,0.00318881,0.401471) material=G4_Si - --> #secondaries=31 impactParameter[fm]=2.19711 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=25 #NNcollisions=3 - Collision 936 projectile=lambda_b Ekin[MeV]=5750.36 direction=(0.864613,0.422917,0.271267) material=G4_Fe - --> #secondaries=6 impactParameter[fm]=3.76393 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 937 projectile=hyperH4 Ekin[MeV]=25651.3 direction=(0.662122,0.519318,0.540281) material=G4_Al - --> #secondaries=36 impactParameter[fm]=1.70858 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=18 #NNcollisions=6 - Collision 938 projectile=anti_xi_c+ Ekin[MeV]=23066.6 direction=(0.717415,0.355999,0.598816) material=G4_Be - --> #secondaries=5 impactParameter[fm]=2.64847 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 939 projectile=anti_sigma+ Ekin[MeV]=20672.7 direction=(0.348331,0.920065,0.179294) material=G4_Al - --> #secondaries=33 impactParameter[fm]=2.68817 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=24 #NNcollisions=3 - Collision 940 projectile=anti_Bs0 Ekin[MeV]=1459.38 direction=(0.382248,0.872319,0.304871) material=G4_Fe - --> #secondaries=16 impactParameter[fm]=3.24063 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=51 #NNcollisions=1 - Collision 941 projectile=D- Ekin[MeV]=21528.2 direction=(0.975787,0.106641,0.190962) material=G4_Al - --> #secondaries=10 impactParameter[fm]=1.34566 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 942 projectile=xi_c0 Ekin[MeV]=2826.94 direction=(0.684017,0.242342,0.688034) material=G4_H - --> #secondaries=2 impactParameter[fm]=2.107 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 943 projectile=Ds- Ekin[MeV]=17324.9 direction=(0.112226,0.58508,0.803173) material=G4_Cu - --> #secondaries=19 impactParameter[fm]=2.49566 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 - Collision 944 projectile=anti_lambda_c+ Ekin[MeV]=19984.8 direction=(0.319232,0.84446,0.43009) material=G4_He - --> #secondaries=7 impactParameter[fm]=2.05128 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 945 projectile=doublehyperdoubleneutron Ekin[MeV]=17690.9 direction=(0.0850477,0.199235,0.976254) material=G4_H - --> #secondaries=3 impactParameter[fm]=2.24994 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 - Collision 946 projectile=hyperHe5 Ekin[MeV]=28012.2 direction=(0.775349,0.227859,0.588994) material=G4_Fe - --> #secondaries=37 impactParameter[fm]=5.038 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=51 #NNcollisions=5 - Collision 947 projectile=Bc- Ekin[MeV]=16468.2 direction=(0.508261,0.635895,0.580783) material=G4_Al - --> #secondaries=9 impactParameter[fm]=2.18676 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 948 projectile=anti_doublehyperdoubleneutron Ekin[MeV]=29998.3 direction=(0.0600895,0.91697,0.394405) material=G4_C - --> #secondaries=41 impactParameter[fm]=0.762314 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=7 - Collision 949 projectile=omega- Ekin[MeV]=3563.97 direction=(0.679382,0.626906,0.381353) material=G4_He - --> #secondaries=8 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 950 projectile=B0 Ekin[MeV]=4810.71 direction=(0.67255,0.288481,0.681509) material=G4_Al - --> #secondaries=10 impactParameter[fm]=4.46894 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=0 - Collision 951 projectile=doublehyperH4 Ekin[MeV]=7854.66 direction=(0.578641,0.250773,0.776072) material=G4_Fe - --> #secondaries=48 impactParameter[fm]=0.369009 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=43 #NNcollisions=1 - Collision 952 projectile=doublehyperH4 Ekin[MeV]=23866.2 direction=(0.740684,0.405514,0.535673) material=G4_Si - --> #secondaries=36 impactParameter[fm]=2.37859 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=22 #NNcollisions=6 - Collision 953 projectile=anti_omega_c0 Ekin[MeV]=21257.9 direction=(0.702923,0.564497,0.432715) material=G4_Si - --> #secondaries=15 impactParameter[fm]=3.03884 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=29 #NNcollisions=1 - Collision 954 projectile=pi+ Ekin[MeV]=6203.77 direction=(0.228159,0.233719,0.945155) material=G4_W - --> #secondaries=84 impactParameter[fm]=1.48996 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=177 #NNcollisions=2 - Collision 955 projectile=D0 Ekin[MeV]=28761.7 direction=(0.735076,0.373692,0.565702) material=G4_Be - --> #secondaries=11 impactParameter[fm]=1.7547 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=8 #NNcollisions=1 - Collision 956 projectile=anti_hyperHe5 Ekin[MeV]=27130.8 direction=(0.934042,0.0141841,0.356882) material=G4_Al - --> #secondaries=36 impactParameter[fm]=2.50592 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=25 #NNcollisions=6 - Collision 957 projectile=D+ Ekin[MeV]=15660 direction=(0.583203,0.802432,0.126399) material=G4_Ar - --> #secondaries=13 impactParameter[fm]=3.86138 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 958 projectile=pi- Ekin[MeV]=7906.43 direction=(0.233688,0.962553,0.137414) material=G4_Pb - --> #secondaries=66 impactParameter[fm]=0.951767 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=202 #NNcollisions=2 - Collision 959 projectile=anti_hyperH4 Ekin[MeV]=6329.8 direction=(0.723453,0.208587,0.658109) material=G4_Ar - --> #secondaries=11 impactParameter[fm]=6.81953 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=39 #NNcollisions=0 - Collision 960 projectile=hypertriton Ekin[MeV]=11544.4 direction=(0.261783,0.965122,0.00304602) material=G4_C - --> #secondaries=17 impactParameter[fm]=1.12582 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=10 #NNcollisions=3 - Collision 961 projectile=omega_b- Ekin[MeV]=1040.98 direction=(0.993467,0.108008,0.0368545) material=G4_C - --> #secondaries=6 impactParameter[fm]=2.94754 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 962 projectile=anti_triton Ekin[MeV]=21516.7 direction=(0.37862,0.434526,0.817211) material=G4_H - --> #secondaries=8 impactParameter[fm]=2.60497 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 963 projectile=D- Ekin[MeV]=1001.55 direction=(0.370429,0.135573,0.918913) material=G4_W - --> #secondaries=31 impactParameter[fm]=3.75458 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=0 - Collision 964 projectile=kaon0L Ekin[MeV]=25687 direction=(0.334023,0.471699,0.816044) material=G4_Ar - --> #secondaries=14 impactParameter[fm]=5.55752 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 - Collision 965 projectile=anti_xi_c+ Ekin[MeV]=3113.73 direction=(0.758951,0.649638,0.0443068) material=G4_Cu - --> #secondaries=9 impactParameter[fm]=1.95213 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=0 - Collision 966 projectile=kaon0L Ekin[MeV]=9540.55 direction=(0.196341,0.718579,0.667153) material=G4_Ar - --> #secondaries=22 impactParameter[fm]=1.7271 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=2 - Collision 967 projectile=anti_omega- Ekin[MeV]=24764.8 direction=(0.628981,0.104768,0.770329) material=G4_Cu - --> #secondaries=47 impactParameter[fm]=2.50902 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=3 - Collision 968 projectile=doublehyperH4 Ekin[MeV]=20942 direction=(0.6151,0.325062,0.718322) material=G4_Si - --> #secondaries=22 impactParameter[fm]=3.05484 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=26 #NNcollisions=3 - Collision 969 projectile=Bc- Ekin[MeV]=15079 direction=(0.962601,0.0707201,0.261531) material=G4_He - --> #secondaries=9 impactParameter[fm]=1.92206 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 - Collision 970 projectile=kaon- Ekin[MeV]=19665 direction=(0.403224,0.594857,0.695382) material=G4_H - --> #secondaries=8 impactParameter[fm]=0.721591 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 971 projectile=Bc- Ekin[MeV]=8127.86 direction=(0.2444,0.833985,0.494709) material=G4_He - --> #secondaries=4 impactParameter[fm]=2.0095 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 972 projectile=omega_c0 Ekin[MeV]=6207.43 direction=(0.4227,0.193664,0.885336) material=G4_Ar - --> #secondaries=16 impactParameter[fm]=3.34758 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=2 - Collision 973 projectile=neutron Ekin[MeV]=14262.8 direction=(0.35345,0.257482,0.89932) material=G4_Si - --> #secondaries=29 impactParameter[fm]=3.64427 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 974 projectile=hypertriton Ekin[MeV]=20647 direction=(0.659742,0.721755,0.20931) material=G4_Fe - --> #secondaries=19 impactParameter[fm]=5.72112 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 975 projectile=xi_c+ Ekin[MeV]=3585 direction=(0.624144,0.490654,0.608031) material=G4_Be - --> #secondaries=7 impactParameter[fm]=0.35823 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 - Collision 976 projectile=kaon0L Ekin[MeV]=4861.97 direction=(0.755226,0.61719,0.220703) material=G4_Fe - --> #secondaries=20 impactParameter[fm]=4.63708 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 977 projectile=Bc- Ekin[MeV]=14717.4 direction=(0.857933,0.095846,0.504742) material=G4_Al - --> #secondaries=6 impactParameter[fm]=1.81662 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 - Collision 978 projectile=anti_xi_c0 Ekin[MeV]=29257.2 direction=(0.676986,0.658518,0.328701) material=G4_H - --> #secondaries=7 impactParameter[fm]=0.412299 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 979 projectile=B+ Ekin[MeV]=11920.1 direction=(0.826585,0.554693,0.0952512) material=G4_Cu - --> #secondaries=17 impactParameter[fm]=3.31627 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=60 #NNcollisions=2 - Collision 980 projectile=pi- Ekin[MeV]=1625.71 direction=(0.299753,0.351353,0.886961) material=G4_Al - --> #secondaries=23 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 981 projectile=pi+ Ekin[MeV]=19752 direction=(0.817864,0.0216956,0.575002) material=G4_Si - --> #secondaries=6 impactParameter[fm]=4.15728 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=0 - Collision 982 projectile=anti_neutron Ekin[MeV]=9167.37 direction=(0.553961,0.529067,0.642819) material=G4_H - --> #secondaries=3 impactParameter[fm]=0.89645 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=1 - Collision 983 projectile=Bc- Ekin[MeV]=18418.4 direction=(0.551298,0.480594,0.681982) material=G4_Pb - --> #secondaries=35 impactParameter[fm]=3.87296 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 - Collision 984 projectile=kaon+ Ekin[MeV]=10914.5 direction=(0.61187,0.730128,0.304185) material=G4_Pb - --> #secondaries=55 impactParameter[fm]=2.99495 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=2 - Collision 985 projectile=lambda Ekin[MeV]=12129 direction=(0.167223,0.370563,0.91363) material=G4_Fe - --> #secondaries=9 impactParameter[fm]=5.77642 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=0 - Collision 986 projectile=anti_B0 Ekin[MeV]=3024.61 direction=(0.851453,0.391352,0.349101) material=G4_Si - --> #secondaries=9 impactParameter[fm]=4.13422 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=27 #NNcollisions=1 - Collision 987 projectile=anti_hyperHe5 Ekin[MeV]=10368.1 direction=(0.0900528,0.0841797,0.992373) material=G4_H - --> #secondaries=8 impactParameter[fm]=0.847282 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 988 projectile=He3 Ekin[MeV]=14118.8 direction=(0.76562,0.251536,0.592077) material=G4_C - --> #secondaries=11 impactParameter[fm]=2.18365 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=0 - Collision 989 projectile=anti_xi0 Ekin[MeV]=19757.4 direction=(0.590172,0.513422,0.622972) material=G4_C - --> #secondaries=14 impactParameter[fm]=3.21241 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 - Collision 990 projectile=hyperHe5 Ekin[MeV]=29794.4 direction=(0.48902,0.821117,0.294323) material=G4_H - --> #secondaries=7 impactParameter[fm]=3.00457 #projectileSpectatorNucleons=4 #targetSpectatorNucleons=0 #NNcollisions=1 - Collision 991 projectile=anti_lambda Ekin[MeV]=1773.27 direction=(0.952922,0.303211,0.00161901) material=G4_W - --> #secondaries=37 impactParameter[fm]=5.39164 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=1 - Collision 992 projectile=alpha Ekin[MeV]=7758.79 direction=(0.8622,0.452226,0.228262) material=G4_Fe - --> #secondaries=27 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 - Collision 993 projectile=xi_b0 Ekin[MeV]=7013.14 direction=(0.805056,0.0463709,0.591384) material=G4_Cu - --> #secondaries=11 impactParameter[fm]=3.96128 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=63 #NNcollisions=0 - Collision 994 projectile=lambda Ekin[MeV]=15444.9 direction=(0.834976,0.430807,0.342374) material=G4_Fe - --> #secondaries=39 impactParameter[fm]=2.96523 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=54 #NNcollisions=2 - Collision 995 projectile=anti_hyperH4 Ekin[MeV]=25200.2 direction=(0.460685,0.491439,0.739092) material=G4_Si - --> #secondaries=30 impactParameter[fm]=4.78534 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=26 #NNcollisions=2 - Collision 996 projectile=xi_b0 Ekin[MeV]=23115.2 direction=(0.364284,0.600081,0.712179) material=G4_Ar - --> #secondaries=17 impactParameter[fm]=2.95059 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=38 #NNcollisions=1 - Collision 997 projectile=anti_xi_b0 Ekin[MeV]=4744.2 direction=(0.613045,0.729108,0.304265) material=G4_He - --> #secondaries=4 impactParameter[fm]=1.07458 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Collision 998 projectile=B+ Ekin[MeV]=21506.7 direction=(0.615198,0.608569,0.501174) material=G4_W - --> #secondaries=53 impactParameter[fm]=3.89431 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=178 #NNcollisions=4 - Collision 999 projectile=anti_omega_c0 Ekin[MeV]=17466.9 direction=(0.453509,0.635812,0.624558) material=G4_Fe - --> #secondaries=30 impactParameter[fm]=2.67715 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=53 #NNcollisions=3 + Collision 925 projectile=D0 Ekin[MeV]=13306.5 direction=(0.202336,0.945546,0.254956) material=G4_Ar + --> #secondaries=17 impactParameter[fm]=1.36734 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 926 projectile=anti_lambda Ekin[MeV]=23837.3 direction=(0.470807,0.0546898,0.880539) material=G4_Fe + --> #secondaries=20 impactParameter[fm]=4.30145 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 927 projectile=xi0 Ekin[MeV]=15184.1 direction=(0.659418,0.461055,0.593798) material=G4_Cu + --> #secondaries=35 impactParameter[fm]=3.71343 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=4 + Collision 928 projectile=anti_doublehyperH4 Ekin[MeV]=19724.7 direction=(0.558145,0.828868,0.0380929) material=G4_Si + --> #secondaries=36 impactParameter[fm]=2.71125 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=6 + Collision 929 projectile=kaon- Ekin[MeV]=7620.28 direction=(0.437182,0.197434,0.877435) material=G4_W + --> #secondaries=40 impactParameter[fm]=6.04816 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=182 #NNcollisions=2 + Collision 930 projectile=anti_sigma- Ekin[MeV]=9581.17 direction=(0.295792,0.746281,0.596299) material=G4_W + --> #secondaries=77 impactParameter[fm]=3.60915 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=181 #NNcollisions=3 + Collision 931 projectile=B- Ekin[MeV]=8715.68 direction=(0.800043,0.5701,0.186863) material=G4_Fe + --> #secondaries=12 impactParameter[fm]=3.32274 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=53 #NNcollisions=1 + Collision 932 projectile=Bc- Ekin[MeV]=15074.7 direction=(0.695819,0.567908,0.439678) material=G4_Pb + --> #secondaries=36 impactParameter[fm]=3.02215 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=206 #NNcollisions=1 + Collision 933 projectile=anti_xi0 Ekin[MeV]=17696.7 direction=(0.741129,0.660754,0.118876) material=G4_C + --> #secondaries=12 impactParameter[fm]=3.34711 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 934 projectile=kaon+ Ekin[MeV]=29684.7 direction=(0.159743,0.983696,0.082615) material=G4_W + --> #secondaries=63 impactParameter[fm]=5.12886 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=3 + Collision 935 projectile=kaon0L Ekin[MeV]=27632.8 direction=(0.61188,0.536455,0.581222) material=G4_Al + --> #secondaries=18 impactParameter[fm]=0.91676 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 936 projectile=anti_xi_b0 Ekin[MeV]=10273.2 direction=(0.289582,0.920724,0.26155) material=G4_Pb + --> #secondaries=36 impactParameter[fm]=4.83184 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=205 #NNcollisions=2 + Collision 937 projectile=omega_b- Ekin[MeV]=8136.36 direction=(0.660497,0.0295331,0.750248) material=G4_C + --> #secondaries=7 impactParameter[fm]=1.92204 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=11 #NNcollisions=1 + Collision 938 projectile=hypertriton Ekin[MeV]=15136.9 direction=(0.829672,0.423781,0.363392) material=G4_Pb + --> #secondaries=59 impactParameter[fm]=6.33521 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=203 #NNcollisions=5 + Collision 939 projectile=anti_hyperalpha Ekin[MeV]=23883.4 direction=(0.726864,0.246456,0.641037) material=G4_W + --> #secondaries=172 impactParameter[fm]=1.2309 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=179 #NNcollisions=8 + Collision 940 projectile=omega_c0 Ekin[MeV]=12178.9 direction=(0.247937,0.875072,0.415663) material=G4_Al + --> #secondaries=6 impactParameter[fm]=3.95118 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 941 projectile=anti_lambda_c+ Ekin[MeV]=7258.95 direction=(0.96429,0.179934,0.194339) material=G4_Fe + --> #secondaries=13 impactParameter[fm]=4.95495 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 942 projectile=anti_omega_c0 Ekin[MeV]=27992.4 direction=(0.327925,0.80103,0.500815) material=G4_Al + --> #secondaries=8 impactParameter[fm]=5.51394 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=26 #NNcollisions=0 + Collision 943 projectile=anti_proton Ekin[MeV]=6790.81 direction=(0.767745,0.640731,0.00553395) material=G4_He + --> #secondaries=10 impactParameter[fm]=1.69687 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 944 projectile=D0 Ekin[MeV]=26838.9 direction=(0.702788,0.649969,0.289186) material=G4_Fe + --> #secondaries=32 impactParameter[fm]=2.77318 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 945 projectile=D0 Ekin[MeV]=16032.7 direction=(0.611922,0.752217,0.24438) material=G4_Si + --> #secondaries=24 impactParameter[fm]=1.88178 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=1 + Collision 946 projectile=B0 Ekin[MeV]=18910 direction=(0.129701,0.90331,0.408913) material=G4_W + --> #secondaries=43 impactParameter[fm]=3.34294 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=180 #NNcollisions=3 + Collision 947 projectile=Bc- Ekin[MeV]=13334.9 direction=(0.489623,0.0740467,0.868784) material=G4_W + --> #secondaries=15 impactParameter[fm]=6.71021 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=1 + Collision 948 projectile=kaon0S Ekin[MeV]=18589.6 direction=(0.374116,0.575515,0.7272) material=G4_He + --> #secondaries=13 impactParameter[fm]=1.07586 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 949 projectile=anti_omega- Ekin[MeV]=29321.3 direction=(0.335513,0.672442,0.659738) material=G4_Cu + --> #secondaries=30 impactParameter[fm]=4.15007 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=1 + Collision 950 projectile=kaon0L Ekin[MeV]=29903.1 direction=(0.619417,0.741148,0.258885) material=G4_Ar + --> #secondaries=14 impactParameter[fm]=2.70392 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 951 projectile=anti_xi_b- Ekin[MeV]=13704.1 direction=(0.920481,0.318496,0.226441) material=G4_He + --> #secondaries=7 impactParameter[fm]=0.907374 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 952 projectile=alpha Ekin[MeV]=13065 direction=(0.691655,0.263401,0.672483) material=G4_H + --> #secondaries=5 impactParameter[fm]=1.38278 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=0 #NNcollisions=0 + Collision 953 projectile=B0 Ekin[MeV]=15415.3 direction=(0.785959,0.592508,0.176644) material=G4_W + --> #secondaries=53 impactParameter[fm]=2.28389 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=183 #NNcollisions=2 + Collision 954 projectile=anti_proton Ekin[MeV]=4192.18 direction=(0.583582,0.640142,0.49965) material=G4_W + --> #secondaries=45 impactParameter[fm]=6.30652 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=185 #NNcollisions=2 + Collision 955 projectile=B- Ekin[MeV]=12655.9 direction=(0.637891,0.594185,0.489938) material=G4_Pb + --> #secondaries=36 impactParameter[fm]=3.25064 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=1 + Collision 956 projectile=pi- Ekin[MeV]=25933.5 direction=(0.552073,0.761516,0.339571) material=G4_C + --> #secondaries=6 impactParameter[fm]=2.31779 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=11 #NNcollisions=0 + Collision 957 projectile=kaon+ Ekin[MeV]=17991.4 direction=(0.787354,0.10846,0.606886) material=G4_He + --> #secondaries=7 impactParameter[fm]=1.67078 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=2 #NNcollisions=2 + Collision 958 projectile=lambda Ekin[MeV]=1737.87 direction=(0.171507,0.724441,0.667661) material=G4_Al + --> #secondaries=9 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 959 projectile=anti_lambda_b Ekin[MeV]=9817.97 direction=(0.559054,0.124352,0.819753) material=G4_Cu + --> #secondaries=16 impactParameter[fm]=6.03748 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 960 projectile=anti_lambda Ekin[MeV]=21756 direction=(0.657095,0.67935,0.326665) material=G4_Cu + --> #secondaries=46 impactParameter[fm]=2.63521 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=60 #NNcollisions=4 + Collision 961 projectile=B0 Ekin[MeV]=15825 direction=(0.487784,0.792661,0.365726) material=G4_Fe + --> #secondaries=11 impactParameter[fm]=4.86263 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=55 #NNcollisions=1 + Collision 962 projectile=anti_xi_c+ Ekin[MeV]=1496.85 direction=(0.358233,0.629896,0.68913) material=G4_Be + --> #secondaries=7 impactParameter[fm]=1.4814 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=2 + Collision 963 projectile=sigma- Ekin[MeV]=17174.9 direction=(0.402022,0.141404,0.904645) material=G4_W + --> #secondaries=42 impactParameter[fm]=5.02451 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=178 #NNcollisions=3 + Collision 964 projectile=omega_b- Ekin[MeV]=1737.7 direction=(0.3864,0.526623,0.757207) material=G4_Cu + --> #secondaries=12 impactParameter[fm]=4.85891 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=64 #NNcollisions=0 + Collision 965 projectile=doublehyperH4 Ekin[MeV]=14738 direction=(0.30948,0.727997,0.611754) material=G4_C + --> #secondaries=16 impactParameter[fm]=1.57997 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=9 #NNcollisions=2 + Collision 966 projectile=Ds+ Ekin[MeV]=18128 direction=(0.0399891,0.72425,0.688376) material=G4_Si + --> #secondaries=22 impactParameter[fm]=1.24573 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=26 #NNcollisions=2 + Collision 967 projectile=anti_hypertriton Ekin[MeV]=27724.7 direction=(0.966724,0.03052,0.253993) material=G4_Si + --> #secondaries=37 impactParameter[fm]=2.40988 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=3 + Collision 968 projectile=anti_xi_c+ Ekin[MeV]=10853.2 direction=(0.594111,0.373512,0.712405) material=G4_W + --> #secondaries=28 impactParameter[fm]=6.38622 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=0 + Collision 969 projectile=anti_lambda_c+ Ekin[MeV]=15667.5 direction=(0.817782,0.573786,0.044741) material=G4_Fe + --> #secondaries=49 impactParameter[fm]=1.11965 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=4 + Collision 970 projectile=omega- Ekin[MeV]=23400.8 direction=(0.785168,0.227002,0.576178) material=G4_He + --> #secondaries=10 impactParameter[fm]=0.411971 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 971 projectile=anti_xi_c0 Ekin[MeV]=6083.68 direction=(0.123751,0.109044,0.986304) material=G4_Be + --> #secondaries=12 impactParameter[fm]=0.523952 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=5 #NNcollisions=3 + Collision 972 projectile=anti_alpha Ekin[MeV]=4841.92 direction=(0.701261,0.710367,0.060101) material=G4_C + --> #secondaries=12 impactParameter[fm]=3.33987 #projectileSpectatorNucleons=2 #targetSpectatorNucleons=11 #NNcollisions=2 + Collision 973 projectile=doublehyperH4 Ekin[MeV]=27508.1 direction=(0.829576,0.0272987,0.557725) material=G4_Be + --> #secondaries=8 impactParameter[fm]=5.38255 #projectileSpectatorNucleons=3 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 974 projectile=lambda_c+ Ekin[MeV]=21588.4 direction=(0.271967,0.766949,0.581225) material=G4_He + --> #secondaries=14 impactParameter[fm]=1.08953 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=1 #NNcollisions=3 + Collision 975 projectile=Bc+ Ekin[MeV]=8905.82 direction=(0.538505,0.809534,0.233811) material=G4_W + --> #secondaries=12 impactParameter[fm]=7.22161 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=185 #NNcollisions=1 + Collision 976 projectile=lambda Ekin[MeV]=19968.6 direction=(0.047135,0.141182,0.988861) material=G4_Fe + --> #secondaries=36 impactParameter[fm]=2.5289 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=52 #NNcollisions=3 + Collision 977 projectile=anti_lambda_c+ Ekin[MeV]=11111.6 direction=(0.686636,0.539445,0.487371) material=G4_Ar + --> #secondaries=13 impactParameter[fm]=2.33025 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=39 #NNcollisions=1 + Collision 978 projectile=xi_b- Ekin[MeV]=16573.2 direction=(0.710636,0.403809,0.576138) material=G4_He + --> #secondaries=6 impactParameter[fm]=0.656692 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 979 projectile=kaon- Ekin[MeV]=15294.5 direction=(0.342247,0.436496,0.832069) material=G4_He + --> #secondaries=10 impactParameter[fm]=1.37372 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 980 projectile=kaon0L Ekin[MeV]=2478.38 direction=(0.757346,0.492469,0.428837) material=G4_Ar + --> #secondaries=6 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 981 projectile=anti_omega_b- Ekin[MeV]=16367.3 direction=(0.840342,0.0205432,0.541667) material=G4_Cu + --> #secondaries=17 impactParameter[fm]=4.68507 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 982 projectile=kaon+ Ekin[MeV]=2364.33 direction=(0.594047,0.5114,0.620949) material=G4_Al + --> #secondaries=21 impactParameter[fm]=-999 #projectileSpectatorNucleons=-999 #targetSpectatorNucleons=-999 #NNcollisions=-999 + Collision 983 projectile=anti_Bs0 Ekin[MeV]=18244.5 direction=(0.308175,0.685443,0.659694) material=G4_Ar + --> #secondaries=18 impactParameter[fm]=1.04653 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=37 #NNcollisions=1 + Collision 984 projectile=B+ Ekin[MeV]=17754.5 direction=(0.276356,0.567923,0.7753) material=G4_Cu + --> #secondaries=8 impactParameter[fm]=4.58911 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=62 #NNcollisions=1 + Collision 985 projectile=lambda_c+ Ekin[MeV]=28169.9 direction=(0.320825,0.284489,0.903403) material=G4_Be + --> #secondaries=9 impactParameter[fm]=2.83327 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=8 #NNcollisions=0 + Collision 986 projectile=B0 Ekin[MeV]=12795.1 direction=(0.308761,0.660734,0.684177) material=G4_H + --> #secondaries=6 impactParameter[fm]=0.150089 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=0 #NNcollisions=1 + Collision 987 projectile=B+ Ekin[MeV]=25400 direction=(0.829483,0.219733,0.513494) material=G4_Al + --> #secondaries=15 impactParameter[fm]=2.7381 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=1 + Collision 988 projectile=B0 Ekin[MeV]=28578.1 direction=(0.111593,0.248856,0.96209) material=G4_He + --> #secondaries=22 impactParameter[fm]=2.09376 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 989 projectile=kaon+ Ekin[MeV]=25860.7 direction=(0.0368115,0.0698927,0.996875) material=G4_W + --> #secondaries=43 impactParameter[fm]=6.30261 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=181 #NNcollisions=1 + Collision 990 projectile=xi_c+ Ekin[MeV]=17243.6 direction=(0.450854,0.751548,0.481567) material=G4_W + --> #secondaries=30 impactParameter[fm]=5.48609 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=182 #NNcollisions=1 + Collision 991 projectile=hyperHe5 Ekin[MeV]=11957 direction=(0.679785,0.373467,0.631201) material=G4_Pb + --> #secondaries=91 impactParameter[fm]=5.88578 #projectileSpectatorNucleons=1 #targetSpectatorNucleons=193 #NNcollisions=2 + Collision 992 projectile=doublehyperdoubleneutron Ekin[MeV]=19856.4 direction=(0.849365,0.512002,0.128189) material=G4_Si + --> #secondaries=31 impactParameter[fm]=2.86963 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=23 #NNcollisions=3 + Collision 993 projectile=D+ Ekin[MeV]=7907.55 direction=(0.714881,0.683544,0.147353) material=G4_Pb + --> #secondaries=41 impactParameter[fm]=6.51021 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=205 #NNcollisions=2 + Collision 994 projectile=anti_doublehyperH4 Ekin[MeV]=23554 direction=(0.58119,0.429989,0.690889) material=G4_C + --> #secondaries=35 impactParameter[fm]=1.97886 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=9 #NNcollisions=5 + Collision 995 projectile=anti_xi_c+ Ekin[MeV]=13029.7 direction=(0.287739,0.830038,0.477749) material=G4_Be + --> #secondaries=10 impactParameter[fm]=2.6007 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=7 #NNcollisions=1 + Collision 996 projectile=anti_hyperalpha Ekin[MeV]=25053.1 direction=(0.288578,0.72215,0.628668) material=G4_Cu + --> #secondaries=88 impactParameter[fm]=2.56703 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=59 #NNcollisions=5 + Collision 997 projectile=kaon- Ekin[MeV]=15043.4 direction=(0.023264,0.256513,0.966261) material=G4_Al + --> #secondaries=22 impactParameter[fm]=2.13746 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=25 #NNcollisions=2 + Collision 998 projectile=D- Ekin[MeV]=24566.9 direction=(0.214404,0.929345,0.30058) material=G4_He + --> #secondaries=10 impactParameter[fm]=0.686373 #projectileSpectatorNucleons=-1 #targetSpectatorNucleons=3 #NNcollisions=1 + Collision 999 projectile=anti_xi0 Ekin[MeV]=6472.27 direction=(0.548434,0.787717,0.280574) material=G4_He + --> #secondaries=5 impactParameter[fm]=2.10439 #projectileSpectatorNucleons=0 #targetSpectatorNucleons=3 #NNcollisions=0 - Final random number = 0.566016 + Final random number = 0.221963 === End of test === diff --git a/examples/extended/hadronic/Hadr10/hadr10.out b/examples/extended/hadronic/Hadr10/hadr10.out index 22bf3b1d65520a8264cbb3dd40a28d6d3d0e5837..1a2ac3904407d7617f580736cde33adaf716e85e 100644 --- a/examples/extended/hadronic/Hadr10/hadr10.out +++ b/examples/extended/hadronic/Hadr10/hadr10.out @@ -1,6 +1,6 @@ ===================================================== - Initial seed = 1742561300 + Initial seed = 1745424319 ===================================================== Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type... @@ -16,7 +16,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 @@ -79,20 +79,20 @@ Index : 1 used in the geometry : Yes ### Run 0 starts. ### Run 0 starts. - Event#=0 t[ns]=0.0847694 r[mm]=25.4131 deltaR[mum]=2.77156e-06 deltaEkin[MeV]=5.90129 deltaAngle(deg)=0.00386449 - Event#=1000 t[ns]=0.0356216 r[mm]=10.679 deltaR[mum]=3.2721e-07 deltaEkin[MeV]=0.91056 deltaAngle(deg)=0.00151524 - Event#=2000 t[ns]=0.0863192 r[mm]=25.8777 deltaR[mum]=2.91783e-06 deltaEkin[MeV]=5.60487 deltaAngle(deg)=0.00387547 - Event#=3000 t[ns]=0.0451018 r[mm]=13.5211 deltaR[mum]=5.87578e-07 deltaEkin[MeV]=1.42446 deltaAngle(deg)=0.00221451 - Event#=4000 t[ns]=0.114653 r[mm]=34.372 deltaR[mum]=8.92724e-06 deltaEkin[MeV]=7.61721 deltaAngle(deg)=0.0048059 - Event#=5000 t[ns]=0.145042 r[mm]=43.4823 deltaR[mum]=1.74101e-05 deltaEkin[MeV]=7.47634 deltaAngle(deg)=0.00574311 - Event#=6000 t[ns]=0.0508488 r[mm]=15.244 deltaR[mum]=7.68818e-07 deltaEkin[MeV]=2.46185 deltaAngle(deg)=0.00237438 - Event#=7000 t[ns]=0.132155 r[mm]=39.6189 deltaR[mum]=9.45734e-06 deltaEkin[MeV]=6.8457 deltaAngle(deg)=0.00467964 - Event#=8000 t[ns]=0.044457 r[mm]=13.3278 deltaR[mum]=5.68736e-07 deltaEkin[MeV]=1.35614 deltaAngle(deg)=0.00149771 - Event#=9000 t[ns]=0.00715716 r[mm]=2.14565 deltaR[mum]=2.35056e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000293771 + Event#=0 t[ns]=0.19405 r[mm]=58.1744 deltaR[mum]=4.78941e-05 deltaEkin[MeV]=13.964 deltaAngle(deg)=0.00800565 + Event#=1000 t[ns]=0.00649757 r[mm]=1.94791 deltaR[mum]=1.75904e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000266698 + Event#=2000 t[ns]=0.117774 r[mm]=35.3074 deltaR[mum]=8.54248e-06 deltaEkin[MeV]=6.72363 deltaAngle(deg)=0.00445086 + Event#=3000 t[ns]=0.100566 r[mm]=30.1488 deltaR[mum]=6.81255e-06 deltaEkin[MeV]=8.15048 deltaAngle(deg)=0.00403756 + Event#=4000 t[ns]=0.0707489 r[mm]=21.2099 deltaR[mum]=1.69629e-06 deltaEkin[MeV]=4.49316 deltaAngle(deg)=0.00379898 + Event#=5000 t[ns]=0.170441 r[mm]=51.0965 deltaR[mum]=1.83804e-05 deltaEkin[MeV]=7.5004 deltaAngle(deg)=0.00548548 + Event#=6000 t[ns]=0.0962344 r[mm]=28.8502 deltaR[mum]=4.12071e-06 deltaEkin[MeV]=7.16711 deltaAngle(deg)=0.00400351 + Event#=7000 t[ns]=0.0292784 r[mm]=8.77738 deltaR[mum]=1.60925e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00120176 + Event#=8000 t[ns]=0.150675 r[mm]=45.171 deltaR[mum]=2.97326e-05 deltaEkin[MeV]=7.97248 deltaAngle(deg)=0.00716461 + Event#=9000 t[ns]=0.0935957 r[mm]=28.0591 deltaR[mum]=8.3685e-06 deltaEkin[MeV]=8.74491 deltaAngle(deg)=0.00545936 Run terminated. Run Summary Number of events processed : 10000 - User=0.150000s Real=0.154737s Sys=0.000000s + User=0.110000s Real=0.116212s Sys=0.000000s ============ Run::printInfo() =============== RunID = 0 @@ -114,40 +114,40 @@ Run Summary (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.86762e-07 mean=0.0829467 max=0.916734 - decay R [mm] : min=5.59895e-05 mean=24.8666 max=274.828 - decay X [mm] : min=5.59895e-05 mean=24.8666 max=274.828 - decay Y [mm] : min=-0.000554958 mean=0.00171481 max=0.0886812 - decay Z [mm] : min=-0.0035858 mean=3.8756e-07 max=0.00400765 - Delta decay R [mm] : min=-3.46945e-18 mean=2.26778e-08 max=4.89732e-06 - deflection angle [deg] : min=0 mean=0.0034308 max=0.0372437 - Delta Ekin [MeV] : min=0 mean=4.90267 max=4066.59 - decay Ekin [GeV] : min=495.933 mean=499.995 max=500 - decay Px [GeV] : min=497.707 mean=501.769 max=501.774 - decay Py [GeV] : min=-0.0101262 mean=0.0297939 max=0.326091 - decay Pz [GeV] : min=-0.0473346 mean=5.01963e-05 max=0.0773075 - decay Etot violation [MeV] : min=-9.38895e-06 mean=5.59332e-06 max=2.53679e-05 - decay Px violation [MeV] : min=-9.3889e-06 mean=5.59335e-06 max=2.53679e-05 - decay Py violation [MeV] : min=-1.40859e-09 mean=4.59407e-10 max=1.27005e-08 - decay Pz violation [MeV] : min=-7.654e-10 mean=1.58988e-12 max=1.23283e-09 + decay T [ns] : min=1.31985e-06 mean=0.0826496 max=0.876687 + decay R [mm] : min=0.000395679 mean=24.7776 max=262.823 + decay X [mm] : min=0.000395679 mean=24.7776 max=262.823 + decay Y [mm] : min=1.87081e-13 mean=0.00169601 max=0.0807907 + decay Z [mm] : min=-0.0045859 mean=-1.54901e-06 max=0.00381307 + Delta decay R [mm] : min=-3.46945e-18 mean=2.24429e-08 max=4.20557e-06 + deflection angle [deg] : min=0 mean=0.00342591 max=0.0356672 + Delta Ekin [MeV] : min=0 mean=4.81818 max=1177.55 + decay Ekin [GeV] : min=498.822 mean=499.995 max=500 + decay Px [GeV] : min=500.596 mean=501.769 max=501.774 + decay Py [GeV] : min=-0.0100874 mean=0.0297498 max=0.312352 + decay Pz [GeV] : min=-0.0389029 mean=3.57507e-05 max=0.0631392 + decay Etot violation [MeV] : min=-9.38884e-06 mean=5.67951e-06 max=2.67658e-05 + decay Px violation [MeV] : min=-9.38884e-06 mean=5.67953e-06 max=2.67657e-05 + decay Py violation [MeV] : min=-1.55603e-09 mean=4.66321e-10 max=7.6233e-09 + decay Pz violation [MeV] : min=-1.02264e-09 mean=3.80132e-13 max=1.87734e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.40972e-05 , 0.053009 (mean=0.0100849) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.40972e-05 , 0.053009 (mean=0.0101477) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 4.84977e-09 , 4.84977e-09 + maxGamma_deltaMax{1,2,3} = 0 , 4.90581e-09 , 4.90581e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.13687e-10 (mean=5.51696e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=5.58017e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -131.667 (mean=-0.217198) (#above threshold = 78) - maxOverestimated_mc_truth_rPos_delta [mum] = 176.164 (mean=0.200429) (#above threshold = 410) - minUnderestimated_rDeltaPos [mum] = -131.664 (mean=-0.217175) (#above threshold = 78) - maxOverestimated_rDeltaPos [mum] = 176.166 (mean=0.200452) (#above threshold = 411) + minUnderestimated_mc_truth_rPos_delta [mum] = -51.9929 (mean=-0.216033) (#above threshold = 79) + maxOverestimated_mc_truth_rPos_delta [mum] = 206.538 (mean=0.216806) (#above threshold = 382) + minUnderestimated_rDeltaPos [mum] = -51.9917 (mean=-0.21601) (#above threshold = 79) + maxOverestimated_rDeltaPos [mum] = 206.541 (mean=0.216829) (#above threshold = 382) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0354149 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0470714 ============================================= @@ -171,20 +171,20 @@ Index : 1 used in the geometry : Yes ### Run 1 starts. ### Run 1 starts. - Event#=0 t[ns]=0.0088059 r[mm]=2.63993 deltaR[mum]=4.37872e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000361446 - Event#=1000 t[ns]=0.309285 r[mm]=92.7207 deltaR[mum]=0.000215391 deltaEkin[MeV]=13.4272 deltaAngle(deg)=0.0135018 - Event#=2000 t[ns]=0.028911 r[mm]=8.66725 deltaR[mum]=1.54945e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00118668 - Event#=3000 t[ns]=0.0816867 r[mm]=24.4889 deltaR[mum]=2.49792e-06 deltaEkin[MeV]=5.53545 deltaAngle(deg)=0.00256521 - Event#=4000 t[ns]=0.00964735 r[mm]=2.89218 deltaR[mum]=5.75717e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000395985 - Event#=5000 t[ns]=0.152298 r[mm]=45.6574 deltaR[mum]=1.58193e-05 deltaEkin[MeV]=7.57447 deltaAngle(deg)=0.005721 - Event#=6000 t[ns]=0.117788 r[mm]=35.3117 deltaR[mum]=8.30647e-06 deltaEkin[MeV]=7.18456 deltaAngle(deg)=0.00448655 - Event#=7000 t[ns]=0.00319489 r[mm]=0.957798 deltaR[mum]=2.09055e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000131135 - Event#=8000 t[ns]=0.0172233 r[mm]=5.16338 deltaR[mum]=3.27605e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000706946 - Event#=9000 t[ns]=0.0525661 r[mm]=15.7588 deltaR[mum]=8.28585e-07 deltaEkin[MeV]=2.41324 deltaAngle(deg)=0.00220231 + Event#=0 t[ns]=0.0736067 r[mm]=22.0666 deltaR[mum]=1.88201e-06 deltaEkin[MeV]=4.5685 deltaAngle(deg)=0.00274276 + Event#=1000 t[ns]=0.213899 r[mm]=64.125 deltaR[mum]=5.0921e-05 deltaEkin[MeV]=6.64369 deltaAngle(deg)=0.00886512 + Event#=2000 t[ns]=0.040022 r[mm]=11.9982 deltaR[mum]=4.44791e-07 deltaEkin[MeV]=1.07509 deltaAngle(deg)=0.00140736 + Event#=3000 t[ns]=0.0624064 r[mm]=18.7089 deltaR[mum]=1.3921e-06 deltaEkin[MeV]=4.46428 deltaAngle(deg)=0.00243332 + Event#=4000 t[ns]=0.165231 r[mm]=49.5348 deltaR[mum]=2.44039e-05 deltaEkin[MeV]=6.62289 deltaAngle(deg)=0.00648423 + Event#=5000 t[ns]=0.170025 r[mm]=50.9718 deltaR[mum]=3.02345e-05 deltaEkin[MeV]=6.59164 deltaAngle(deg)=0.00760124 + Event#=6000 t[ns]=0.104332 r[mm]=31.2777 deltaR[mum]=6.71407e-06 deltaEkin[MeV]=6.95204 deltaAngle(deg)=0.00487646 + Event#=7000 t[ns]=0.142517 r[mm]=42.7253 deltaR[mum]=2.503e-05 deltaEkin[MeV]=7.81168 deltaAngle(deg)=0.00688618 + Event#=8000 t[ns]=0.00101602 r[mm]=0.304593 deltaR[mum]=6.66134e-12 deltaEkin[MeV]=0 deltaAngle(deg)=4.17086e-05 + Event#=9000 t[ns]=0.0501659 r[mm]=15.0393 deltaR[mum]=7.45844e-07 deltaEkin[MeV]=2.09511 deltaAngle(deg)=0.00183164 Run terminated. Run Summary Number of events processed : 10000 - User=0.150000s Real=0.143967s Sys=0.000000s + User=0.090000s Real=0.086717s Sys=0.000000s ============ Run::printInfo() =============== RunID = 1 @@ -206,40 +206,40 @@ Run Summary (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.6722e-06 mean=0.082131 max=0.724145 - decay R [mm] : min=0.00200026 mean=24.6221 max=217.092 - decay X [mm] : min=0.00200026 mean=24.6221 max=217.092 - decay Y [mm] : min=-0.0555141 mean=-0.00166163 max=-4.78097e-12 - decay Z [mm] : min=-0.00637251 mean=-8.01287e-07 max=0.00261683 - Delta decay R [mm] : min=-3.46945e-18 mean=2.061e-08 max=2.43876e-06 - deflection angle [deg] : min=0 mean=0.00340431 max=0.0294616 - Delta Ekin [MeV] : min=0 mean=4.88921 max=1285.81 - decay Ekin [GeV] : min=498.714 mean=499.995 max=500 - decay Px [GeV] : min=500.488 mean=501.769 max=501.774 - decay Py [GeV] : min=-0.257941 mean=-0.0295716 max=0.0210713 - decay Pz [GeV] : min=-0.0340451 mean=-1.57406e-06 max=0.0310869 - decay Etot violation [MeV] : min=-9.3889e-06 mean=5.56082e-06 max=2.59673e-05 - decay Px violation [MeV] : min=-9.38884e-06 mean=5.56085e-06 max=2.59673e-05 - decay Py violation [MeV] : min=-1.04934e-08 mean=-4.58863e-10 max=2.92499e-09 - decay Pz violation [MeV] : min=-8.55692e-10 mean=-2.55286e-13 max=8.16637e-10 + decay T [ns] : min=1.35406e-06 mean=0.0833671 max=0.703701 + decay R [mm] : min=0.000405934 mean=24.9927 max=210.963 + decay X [mm] : min=0.000405934 mean=24.9927 max=210.963 + decay Y [mm] : min=-0.0527432 mean=-0.00171715 max=-1.96904e-13 + decay Z [mm] : min=-0.0033665 mean=1.2089e-06 max=0.00895609 + Delta decay R [mm] : min=-1.73472e-18 mean=2.17765e-08 max=2.24468e-06 + deflection angle [deg] : min=0 mean=0.00345562 max=0.0287301 + Delta Ekin [MeV] : min=0 mean=4.66119 max=1541.3 + decay Ekin [GeV] : min=498.459 mean=499.995 max=500 + decay Px [GeV] : min=500.232 mean=501.769 max=501.774 + decay Py [GeV] : min=-0.251628 mean=-0.0300165 max=0.00353136 + decay Pz [GeV] : min=-0.0370056 mean=-5.69277e-05 max=0.0512779 + decay Etot violation [MeV] : min=-9.38884e-06 mean=5.55528e-06 max=2.49851e-05 + decay Px violation [MeV] : min=-9.3889e-06 mean=5.5553e-06 max=2.49851e-05 + decay Py violation [MeV] : min=-6.75581e-09 mean=-4.58802e-10 max=1.68893e-09 + decay Pz violation [MeV] : min=-7.43366e-10 mean=-1.37598e-12 max=1.39601e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.40972e-05 , 0.053009 (mean=0.0100577) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 4.82044e-09 , 4.82044e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.40972e-05 , 0.053009 (mean=0.010077) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 + maxGamma_deltaMax{1,2,3} = 0 , 4.76876e-09 , 4.76876e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=5.48314e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=5.53304e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -40.1031 (mean=-0.219123) (#above threshold = 85) - maxOverestimated_mc_truth_rPos_delta [mum] = 91.6308 (mean=0.205151) (#above threshold = 386) - minUnderestimated_rDeltaPos [mum] = -40.1024 (mean=-0.219102) (#above threshold = 85) - maxOverestimated_rDeltaPos [mum] = 91.6321 (mean=0.205172) (#above threshold = 386) + minUnderestimated_mc_truth_rPos_delta [mum] = -83.0826 (mean=-0.213413) (#above threshold = 77) + maxOverestimated_mc_truth_rPos_delta [mum] = 90.2336 (mean=0.190851) (#above threshold = 382) + minUnderestimated_rDeltaPos [mum] = -83.0814 (mean=-0.213392) (#above threshold = 77) + maxOverestimated_rDeltaPos [mum] = 90.2348 (mean=0.190873) (#above threshold = 382) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0319879 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0327623 ============================================= @@ -263,20 +263,20 @@ Index : 1 used in the geometry : Yes ### Run 2 starts. ### Run 2 starts. - Event#=0 t[ns]=0.355404 r[mm]=106.547 deltaR[mum]=0.000302916 deltaEkin[MeV]=7.77664 deltaAngle(deg)=0.0146007 - Event#=1000 t[ns]=0.211124 r[mm]=63.2929 deltaR[mum]=5.14927e-05 deltaEkin[MeV]=7.18533 deltaAngle(deg)=0.00916154 - Event#=2000 t[ns]=0.0922894 r[mm]=27.6675 deltaR[mum]=8.70993e-06 deltaEkin[MeV]=13.6661 deltaAngle(deg)=0.00512345 - Event#=3000 t[ns]=0.183237 r[mm]=54.9326 deltaR[mum]=3.4301e-05 deltaEkin[MeV]=8.27776 deltaAngle(deg)=0.0070848 - Event#=4000 t[ns]=0.38219 r[mm]=114.577 deltaR[mum]=0.000374813 deltaEkin[MeV]=27.4322 deltaAngle(deg)=0.0142161 - Event#=5000 t[ns]=0.0851624 r[mm]=25.5309 deltaR[mum]=2.80706e-06 deltaEkin[MeV]=5.29653 deltaAngle(deg)=0.00343372 - Event#=6000 t[ns]=0.159955 r[mm]=47.953 deltaR[mum]=2.27052e-05 deltaEkin[MeV]=7.32223 deltaAngle(deg)=0.00671848 - Event#=7000 t[ns]=0.136447 r[mm]=40.9054 deltaR[mum]=1.33557e-05 deltaEkin[MeV]=7.03772 deltaAngle(deg)=0.00451844 - Event#=8000 t[ns]=0.336127 r[mm]=100.768 deltaR[mum]=0.00021044 deltaEkin[MeV]=10.0786 deltaAngle(deg)=0.0132234 - Event#=9000 t[ns]=0.150333 r[mm]=45.0684 deltaR[mum]=3.08618e-05 deltaEkin[MeV]=11.1385 deltaAngle(deg)=0.00706156 + Event#=0 t[ns]=0.254224 r[mm]=76.2138 deltaR[mum]=9.95706e-05 deltaEkin[MeV]=8.40226 deltaAngle(deg)=0.0104956 + Event#=1000 t[ns]=0.396283 r[mm]=118.802 deltaR[mum]=0.000408383 deltaEkin[MeV]=7.11425 deltaAngle(deg)=0.01636 + Event#=2000 t[ns]=0.722797 r[mm]=216.687 deltaR[mum]=0.00236633 deltaEkin[MeV]=7.89122 deltaAngle(deg)=0.0295467 + Event#=3000 t[ns]=0.567876 r[mm]=170.244 deltaR[mum]=0.00114636 deltaEkin[MeV]=7.68749 deltaAngle(deg)=0.0228757 + Event#=4000 t[ns]=0.0356343 r[mm]=10.6828 deltaR[mum]=3.27425e-07 deltaEkin[MeV]=0.540496 deltaAngle(deg)=0.00119116 + Event#=5000 t[ns]=0.238748 r[mm]=71.5744 deltaR[mum]=8.51764e-05 deltaEkin[MeV]=9.78766 deltaAngle(deg)=0.0100924 + Event#=6000 t[ns]=0.03437 r[mm]=10.3038 deltaR[mum]=2.93666e-07 deltaEkin[MeV]=0.420148 deltaAngle(deg)=0.00166695 + Event#=7000 t[ns]=0.20039 r[mm]=60.0749 deltaR[mum]=4.82737e-05 deltaEkin[MeV]=7.89765 deltaAngle(deg)=0.00816974 + Event#=8000 t[ns]=0.191592 r[mm]=57.4374 deltaR[mum]=5.3275e-05 deltaEkin[MeV]=16.3307 deltaAngle(deg)=0.00765873 + Event#=9000 t[ns]=0.464004 r[mm]=139.104 deltaR[mum]=0.000703058 deltaEkin[MeV]=7.03021 deltaAngle(deg)=0.0196206 Run terminated. Run Summary Number of events processed : 10000 - User=0.310000s Real=0.316825s Sys=0.000000s + User=0.220000s Real=0.218347s Sys=0.000000s ============ Run::printInfo() =============== RunID = 2 @@ -293,45 +293,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9827 + # Decays = 9789 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=7.76495e-06 mean=0.273323 max=2.45165 - decay R [mm] : min=0.00232786 mean=81.9396 max=734.982 - decay X [mm] : min=0.00232786 mean=81.9396 max=734.982 - decay Y [mm] : min=-0.650613 mean=-0.0161293 max=0.0383879 - decay Z [mm] : min=-0.0510945 mean=8.67404e-06 max=0.0532212 - Delta decay R [mm] : min=-1.73472e-18 mean=7.57762e-07 max=0.000139112 - deflection angle [deg] : min=8.53688e-07 mean=0.011245 max=0.101028 - Delta Ekin [MeV] : min=0 mean=9.98157 max=12487.7 - decay Ekin [GeV] : min=487.512 mean=499.99 max=500 - decay Px [GeV] : min=489.378 mean=501.856 max=501.866 - decay Py [GeV] : min=-0.884984 mean=-0.0980818 max=0.0763542 - decay Pz [GeV] : min=-0.106348 mean=-4.98596e-06 max=0.18445 - decay Etot violation [MeV] : min=-8.7184e-06 mean=1.14076e-05 max=3.26625e-05 - decay Px violation [MeV] : min=-8.71846e-06 mean=1.14078e-05 max=3.26626e-05 - decay Py violation [MeV] : min=-3.97735e-08 mean=-2.52709e-09 max=1.977e-09 - decay Pz violation [MeV] : min=-3.04757e-09 mean=1.14027e-12 max=7.09127e-09 + decay T [ns] : min=2.42971e-05 mean=0.276176 max=2.86081 + decay R [mm] : min=0.00728403 mean=82.7949 max=857.643 + decay X [mm] : min=0.00728403 mean=82.7949 max=857.642 + decay Y [mm] : min=-0.863261 mean=-0.0170325 max=0.0200547 + decay Z [mm] : min=-0.0350473 mean=3.22085e-06 max=0.0850942 + Delta decay R [mm] : min=0 mean=8.5861e-07 max=0.0001497 + deflection angle [deg] : min=1.2073e-06 mean=0.0113913 max=0.116339 + Delta Ekin [MeV] : min=0 mean=9.1581 max=6599.93 + decay Ekin [GeV] : min=493.4 mean=499.991 max=500 + decay Px [GeV] : min=495.266 mean=501.857 max=501.866 + decay Py [GeV] : min=-1.01906 mean=-0.0994228 max=0.0569725 + decay Pz [GeV] : min=-0.139197 mean=-3.73076e-05 max=0.158509 + decay Etot violation [MeV] : min=-8.7184e-06 mean=1.14811e-05 max=2.88397e-05 + decay Px violation [MeV] : min=-8.71834e-06 mean=1.14813e-05 max=2.88397e-05 + decay Py violation [MeV] : min=-4.21761e-08 mean=-2.59283e-09 max=1.96192e-09 + decay Pz violation [MeV] : min=-3.97992e-09 mean=-8.66531e-13 max=5.46819e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0499883 (mean=0.0112341) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0499883 (mean=0.0111618) maxBeta_deltaMax{1,2} = 4.44089e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 4.52644e-09 , 4.52644e-09 + maxGamma_deltaMax{1,2,3} = 0 , 4.12336e-09 , 4.12336e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -556.486 (mean=-0.464983) (#above threshold = 182) - maxOverestimated_mc_truth_rPos_delta [mum] = 9025.23 (mean=2.26519) (#above threshold = 3522) - minUnderestimated_rDeltaPos [mum] = -556.347 (mean=-0.464225) (#above threshold = 182) - maxOverestimated_rDeltaPos [mum] = 9025.37 (mean=2.26595) (#above threshold = 3522) + minUnderestimated_mc_truth_rPos_delta [mum] = -191.238 (mean=-0.414893) (#above threshold = 178) + maxOverestimated_mc_truth_rPos_delta [mum] = 452.337 (mean=1.2522) (#above threshold = 3463) + minUnderestimated_rDeltaPos [mum] = -191.235 (mean=-0.414035) (#above threshold = 178) + maxOverestimated_rDeltaPos [mum] = 452.343 (mean=1.25305) (#above threshold = 3463) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.106716 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.134505 ============================================= @@ -355,20 +355,20 @@ Index : 1 used in the geometry : Yes ### Run 3 starts. ### Run 3 starts. - Event#=0 t[ns]=0.277622 r[mm]=83.2285 deltaR[mum]=0.000100192 deltaEkin[MeV]=9.00366 deltaAngle(deg)=0.0113133 - Event#=1000 t[ns]=0.148864 r[mm]=44.628 deltaR[mum]=2.57624e-05 deltaEkin[MeV]=7.64191 deltaAngle(deg)=0.00713447 - Event#=2000 t[ns]=0.289672 r[mm]=86.8409 deltaR[mum]=0.000131453 deltaEkin[MeV]=7.79397 deltaAngle(deg)=0.0115492 - Event#=3000 t[ns]=0.551135 r[mm]=165.225 deltaR[mum]=0.00108077 deltaEkin[MeV]=7.24332 deltaAngle(deg)=0.0226458 - Event#=4000 t[ns]=0.652007 r[mm]=195.465 deltaR[mum]=0.00174276 deltaEkin[MeV]=7.29048 deltaAngle(deg)=0.0261361 - Event#=5000 t[ns]=0.0845029 r[mm]=25.3332 deltaR[mum]=2.746e-06 deltaEkin[MeV]=6.06272 deltaAngle(deg)=0.00439472 - Event#=6000 t[ns]=0.217397 r[mm]=65.1735 deltaR[mum]=5.35657e-05 deltaEkin[MeV]=7.23692 deltaAngle(deg)=0.00943544 - Event#=7000 t[ns]=0.270991 r[mm]=81.2404 deltaR[mum]=0.000115387 deltaEkin[MeV]=7.48507 deltaAngle(deg)=0.0114969 - Event#=8000 t[ns]=0.115425 r[mm]=34.6032 deltaR[mum]=1.44261e-05 deltaEkin[MeV]=7.73248 deltaAngle(deg)=0.00540027 - Event#=9000 t[ns]=0.177454 r[mm]=53.199 deltaR[mum]=3.70941e-05 deltaEkin[MeV]=7.22271 deltaAngle(deg)=0.0077404 + Event#=0 t[ns]=0.0205954 r[mm]=6.17432 deltaR[mum]=5.59943e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000845202 + Event#=1000 t[ns]=0.20672 r[mm]=61.9726 deltaR[mum]=4.76984e-05 deltaEkin[MeV]=6.69809 deltaAngle(deg)=0.00910661 + Event#=2000 t[ns]=0.0520979 r[mm]=15.6185 deltaR[mum]=8.11703e-07 deltaEkin[MeV]=2.54002 deltaAngle(deg)=0.00188247 + Event#=3000 t[ns]=0.00644116 r[mm]=1.931 deltaR[mum]=1.71285e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000264333 + Event#=4000 t[ns]=0.389805 r[mm]=116.86 deltaR[mum]=0.000392349 deltaEkin[MeV]=7.62116 deltaAngle(deg)=0.0158586 + Event#=5000 t[ns]=1.11383 r[mm]=333.914 deltaR[mum]=0.00869518 deltaEkin[MeV]=7.02773 deltaAngle(deg)=0.0449269 + Event#=6000 t[ns]=0.0757514 r[mm]=22.7095 deltaR[mum]=2.38393e-06 deltaEkin[MeV]=5.55972 deltaAngle(deg)=0.00320806 + Event#=7000 t[ns]=0.405606 r[mm]=121.597 deltaR[mum]=0.000414455 deltaEkin[MeV]=7.93 deltaAngle(deg)=0.0167508 + Event#=8000 t[ns]=0.119783 r[mm]=35.9097 deltaR[mum]=1.64002e-05 deltaEkin[MeV]=11.1009 deltaAngle(deg)=0.00543117 + Event#=9000 t[ns]=0.724199 r[mm]=217.108 deltaR[mum]=0.00255347 deltaEkin[MeV]=8.34024 deltaAngle(deg)=0.0307238 Run terminated. Run Summary Number of events processed : 10000 - User=0.360000s Real=0.363609s Sys=0.000000s + User=0.220000s Real=0.221611s Sys=0.000000s ============ Run::printInfo() =============== RunID = 3 @@ -385,45 +385,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9788 + # Decays = 9787 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=3.60355e-05 mean=0.276269 max=2.47948 - decay R [mm] : min=0.0108031 mean=82.8228 max=743.323 - decay X [mm] : min=0.0108031 mean=82.8228 max=743.323 - decay Y [mm] : min=-0.00816394 mean=0.0168007 max=0.654481 - decay Z [mm] : min=-0.0316355 mean=-1.02482e-05 max=0.0566618 - Delta decay R [mm] : min=-1.73472e-18 mean=8.13744e-07 max=9.76412e-05 - deflection angle [deg] : min=1.70738e-06 mean=0.0113843 max=0.101302 - Delta Ekin [MeV] : min=0 mean=8.59443 max=2006.06 - decay Ekin [GeV] : min=497.994 mean=499.991 max=500 - decay Px [GeV] : min=499.86 mean=501.857 max=501.866 - decay Py [GeV] : min=-0.096516 mean=0.0992851 max=0.887397 - decay Pz [GeV] : min=-0.124889 mean=-6.02812e-05 max=0.294112 - decay Etot violation [MeV] : min=-8.7184e-06 mean=1.14843e-05 max=2.73325e-05 - decay Px violation [MeV] : min=-8.71829e-06 mean=1.14845e-05 max=2.73326e-05 - decay Py violation [MeV] : min=-2.22701e-09 mean=2.57297e-09 max=3.46223e-08 - decay Pz violation [MeV] : min=-4.96622e-09 mean=-2.29417e-12 max=9.97574e-09 + decay T [ns] : min=3.9953e-05 mean=0.278916 max=2.50557 + decay R [mm] : min=0.0119775 mean=83.6163 max=751.147 + decay X [mm] : min=0.0119775 mean=83.6163 max=751.146 + decay Y [mm] : min=-0.00634029 mean=0.0171226 max=0.678516 + decay Z [mm] : min=-0.0279628 mean=-5.91758e-06 max=0.0395844 + Delta decay R [mm] : min=-1.73472e-18 mean=8.32686e-07 max=0.000100863 + deflection angle [deg] : min=1.9089e-06 mean=0.0114926 max=0.10315 + Delta Ekin [MeV] : min=0 mean=7.89263 max=865.997 + decay Ekin [GeV] : min=499.134 mean=499.992 max=500 + decay Px [GeV] : min=501 mean=501.858 max=501.866 + decay Py [GeV] : min=-0.0704554 mean=0.100256 max=0.903571 + decay Pz [GeV] : min=-0.124279 mean=-3.09829e-05 max=0.144219 + decay Etot violation [MeV] : min=-8.7184e-06 mean=1.15052e-05 max=3.00931e-05 + decay Px violation [MeV] : min=-8.71834e-06 mean=1.15053e-05 max=3.00934e-05 + decay Py violation [MeV] : min=-1.65538e-09 mean=2.59267e-09 max=3.48449e-08 + decay Pz violation [MeV] : min=-4.75147e-09 mean=-1.00102e-12 max=4.43538e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0663115 (mean=0.0111847) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0499883 (mean=0.0112285) maxBeta_deltaMax{1,2} = 4.44089e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 4.296e-09 , 4.296e-09 + maxGamma_deltaMax{1,2,3} = 0 , 4.4094e-09 , 4.4094e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -112.977 (mean=-0.403709) (#above threshold = 178) - maxOverestimated_mc_truth_rPos_delta [mum] = 129.084 (mean=1.19834) (#above threshold = 3523) - minUnderestimated_rDeltaPos [mum] = -112.976 (mean=-0.402896) (#above threshold = 178) - maxOverestimated_rDeltaPos [mum] = 129.087 (mean=1.19915) (#above threshold = 3524) + minUnderestimated_mc_truth_rPos_delta [mum] = -34.7959 (mean=-0.373436) (#above threshold = 158) + maxOverestimated_mc_truth_rPos_delta [mum] = 119.76 (mean=1.21145) (#above threshold = 3510) + minUnderestimated_rDeltaPos [mum] = -34.7959 (mean=-0.372603) (#above threshold = 156) + maxOverestimated_rDeltaPos [mum] = 119.763 (mean=1.21228) (#above threshold = 3510) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.109194 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.110486 ============================================= @@ -447,20 +447,20 @@ Index : 1 used in the geometry : Yes ### Run 4 starts. ### Run 4 starts. - Event#=0 t[ns]=0.0185526 r[mm]=5.5619 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.244671 r[mm]=73.35 deltaR[mum]=1.42109e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0526931 r[mm]=15.7969 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.107136 r[mm]=32.1184 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0415545 r[mm]=12.4576 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.114653 r[mm]=34.3718 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0368765 r[mm]=11.0552 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.0172228 r[mm]=5.16323 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.117833 r[mm]=35.3251 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.00145423 r[mm]=0.435964 deltaR[mum]=5.55112e-14 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.128024 r[mm]=38.3805 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.103819 r[mm]=31.1238 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.113346 r[mm]=33.9799 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.113492 r[mm]=34.0238 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0489489 r[mm]=14.6744 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.129048 r[mm]=38.6875 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0287208 r[mm]=8.61023 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0236228 r[mm]=7.0819 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.106857 r[mm]=32.0348 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.34058 r[mm]=102.103 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.180000s Real=0.173771s Sys=0.000000s + User=0.120000s Real=0.167204s Sys=0.000000s ============ Run::printInfo() =============== RunID = 4 @@ -477,45 +477,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9852 + # Decays = 9836 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.09113e-05 mean=0.110337 max=0.886887 - decay R [mm] : min=0.00327111 mean=33.0779 max=265.88 - decay X [mm] : min=0.00327111 mean=33.0779 max=265.88 - decay Y [mm] : min=-0.0106346 mean=-3.13886e-06 max=0.00862161 - decay Z [mm] : min=-0.0086674 mean=-5.98803e-07 max=0.00939686 - Delta decay R [mm] : min=-2.84217e-14 mean=6.14209e-10 max=1.28795e-06 - deflection angle [deg] : min=0 mean=4.36315e-05 max=0.0356094 - Delta Ekin [MeV] : min=0 mean=0.000830528 max=1.86744 - decay Ekin [GeV] : min=499.998 mean=500 max=500 - decay Px [GeV] : min=501.859 mean=501.861 max=501.861 - decay Py [GeV] : min=-0.221438 mean=-3.04452e-05 max=0.162134 - decay Pz [GeV] : min=-0.144357 mean=1.04346e-05 max=0.219706 - decay Etot violation [MeV] : min=-6.48166e-06 mean=2.93032e-06 max=1.23841e-05 - decay Px violation [MeV] : min=-6.48166e-06 mean=2.93041e-06 max=1.23841e-05 - decay Py violation [MeV] : min=-2.05544e-09 mean=-5.32584e-13 max=2.07424e-09 - decay Pz violation [MeV] : min=-1.51117e-09 mean=6.59697e-13 max=2.30011e-09 + decay T [ns] : min=1.40128e-06 mean=0.10793 max=1.06048 + decay R [mm] : min=0.000420091 mean=32.3563 max=317.923 + decay X [mm] : min=0.000420091 mean=32.3563 max=317.923 + decay Y [mm] : min=-0.0126237 mean=2.66283e-06 max=0.0314844 + decay Z [mm] : min=-0.012861 mean=6.75078e-06 max=0.0140826 + Delta decay R [mm] : min=-2.84217e-14 mean=1.09243e-09 max=1.20855e-06 + deflection angle [deg] : min=0 mean=4.85673e-05 max=0.0243052 + Delta Ekin [MeV] : min=0 mean=0.000878661 max=0.869992 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=501.86 mean=501.861 max=501.861 + decay Py [GeV] : min=-0.164246 mean=-2.70791e-05 max=0.139235 + decay Pz [GeV] : min=-0.126863 mean=8.67931e-05 max=0.179261 + decay Etot violation [MeV] : min=-5.98573e-06 mean=2.90217e-06 max=1.42886e-05 + decay Px violation [MeV] : min=-5.98573e-06 mean=2.90226e-06 max=1.42889e-05 + decay Py violation [MeV] : min=-2.23235e-09 mean=2.44474e-13 max=1.31307e-09 + decay Pz violation [MeV] : min=-6.27509e-10 mean=9.43745e-13 max=1.74708e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.54659e-05 , 0.0289588 (mean=0.00380628) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 - maxGamma_deltaMax{1,2,3} = 0 , 3.17112e-09 , 3.17112e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.54659e-05 , 0.0371413 (mean=0.00381498) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 + maxGamma_deltaMax{1,2,3} = 0 , 3.53646e-09 , 3.53646e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=3.66896e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=3.65275e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0846997 (mean=-2.97577e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0350685 (mean=2.85894e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0834118 (mean=-2.91435e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0363565 (mean=2.92036e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0352659 (mean=-3.4327e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0848028 (mean=7.26747e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0340574 (mean=-3.32346e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0855527 (mean=7.37671e-05) (#above threshold = 0) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0610352 ============================================= @@ -539,20 +539,20 @@ Index : 1 used in the geometry : Yes ### Run 5 starts. ### Run 5 starts. - Event#=0 t[ns]=0.0663204 r[mm]=19.8822 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.015258 r[mm]=4.5742 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.000172218 r[mm]=0.0516294 deltaR[mum]=6.93889e-15 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0540094 r[mm]=16.1915 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.01273 r[mm]=3.81634 deltaR[mum]=4.44089e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.163866 r[mm]=49.1255 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.136809 r[mm]=41.0141 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.215393 r[mm]=64.5727 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0357262 r[mm]=10.7104 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.00505914 r[mm]=1.51668 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.057597 r[mm]=17.267 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0428393 r[mm]=12.8428 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.301855 r[mm]=90.4934 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0716425 r[mm]=21.4777 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0696591 r[mm]=20.8831 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0177399 r[mm]=5.31826 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0636135 r[mm]=19.0707 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.00570565 r[mm]=1.7105 deltaR[mum]=2.22045e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.102514 r[mm]=30.7327 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0485537 r[mm]=14.5559 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.170000s Real=0.178261s Sys=0.000000s + User=0.120000s Real=0.253170s Sys=0.000000s ============ Run::printInfo() =============== RunID = 5 @@ -569,43 +569,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9833 + # Decays = 9836 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=8.94892e-06 mean=0.10814 max=0.957915 - decay R [mm] : min=0.0026828 mean=32.4193 max=287.174 - decay X [mm] : min=0.0026828 mean=32.4193 max=287.174 - decay Y [mm] : min=-0.0301958 mean=-2.223e-06 max=0.0251662 - decay Z [mm] : min=-0.0165021 mean=6.62023e-07 max=0.017861 - Delta decay R [mm] : min=-2.84217e-14 mean=1.54768e-09 max=5.69164e-06 - deflection angle [deg] : min=0 mean=5.04087e-05 max=0.0545132 - Delta Ekin [MeV] : min=0 mean=0.00129206 max=4.37641 - decay Ekin [GeV] : min=499.996 mean=500 max=500 - decay Px [GeV] : min=501.857 mean=501.861 max=501.861 - decay Py [GeV] : min=-0.411012 mean=-1.04411e-05 max=0.214881 - decay Pz [GeV] : min=-0.168352 mean=1.94474e-05 max=0.261868 - decay Etot violation [MeV] : min=-9.67801e-06 mean=2.92478e-06 max=1.20136e-05 - decay Px violation [MeV] : min=-9.67795e-06 mean=2.92487e-06 max=1.20136e-05 - decay Py violation [MeV] : min=-2.16806e-09 mean=-4.61565e-13 max=9.67219e-10 - decay Pz violation [MeV] : min=-2.27335e-09 mean=2.69819e-13 max=1.5275e-09 + decay T [ns] : min=8.82562e-07 mean=0.108516 max=0.957838 + decay R [mm] : min=0.000264584 mean=32.5319 max=287.151 + decay X [mm] : min=0.000264584 mean=32.5319 max=287.151 + decay Y [mm] : min=-0.0165411 mean=-5.54698e-06 max=0.00909621 + decay Z [mm] : min=-0.0158072 mean=-4.41774e-06 max=0.00976391 + Delta decay R [mm] : min=-2.84217e-14 mean=6.8858e-10 max=1.06411e-06 + deflection angle [deg] : min=0 mean=3.713e-05 max=0.022266 + Delta Ekin [MeV] : min=0 mean=0.000638253 max=0.730134 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=501.861 mean=501.861 max=501.861 + decay Py [GeV] : min=-0.140724 mean=-6.74247e-05 max=0.103307 + decay Pz [GeV] : min=-0.194186 mean=-4.69019e-05 max=0.127235 + decay Etot violation [MeV] : min=-9.74408e-06 mean=2.92559e-06 max=1.18594e-05 + decay Px violation [MeV] : min=-9.74408e-06 mean=2.92568e-06 max=1.18596e-05 + decay Py violation [MeV] : min=-2.69844e-09 mean=-7.86255e-13 max=1.685e-09 + decay Pz violation [MeV] : min=-2.4675e-09 mean=-5.14506e-13 max=2.7083e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.54659e-05 , 0.0453235 (mean=0.00382454) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 3.81772e-09 , 3.81772e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.54659e-05 , 0.0371413 (mean=0.00380999) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 + maxGamma_deltaMax{1,2,3} = 0 , 3.24002e-09 , 3.24002e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=3.53504e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=3.60079e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.166177 (mean=-4.76726e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.321519 (mean=9.53285e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.160485 (mean=-4.61249e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.32721 (mean=9.68762e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.031253 (mean=-2.23806e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0594343 (mean=4.29236e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0301889 (mean=-2.1692e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0604984 (mean=4.36122e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -631,20 +631,20 @@ Index : 1 used in the geometry : Yes ### Run 6 starts. ### Run 6 starts. - Event#=0 t[ns]=0.00164378 r[mm]=0.49279 deltaR[mum]=2.84772e-11 deltaEkin[MeV]=0 deltaAngle(deg)=6.74467e-05 - Event#=1000 t[ns]=0.131719 r[mm]=39.488 deltaR[mum]=1.38613e-05 deltaEkin[MeV]=6.69557 deltaAngle(deg)=0.00531287 - Event#=2000 t[ns]=0.32862 r[mm]=98.5171 deltaR[mum]=0.000191834 deltaEkin[MeV]=7.56255 deltaAngle(deg)=0.0130295 - Event#=3000 t[ns]=0.0113878 r[mm]=3.41396 deltaR[mum]=9.46221e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000467246 - Event#=4000 t[ns]=0.0302485 r[mm]=9.0682 deltaR[mum]=1.79902e-07 deltaEkin[MeV]=0.0180777 deltaAngle(deg)=0.00121411 - Event#=5000 t[ns]=0.17565 r[mm]=52.6581 deltaR[mum]=3.47419e-05 deltaEkin[MeV]=7.04885 deltaAngle(deg)=0.00740446 - Event#=6000 t[ns]=0.110034 r[mm]=32.987 deltaR[mum]=1.05317e-05 deltaEkin[MeV]=8.77088 deltaAngle(deg)=0.00506213 - Event#=7000 t[ns]=0.0424447 r[mm]=12.7245 deltaR[mum]=7.16964e-07 deltaEkin[MeV]=3.52858 deltaAngle(deg)=0.00176149 - Event#=8000 t[ns]=0.0179366 r[mm]=5.37721 deltaR[mum]=3.69731e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000735942 - Event#=9000 t[ns]=0.0307106 r[mm]=9.20673 deltaR[mum]=1.93086e-07 deltaEkin[MeV]=0.0614391 deltaAngle(deg)=0.0012804 + Event#=0 t[ns]=0.331309 r[mm]=99.3232 deltaR[mum]=0.000172974 deltaEkin[MeV]=9.25013 deltaAngle(deg)=0.0118977 + Event#=1000 t[ns]=0.094884 r[mm]=28.4453 deltaR[mum]=3.88742e-06 deltaEkin[MeV]=7.5407 deltaAngle(deg)=0.00443318 + Event#=2000 t[ns]=0.0750158 r[mm]=22.489 deltaR[mum]=2.06979e-06 deltaEkin[MeV]=4.90869 deltaAngle(deg)=0.00298006 + Event#=3000 t[ns]=0.0482178 r[mm]=14.4552 deltaR[mum]=6.82068e-07 deltaEkin[MeV]=2.22609 deltaAngle(deg)=0.00200053 + Event#=4000 t[ns]=0.0633886 r[mm]=19.0033 deltaR[mum]=1.28465e-06 deltaEkin[MeV]=3.2552 deltaAngle(deg)=0.00272505 + Event#=5000 t[ns]=0.019337 r[mm]=5.79703 deltaR[mum]=4.63247e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.0007934 + Event#=6000 t[ns]=0.0231807 r[mm]=6.94934 deltaR[mum]=7.98073e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000951109 + Event#=7000 t[ns]=0.0250249 r[mm]=7.50221 deltaR[mum]=1.00409e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00102678 + Event#=8000 t[ns]=0.133567 r[mm]=40.0422 deltaR[mum]=1.37175e-05 deltaEkin[MeV]=7.08009 deltaAngle(deg)=0.00538139 + Event#=9000 t[ns]=0.0233254 r[mm]=6.99273 deltaR[mum]=8.13083e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000957047 Run terminated. Run Summary Number of events processed : 10000 - User=0.280000s Real=0.287782s Sys=0.000000s + User=0.160000s Real=0.323877s Sys=0.000000s ============ Run::printInfo() =============== RunID = 6 @@ -661,45 +661,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9859 + # Decays = 9882 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.98131e-06 mean=0.128319 max=1.07742 - decay R [mm] : min=0.00209293 mean=38.4688 max=322.999 - decay X [mm] : min=0.00209293 mean=38.4688 max=322.999 - decay Y [mm] : min=-0.127957 mean=-0.003831 max=0.00429559 - decay Z [mm] : min=-0.0112191 mean=3.31755e-06 max=0.0336396 - Delta decay R [mm] : min=0 mean=7.90775e-08 max=7.87922e-06 - deflection angle [deg] : min=8.53688e-07 mean=0.00531336 max=0.0446805 - Delta Ekin [MeV] : min=0 mean=6.15663 max=1100 - decay Ekin [GeV] : min=498.9 mean=499.994 max=500 - decay Px [GeV] : min=500.864 mean=501.958 max=501.964 - decay Py [GeV] : min=-0.391455 mean=-0.0461151 max=0.14401 - decay Pz [GeV] : min=-0.130183 mean=3.32105e-05 max=0.117661 - decay Etot violation [MeV] : min=-1.12989e-05 mean=3.23113e-06 max=1.76818e-05 - decay Px violation [MeV] : min=-1.12989e-05 mean=3.23118e-06 max=1.76819e-05 - decay Py violation [MeV] : min=-6.58565e-09 mean=-3.67343e-10 max=4.16111e-09 - decay Pz violation [MeV] : min=-2.5004e-09 mean=6.99089e-13 max=2.73677e-09 + decay T [ns] : min=6.35954e-06 mean=0.129664 max=1.10413 + decay R [mm] : min=0.00190653 mean=38.872 max=331.007 + decay X [mm] : min=0.00190653 mean=38.872 max=331.007 + decay Y [mm] : min=-0.133769 mean=-0.00394143 max=0.0108183 + decay Z [mm] : min=-0.0187727 mean=-3.34138e-06 max=0.0314674 + Delta decay R [mm] : min=0 mean=8.46268e-08 max=8.65499e-06 + deflection angle [deg] : min=8.53688e-07 mean=0.00535954 max=0.0457713 + Delta Ekin [MeV] : min=0 mean=8.81298 max=22364.5 + decay Ekin [GeV] : min=477.635 mean=499.991 max=500 + decay Px [GeV] : min=479.6 mean=501.956 max=501.964 + decay Py [GeV] : min=-0.401032 mean=-0.046537 max=0.196143 + decay Pz [GeV] : min=-0.0841261 mean=-8.14294e-07 max=0.15903 + decay Etot violation [MeV] : min=-1.2124e-05 mean=3.17993e-06 max=1.91596e-05 + decay Px violation [MeV] : min=-1.2124e-05 mean=3.17998e-06 max=1.91596e-05 + decay Py violation [MeV] : min=-6.96548e-09 mean=-3.70465e-10 max=3.91327e-09 + decay Pz violation [MeV] : min=-1.35682e-09 mean=-6.62151e-13 max=1.31405e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.86446e-05 , 0.0484742 (mean=0.0119917) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 3.50693e-09 , 3.50693e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.86446e-05 , 0.0562266 (mean=0.0119999) + maxBeta_deltaMax{1,2} = 4.44089e-16 , 5.55112e-16 + maxGamma_deltaMax{1,2,3} = 0 , 3.30397e-09 , 3.30397e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -58.7692 (mean=-0.285418) (#above threshold = 122) - maxOverestimated_mc_truth_rPos_delta [mum] = 47.2628 (mean=0.391636) (#above threshold = 1151) - minUnderestimated_rDeltaPos [mum] = -58.7691 (mean=-0.285339) (#above threshold = 122) - maxOverestimated_rDeltaPos [mum] = 47.2639 (mean=0.391715) (#above threshold = 1151) + minUnderestimated_mc_truth_rPos_delta [mum] = -1284.21 (mean=-0.430596) (#above threshold = 134) + maxOverestimated_mc_truth_rPos_delta [mum] = 327.264 (mean=0.46685) (#above threshold = 1198) + minUnderestimated_rDeltaPos [mum] = -1284.2 (mean=-0.430511) (#above threshold = 134) + maxOverestimated_rDeltaPos [mum] = 327.269 (mean=0.466934) (#above threshold = 1199) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0679479 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0480648 ============================================= @@ -723,20 +723,20 @@ Index : 1 used in the geometry : Yes ### Run 7 starts. ### Run 7 starts. - Event#=0 t[ns]=0.0629692 r[mm]=18.8776 deltaR[mum]=1.26396e-06 deltaEkin[MeV]=3.43913 deltaAngle(deg)=0.00250601 - Event#=1000 t[ns]=0.0131919 r[mm]=3.9548 deltaR[mum]=1.47091e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000541267 - Event#=2000 t[ns]=0.0317106 r[mm]=9.50652 deltaR[mum]=2.2116e-07 deltaEkin[MeV]=0.148365 deltaAngle(deg)=0.00135057 - Event#=3000 t[ns]=0.0566756 r[mm]=16.9908 deltaR[mum]=1.48601e-06 deltaEkin[MeV]=3.89399 deltaAngle(deg)=0.0030453 - Event#=4000 t[ns]=0.0347527 r[mm]=10.4185 deltaR[mum]=3.03793e-07 deltaEkin[MeV]=0.545525 deltaAngle(deg)=0.0014031 - Event#=5000 t[ns]=0.307809 r[mm]=92.2782 deltaR[mum]=0.000185718 deltaEkin[MeV]=21.2025 deltaAngle(deg)=0.0126064 - Event#=6000 t[ns]=0.0124424 r[mm]=3.7301 deltaR[mum]=1.23408e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000510514 - Event#=7000 t[ns]=0.0716984 r[mm]=21.4945 deltaR[mum]=2.18441e-06 deltaEkin[MeV]=6.3762 deltaAngle(deg)=0.00242127 - Event#=8000 t[ns]=0.166648 r[mm]=49.9596 deltaR[mum]=2.40093e-05 deltaEkin[MeV]=8.03759 deltaAngle(deg)=0.00610884 - Event#=9000 t[ns]=0.0536214 r[mm]=16.0752 deltaR[mum]=8.66159e-07 deltaEkin[MeV]=2.31966 deltaAngle(deg)=0.00254045 + Event#=0 t[ns]=0.031093 r[mm]=9.32138 deltaR[mum]=2.03896e-07 deltaEkin[MeV]=0.120279 deltaAngle(deg)=0.00122629 + Event#=1000 t[ns]=0.0339897 r[mm]=10.1898 deltaR[mum]=2.83343e-07 deltaEkin[MeV]=0.369389 deltaAngle(deg)=0.0014447 + Event#=2000 t[ns]=0.0351717 r[mm]=10.5441 deltaR[mum]=3.14978e-07 deltaEkin[MeV]=0.571489 deltaAngle(deg)=0.00137755 + Event#=3000 t[ns]=0.167647 r[mm]=50.2588 deltaR[mum]=3.02133e-05 deltaEkin[MeV]=10.232 deltaAngle(deg)=0.00655382 + Event#=4000 t[ns]=0.0785175 r[mm]=23.5388 deltaR[mum]=2.23781e-06 deltaEkin[MeV]=5.04018 deltaAngle(deg)=0.00345182 + Event#=5000 t[ns]=0.115743 r[mm]=34.6985 deltaR[mum]=1.34864e-05 deltaEkin[MeV]=8.38959 deltaAngle(deg)=0.00547965 + Event#=6000 t[ns]=0.0154926 r[mm]=4.64452 deltaR[mum]=2.38254e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000635664 + Event#=7000 t[ns]=0.078082 r[mm]=23.4082 deltaR[mum]=3.69608e-06 deltaEkin[MeV]=6.43738 deltaAngle(deg)=0.00323259 + Event#=8000 t[ns]=0.115277 r[mm]=34.559 deltaR[mum]=1.01168e-05 deltaEkin[MeV]=7.85755 deltaAngle(deg)=0.00519039 + Event#=9000 t[ns]=0.00781871 r[mm]=2.34397 deltaR[mum]=3.06244e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000320804 Run terminated. Run Summary Number of events processed : 10000 - User=0.330000s Real=0.408847s Sys=0.000000s + User=0.170000s Real=0.339985s Sys=0.000000s ============ Run::printInfo() =============== RunID = 7 @@ -753,45 +753,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9876 + # Decays = 9847 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=4.51636e-06 mean=0.126813 max=1.2102 - decay R [mm] : min=0.00135396 mean=38.0172 max=362.807 - decay X [mm] : min=0.00135396 mean=38.0172 max=362.807 - decay Y [mm] : min=-0.00941943 mean=0.00380099 max=0.161303 - decay Z [mm] : min=-0.0318415 mean=-2.16097e-05 max=0.00864492 - Delta decay R [mm] : min=0 mean=8.0894e-08 max=1.14377e-05 - deflection angle [deg] : min=8.53688e-07 mean=0.00525661 max=0.050304 - Delta Ekin [MeV] : min=0 mean=6.86606 max=4307.89 - decay Ekin [GeV] : min=495.692 mean=499.993 max=500 - decay Px [GeV] : min=497.656 mean=501.958 max=501.964 - decay Py [GeV] : min=-0.0985889 mean=0.0455926 max=0.440722 - decay Pz [GeV] : min=-0.120647 mean=-4.79494e-05 max=0.160343 - decay Etot violation [MeV] : min=-1.10872e-05 mean=3.19287e-06 max=1.79202e-05 - decay Px violation [MeV] : min=-1.10872e-05 mean=3.19291e-06 max=1.79202e-05 - decay Py violation [MeV] : min=-2.58603e-09 mean=3.69794e-10 max=8.50247e-09 - decay Pz violation [MeV] : min=-1.65655e-09 mean=4.56461e-13 max=2.0993e-09 + decay T [ns] : min=1.06849e-05 mean=0.127519 max=1.1466 + decay R [mm] : min=0.00320322 mean=38.2291 max=343.739 + decay X [mm] : min=0.00320322 mean=38.2291 max=343.739 + decay Y [mm] : min=-0.00448631 mean=0.00382261 max=0.141081 + decay Z [mm] : min=-0.0162117 mean=-6.23671e-06 max=0.0124938 + Delta decay R [mm] : min=-1.73472e-18 mean=8.24417e-08 max=9.70763e-06 + deflection angle [deg] : min=8.53688e-07 mean=0.00528038 max=0.0470185 + Delta Ekin [MeV] : min=0 mean=6.46706 max=2106.31 + decay Ekin [GeV] : min=497.894 mean=499.994 max=500 + decay Px [GeV] : min=499.858 mean=501.958 max=501.964 + decay Py [GeV] : min=-0.0993432 mean=0.0458869 max=0.41196 + decay Pz [GeV] : min=-0.187752 mean=-9.51255e-06 max=0.107183 + decay Etot violation [MeV] : min=-1.07346e-05 mean=3.2823e-06 max=1.95495e-05 + decay Px violation [MeV] : min=-1.07345e-05 mean=3.28234e-06 max=1.95494e-05 + decay Py violation [MeV] : min=-4.43521e-09 mean=3.77142e-10 max=7.7863e-09 + decay Pz violation [MeV] : min=-1.34982e-09 mean=1.54654e-13 max=1.58566e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.86446e-05 , 0.0562266 (mean=0.0121186) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 - maxGamma_deltaMax{1,2,3} = 0 , 3.4058e-09 , 3.4058e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.86446e-05 , 0.0484742 (mean=0.0119445) + maxBeta_deltaMax{1,2} = 4.44089e-16 , 4.44089e-16 + maxGamma_deltaMax{1,2,3} = 0 , 3.43738e-09 , 3.43738e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -151.03 (mean=-0.313568) (#above threshold = 130) - maxOverestimated_mc_truth_rPos_delta [mum] = 180.751 (mean=0.435224) (#above threshold = 1091) - minUnderestimated_rDeltaPos [mum] = -151.028 (mean=-0.313487) (#above threshold = 130) - maxOverestimated_rDeltaPos [mum] = 180.754 (mean=0.435305) (#above threshold = 1091) + minUnderestimated_mc_truth_rPos_delta [mum] = -62.007 (mean=-0.292805) (#above threshold = 150) + maxOverestimated_mc_truth_rPos_delta [mum] = 482.604 (mean=0.454906) (#above threshold = 1108) + minUnderestimated_rDeltaPos [mum] = -62.0069 (mean=-0.292723) (#above threshold = 150) + maxOverestimated_rDeltaPos [mum] = 482.612 (mean=0.454988) (#above threshold = 1108) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0724728 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0707428 ============================================= @@ -815,20 +815,20 @@ Index : 1 used in the geometry : Yes ### Run 8 starts. ### Run 8 starts. - Event#=0 t[ns]=0.1548 r[mm]=46.4053 deltaR[mum]=4.77345e-05 deltaEkin[MeV]=7.67562 deltaAngle(deg)=0.0060579 - Event#=1000 t[ns]=0.314561 r[mm]=94.2977 deltaR[mum]=0.000290849 deltaEkin[MeV]=7.95074 deltaAngle(deg)=0.0127292 - Event#=2000 t[ns]=0.0251866 r[mm]=7.55034 deltaR[mum]=1.01026e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00102664 - Event#=3000 t[ns]=0.0817943 r[mm]=24.52 deltaR[mum]=1.33479e-05 deltaEkin[MeV]=10.0367 deltaAngle(deg)=0.00315156 - Event#=4000 t[ns]=0.0275588 r[mm]=8.26148 deltaR[mum]=1.32346e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00112334 - Event#=5000 t[ns]=0.315543 r[mm]=94.5923 deltaR[mum]=0.000297707 deltaEkin[MeV]=8.82024 deltaAngle(deg)=0.013177 - Event#=6000 t[ns]=0.136254 r[mm]=40.8458 deltaR[mum]=2.83381e-05 deltaEkin[MeV]=6.63251 deltaAngle(deg)=0.00544411 - Event#=7000 t[ns]=0.0131929 r[mm]=3.95492 deltaR[mum]=1.45199e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000537761 - Event#=8000 t[ns]=0.0413919 r[mm]=12.4083 deltaR[mum]=4.75527e-07 deltaEkin[MeV]=1.23388 deltaAngle(deg)=0.0014381 - Event#=9000 t[ns]=0.371672 r[mm]=111.418 deltaR[mum]=0.000456066 deltaEkin[MeV]=8.17866 deltaAngle(deg)=0.0146365 + Event#=0 t[ns]=0.181069 r[mm]=54.2801 deltaR[mum]=8.11325e-05 deltaEkin[MeV]=8.23918 deltaAngle(deg)=0.00697431 + Event#=1000 t[ns]=0.00889407 r[mm]=2.66623 deltaR[mum]=4.448e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000362535 + Event#=2000 t[ns]=0.00652155 r[mm]=1.95501 deltaR[mum]=1.75393e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000265827 + Event#=3000 t[ns]=0.039088 r[mm]=11.7177 deltaR[mum]=8.044e-07 deltaEkin[MeV]=1.39386 deltaAngle(deg)=0.00173076 + Event#=4000 t[ns]=0.0594161 r[mm]=17.8115 deltaR[mum]=8.31145e-06 deltaEkin[MeV]=7.68775 deltaAngle(deg)=0.00334092 + Event#=5000 t[ns]=0.159351 r[mm]=47.7695 deltaR[mum]=5.50084e-05 deltaEkin[MeV]=7.59014 deltaAngle(deg)=0.00739751 + Event#=6000 t[ns]=0.278663 r[mm]=83.5364 deltaR[mum]=0.000182751 deltaEkin[MeV]=8.37685 deltaAngle(deg)=0.0110945 + Event#=7000 t[ns]=0.0445816 r[mm]=13.3645 deltaR[mum]=7.24603e-07 deltaEkin[MeV]=2.84713 deltaAngle(deg)=0.00185572 + Event#=8000 t[ns]=0.628083 r[mm]=188.284 deltaR[mum]=0.00183657 deltaEkin[MeV]=7.49075 deltaAngle(deg)=0.0257199 + Event#=9000 t[ns]=0.110814 r[mm]=33.2195 deltaR[mum]=3.18268e-05 deltaEkin[MeV]=8.52386 deltaAngle(deg)=0.00581168 Run terminated. Run Summary Number of events processed : 10000 - User=0.310000s Real=0.314286s Sys=0.000000s + User=0.190000s Real=0.374240s Sys=0.000000s ============ Run::printInfo() =============== RunID = 8 @@ -845,45 +845,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9819 + # Decays = 9826 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.11273e-07 mean=0.155413 max=1.36661 - decay R [mm] : min=0.000183245 mean=46.5892 max=409.676 - decay X [mm] : min=0.000183245 mean=46.5892 max=409.676 - decay Y [mm] : min=-0.201745 mean=-0.00547003 max=0.00553404 - decay Z [mm] : min=-0.0171688 mean=1.66402e-05 max=0.0281547 - Delta decay R [mm] : min=-3.46945e-18 mean=1.90817e-07 max=1.68146e-05 - deflection angle [deg] : min=0 mean=0.00638378 max=0.0560963 - Delta Ekin [MeV] : min=0 mean=6.61079 max=974.524 - decay Ekin [GeV] : min=499.025 mean=499.993 max=500 - decay Px [GeV] : min=504.277 mean=505.245 max=505.252 - decay Py [GeV] : min=-0.494685 mean=-0.055793 max=0.148274 - decay Pz [GeV] : min=-0.132992 mean=0.000171916 max=0.150098 - decay Etot violation [MeV] : min=-1.81212e-06 mean=3.85455e-07 max=2.86754e-06 - decay Px violation [MeV] : min=-1.81206e-06 mean=3.85439e-07 max=2.86754e-06 - decay Py violation [MeV] : min=-1.29791e-09 mean=-5.04527e-11 max=7.05654e-10 - decay Pz violation [MeV] : min=-1.32076e-10 mean=1.18142e-13 max=3.01029e-10 + decay T [ns] : min=2.80433e-05 mean=0.155195 max=1.57472 + decay R [mm] : min=0.0084067 mean=46.5238 max=472.063 + decay X [mm] : min=0.0084067 mean=46.5238 max=472.063 + decay Y [mm] : min=-0.264259 mean=-0.00563034 max=0.00111629 + decay Z [mm] : min=-0.0155652 mean=1.95029e-06 max=0.0326844 + Delta decay R [mm] : min=-1.73472e-18 mean=2.38076e-07 max=0.000281231 + deflection angle [deg] : min=0 mean=0.0063635 max=0.0641153 + Delta Ekin [MeV] : min=0 mean=7.37362 max=7438.16 + decay Ekin [GeV] : min=492.562 mean=499.993 max=500 + decay Px [GeV] : min=497.813 mean=505.244 max=505.252 + decay Py [GeV] : min=-0.565357 mean=-0.0557091 max=0.0756702 + decay Pz [GeV] : min=-0.133092 mean=1.51411e-05 max=0.15652 + decay Etot violation [MeV] : min=-1.75944e-06 mean=3.88884e-07 max=2.83803e-06 + decay Px violation [MeV] : min=-1.75956e-06 mean=3.88868e-07 max=2.83803e-06 + decay Py violation [MeV] : min=-1.31661e-09 mean=-5.05117e-11 max=7.01448e-10 + decay Pz violation [MeV] : min=-1.70232e-10 mean=7.04485e-15 max=2.95827e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0218188 (mean=0.00444958) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0189284 (mean=0.00444576) maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.6756e-10 , 1.6756e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.63496e-10 , 1.63496e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.13687e-10 (mean=1.03102e-11) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 1.7053e-10 (mean=1.03477e-11) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -47.1521 (mean=-0.302777) (#above threshold = 123) - maxOverestimated_mc_truth_rPos_delta [mum] = 89.3748 (mean=0.547878) (#above threshold = 1593) - minUnderestimated_rDeltaPos [mum] = -47.1482 (mean=-0.302587) (#above threshold = 123) - maxOverestimated_rDeltaPos [mum] = 89.3846 (mean=0.548068) (#above threshold = 1593) + minUnderestimated_mc_truth_rPos_delta [mum] = -366.209 (mean=-0.343305) (#above threshold = 138) + maxOverestimated_mc_truth_rPos_delta [mum] = 2541.8 (mean=0.831042) (#above threshold = 1606) + minUnderestimated_rDeltaPos [mum] = -365.928 (mean=-0.343067) (#above threshold = 138) + maxOverestimated_rDeltaPos [mum] = 2542.08 (mean=0.83128) (#above threshold = 1607) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0473322 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0476377 ============================================= @@ -907,20 +907,20 @@ Index : 1 used in the geometry : Yes ### Run 9 starts. ### Run 9 starts. - Event#=0 t[ns]=0.0530126 r[mm]=15.8919 deltaR[mum]=8.32939e-07 deltaEkin[MeV]=2.42579 deltaAngle(deg)=0.00213824 - Event#=1000 t[ns]=0.053492 r[mm]=16.0356 deltaR[mum]=2.31159e-06 deltaEkin[MeV]=3.15298 deltaAngle(deg)=0.00253051 - Event#=2000 t[ns]=0.09718 r[mm]=29.1322 deltaR[mum]=4.33643e-06 deltaEkin[MeV]=7.2765 deltaAngle(deg)=0.00438376 - Event#=3000 t[ns]=0.0238202 r[mm]=7.14071 deltaR[mum]=8.5457e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000970942 - Event#=4000 t[ns]=0.426915 r[mm]=127.979 deltaR[mum]=0.00064207 deltaEkin[MeV]=6.61922 deltaAngle(deg)=0.0178705 - Event#=5000 t[ns]=0.0479777 r[mm]=14.3826 deltaR[mum]=1.63282e-06 deltaEkin[MeV]=2.58766 deltaAngle(deg)=0.00217058 - Event#=6000 t[ns]=0.646723 r[mm]=193.872 deltaR[mum]=0.00186388 deltaEkin[MeV]=7.17991 deltaAngle(deg)=0.0258954 - Event#=7000 t[ns]=0.18347 r[mm]=55.0001 deltaR[mum]=6.8731e-05 deltaEkin[MeV]=7.86361 deltaAngle(deg)=0.00730827 - Event#=8000 t[ns]=0.238286 r[mm]=71.4324 deltaR[mum]=0.000149392 deltaEkin[MeV]=7.35578 deltaAngle(deg)=0.0110561 - Event#=9000 t[ns]=0.0437837 r[mm]=13.1253 deltaR[mum]=5.41727e-07 deltaEkin[MeV]=1.29202 deltaAngle(deg)=0.00203625 + Event#=0 t[ns]=0.538455 r[mm]=161.416 deltaR[mum]=0.00110704 deltaEkin[MeV]=7.25073 deltaAngle(deg)=0.0212309 + Event#=1000 t[ns]=0.0207488 r[mm]=6.21999 deltaR[mum]=5.64828e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000845749 + Event#=2000 t[ns]=0.0793618 r[mm]=23.7908 deltaR[mum]=2.27421e-06 deltaEkin[MeV]=4.91604 deltaAngle(deg)=0.0038902 + Event#=3000 t[ns]=0.0961902 r[mm]=28.8355 deltaR[mum]=1.27277e-05 deltaEkin[MeV]=7.82893 deltaAngle(deg)=0.00464153 + Event#=4000 t[ns]=0.106521 r[mm]=31.9324 deltaR[mum]=2.34806e-05 deltaEkin[MeV]=8.16865 deltaAngle(deg)=0.00497642 + Event#=5000 t[ns]=0.169334 r[mm]=50.7624 deltaR[mum]=5.19406e-05 deltaEkin[MeV]=7.23386 deltaAngle(deg)=0.00623765 + Event#=6000 t[ns]=0.151526 r[mm]=45.424 deltaR[mum]=6.098e-05 deltaEkin[MeV]=8.48709 deltaAngle(deg)=0.00736495 + Event#=7000 t[ns]=0.139718 r[mm]=41.8842 deltaR[mum]=4.34988e-05 deltaEkin[MeV]=7.77813 deltaAngle(deg)=0.00535711 + Event#=8000 t[ns]=0.0991501 r[mm]=29.7228 deltaR[mum]=5.55215e-06 deltaEkin[MeV]=6.70077 deltaAngle(deg)=0.00407138 + Event#=9000 t[ns]=0.0481467 r[mm]=14.4332 deltaR[mum]=2.33082e-06 deltaEkin[MeV]=3.16605 deltaAngle(deg)=0.0022587 Run terminated. Run Summary Number of events processed : 10000 - User=0.320000s Real=0.319675s Sys=0.000000s + User=0.180000s Real=0.302078s Sys=0.000000s ============ Run::printInfo() =============== RunID = 9 @@ -937,45 +937,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9830 + # Decays = 9829 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=9.5867e-06 mean=0.15593 max=1.51021 - decay R [mm] : min=0.00287386 mean=46.744 max=452.725 - decay X [mm] : min=0.00287386 mean=46.744 max=452.725 - decay Y [mm] : min=-0.00185564 mean=0.00557 max=0.247236 - decay Z [mm] : min=-0.0454378 mean=1.02581e-05 max=0.0275016 - Delta decay R [mm] : min=0 mean=1.98302e-07 max=2.69331e-05 - deflection angle [deg] : min=0 mean=0.00642586 max=0.0620798 - Delta Ekin [MeV] : min=0 mean=6.57586 max=942.78 - decay Ekin [GeV] : min=499.057 mean=499.993 max=500 - decay Px [GeV] : min=504.309 mean=505.245 max=505.252 - decay Py [GeV] : min=-0.200129 mean=0.0562206 max=0.547486 - decay Pz [GeV] : min=-0.115577 mean=0.000141997 max=0.146748 - decay Etot violation [MeV] : min=-1.54326e-06 mean=3.99391e-07 max=2.74112e-06 - decay Px violation [MeV] : min=-1.54343e-06 mean=3.99374e-07 max=2.74106e-06 - decay Py violation [MeV] : min=-5.76847e-10 mean=5.20861e-11 max=1.14392e-09 - decay Pz violation [MeV] : min=-2.93682e-10 mean=6.72788e-14 max=3.27418e-10 + decay T [ns] : min=5.8879e-06 mean=0.153855 max=1.48018 + decay R [mm] : min=0.00176505 mean=46.122 max=443.724 + decay X [mm] : min=0.00176505 mean=46.122 max=443.724 + decay Y [mm] : min=-0.00227479 mean=0.00531491 max=0.238003 + decay Z [mm] : min=-0.0304915 mean=-8.06232e-06 max=0.0221679 + Delta decay R [mm] : min=-1.73472e-18 mean=1.86056e-07 max=2.12075e-05 + deflection angle [deg] : min=0 mean=0.00631845 max=0.060901 + Delta Ekin [MeV] : min=0 mean=6.93145 max=2299.19 + decay Ekin [GeV] : min=497.701 mean=499.993 max=500 + decay Px [GeV] : min=502.952 mean=505.245 max=505.252 + decay Py [GeV] : min=-0.230548 mean=0.0552303 max=0.537064 + decay Pz [GeV] : min=-0.254557 mean=-8.01612e-05 max=0.147323 + decay Etot violation [MeV] : min=-1.55304e-06 mean=3.93306e-07 max=2.59769e-06 + decay Px violation [MeV] : min=-1.5531e-06 mean=3.93291e-07 max=2.59763e-06 + decay Py violation [MeV] : min=-4.78309e-10 mean=5.08557e-11 max=1.49885e-09 + decay Pz violation [MeV] : min=-5.44674e-10 mean=-1.69929e-13 max=1.86418e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0218188 (mean=0.00449559) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0247082 (mean=0.0044438) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.60114e-10 , 1.60114e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.70601e-10 , 1.70601e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.7053e-10 (mean=1.03517e-11) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 1.7053e-10 (mean=1.02974e-11) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -26.2094 (mean=-0.301207) (#above threshold = 126) - maxOverestimated_mc_truth_rPos_delta [mum] = 240.893 (mean=0.548511) (#above threshold = 1600) - minUnderestimated_rDeltaPos [mum] = -26.2068 (mean=-0.301008) (#above threshold = 126) - maxOverestimated_rDeltaPos [mum] = 240.92 (mean=0.548709) (#above threshold = 1601) + minUnderestimated_mc_truth_rPos_delta [mum] = -54.4328 (mean=-0.315171) (#above threshold = 132) + maxOverestimated_mc_truth_rPos_delta [mum] = 177.561 (mean=0.558405) (#above threshold = 1590) + minUnderestimated_rDeltaPos [mum] = -54.4133 (mean=-0.314985) (#above threshold = 132) + maxOverestimated_rDeltaPos [mum] = 177.581 (mean=0.558591) (#above threshold = 1591) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0541441 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0460337 ============================================= @@ -999,20 +999,20 @@ Index : 1 used in the geometry : Yes ### Run 10 starts. ### Run 10 starts. - Event#=0 t[ns]=0.397276 r[mm]=119.094 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0831967 r[mm]=24.9404 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0724642 r[mm]=21.723 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0433404 r[mm]=12.9924 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0758438 r[mm]=22.7362 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.220187 r[mm]=66.0067 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.000350276 r[mm]=0.105004 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.475694 r[mm]=142.602 deltaR[mum]=2.84217e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.115727 r[mm]=34.6921 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.318347 r[mm]=95.4329 deltaR[mum]=1.42109e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.224551 r[mm]=67.3151 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.191936 r[mm]=57.5378 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.1806 r[mm]=54.1395 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.331476 r[mm]=99.3686 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.00525517 r[mm]=1.57537 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0708459 r[mm]=21.2379 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0110474 r[mm]=3.31173 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0585525 r[mm]=17.5526 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.126951 r[mm]=38.0568 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.344154 r[mm]=103.169 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.180000s Real=0.333457s Sys=0.000000s + User=0.120000s Real=0.120276s Sys=0.000000s ============ Run::printInfo() =============== RunID = 10 @@ -1029,43 +1029,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9838 + # Decays = 9837 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.32871e-06 mean=0.142838 max=1.46718 - decay R [mm] : min=0.0018972 mean=42.8193 max=439.826 - decay X [mm] : min=0.0018972 mean=42.8193 max=439.826 - decay Y [mm] : min=-0.0179843 mean=3.18514e-06 max=0.012962 - decay Z [mm] : min=-0.0177319 mean=5.8956e-06 max=0.0168842 - Delta decay R [mm] : min=-5.68434e-14 mean=6.31013e-10 max=8.34803e-07 - deflection angle [deg] : min=0 mean=3.43012e-05 max=0.0278939 - Delta Ekin [MeV] : min=0 mean=0.000628068 max=1.1614 + decay T [ns] : min=2.20915e-05 mean=0.144635 max=1.45566 + decay R [mm] : min=0.00662249 mean=43.3581 max=436.373 + decay X [mm] : min=0.00662249 mean=43.3581 max=436.373 + decay Y [mm] : min=-0.0421918 mean=6.54805e-07 max=0.0562089 + decay Z [mm] : min=-0.0362712 mean=-6.92997e-06 max=0.0303493 + Delta decay R [mm] : min=-5.68434e-14 mean=1.4042e-09 max=1.58957e-06 + deflection angle [deg] : min=0 mean=5.70957e-05 max=0.0301267 + Delta Ekin [MeV] : min=0 mean=0.00119478 max=1.35478 decay Ekin [GeV] : min=499.999 mean=500 max=500 decay Px [GeV] : min=505.251 mean=505.252 max=505.252 - decay Py [GeV] : min=-0.113263 mean=6.58476e-05 max=0.217001 - decay Pz [GeV] : min=-0.0901069 mean=7.23879e-05 max=0.135618 - decay Etot violation [MeV] : min=-1.57295e-06 mean=-1.76395e-07 max=1.00047e-06 - decay Px violation [MeV] : min=-1.57312e-06 mean=-1.76422e-07 max=1.00042e-06 - decay Py violation [MeV] : min=-3.29592e-10 mean=-1.75658e-14 max=2.32575e-10 - decay Pz violation [MeV] : min=-2.6624e-10 mean=-5.48031e-14 max=1.46684e-10 + decay Py [GeV] : min=-0.132526 mean=-6.69055e-05 max=0.215932 + decay Pz [GeV] : min=-0.234423 mean=-7.50913e-05 max=0.234859 + decay Etot violation [MeV] : min=-1.42952e-06 mean=-1.75098e-07 max=1.10787e-06 + decay Px violation [MeV] : min=-1.42946e-06 mean=-1.75122e-07 max=1.10792e-06 + decay Py violation [MeV] : min=-2.23224e-10 mean=-3.13368e-14 max=1.34023e-10 + decay Pz violation [MeV] : min=-2.35957e-10 mean=-4.46901e-14 max=2.95643e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.36424e-05 , 0.0167993 (mean=0.0023584) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.36424e-05 , 0.0139089 (mean=0.0023584) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.14738e-10 , 1.14738e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.1336e-10 , 1.1336e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0440562 (mean=-2.26766e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0470465 (mean=3.99622e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0435112 (mean=-2.20456e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0475327 (mean=4.05932e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0374393 (mean=-3.91642e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.300826 (mean=0.000145924) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0358497 (mean=-3.776e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.302199 (mean=0.000147328) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -1091,20 +1091,20 @@ Index : 1 used in the geometry : Yes ### Run 11 starts. ### Run 11 starts. - Event#=0 t[ns]=0.264957 r[mm]=79.4277 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.202435 r[mm]=60.6853 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0916613 r[mm]=27.4779 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.646922 r[mm]=193.932 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0162304 r[mm]=4.8655 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.0205115 r[mm]=6.14885 deltaR[mum]=8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0829348 r[mm]=24.8619 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.0285943 r[mm]=8.57189 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0416021 r[mm]=12.4713 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.13253 r[mm]=39.7293 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.146479 r[mm]=43.911 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0485962 r[mm]=14.568 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.0638345 r[mm]=19.1361 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0159466 r[mm]=4.78041 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.22373 r[mm]=67.0689 deltaR[mum]=1.42109e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.195904 r[mm]=58.7275 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0196933 r[mm]=5.90357 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.175284 r[mm]=52.5459 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0132297 r[mm]=3.96596 deltaR[mum]=4.44089e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0120484 r[mm]=3.61181 deltaR[mum]=4.44089e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.170000s Real=0.382504s Sys=0.000000s + User=0.120000s Real=0.123080s Sys=0.000000s ============ Run::printInfo() =============== RunID = 11 @@ -1121,43 +1121,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9846 + # Decays = 9822 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=4.9126e-06 mean=0.143035 max=1.50406 - decay R [mm] : min=0.00147268 mean=42.8786 max=450.883 - decay X [mm] : min=0.00147268 mean=42.8786 max=450.883 - decay Y [mm] : min=-0.0135143 mean=2.7038e-06 max=0.0263562 - decay Z [mm] : min=-0.0173266 mean=-6.45037e-06 max=0.00633077 - Delta decay R [mm] : min=-5.68434e-14 mean=9.40038e-10 max=2.15093e-06 - deflection angle [deg] : min=0 mean=4.48163e-05 max=0.042573 - Delta Ekin [MeV] : min=0 mean=0.0010839 max=2.70541 - decay Ekin [GeV] : min=499.997 mean=500 max=500 - decay Px [GeV] : min=505.249 mean=505.252 max=505.252 - decay Py [GeV] : min=-0.118089 mean=6.32968e-06 max=0.120548 - decay Pz [GeV] : min=-0.356404 mean=-6.98803e-05 max=0.169108 - decay Etot violation [MeV] : min=-1.42527e-06 mean=-1.781e-07 max=9.9832e-07 - decay Px violation [MeV] : min=-1.42527e-06 mean=-1.78124e-07 max=9.98436e-07 - decay Py violation [MeV] : min=-1.48916e-10 mean=8.04808e-15 max=1.36154e-10 - decay Pz violation [MeV] : min=-3.17641e-10 mean=6.2133e-14 max=2.61153e-10 + decay T [ns] : min=7.96789e-08 mean=0.143166 max=1.1897 + decay R [mm] : min=2.38858e-05 mean=42.9177 max=356.644 + decay X [mm] : min=2.38858e-05 mean=42.9177 max=356.644 + decay Y [mm] : min=-0.0151676 mean=-9.80638e-07 max=0.01893 + decay Z [mm] : min=-0.00951692 mean=1.44518e-05 max=0.0445101 + Delta decay R [mm] : min=-5.68434e-14 mean=8.34221e-10 max=9.4716e-07 + deflection angle [deg] : min=0 mean=4.60627e-05 max=0.0248224 + Delta Ekin [MeV] : min=0 mean=0.000861463 max=0.91972 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=505.251 mean=505.252 max=505.252 + decay Py [GeV] : min=-0.194481 mean=-4.55706e-05 max=0.164753 + decay Pz [GeV] : min=-0.129963 mean=5.39496e-05 max=0.199588 + decay Etot violation [MeV] : min=-1.58697e-06 mean=-1.80591e-07 max=1.11118e-06 + decay Px violation [MeV] : min=-1.58703e-06 mean=-1.80616e-07 max=1.11124e-06 + decay Py violation [MeV] : min=-3.54163e-10 mean=3.06676e-14 max=5.59339e-10 + decay Pz violation [MeV] : min=-4.55458e-10 mean=-6.12644e-14 max=2.95358e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.36424e-05 , 0.0121017 (mean=0.00235663) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.36424e-05 , 0.0139089 (mean=0.00235897) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.21787e-10 , 1.21787e-10 + maxGamma_deltaMax{1,2,3} = 0 , 9.76854e-11 , 9.76854e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.113985 (mean=-4.32922e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0682445 (mean=4.68705e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.111834 (mean=-4.23522e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0703647 (mean=4.78105e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0297466 (mean=-2.76358e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.178522 (mean=8.01383e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0292951 (mean=-2.68015e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.179469 (mean=8.09725e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -1183,20 +1183,20 @@ Index : 1 used in the geometry : Yes ### Run 12 starts. ### Run 12 starts. - Event#=0 t[ns]=0.153552 r[mm]=46.0312 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0529843 r[mm]=15.8834 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0525393 r[mm]=15.75 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0320435 r[mm]=9.60587 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.00590618 r[mm]=1.77053 deltaR[mum]=-2.22045e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.299834 r[mm]=89.8829 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.117676 r[mm]=35.2763 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.406771 r[mm]=121.94 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.118106 r[mm]=35.4052 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.00933782 r[mm]=2.79925 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.00981209 r[mm]=2.94142 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0539209 r[mm]=16.1642 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.11864 r[mm]=35.5653 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.156337 r[mm]=46.8661 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.12287 r[mm]=36.8333 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0316917 r[mm]=9.50039 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0721563 r[mm]=21.6307 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.165901 r[mm]=49.733 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0842863 r[mm]=25.267 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.462549 r[mm]=138.661 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.150000s Real=0.296808s Sys=0.000000s + User=0.110000s Real=0.109512s Sys=0.000000s ============ Run::printInfo() =============== RunID = 12 @@ -1213,43 +1213,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9870 + # Decays = 9876 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=2.63435e-06 mean=0.141191 max=1.46201 - decay R [mm] : min=0.000789714 mean=42.3255 max=438.275 - decay X [mm] : min=0.000789714 mean=42.3255 max=438.275 - decay Y [mm] : min=-0.019659 mean=2.34649e-06 max=0.0225115 - decay Z [mm] : min=-0.00869379 mean=5.83397e-06 max=0.0140622 - Delta decay R [mm] : min=-5.68434e-14 mean=4.91157e-10 max=7.29442e-07 - deflection angle [deg] : min=0 mean=2.68746e-05 max=0.0177392 - Delta Ekin [MeV] : min=0 mean=0.000431849 max=0.469875 - decay Ekin [GeV] : min=500 mean=500 max=500 - decay Px [GeV] : min=505.338 mean=505.338 max=505.338 - decay Py [GeV] : min=-0.0871957 mean=5.64139e-05 max=0.154696 - decay Pz [GeV] : min=-0.123121 mean=3.90971e-05 max=0.0767739 - decay Etot violation [MeV] : min=-7.6578e-07 mean=4.45334e-07 max=1.74443e-06 - decay Px violation [MeV] : min=-7.65664e-07 mean=4.45369e-07 max=1.74477e-06 - decay Py violation [MeV] : min=-1.97858e-10 mean=1.31156e-14 max=2.66027e-10 - decay Pz violation [MeV] : min=-2.70717e-10 mean=2.0821e-15 max=2.1204e-10 + decay T [ns] : min=7.42647e-06 mean=0.14369 max=1.29069 + decay R [mm] : min=0.00222627 mean=43.0747 max=386.918 + decay X [mm] : min=0.00222627 mean=43.0747 max=386.918 + decay Y [mm] : min=-0.0115945 mean=-1.24715e-07 max=0.0304499 + decay Z [mm] : min=-0.02317 mean=-6.42387e-06 max=0.0135799 + Delta decay R [mm] : min=-1.13687e-13 mean=7.13057e-10 max=1.3495e-06 + deflection angle [deg] : min=0 mean=3.17183e-05 max=0.0261845 + Delta Ekin [MeV] : min=0 mean=0.000717459 max=1.02378 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=505.337 mean=505.338 max=505.338 + decay Py [GeV] : min=-0.130324 mean=-1.3054e-05 max=0.120717 + decay Pz [GeV] : min=-0.207466 mean=-3.78649e-06 max=0.210595 + decay Etot violation [MeV] : min=-1.10653e-06 mean=4.49684e-07 max=1.68494e-06 + decay Px violation [MeV] : min=-1.10664e-06 mean=4.4972e-07 max=1.68505e-06 + decay Py violation [MeV] : min=-2.07592e-10 mean=1.23342e-14 max=2.29178e-10 + decay Pz violation [MeV] : min=-1.5271e-10 mean=-5.7775e-14 max=1.66068e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0163627 (mean=0.00215346) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.08102e-10 , 1.08102e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.009225 (mean=0.00215246) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.08315e-10 , 1.08315e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.018435 (mean=-1.65251e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0683727 (mean=3.74459e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0180428 (mean=-1.6034e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0691021 (mean=3.79371e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0507753 (mean=-2.61128e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0962876 (mean=4.95148e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0499921 (mean=-2.53997e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0966037 (mean=5.02279e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -1275,20 +1275,20 @@ Index : 1 used in the geometry : Yes ### Run 13 starts. ### Run 13 starts. - Event#=0 t[ns]=0.0188829 r[mm]=5.66062 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.252237 r[mm]=75.6144 deltaR[mum]=-1.42109e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.533349 r[mm]=159.885 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.167272 r[mm]=50.1441 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.116887 r[mm]=35.0398 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.231934 r[mm]=69.5282 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0400402 r[mm]=12.0031 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.0470459 r[mm]=14.1032 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.104899 r[mm]=31.4463 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.00925702 r[mm]=2.77503 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0119029 r[mm]=3.5682 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.00249555 r[mm]=0.748105 deltaR[mum]=1.11022e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.338074 r[mm]=101.346 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.132825 r[mm]=39.8175 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.157208 r[mm]=47.127 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0235931 r[mm]=7.07264 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.438101 r[mm]=131.332 deltaR[mum]=0.00044358 deltaEkin[MeV]=0.359142 deltaAngle(deg)=0.0155087 + Event#=7000 t[ns]=0.414605 r[mm]=124.288 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0196895 r[mm]=5.90244 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.114267 r[mm]=34.2546 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.160000s Real=0.331445s Sys=0.000000s + User=0.090000s Real=0.092591s Sys=0.000000s ============ Run::printInfo() =============== RunID = 13 @@ -1305,43 +1305,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9871 + # Decays = 9884 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.87298e-05 mean=0.140787 max=1.50849 - decay R [mm] : min=0.00561475 mean=42.2045 max=452.209 - decay X [mm] : min=0.00561475 mean=42.2045 max=452.209 - decay Y [mm] : min=-0.0285882 mean=9.46341e-08 max=0.0122608 - decay Z [mm] : min=-0.00632835 mean=5.90947e-06 max=0.0202316 - Delta decay R [mm] : min=-5.68434e-14 mean=5.98252e-10 max=1.21121e-06 - deflection angle [deg] : min=0 mean=3.26934e-05 max=0.0208096 - Delta Ekin [MeV] : min=0 mean=0.000502834 max=0.646608 - decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay T [ns] : min=2.67472e-06 mean=0.141577 max=1.33451 + decay R [mm] : min=0.000801816 mean=42.4414 max=400.052 + decay X [mm] : min=0.000801816 mean=42.4414 max=400.052 + decay Y [mm] : min=-0.00825944 mean=1.31511e-06 max=0.0138087 + decay Z [mm] : min=-0.0156387 mean=8.06211e-06 max=0.0316703 + Delta decay R [mm] : min=-1.13687e-13 mean=5.53355e-10 max=8.30151e-07 + deflection angle [deg] : min=0 mean=2.39247e-05 max=0.0181009 + Delta Ekin [MeV] : min=0 mean=0.000422748 max=0.489234 + decay Ekin [GeV] : min=500 mean=500 max=500 decay Px [GeV] : min=505.338 mean=505.338 max=505.338 - decay Py [GeV] : min=-0.183039 mean=3.8781e-05 max=0.116455 - decay Pz [GeV] : min=-0.106707 mean=3.95442e-05 max=0.118961 - decay Etot violation [MeV] : min=-9.22999e-07 mean=4.52252e-07 max=1.73657e-06 - decay Px violation [MeV] : min=-9.22999e-07 mean=4.52287e-07 max=1.73657e-06 - decay Py violation [MeV] : min=-3.32165e-10 mean=2.84479e-14 max=2.02363e-10 - decay Pz violation [MeV] : min=-2.49258e-10 mean=3.57217e-14 max=1.70957e-10 + decay Py [GeV] : min=-0.108815 mean=1.15328e-05 max=0.151241 + decay Pz [GeV] : min=-0.139987 mean=5.75226e-05 max=0.135441 + decay Etot violation [MeV] : min=-7.37549e-07 mean=4.50342e-07 max=1.91829e-06 + decay Px violation [MeV] : min=-7.37607e-07 mean=4.50376e-07 max=1.91847e-06 + decay Py violation [MeV] : min=-2.74852e-10 mean=2.27359e-14 max=1.87313e-10 + decay Pz violation [MeV] : min=-9.25695e-11 mean=1.46567e-14 max=1.82467e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0163627 (mean=0.00215937) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0120681 (mean=0.00215476) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.23919e-10 , 1.23919e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.24828e-10 , 1.24828e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.030254 (mean=-2.19484e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.100985 (mean=3.83315e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0290428 (mean=-2.13501e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.102197 (mean=3.89298e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0232694 (mean=-1.72958e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0839739 (mean=3.80252e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0224392 (mean=-1.67425e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0844174 (mean=3.85785e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -1367,20 +1367,20 @@ Index : 1 used in the geometry : Yes ### Run 14 starts. ### Run 14 starts. - Event#=0 t[ns]=0.00406833 r[mm]=1.21956 deltaR[mum]=4.24327e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000165505 - Event#=1000 t[ns]=0.026519 r[mm]=7.94958 deltaR[mum]=1.17454e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00107882 - Event#=2000 t[ns]=0.0014742 r[mm]=0.44192 deltaR[mum]=2.01505e-11 deltaEkin[MeV]=0 deltaAngle(deg)=5.99651e-05 - Event#=3000 t[ns]=0.0286598 r[mm]=8.59133 deltaR[mum]=1.48258e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00116591 - Event#=4000 t[ns]=0.0161073 r[mm]=4.82849 deltaR[mum]=2.63185e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000655265 - Event#=5000 t[ns]=0.0436107 r[mm]=13.0731 deltaR[mum]=5.34733e-07 deltaEkin[MeV]=1.33449 deltaAngle(deg)=0.00169375 - Event#=6000 t[ns]=0.0072804 r[mm]=2.18244 deltaR[mum]=2.4305e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000296175 - Event#=7000 t[ns]=0.0119209 r[mm]=3.57353 deltaR[mum]=1.06692e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000484957 - Event#=8000 t[ns]=0.0153413 r[mm]=4.59886 deltaR[mum]=2.27391e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000624103 - Event#=9000 t[ns]=0.138663 r[mm]=41.567 deltaR[mum]=4.55812e-05 deltaEkin[MeV]=8.67757 deltaAngle(deg)=0.00322643 + Event#=0 t[ns]=0.0298205 r[mm]=8.93927 deltaR[mum]=1.67013e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00121313 + Event#=1000 t[ns]=0.00810359 r[mm]=2.42921 deltaR[mum]=3.35199e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000329664 + Event#=2000 t[ns]=0.26267 r[mm]=78.7405 deltaR[mum]=0.00021562 deltaEkin[MeV]=7.56987 deltaAngle(deg)=0.0112658 + Event#=3000 t[ns]=0.00022568 r[mm]=0.0676519 deltaR[mum]=5.55112e-14 deltaEkin[MeV]=0 deltaAngle(deg)=9.15478e-06 + Event#=4000 t[ns]=0.0398038 r[mm]=11.932 deltaR[mum]=4.31111e-07 deltaEkin[MeV]=0.926135 deltaAngle(deg)=0.00149116 + Event#=5000 t[ns]=0.018445 r[mm]=5.52925 deltaR[mum]=3.95222e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000750366 + Event#=6000 t[ns]=0.0307097 r[mm]=9.20584 deltaR[mum]=1.89763e-07 deltaEkin[MeV]=0.0604225 deltaAngle(deg)=0.00118748 + Event#=7000 t[ns]=0.00598827 r[mm]=1.7951 deltaR[mum]=1.3527e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000243609 + Event#=8000 t[ns]=0.0136617 r[mm]=4.09537 deltaR[mum]=1.60592e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000555776 + Event#=9000 t[ns]=0.0266866 r[mm]=7.99984 deltaR[mum]=1.19697e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00108564 Run terminated. Run Summary Number of events processed : 10000 - User=0.140000s Real=0.321754s Sys=0.000000s + User=0.080000s Real=0.074123s Sys=0.000000s ============ Run::printInfo() =============== RunID = 14 @@ -1397,45 +1397,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9966 + # Decays = 9969 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.02904e-05 mean=0.0405854 max=0.358867 - decay R [mm] : min=0.00308474 mean=12.1662 max=107.577 - decay X [mm] : min=0.00308474 mean=12.1662 max=107.577 - decay Y [mm] : min=-0.0290152 mean=-0.000420856 max=-1.12703e-11 - decay Z [mm] : min=-0.00165176 mean=3.19896e-06 max=0.0234044 - Delta decay R [mm] : min=-3.46945e-18 mean=8.30921e-09 max=7.77664e-06 - deflection angle [deg] : min=0 mean=0.00167519 max=0.0366568 - Delta Ekin [MeV] : min=0 mean=2.5769 max=3550.64 - decay Ekin [GeV] : min=496.449 mean=499.997 max=500 - decay Px [GeV] : min=502.685 mean=506.233 max=506.236 - decay Py [GeV] : min=-0.261565 mean=-0.0146179 max=0.0228216 - decay Pz [GeV] : min=-0.069266 mean=3.07335e-06 max=0.19105 - decay Etot violation [MeV] : min=-1.5205e-06 mean=1.44357e-07 max=1.37009e-06 - decay Px violation [MeV] : min=-1.52044e-06 mean=1.44377e-07 max=1.37015e-06 - decay Py violation [MeV] : min=-1.84798e-10 mean=-9.65947e-13 max=3.01952e-10 - decay Pz violation [MeV] : min=-2.20638e-10 mean=9.07846e-15 max=2.29335e-10 + decay T [ns] : min=1.41949e-05 mean=0.0413388 max=0.516898 + decay R [mm] : min=0.00425518 mean=12.3921 max=154.95 + decay X [mm] : min=0.00425518 mean=12.3921 max=154.95 + decay Y [mm] : min=-0.028278 mean=-0.000440689 max=-2.14454e-11 + decay Z [mm] : min=-0.00131358 mean=1.1539e-06 max=0.00473316 + Delta decay R [mm] : min=-3.46945e-18 mean=8.04827e-09 max=3.80823e-06 + deflection angle [deg] : min=8.53688e-07 mean=0.00170537 max=0.0209159 + Delta Ekin [MeV] : min=0 mean=2.33146 max=389.184 + decay Ekin [GeV] : min=499.611 mean=499.998 max=500 + decay Px [GeV] : min=505.847 mean=506.234 max=506.236 + decay Py [GeV] : min=-0.184741 mean=-0.0148919 max=0.0243069 + decay Pz [GeV] : min=-0.0830184 mean=3.46319e-05 max=0.14702 + decay Etot violation [MeV] : min=-1.57091e-06 mean=1.48278e-07 max=1.4106e-06 + decay Px violation [MeV] : min=-1.57079e-06 mean=1.48299e-07 max=1.41049e-06 + decay Py violation [MeV] : min=-1.83519e-10 mean=-7.47008e-13 max=1.91093e-10 + decay Pz violation [MeV] : min=-4.34994e-11 mean=1.13076e-14 max=7.02585e-11 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0178006 (mean=0.00314309) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0153686 (mean=0.00314702) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 9.75433e-11 , 9.75433e-11 + maxGamma_deltaMax{1,2,3} = 0 , 9.4488e-11 , 9.4488e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 4.26326e-11 (mean=2.69235e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 4.26326e-11 (mean=2.76828e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -137.906 (mean=-0.104571) (#above threshold = 32) - maxOverestimated_mc_truth_rPos_delta [mum] = 49.8053 (mean=0.0402225) (#above threshold = 36) - minUnderestimated_rDeltaPos [mum] = -137.905 (mean=-0.104563) (#above threshold = 32) - maxOverestimated_rDeltaPos [mum] = 49.813 (mean=0.0402308) (#above threshold = 36) + minUnderestimated_mc_truth_rPos_delta [mum] = -19.8417 (mean=-0.0952261) (#above threshold = 35) + maxOverestimated_mc_truth_rPos_delta [mum] = 24.1507 (mean=0.0372219) (#above threshold = 36) + minUnderestimated_rDeltaPos [mum] = -19.8413 (mean=-0.095218) (#above threshold = 35) + maxOverestimated_rDeltaPos [mum] = 24.1545 (mean=0.03723) (#above threshold = 36) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0080029 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0155648 ============================================= @@ -1459,20 +1459,20 @@ Index : 1 used in the geometry : Yes ### Run 15 starts. ### Run 15 starts. - Event#=0 t[ns]=0.066172 r[mm]=19.8363 deltaR[mum]=1.40479e-06 deltaEkin[MeV]=3.80698 deltaAngle(deg)=0.00319976 - Event#=1000 t[ns]=0.0185424 r[mm]=5.55844 deltaR[mum]=4.0151e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000754327 - Event#=2000 t[ns]=0.027589 r[mm]=8.27033 deltaR[mum]=1.32255e-07 deltaEkin[MeV]=0 deltaAngle(deg)=0.00112235 - Event#=3000 t[ns]=0.0765474 r[mm]=22.9466 deltaR[mum]=6.66158e-06 deltaEkin[MeV]=5.15345 deltaAngle(deg)=0.00316095 - Event#=4000 t[ns]=0.00111041 r[mm]=0.332868 deltaR[mum]=8.49321e-12 deltaEkin[MeV]=0 deltaAngle(deg)=4.51729e-05 - Event#=5000 t[ns]=0.101874 r[mm]=30.5386 deltaR[mum]=8.56103e-06 deltaEkin[MeV]=7.19722 deltaAngle(deg)=0.00341635 - Event#=6000 t[ns]=0.141693 r[mm]=42.4752 deltaR[mum]=4.2084e-05 deltaEkin[MeV]=7.74815 deltaAngle(deg)=0.00470431 - Event#=7000 t[ns]=0.0192259 r[mm]=5.76333 deltaR[mum]=4.47562e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000782132 - Event#=8000 t[ns]=0.0206449 r[mm]=6.18871 deltaR[mum]=5.5417e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000839859 - Event#=9000 t[ns]=0.0082361 r[mm]=2.46893 deltaR[mum]=3.51852e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000335054 + Event#=0 t[ns]=0.0158348 r[mm]=4.74679 deltaR[mum]=2.50058e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000644178 + Event#=1000 t[ns]=0.006233 r[mm]=1.86846 deltaR[mum]=1.52545e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000253565 + Event#=2000 t[ns]=0.0115998 r[mm]=3.47727 deltaR[mum]=9.83036e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000471894 + Event#=3000 t[ns]=0.0356531 r[mm]=10.6877 deltaR[mum]=3.22222e-07 deltaEkin[MeV]=0.570459 deltaAngle(deg)=0.00140358 + Event#=4000 t[ns]=0.00722017 r[mm]=2.16439 deltaR[mum]=2.37099e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000293726 + Event#=5000 t[ns]=0.0511635 r[mm]=15.3373 deltaR[mum]=7.6575e-07 deltaEkin[MeV]=2.03923 deltaAngle(deg)=0.00266489 + Event#=6000 t[ns]=0.0177347 r[mm]=5.31631 deltaR[mum]=3.51283e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000721467 + Event#=7000 t[ns]=0.0174002 r[mm]=5.21604 deltaR[mum]=3.31788e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000707859 + Event#=8000 t[ns]=0.00151217 r[mm]=0.453303 deltaR[mum]=2.17049e-11 deltaEkin[MeV]=0 deltaAngle(deg)=6.15129e-05 + Event#=9000 t[ns]=0.0345269 r[mm]=10.3501 deltaR[mum]=2.92685e-07 deltaEkin[MeV]=0.567098 deltaAngle(deg)=0.00143697 Run terminated. Run Summary Number of events processed : 10000 - User=0.140000s Real=0.396576s Sys=0.000000s + User=0.080000s Real=0.080580s Sys=0.000000s ============ Run::printInfo() =============== RunID = 15 @@ -1489,45 +1489,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9973 + # Decays = 9967 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.03268e-06 mean=0.0406557 max=0.382508 - decay R [mm] : min=0.000309566 mean=12.1873 max=114.664 - decay X [mm] : min=0.000309566 mean=12.1873 max=114.664 - decay Y [mm] : min=-0.000763545 mean=0.00042063 max=0.0143991 - decay Z [mm] : min=-0.00276778 mean=-5.33438e-07 max=0.00436676 - Delta decay R [mm] : min=-3.46945e-18 mean=7.00481e-09 max=1.06724e-06 - deflection angle [deg] : min=0 mean=0.00167391 max=0.027501 - Delta Ekin [MeV] : min=0 mean=2.19795 max=296.4 - decay Ekin [GeV] : min=499.704 mean=499.998 max=500 - decay Px [GeV] : min=505.94 mean=506.234 max=506.236 - decay Py [GeV] : min=-0.0412574 mean=0.014598 max=0.202346 - decay Pz [GeV] : min=-0.13456 mean=-4.49292e-05 max=0.066561 - decay Etot violation [MeV] : min=-1.67289e-06 mean=1.4468e-07 max=1.48697e-06 - decay Px violation [MeV] : min=-1.67295e-06 mean=1.44702e-07 max=1.48709e-06 - decay Py violation [MeV] : min=-1.86546e-10 mean=1.00833e-12 max=1.58153e-10 - decay Pz violation [MeV] : min=-8.04619e-11 mean=1.29323e-15 max=9.44738e-11 + decay T [ns] : min=7.44283e-06 mean=0.0413974 max=0.34651 + decay R [mm] : min=0.00223113 mean=12.4097 max=103.873 + decay X [mm] : min=0.00223113 mean=12.4097 max=103.873 + decay Y [mm] : min=-0.000972468 mean=0.00044031 max=0.0135297 + decay Z [mm] : min=-0.00151664 mean=2.21685e-06 max=0.0068003 + Delta decay R [mm] : min=-3.46945e-18 mean=8.03901e-09 max=4.72489e-06 + deflection angle [deg] : min=0 mean=0.00170901 max=0.0392474 + Delta Ekin [MeV] : min=0 mean=2.40421 max=653.417 + decay Ekin [GeV] : min=499.347 mean=499.998 max=500 + decay Px [GeV] : min=505.583 mean=506.234 max=506.236 + decay Py [GeV] : min=-0.0756082 mean=0.0148814 max=0.18866 + decay Pz [GeV] : min=-0.3323 mean=4.44234e-05 max=0.100079 + decay Etot violation [MeV] : min=-1.48802e-06 mean=1.42848e-07 max=1.4457e-06 + decay Px violation [MeV] : min=-1.48808e-06 mean=1.4287e-07 max=1.44576e-06 + decay Py violation [MeV] : min=-3.51491e-10 mean=8.83667e-13 max=1.91164e-10 + decay Pz violation [MeV] : min=-1.91392e-10 mean=-2.71246e-14 max=6.02398e-11 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0178006 (mean=0.00312535) - maxBeta_deltaMax{1,2} = 4.44089e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 9.41043e-11 , 9.41043e-11 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0153686 (mean=0.00313145) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 + maxGamma_deltaMax{1,2,3} = 0 , 9.93481e-11 , 9.93481e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 4.26326e-11 (mean=2.69057e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 4.26326e-11 (mean=2.75498e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -9.72188 (mean=-0.0912403) (#above threshold = 39) - maxOverestimated_mc_truth_rPos_delta [mum] = 6.7495 (mean=0.0321811) (#above threshold = 32) - minUnderestimated_rDeltaPos [mum] = -9.72082 (mean=-0.0912333) (#above threshold = 39) - maxOverestimated_rDeltaPos [mum] = 6.75057 (mean=0.0321881) (#above threshold = 32) + minUnderestimated_mc_truth_rPos_delta [mum] = -23.2376 (mean=-0.0982016) (#above threshold = 36) + maxOverestimated_mc_truth_rPos_delta [mum] = 30.6257 (mean=0.0375947) (#above threshold = 44) + minUnderestimated_rDeltaPos [mum] = -23.2371 (mean=-0.0981936) (#above threshold = 36) + maxOverestimated_rDeltaPos [mum] = 30.6304 (mean=0.0376028) (#above threshold = 44) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00799421 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00846538 ============================================= @@ -1551,20 +1551,20 @@ Index : 1 used in the geometry : Yes ### Run 16 starts. ### Run 16 starts. - Event#=0 t[ns]=0.0152833 r[mm]=4.58178 deltaR[mum]=2.28422e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000626682 - Event#=1000 t[ns]=0.0519696 r[mm]=15.5799 deltaR[mum]=9.63089e-07 deltaEkin[MeV]=3.30556 deltaAngle(deg)=0.00167581 - Event#=2000 t[ns]=0.134057 r[mm]=40.1889 deltaR[mum]=2.30844e-05 deltaEkin[MeV]=8.75927 deltaAngle(deg)=0.00587394 - Event#=3000 t[ns]=0.0324778 r[mm]=9.73649 deltaR[mum]=2.42014e-07 deltaEkin[MeV]=0.217874 deltaAngle(deg)=0.00124793 - Event#=4000 t[ns]=0.00890523 r[mm]=2.66969 deltaR[mum]=4.51905e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000365152 - Event#=5000 t[ns]=0.0568587 r[mm]=17.0456 deltaR[mum]=9.899e-07 deltaEkin[MeV]=3.25722 deltaAngle(deg)=0.00242013 - Event#=6000 t[ns]=0.0120209 r[mm]=3.60374 deltaR[mum]=1.11156e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000492908 - Event#=7000 t[ns]=0.015028 r[mm]=4.50523 deltaR[mum]=2.17169e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.00061621 - Event#=8000 t[ns]=0.032001 r[mm]=9.59355 deltaR[mum]=2.28908e-07 deltaEkin[MeV]=0.16399 deltaAngle(deg)=0.00138005 - Event#=9000 t[ns]=0.0556701 r[mm]=16.6893 deltaR[mum]=9.64349e-07 deltaEkin[MeV]=4.57634 deltaAngle(deg)=0.00216245 + Event#=0 t[ns]=0.0339745 r[mm]=10.1852 deltaR[mum]=2.82569e-07 deltaEkin[MeV]=0.415993 deltaAngle(deg)=0.00140292 + Event#=1000 t[ns]=0.00301949 r[mm]=0.905211 deltaR[mum]=1.76081e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000123811 + Event#=2000 t[ns]=0.0646849 r[mm]=19.3918 deltaR[mum]=2.13281e-06 deltaEkin[MeV]=5.81235 deltaAngle(deg)=0.00278159 + Event#=3000 t[ns]=0.0221737 r[mm]=6.64743 deltaR[mum]=6.97602e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000909214 + Event#=4000 t[ns]=0.0490612 r[mm]=14.708 deltaR[mum]=8.83892e-07 deltaEkin[MeV]=3.36595 deltaAngle(deg)=0.00143217 + Event#=5000 t[ns]=0.0603362 r[mm]=18.0881 deltaR[mum]=1.46865e-06 deltaEkin[MeV]=4.37041 deltaAngle(deg)=0.00239747 + Event#=6000 t[ns]=0.013284 r[mm]=3.98241 deltaR[mum]=1.50004e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000544701 + Event#=7000 t[ns]=0.0111805 r[mm]=3.35178 deltaR[mum]=8.94307e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000458446 + Event#=8000 t[ns]=0.0144206 r[mm]=4.32315 deltaR[mum]=1.91891e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000591307 + Event#=9000 t[ns]=0.0109817 r[mm]=3.29221 deltaR[mum]=8.47411e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000450297 Run terminated. Run Summary Number of events processed : 10000 - User=0.210000s Real=0.444517s Sys=0.000000s + User=0.140000s Real=0.144481s Sys=0.000000s ============ Run::printInfo() =============== RunID = 16 @@ -1581,45 +1581,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9915 + # Decays = 9898 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=5.1266e-06 mean=0.0437056 max=0.438937 - decay R [mm] : min=0.0015369 mean=13.1025 max=131.589 - decay X [mm] : min=0.0015369 mean=13.1025 max=131.589 - decay Y [mm] : min=-0.0199094 mean=-0.000486008 max=0.00153418 - decay Z [mm] : min=-0.01293 mean=-1.33199e-06 max=0.00680252 - Delta decay R [mm] : min=-1.73472e-18 mean=3.9332e-09 max=7.15766e-07 - deflection angle [deg] : min=0 mean=0.00183543 max=0.045039 - Delta Ekin [MeV] : min=0 mean=2.53935 max=455.553 - decay Ekin [GeV] : min=499.544 mean=499.997 max=500 - decay Px [GeV] : min=501.826 mean=502.279 max=502.281 - decay Py [GeV] : min=-0.375084 mean=-0.0156561 max=0.096191 - decay Pz [GeV] : min=-0.165566 mean=-6.79004e-05 max=0.172154 - decay Etot violation [MeV] : min=-1.30166e-05 mean=-8.50876e-07 max=8.9028e-06 - decay Px violation [MeV] : min=-1.30166e-05 mean=-8.50864e-07 max=8.90269e-06 - decay Py violation [MeV] : min=-9.26548e-10 mean=4.44096e-11 max=5.59606e-09 - decay Pz violation [MeV] : min=-2.56566e-09 mean=-2.20614e-13 max=1.84176e-09 + decay T [ns] : min=5.73668e-07 mean=0.0429719 max=0.379838 + decay R [mm] : min=0.000171979 mean=12.8825 max=113.871 + decay X [mm] : min=0.000171979 mean=12.8825 max=113.871 + decay Y [mm] : min=-0.0156223 mean=-0.000481841 max=0.00208923 + decay Z [mm] : min=-0.00818195 mean=-6.66737e-07 max=0.0063007 + Delta decay R [mm] : min=-3.46945e-18 mean=3.80957e-09 max=1.50591e-06 + deflection angle [deg] : min=0 mean=0.00181375 max=0.0252439 + Delta Ekin [MeV] : min=0 mean=2.5151 max=991.445 + decay Ekin [GeV] : min=499.009 mean=499.997 max=500 + decay Px [GeV] : min=501.29 mean=502.279 max=502.281 + decay Py [GeV] : min=-0.146687 mean=-0.0155065 max=0.127915 + decay Pz [GeV] : min=-0.202255 mean=-3.8826e-05 max=0.127356 + decay Etot violation [MeV] : min=-1.22869e-05 mean=-8.30586e-07 max=1.10487e-05 + decay Px violation [MeV] : min=-1.22871e-05 mean=-8.30573e-07 max=1.10487e-05 + decay Py violation [MeV] : min=-1.44202e-09 mean=4.11818e-11 max=1.65467e-09 + decay Pz violation [MeV] : min=-8.93124e-10 mean=5.96624e-13 max=8.03865e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0409168 (mean=0.00980634) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0475902 (mean=0.00973559) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.76513e-09 , 1.76513e-09 + maxGamma_deltaMax{1,2,3} = 0 , 1.67913e-09 , 1.67913e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -20.3277 (mean=-0.104479) (#above threshold = 52) - maxOverestimated_mc_truth_rPos_delta [mum] = 12.9491 (mean=0.0433109) (#above threshold = 53) - minUnderestimated_rDeltaPos [mum] = -20.3276 (mean=-0.104475) (#above threshold = 52) - maxOverestimated_rDeltaPos [mum] = 12.9494 (mean=0.0433148) (#above threshold = 53) + minUnderestimated_mc_truth_rPos_delta [mum] = -28.0375 (mean=-0.102333) (#above threshold = 32) + maxOverestimated_mc_truth_rPos_delta [mum] = 70.9127 (mean=0.0469147) (#above threshold = 49) + minUnderestimated_rDeltaPos [mum] = -28.036 (mean=-0.102329) (#above threshold = 32) + maxOverestimated_rDeltaPos [mum] = 70.9142 (mean=0.0469186) (#above threshold = 49) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0154045 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0154734 ============================================= @@ -1643,20 +1643,20 @@ Index : 1 used in the geometry : Yes ### Run 17 starts. ### Run 17 starts. - Event#=0 t[ns]=0.0118182 r[mm]=3.54297 deltaR[mum]=1.05627e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000484598 - Event#=1000 t[ns]=0.0204897 r[mm]=6.14259 deltaR[mum]=5.50431e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000840164 - Event#=2000 t[ns]=0.000716864 r[mm]=0.214908 deltaR[mum]=2.33147e-12 deltaEkin[MeV]=0 deltaAngle(deg)=2.93872e-05 - Event#=3000 t[ns]=0.052298 r[mm]=15.6784 deltaR[mum]=8.17398e-07 deltaEkin[MeV]=2.54606 deltaAngle(deg)=0.00189768 - Event#=4000 t[ns]=0.0218683 r[mm]=6.55589 deltaR[mum]=6.69189e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000896694 - Event#=5000 t[ns]=0.064053 r[mm]=19.2024 deltaR[mum]=1.31633e-06 deltaEkin[MeV]=3.74475 deltaAngle(deg)=0.00244327 - Event#=6000 t[ns]=0.0215586 r[mm]=6.46304 deltaR[mum]=6.41167e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000883995 - Event#=7000 t[ns]=0.0467908 r[mm]=14.0274 deltaR[mum]=6.36913e-07 deltaEkin[MeV]=1.84021 deltaAngle(deg)=0.00187788 - Event#=8000 t[ns]=0.000839305 r[mm]=0.251615 deltaR[mum]=3.77476e-12 deltaEkin[MeV]=0 deltaAngle(deg)=3.44132e-05 - Event#=9000 t[ns]=0.0109405 r[mm]=3.27985 deltaR[mum]=8.37952e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000448607 + Event#=0 t[ns]=0.00615234 r[mm]=1.84441 deltaR[mum]=1.49014e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000252272 + Event#=1000 t[ns]=0.0963947 r[mm]=28.8981 deltaR[mum]=4.01372e-06 deltaEkin[MeV]=6.93071 deltaAngle(deg)=0.00319153 + Event#=2000 t[ns]=0.0328898 r[mm]=9.86003 deltaR[mum]=2.53262e-07 deltaEkin[MeV]=0.273115 deltaAngle(deg)=0.0012167 + Event#=3000 t[ns]=0.0560032 r[mm]=16.7892 deltaR[mum]=9.55705e-07 deltaEkin[MeV]=2.54913 deltaAngle(deg)=0.00220821 + Event#=4000 t[ns]=0.0161104 r[mm]=4.82973 deltaR[mum]=2.67564e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000660595 + Event#=5000 t[ns]=0.225893 r[mm]=67.7204 deltaR[mum]=6.12317e-05 deltaEkin[MeV]=7.3811 deltaAngle(deg)=0.00933664 + Event#=6000 t[ns]=0.0639865 r[mm]=19.1825 deltaR[mum]=2.16634e-06 deltaEkin[MeV]=5.771 deltaAngle(deg)=0.00271887 + Event#=7000 t[ns]=0.143554 r[mm]=43.0359 deltaR[mum]=2.0221e-05 deltaEkin[MeV]=7.10441 deltaAngle(deg)=0.00615789 + Event#=8000 t[ns]=0.00477449 r[mm]=1.43134 deltaR[mum]=6.96554e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000195774 + Event#=9000 t[ns]=0.00975568 r[mm]=2.92465 deltaR[mum]=5.94147e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000400024 Run terminated. Run Summary Number of events processed : 10000 - User=0.240000s Real=0.700522s Sys=0.000000s + User=0.130000s Real=0.131410s Sys=0.000000s ============ Run::printInfo() =============== RunID = 17 @@ -1673,45 +1673,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9878 + # Decays = 9903 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.27256e-06 mean=0.0434955 max=0.401919 - decay R [mm] : min=0.00188045 mean=13.0395 max=120.491 - decay X [mm] : min=0.00188045 mean=13.0395 max=120.491 - decay Y [mm] : min=-0.00127623 mean=0.000483866 max=0.0175824 - decay Z [mm] : min=-0.0172689 mean=-1.85629e-06 max=0.00326124 - Delta decay R [mm] : min=-3.46945e-18 mean=4.18801e-09 max=4.80834e-06 - deflection angle [deg] : min=0 mean=0.00182539 max=0.0166441 - Delta Ekin [MeV] : min=0 mean=4.5549 max=9962.99 - decay Ekin [GeV] : min=490.037 mean=499.995 max=500 - decay Px [GeV] : min=492.318 mean=502.277 max=502.281 - decay Py [GeV] : min=-0.068096 mean=0.015636 max=0.145922 - decay Pz [GeV] : min=-0.124352 mean=-1.09831e-05 max=0.106577 - decay Etot violation [MeV] : min=-1.36195e-05 mean=-8.46391e-07 max=1.03757e-05 - decay Px violation [MeV] : min=-1.36195e-05 mean=-8.46379e-07 max=1.03756e-05 - decay Py violation [MeV] : min=-1.84714e-09 mean=-4.31738e-11 max=8.73044e-10 - decay Pz violation [MeV] : min=-1.25137e-09 mean=-3.22107e-13 max=1.06957e-09 + decay T [ns] : min=5.01966e-06 mean=0.0435834 max=0.366054 + decay R [mm] : min=0.00150484 mean=13.0658 max=109.739 + decay X [mm] : min=0.00150484 mean=13.0658 max=109.739 + decay Y [mm] : min=-0.00662635 mean=0.000491682 max=0.0140113 + decay Z [mm] : min=-0.00698188 mean=-3.6114e-07 max=0.00520252 + Delta decay R [mm] : min=0 mean=3.81896e-09 max=7.12336e-07 + deflection angle [deg] : min=0 mean=0.00182808 max=0.0246297 + Delta Ekin [MeV] : min=0 mean=2.78759 max=1241.07 + decay Ekin [GeV] : min=498.759 mean=499.997 max=500 + decay Px [GeV] : min=501.04 mean=502.278 max=502.281 + decay Py [GeV] : min=-0.102454 mean=0.0156319 max=0.190978 + decay Pz [GeV] : min=-0.153914 mean=-5.50692e-05 max=0.10464 + decay Etot violation [MeV] : min=-1.17938e-05 mean=-8.60268e-07 max=8.97323e-06 + decay Px violation [MeV] : min=-1.17938e-05 mean=-8.60256e-07 max=8.97323e-06 + decay Py violation [MeV] : min=-1.84247e-09 mean=-4.39909e-11 max=1.06705e-09 + decay Pz violation [MeV] : min=-9.68697e-10 mean=6.45843e-14 max=7.42119e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0542641 (mean=0.00972872) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.77894e-09 , 1.77894e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0475902 (mean=0.00968183) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.83158e-09 , 1.83158e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -351.491 (mean=-0.175983) (#above threshold = 34) - maxOverestimated_mc_truth_rPos_delta [mum] = 225.04 (mean=0.0688996) (#above threshold = 46) - minUnderestimated_rDeltaPos [mum] = -351.486 (mean=-0.175979) (#above threshold = 34) - maxOverestimated_rDeltaPos [mum] = 225.045 (mean=0.0689038) (#above threshold = 46) + minUnderestimated_mc_truth_rPos_delta [mum] = -41.6707 (mean=-0.113737) (#above threshold = 48) + maxOverestimated_mc_truth_rPos_delta [mum] = 21.7973 (mean=0.0446577) (#above threshold = 52) + minUnderestimated_rDeltaPos [mum] = -41.6707 (mean=-0.113733) (#above threshold = 48) + maxOverestimated_rDeltaPos [mum] = 21.7977 (mean=0.0446615) (#above threshold = 52) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0154768 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00790405 ============================================= @@ -1735,20 +1735,20 @@ Index : 1 used in the geometry : Yes ### Run 18 starts. ### Run 18 starts. - Event#=0 t[ns]=0.0350973 r[mm]=10.5218 deltaR[mum]=4.03743e-07 deltaEkin[MeV]=2.63454 deltaAngle(deg)=0.00141689 - Event#=1000 t[ns]=0.0967075 r[mm]=28.9918 deltaR[mum]=9.93198e-06 deltaEkin[MeV]=12.2005 deltaAngle(deg)=0.00474595 - Event#=2000 t[ns]=0.148516 r[mm]=44.5236 deltaR[mum]=2.72349e-05 deltaEkin[MeV]=8.70525 deltaAngle(deg)=0.00601518 - Event#=3000 t[ns]=0.0556865 r[mm]=16.6942 deltaR[mum]=9.42595e-07 deltaEkin[MeV]=2.70643 deltaAngle(deg)=0.00185342 - Event#=4000 t[ns]=0.0382303 r[mm]=11.461 deltaR[mum]=3.95554e-07 deltaEkin[MeV]=0.872398 deltaAngle(deg)=0.00139349 - Event#=5000 t[ns]=0.0117036 r[mm]=3.50861 deltaR[mum]=1.02518e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000479725 - Event#=6000 t[ns]=0.00621723 r[mm]=1.86386 deltaR[mum]=1.53766e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000254843 - Event#=7000 t[ns]=0.161569 r[mm]=48.4366 deltaR[mum]=2.60176e-05 deltaEkin[MeV]=6.36411 deltaAngle(deg)=0.00688809 - Event#=8000 t[ns]=0.111874 r[mm]=33.5385 deltaR[mum]=7.33326e-06 deltaEkin[MeV]=7.46011 deltaAngle(deg)=0.0031498 - Event#=9000 t[ns]=0.217086 r[mm]=65.0799 deltaR[mum]=6.03464e-05 deltaEkin[MeV]=7.1534 deltaAngle(deg)=0.0093507 + Event#=0 t[ns]=0.0201165 r[mm]=6.03071 deltaR[mum]=5.20552e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000824566 + Event#=1000 t[ns]=0.134238 r[mm]=40.2432 deltaR[mum]=1.87456e-05 deltaEkin[MeV]=7.05853 deltaAngle(deg)=0.00609262 + Event#=2000 t[ns]=0.0189957 r[mm]=5.6947 deltaR[mum]=4.38281e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000778623 + Event#=3000 t[ns]=0.0846509 r[mm]=25.3774 deltaR[mum]=3.62817e-06 deltaEkin[MeV]=7.03896 deltaAngle(deg)=0.00247205 + Event#=4000 t[ns]=0.0725609 r[mm]=21.7529 deltaR[mum]=3.13054e-06 deltaEkin[MeV]=6.0569 deltaAngle(deg)=0.0029714 + Event#=5000 t[ns]=0.0690027 r[mm]=20.6862 deltaR[mum]=1.58599e-06 deltaEkin[MeV]=4.70356 deltaAngle(deg)=0.00295421 + Event#=6000 t[ns]=0.0138069 r[mm]=4.13916 deltaR[mum]=1.68301e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000565938 + Event#=7000 t[ns]=0.0702188 r[mm]=21.0508 deltaR[mum]=2.7988e-06 deltaEkin[MeV]=6.24028 deltaAngle(deg)=0.00339265 + Event#=8000 t[ns]=0.00884468 r[mm]=2.65154 deltaR[mum]=4.4249e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.00036254 + Event#=9000 t[ns]=0.0460428 r[mm]=13.8031 deltaR[mum]=7.00613e-07 deltaEkin[MeV]=2.09544 deltaAngle(deg)=0.00246185 Run terminated. Run Summary Number of events processed : 10000 - User=0.350000s Real=1.053745s Sys=0.000000s + User=0.200000s Real=0.241351s Sys=0.000000s ============ Run::printInfo() =============== RunID = 18 @@ -1765,45 +1765,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9809 + # Decays = 9833 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=9.49616e-06 mean=0.0906214 max=0.763396 - decay R [mm] : min=0.00284684 mean=27.1673 max=228.858 - decay X [mm] : min=0.00284684 mean=27.1673 max=228.857 - decay Y [mm] : min=-0.0628618 mean=-0.00203481 max=0.00549633 - decay Z [mm] : min=-0.0154866 mean=-5.47062e-07 max=0.0108897 - Delta decay R [mm] : min=0 mean=3.29959e-08 max=4.90933e-06 - deflection angle [deg] : min=0 mean=0.00379523 max=0.0499016 - Delta Ekin [MeV] : min=0 mean=5.17798 max=1772.69 - decay Ekin [GeV] : min=498.227 mean=499.995 max=500 - decay Px [GeV] : min=500.689 mean=502.456 max=502.462 - decay Py [GeV] : min=-0.424809 mean=-0.0326128 max=0.143706 - decay Pz [GeV] : min=-0.228809 mean=-1.60105e-05 max=0.166344 - decay Etot violation [MeV] : min=-1.40808e-05 mean=-3.57652e-06 max=4.61092e-06 - decay Px violation [MeV] : min=-1.40809e-05 mean=-3.57654e-06 max=4.61092e-06 - decay Py violation [MeV] : min=-1.21589e-09 mean=2.91369e-10 max=5.19506e-09 - decay Pz violation [MeV] : min=-2.0632e-09 mean=7.45837e-13 max=3.19918e-09 + decay T [ns] : min=3.40404e-06 mean=0.0909337 max=0.746348 + decay R [mm] : min=0.00102049 mean=27.2609 max=223.747 + decay X [mm] : min=0.00102049 mean=27.2609 max=223.747 + decay Y [mm] : min=-0.0607537 mean=-0.00204144 max=0.0084923 + decay Z [mm] : min=-0.010464 mean=-5.00813e-06 max=0.00900054 + Delta decay R [mm] : min=-1.73472e-18 mean=3.23979e-08 max=2.62374e-06 + deflection angle [deg] : min=8.53688e-07 mean=0.00378087 max=0.0385864 + Delta Ekin [MeV] : min=0 mean=4.98634 max=515.268 + decay Ekin [GeV] : min=499.485 mean=499.995 max=500 + decay Px [GeV] : min=501.946 mean=502.457 max=502.462 + decay Py [GeV] : min=-0.338332 mean=-0.032674 max=0.0887431 + decay Pz [GeV] : min=-0.178885 mean=-9.95126e-06 max=0.124649 + decay Etot violation [MeV] : min=-1.39702e-05 mean=-3.56928e-06 max=5.40121e-06 + decay Px violation [MeV] : min=-1.39702e-05 mean=-3.5693e-06 max=5.40121e-06 + decay Py violation [MeV] : min=-9.42933e-10 mean=2.8461e-10 max=4.46789e-09 + decay Pz violation [MeV] : min=-1.78534e-09 mean=1.57981e-13 max=2.50017e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.044095 (mean=0.0127145) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.0379114 (mean=0.0128401) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.44533e-09 , 1.44533e-09 + maxGamma_deltaMax{1,2,3} = 0 , 1.53085e-09 , 1.53085e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=5.9809e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=6.01395e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -51.324 (mean=-0.230458) (#above threshold = 91) - maxOverestimated_mc_truth_rPos_delta [mum] = 30.1794 (mean=0.217408) (#above threshold = 534) - minUnderestimated_rDeltaPos [mum] = -51.3233 (mean=-0.230425) (#above threshold = 91) - maxOverestimated_rDeltaPos [mum] = 30.1801 (mean=0.217441) (#above threshold = 534) + minUnderestimated_mc_truth_rPos_delta [mum] = -18.004 (mean=-0.22546) (#above threshold = 100) + maxOverestimated_mc_truth_rPos_delta [mum] = 59.8203 (mean=0.219964) (#above threshold = 521) + minUnderestimated_rDeltaPos [mum] = -18.0025 (mean=-0.225428) (#above threshold = 100) + maxOverestimated_rDeltaPos [mum] = 59.8218 (mean=0.219996) (#above threshold = 521) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.033452 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0330796 ============================================= @@ -1827,20 +1827,20 @@ Index : 1 used in the geometry : Yes ### Run 19 starts. ### Run 19 starts. - Event#=0 t[ns]=0.00194675 r[mm]=0.583613 deltaR[mum]=4.70735e-11 deltaEkin[MeV]=0 deltaAngle(deg)=7.98004e-05 - Event#=1000 t[ns]=0.0408215 r[mm]=12.2378 deltaR[mum]=4.65269e-07 deltaEkin[MeV]=0.980455 deltaAngle(deg)=0.00140512 - Event#=2000 t[ns]=0.0402111 r[mm]=12.0548 deltaR[mum]=4.4869e-07 deltaEkin[MeV]=1.21742 deltaAngle(deg)=0.00150718 - Event#=3000 t[ns]=0.031755 r[mm]=9.51979 deltaR[mum]=2.21947e-07 deltaEkin[MeV]=0.150443 deltaAngle(deg)=0.00129591 - Event#=4000 t[ns]=0.0250017 r[mm]=7.49524 deltaR[mum]=9.99316e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.00102481 - Event#=5000 t[ns]=0.390593 r[mm]=117.096 deltaR[mum]=0.000457585 deltaEkin[MeV]=6.33835 deltaAngle(deg)=0.0178371 - Event#=6000 t[ns]=0.112736 r[mm]=33.7971 deltaR[mum]=1.35403e-05 deltaEkin[MeV]=7.59494 deltaAngle(deg)=0.00531907 - Event#=7000 t[ns]=0.0504076 r[mm]=15.1116 deltaR[mum]=7.51854e-07 deltaEkin[MeV]=2.39382 deltaAngle(deg)=0.00232798 - Event#=8000 t[ns]=0.0523523 r[mm]=15.6946 deltaR[mum]=8.18732e-07 deltaEkin[MeV]=2.22857 deltaAngle(deg)=0.00220963 - Event#=9000 t[ns]=0.0674353 r[mm]=20.2164 deltaR[mum]=1.49582e-06 deltaEkin[MeV]=4.41716 deltaAngle(deg)=0.00374734 + Event#=0 t[ns]=0.0393743 r[mm]=11.804 deltaR[mum]=4.26132e-07 deltaEkin[MeV]=0.938395 deltaAngle(deg)=0.00179142 + Event#=1000 t[ns]=0.0199546 r[mm]=5.98216 deltaR[mum]=5.08065e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000817928 + Event#=2000 t[ns]=0.0194447 r[mm]=5.82931 deltaR[mum]=4.70122e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000797028 + Event#=3000 t[ns]=0.00253698 r[mm]=0.760557 deltaR[mum]=1.04583e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000103992 + Event#=4000 t[ns]=0.0153726 r[mm]=4.60852 deltaR[mum]=2.32303e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000630113 + Event#=5000 t[ns]=0.21013 r[mm]=62.9946 deltaR[mum]=5.56073e-05 deltaEkin[MeV]=7.96061 deltaAngle(deg)=0.00806285 + Event#=6000 t[ns]=0.103255 r[mm]=30.9547 deltaR[mum]=7.19e-06 deltaEkin[MeV]=6.54249 deltaAngle(deg)=0.00524091 + Event#=7000 t[ns]=0.0819749 r[mm]=24.5751 deltaR[mum]=2.51561e-06 deltaEkin[MeV]=5.07836 deltaAngle(deg)=0.00272168 + Event#=8000 t[ns]=0.256183 r[mm]=76.8007 deltaR[mum]=9.10622e-05 deltaEkin[MeV]=8.0871 deltaAngle(deg)=0.0101062 + Event#=9000 t[ns]=0.121263 r[mm]=36.3533 deltaR[mum]=1.24895e-05 deltaEkin[MeV]=6.88004 deltaAngle(deg)=0.00527221 Run terminated. Run Summary Number of events processed : 10000 - User=0.380000s Real=0.501918s Sys=0.000000s + User=0.190000s Real=0.409351s Sys=0.000000s ============ Run::printInfo() =============== RunID = 19 @@ -1857,45 +1857,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9810 + # Decays = 9827 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.70741e-05 mean=0.0905663 max=0.711962 - decay R [mm] : min=0.00511863 mean=27.1508 max=213.438 - decay X [mm] : min=0.00511863 mean=27.1508 max=213.438 - decay Y [mm] : min=-0.00625037 mean=0.00199058 max=0.0548737 - decay Z [mm] : min=-0.0200753 mean=4.28559e-06 max=0.0283979 - Delta decay R [mm] : min=0 mean=3.09607e-08 max=2.38918e-06 - deflection angle [deg] : min=0 mean=0.00377597 max=0.0392468 - Delta Ekin [MeV] : min=0 mean=4.98549 max=1087.52 - decay Ekin [GeV] : min=498.912 mean=499.995 max=500 - decay Px [GeV] : min=501.374 mean=502.457 max=502.462 - decay Py [GeV] : min=-0.129583 mean=0.0324937 max=0.268711 - decay Pz [GeV] : min=-0.261981 mean=0.000109409 max=0.161194 - decay Etot violation [MeV] : min=-1.33202e-05 mean=-3.58645e-06 max=5.40121e-06 - decay Px violation [MeV] : min=-1.33202e-05 mean=-3.58646e-06 max=5.40126e-06 - decay Py violation [MeV] : min=-3.70656e-09 mean=-2.87297e-10 max=1.57354e-09 - decay Pz violation [MeV] : min=-1.79787e-09 mean=-6.24076e-13 max=3.18113e-09 + decay T [ns] : min=2.54204e-05 mean=0.0927447 max=0.781193 + decay R [mm] : min=0.00762077 mean=27.8038 max=234.193 + decay X [mm] : min=0.00762077 mean=27.8038 max=234.193 + decay Y [mm] : min=-0.00781959 mean=0.00210859 max=0.0653462 + decay Z [mm] : min=-0.0186397 mean=1.32006e-06 max=0.0177529 + Delta decay R [mm] : min=0 mean=3.56791e-08 max=5.27363e-06 + deflection angle [deg] : min=8.53688e-07 mean=0.00386421 max=0.0319863 + Delta Ekin [MeV] : min=0 mean=5.85158 max=2941.62 + decay Ekin [GeV] : min=497.058 mean=499.994 max=500 + decay Px [GeV] : min=499.52 mean=502.456 max=502.462 + decay Py [GeV] : min=-0.144065 mean=0.033311 max=0.280244 + decay Pz [GeV] : min=-0.200115 mean=-2.57375e-05 max=0.106508 + decay Etot violation [MeV] : min=-1.48674e-05 mean=-3.6017e-06 max=4.24491e-06 + decay Px violation [MeV] : min=-1.48675e-05 mean=-3.60172e-06 max=4.24479e-06 + decay Py violation [MeV] : min=-3.80228e-09 mean=-2.97368e-10 max=1.13215e-09 + decay Pz violation [MeV] : min=-1.53351e-09 mean=-4.26298e-13 max=1.58443e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.044095 (mean=0.0127147) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.51732e-09 , 1.51732e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.09184e-05 , 0.044095 (mean=0.0126474) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.44044e-09 , 1.44044e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=6.12408e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 8.52651e-11 (mean=6.22078e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -19.5875 (mean=-0.222412) (#above threshold = 103) - maxOverestimated_mc_truth_rPos_delta [mum] = 33.8495 (mean=0.219) (#above threshold = 501) - minUnderestimated_rDeltaPos [mum] = -19.5874 (mean=-0.222381) (#above threshold = 103) - maxOverestimated_rDeltaPos [mum] = 33.8505 (mean=0.21903) (#above threshold = 501) + minUnderestimated_mc_truth_rPos_delta [mum] = -93.1895 (mean=-0.251274) (#above threshold = 85) + maxOverestimated_mc_truth_rPos_delta [mum] = 216.191 (mean=0.296032) (#above threshold = 555) + minUnderestimated_rDeltaPos [mum] = -93.1842 (mean=-0.251239) (#above threshold = 85) + maxOverestimated_rDeltaPos [mum] = 216.196 (mean=0.296067) (#above threshold = 555) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0326107 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.032733 ============================================= @@ -1919,20 +1919,20 @@ Index : 1 used in the geometry : Yes ### Run 20 starts. ### Run 20 starts. - Event#=0 t[ns]=0.0324695 r[mm]=9.73399 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.10894 r[mm]=32.659 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0715202 r[mm]=21.4409 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.00234924 r[mm]=0.704277 deltaR[mum]=-1.11022e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.00992428 r[mm]=2.97519 deltaR[mum]=-4.44089e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.0147584 r[mm]=4.42439 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0163572 r[mm]=4.90369 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.00813377 r[mm]=2.43841 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0237296 r[mm]=7.11388 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.00930785 r[mm]=2.79039 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0388354 r[mm]=11.6424 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0435565 r[mm]=13.0577 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.0509897 r[mm]=15.2861 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0635941 r[mm]=19.0648 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0525919 r[mm]=15.7665 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0545189 r[mm]=16.3442 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.122934 r[mm]=36.8543 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.00734432 r[mm]=2.20174 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0198233 r[mm]=5.94281 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0277061 r[mm]=8.30598 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.110000s Real=0.113133s Sys=0.000000s + User=0.090000s Real=0.182560s Sys=0.000000s ============ Run::printInfo() =============== RunID = 20 @@ -1949,43 +1949,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9949 + # Decays = 9935 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=4.02045e-06 mean=0.0307491 max=0.361484 - decay R [mm] : min=0.00120529 mean=9.21823 max=108.369 - decay X [mm] : min=0.00120529 mean=9.21823 max=108.369 - decay Y [mm] : min=-0.00272016 mean=-4.45763e-08 max=0.0029703 - decay Z [mm] : min=-0.00269057 mean=1.03371e-06 max=0.00532238 - Delta decay R [mm] : min=-1.42109e-14 mean=1.79184e-10 max=4.08376e-07 - deflection angle [deg] : min=0 mean=1.66513e-05 max=0.0207014 - Delta Ekin [MeV] : min=0 mean=0.000350113 max=0.610815 + decay T [ns] : min=3.16614e-06 mean=0.0304543 max=0.307343 + decay R [mm] : min=0.000949172 mean=9.12987 max=92.1381 + decay X [mm] : min=0.000949172 mean=9.12987 max=92.1381 + decay Y [mm] : min=-0.00118257 mean=1.02921e-06 max=0.00318153 + decay Z [mm] : min=-0.00245327 mean=1.43216e-07 max=0.00363626 + Delta decay R [mm] : min=-1.42109e-14 mean=2.08619e-10 max=3.20721e-07 + deflection angle [deg] : min=0 mean=2.41012e-05 max=0.0194969 + Delta Ekin [MeV] : min=0 mean=0.000443567 max=0.561166 decay Ekin [GeV] : min=499.999 mean=500 max=500 decay Px [GeV] : min=502.464 mean=502.464 max=502.464 - decay Py [GeV] : min=-0.0784119 mean=2.21537e-05 max=0.16129 - decay Pz [GeV] : min=-0.152333 mean=4.5128e-05 max=0.169697 - decay Etot violation [MeV] : min=-1.83104e-06 mean=1.83116e-06 max=1.03253e-05 - decay Px violation [MeV] : min=-1.83086e-06 mean=1.83121e-06 max=1.03255e-05 - decay Py violation [MeV] : min=-5.51367e-10 mean=9.93842e-14 max=8.08583e-10 - decay Pz violation [MeV] : min=-1.204e-09 mean=2.33941e-13 max=1.44894e-09 + decay Py [GeV] : min=-0.158808 mean=2.83582e-05 max=0.151523 + decay Pz [GeV] : min=-0.110683 mean=2.07843e-05 max=0.135911 + decay Etot violation [MeV] : min=-8.77189e-07 mean=1.78154e-06 max=9.90502e-06 + decay Px violation [MeV] : min=-8.77073e-07 mean=1.78158e-06 max=9.9052e-06 + decay Py violation [MeV] : min=-1.6567e-09 mean=1.39858e-13 max=1.15639e-09 + decay Pz violation [MeV] : min=-1.35442e-09 mean=-4.33222e-14 max=1.69564e-09 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.27374e-06 , 0.0204764 (mean=0.00812368) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 - maxGamma_deltaMax{1,2,3} = 0 , 9.43402e-10 , 9.43402e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.27374e-06 , 0.0351124 (mean=0.00813151) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 4.44089e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.22571e-09 , 1.22571e-09 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.42109e-11 (mean=9.89906e-13) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 2.84217e-11 (mean=1.02213e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0138176 (mean=-9.28276e-06) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0191574 (mean=6.88072e-06) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0135306 (mean=-9.10358e-06) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0195658 (mean=7.05991e-06) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0253593 (mean=-1.68186e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.00954707 (mean=6.27749e-06) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0252602 (mean=-1.661e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.00986779 (mean=6.48611e-06) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0152588 ============================================= @@ -2011,20 +2011,20 @@ Index : 1 used in the geometry : Yes ### Run 21 starts. ### Run 21 starts. - Event#=0 t[ns]=0.00441841 r[mm]=1.32459 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0212704 r[mm]=6.37663 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0202351 r[mm]=6.06624 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0236095 r[mm]=7.07786 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0403273 r[mm]=12.0897 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.00123217 r[mm]=0.36939 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.00404327 r[mm]=1.21213 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.00771441 r[mm]=2.31269 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0222622 r[mm]=6.67395 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.105488 r[mm]=31.6241 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.00633762 r[mm]=1.89995 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.00661348 r[mm]=1.98265 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.0204952 r[mm]=6.14422 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.103119 r[mm]=30.914 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.00265751 r[mm]=0.796692 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0379154 r[mm]=11.3666 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0400965 r[mm]=12.0205 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0628286 r[mm]=18.8353 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.00639192 r[mm]=1.91623 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0059771 r[mm]=1.79187 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.110000s Real=0.108141s Sys=0.000000s + User=0.080000s Real=0.173409s Sys=0.000000s ============ Run::printInfo() =============== RunID = 21 @@ -2041,43 +2041,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9955 + # Decays = 9952 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=6.83544e-06 mean=0.0304447 max=0.260792 - decay R [mm] : min=0.00204919 mean=9.12698 max=78.1825 - decay X [mm] : min=0.00204919 mean=9.12698 max=78.1825 - decay Y [mm] : min=-0.00380451 mean=-7.65746e-07 max=0.00425737 - decay Z [mm] : min=-0.0012445 mean=-8.76054e-08 max=0.0016648 - Delta decay R [mm] : min=-1.42109e-14 mean=1.58948e-10 max=2.61705e-07 - deflection angle [deg] : min=0 mean=2.16539e-05 max=0.02279 - Delta Ekin [MeV] : min=0 mean=0.000404581 max=0.740289 - decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay T [ns] : min=8.0562e-07 mean=0.0303216 max=0.277437 + decay R [mm] : min=0.000241516 mean=9.09007 max=83.1726 + decay X [mm] : min=0.000241516 mean=9.09007 max=83.1726 + decay Y [mm] : min=-0.00245287 mean=-1.27035e-07 max=0.00146187 + decay Z [mm] : min=-0.00675224 mean=-5.71141e-07 max=0.00149507 + Delta decay R [mm] : min=-1.42109e-14 mean=8.9473e-11 max=2.31799e-07 + deflection angle [deg] : min=0 mean=1.23125e-05 max=0.0151406 + Delta Ekin [MeV] : min=0 mean=0.000165434 max=0.338415 + decay Ekin [GeV] : min=500 mean=500 max=500 decay Px [GeV] : min=502.464 mean=502.464 max=502.464 - decay Py [GeV] : min=-0.149522 mean=-3.94059e-05 max=0.119032 - decay Pz [GeV] : min=-0.149962 mean=-1.46215e-05 max=0.172046 - decay Etot violation [MeV] : min=-4.79573e-07 mean=1.82386e-06 max=9.38989e-06 - decay Px violation [MeV] : min=-4.79631e-07 mean=1.82391e-06 max=9.38989e-06 - decay Py violation [MeV] : min=-1.77451e-09 mean=-3.91384e-13 max=8.272e-10 - decay Pz violation [MeV] : min=-1.01718e-09 mean=-3.837e-14 max=1.49802e-09 + decay Py [GeV] : min=-0.0791357 mean=8.93215e-06 max=0.132745 + decay Pz [GeV] : min=-0.107975 mean=2.23703e-06 max=0.0837682 + decay Etot violation [MeV] : min=-3.8353e-07 mean=1.84331e-06 max=1.00009e-05 + decay Px violation [MeV] : min=-3.8353e-07 mean=1.84335e-06 max=1.00011e-05 + decay Py violation [MeV] : min=-6.6521e-10 mean=3.90118e-14 max=9.38059e-10 + decay Pz violation [MeV] : min=-7.59528e-10 mean=-2.94885e-14 max=6.06803e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.27374e-06 , 0.0266532 (mean=0.00812607) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.25974e-09 , 1.25974e-09 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.27374e-06 , 0.0204764 (mean=0.0081229) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 + maxGamma_deltaMax{1,2,3} = 0 , 8.78771e-10 , 8.78771e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.42109e-11 (mean=9.89513e-13) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 1.42109e-11 (mean=9.8838e-13) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0313103 (mean=-1.16539e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.00863236 (mean=5.12474e-06) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0310486 (mean=-1.1495e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0088559 (mean=5.28368e-06) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0170431 (mean=-5.92769e-06) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0140625 (mean=3.27478e-06) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0168845 (mean=-5.83821e-06) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0142943 (mean=3.36425e-06) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00762939 ============================================= @@ -2103,20 +2103,20 @@ Index : 1 used in the geometry : Yes ### Run 22 starts. ### Run 22 starts. - Event#=0 t[ns]=0.0808938 r[mm]=24.251 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0195361 r[mm]=5.85669 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.137759 r[mm]=41.2985 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0249072 r[mm]=7.46689 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.121094 r[mm]=36.3024 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.0324181 r[mm]=9.71858 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.00926847 r[mm]=2.77858 deltaR[mum]=-4.44089e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.00771866 r[mm]=2.31396 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0725043 r[mm]=21.7359 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.0344283 r[mm]=10.3212 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0220275 r[mm]=6.6036 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0198346 r[mm]=5.94616 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.0216556 r[mm]=6.49208 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0389767 r[mm]=11.6848 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.017339 r[mm]=5.19802 deltaR[mum]=8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0663601 r[mm]=19.894 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0255813 r[mm]=7.66898 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0228313 r[mm]=6.84455 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0016762 r[mm]=0.502505 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0252415 r[mm]=7.5671 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.130000s Real=0.137006s Sys=0.000000s + User=0.110000s Real=0.233797s Sys=0.000000s ============ Run::printInfo() =============== RunID = 22 @@ -2133,45 +2133,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9924 + # Decays = 9899 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=7.60588e-06 mean=0.0490437 max=0.420346 - decay R [mm] : min=0.00228015 mean=14.7027 max=126.015 - decay X [mm] : min=0.00228015 mean=14.7027 max=126.015 - decay Y [mm] : min=-0.0141727 mean=-1.19222e-06 max=0.0036954 - decay Z [mm] : min=-0.00623549 mean=1.44967e-07 max=0.0057871 - Delta decay R [mm] : min=-1.42109e-14 mean=2.64171e-10 max=9.38779e-07 - deflection angle [deg] : min=0 mean=2.60436e-05 max=0.0207786 - Delta Ekin [MeV] : min=0 mean=0.000418629 max=0.637938 + decay T [ns] : min=5.35259e-06 mean=0.0494421 max=0.479192 + decay R [mm] : min=0.00160464 mean=14.8221 max=143.656 + decay X [mm] : min=0.00160464 mean=14.8221 max=143.656 + decay Y [mm] : min=-0.00159657 mean=3.5794e-06 max=0.00777675 + decay Z [mm] : min=-0.00582067 mean=-3.39859e-06 max=0.00293075 + Delta decay R [mm] : min=-2.84217e-14 mean=3.01251e-10 max=6.93754e-07 + deflection angle [deg] : min=0 mean=2.6189e-05 max=0.0192465 + Delta Ekin [MeV] : min=0 mean=0.000441555 max=0.54733 decay Ekin [GeV] : min=499.999 mean=500 max=500 decay Px [GeV] : min=502.687 mean=502.688 max=502.688 - decay Py [GeV] : min=-0.168791 mean=3.18516e-05 max=0.134139 - decay Pz [GeV] : min=-0.106853 mean=3.3883e-05 max=0.127521 - decay Etot violation [MeV] : min=-5.04841e-06 mean=-4.47696e-07 max=3.67762e-06 - decay Px violation [MeV] : min=-5.04847e-06 mean=-4.4771e-07 max=3.67773e-06 - decay Py violation [MeV] : min=-5.80656e-10 mean=-7.6146e-14 max=3.52657e-10 - decay Pz violation [MeV] : min=-1.15062e-09 mean=-2.31042e-13 max=6.0254e-10 + decay Py [GeV] : min=-0.086468 mean=5.66127e-05 max=0.161199 + decay Pz [GeV] : min=-0.100941 mean=-4.89701e-05 max=0.0826965 + decay Etot violation [MeV] : min=-5.68986e-06 mean=-4.39428e-07 max=4.1342e-06 + decay Px violation [MeV] : min=-5.69003e-06 mean=-4.39443e-07 max=4.13437e-06 + decay Py violation [MeV] : min=-6.56769e-10 mean=-4.07639e-14 max=8.58421e-10 + decay Pz violation [MeV] : min=-7.31688e-10 mean=1.01361e-13 max=3.87963e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.18234e-05 , 0.0298928 (mean=0.0016012) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 - maxGamma_deltaMax{1,2,3} = 0 , 8.6871e-10 , 8.6871e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.18234e-05 , 0.0210603 (mean=0.00160206) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 + maxGamma_deltaMax{1,2,3} = 0 , 8.05301e-10 , 8.05301e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0273024 (mean=-1.52059e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0535643 (mean=1.24883e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0263636 (mean=-1.49417e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.054503 (mean=1.27525e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0252701 (mean=-1.48969e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0283926 (mean=1.40097e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0245763 (mean=-1.45956e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0290864 (mean=1.43109e-05) (#above threshold = 0) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00762939 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0152588 ============================================= @@ -2195,20 +2195,20 @@ Index : 1 used in the geometry : Yes ### Run 23 starts. ### Run 23 starts. - Event#=0 t[ns]=0.0564579 r[mm]=16.9254 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.117861 r[mm]=35.3333 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0178957 r[mm]=5.36493 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.00584908 r[mm]=1.75348 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0064782 r[mm]=1.94209 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.0358502 r[mm]=10.7475 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0493681 r[mm]=14.8 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.016082 r[mm]=4.82119 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.12172 r[mm]=36.4902 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.0423442 r[mm]=12.6943 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0067582 r[mm]=2.02603 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0597493 r[mm]=17.9121 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.00575863 r[mm]=1.72637 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0796693 r[mm]=23.8839 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0268599 r[mm]=8.05228 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0180501 r[mm]=5.41122 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0261615 r[mm]=7.84292 deltaR[mum]=-8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0531724 r[mm]=15.9405 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0510804 r[mm]=15.3133 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0131192 r[mm]=3.93298 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.160000s Real=0.157136s Sys=0.000000s + User=0.100000s Real=0.201353s Sys=0.000000s ============ Run::printInfo() =============== RunID = 23 @@ -2225,45 +2225,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9902 + # Decays = 9922 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=5.98476e-06 mean=0.0499512 max=0.411996 - decay R [mm] : min=0.00179416 mean=14.9748 max=123.512 - decay X [mm] : min=0.00179416 mean=14.9748 max=123.512 - decay Y [mm] : min=-0.00676045 mean=-2.65327e-06 max=0.00271585 - decay Z [mm] : min=-0.0206347 mean=-1.13186e-06 max=0.00473071 - Delta decay R [mm] : min=-1.42109e-14 mean=4.63925e-10 max=5.29487e-07 - deflection angle [deg] : min=0 mean=3.7938e-05 max=0.0184935 - Delta Ekin [MeV] : min=0 mean=0.000654702 max=0.505341 - decay Ekin [GeV] : min=499.999 mean=500 max=500 - decay Px [GeV] : min=502.687 mean=502.688 max=502.688 - decay Py [GeV] : min=-0.156175 mean=-5.23231e-05 max=0.123848 - decay Pz [GeV] : min=-0.112854 mean=3.93306e-05 max=0.113599 - decay Etot violation [MeV] : min=-5.23089e-06 mean=-4.47734e-07 max=4.05981e-06 - decay Px violation [MeV] : min=-5.23089e-06 mean=-4.47749e-07 max=4.05987e-06 - decay Py violation [MeV] : min=-4.1436e-10 mean=9.98683e-15 max=6.34103e-10 - decay Pz violation [MeV] : min=-6.16879e-10 mean=8.34018e-14 max=5.38904e-10 + decay T [ns] : min=5.50899e-09 mean=0.0494442 max=0.548097 + decay R [mm] : min=1.65153e-06 mean=14.8228 max=164.313 + decay X [mm] : min=1.65153e-06 mean=14.8228 max=164.313 + decay Y [mm] : min=-0.00327012 mean=-3.51659e-07 max=0.00650129 + decay Z [mm] : min=-0.00432444 mean=1.03537e-06 max=0.00679426 + Delta decay R [mm] : min=-2.84217e-14 mean=3.6216e-10 max=7.96077e-07 + deflection angle [deg] : min=0 mean=3.71005e-05 max=0.0386644 + Delta Ekin [MeV] : min=0 mean=0.000718447 max=2.20886 + decay Ekin [GeV] : min=499.998 mean=500 max=500 + decay Px [GeV] : min=502.686 mean=502.688 max=502.688 + decay Py [GeV] : min=-0.0937861 mean=-2.05128e-05 max=0.171321 + decay Pz [GeV] : min=-0.1207 mean=1.58159e-05 max=0.332415 + decay Etot violation [MeV] : min=-4.66016e-06 mean=-4.4699e-07 max=4.26819e-06 + decay Px violation [MeV] : min=-4.66011e-06 mean=-4.47007e-07 max=4.26825e-06 + decay Py violation [MeV] : min=-8.15163e-10 mean=-6.50703e-14 max=6.53515e-10 + decay Pz violation [MeV] : min=-1.02557e-09 mean=-2.53696e-13 max=5.97339e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.18234e-05 , 0.0210603 (mean=0.0016046) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.18234e-05 , 0.0242312 (mean=0.00161449) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 6.85219e-10 , 6.85219e-10 + maxGamma_deltaMax{1,2,3} = 0 , 9.66537e-10 , 9.66537e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0186212 (mean=-2.12254e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0450806 (mean=2.27126e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0180917 (mean=-2.07615e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0453379 (mean=2.31765e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0630143 (mean=-2.21231e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.0202911 (mean=1.33888e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0622182 (mean=-2.17609e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.0210872 (mean=1.37509e-05) (#above threshold = 0) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0152588 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.00762939 ============================================= @@ -2287,20 +2287,20 @@ Index : 1 used in the geometry : Yes ### Run 24 starts. ### Run 24 starts. - Event#=0 t[ns]=0.0104382 r[mm]=3.12909 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.000286372 r[mm]=0.0858468 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.358575 r[mm]=107.492 deltaR[mum]=-1.42109e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.0903951 r[mm]=27.0981 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.074536 r[mm]=22.3439 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.0660308 r[mm]=19.7943 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.080934 r[mm]=24.2619 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.0992269 r[mm]=29.7456 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0481675 r[mm]=14.4394 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.0881469 r[mm]=26.4241 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0809134 r[mm]=24.2557 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0886248 r[mm]=26.5674 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.00218873 r[mm]=0.656123 deltaR[mum]=1.11022e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.158125 r[mm]=47.4018 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0458526 r[mm]=13.7454 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.0367128 r[mm]=11.0056 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.00657628 r[mm]=1.9714 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0609872 r[mm]=18.2824 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.127464 r[mm]=38.2105 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.143091 r[mm]=42.8949 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.290000s Real=0.294770s Sys=0.000000s + User=0.180000s Real=0.254395s Sys=0.000000s ============ Run::printInfo() =============== RunID = 24 @@ -2317,45 +2317,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9770 + # Decays = 9790 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=8.93393e-06 mean=0.129403 max=1.64792 - decay R [mm] : min=0.00267816 mean=38.7918 max=494.003 - decay X [mm] : min=0.00267816 mean=38.7918 max=494.003 - decay Y [mm] : min=-0.0567509 mean=-6.82088e-06 max=0.0471689 - decay Z [mm] : min=-0.0236037 mean=1.10691e-05 max=0.0556437 - Delta decay R [mm] : min=-5.68434e-14 mean=1.69292e-09 max=3.18989e-06 - deflection angle [deg] : min=0 mean=8.93755e-05 max=0.0362745 - Delta Ekin [MeV] : min=0 mean=0.00154168 max=1.96674 - decay Ekin [GeV] : min=499.998 mean=500 max=500 - decay Px [GeV] : min=505.586 mean=505.588 max=505.588 - decay Py [GeV] : min=-0.173113 mean=1.36372e-05 max=0.207001 - decay Pz [GeV] : min=-0.120139 mean=4.4707e-05 max=0.244192 - decay Etot violation [MeV] : min=-1.61614e-06 mean=-3.65934e-07 max=1.09809e-06 - decay Px violation [MeV] : min=-1.61602e-06 mean=-3.65834e-07 max=1.09803e-06 - decay Py violation [MeV] : min=-1.68185e-10 mean=1.83698e-14 max=1.94973e-10 - decay Pz violation [MeV] : min=-1.73216e-10 mean=-4.56081e-15 max=1.60043e-10 + decay T [ns] : min=3.37895e-05 mean=0.130795 max=1.20314 + decay R [mm] : min=0.0101292 mean=39.209 max=360.67 + decay X [mm] : min=0.0101292 mean=39.209 max=360.67 + decay Y [mm] : min=-0.020383 mean=5.60571e-06 max=0.0249731 + decay Z [mm] : min=-0.041776 mean=2.33376e-06 max=0.0162118 + Delta decay R [mm] : min=-5.68434e-14 mean=1.86614e-09 max=9.08186e-07 + deflection angle [deg] : min=0 mean=0.000113939 max=0.0207414 + Delta Ekin [MeV] : min=0 mean=0.00198685 max=0.643013 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=505.588 mean=505.588 max=505.588 + decay Py [GeV] : min=-0.13704 mean=6.22833e-05 max=0.182514 + decay Pz [GeV] : min=-0.160547 mean=4.05017e-05 max=0.163395 + decay Etot violation [MeV] : min=-1.90572e-06 mean=-3.67154e-07 max=9.99076e-07 + decay Px violation [MeV] : min=-1.90578e-06 mean=-3.67055e-07 max=9.99134e-07 + decay Py violation [MeV] : min=-2.06811e-10 mean=1.32608e-13 max=2.18208e-10 + decay Pz violation [MeV] : min=-2.27445e-10 mean=2.74302e-14 max=2.65828e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0139153 (mean=0.00306069) + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0112004 (mean=0.00306428) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.0283e-10 , 1.0283e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.13246e-10 , 1.13246e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.070441 (mean=-5.65127e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.44813 (mean=0.000164428) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0672511 (mean=-5.48198e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.451319 (mean=0.00016612) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0333159 (mean=-6.76768e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.150499 (mean=0.000135996) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0324077 (mean=-6.58107e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.151267 (mean=0.000137862) (#above threshold = 0) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0310101 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -2379,20 +2379,20 @@ Index : 1 used in the geometry : Yes ### Run 25 starts. ### Run 25 starts. - Event#=0 t[ns]=0.0515098 r[mm]=15.4413 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0339922 r[mm]=10.19 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.204021 r[mm]=61.1601 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.00242093 r[mm]=0.725731 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.158448 r[mm]=47.4987 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.33279 r[mm]=99.7619 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.128329 r[mm]=38.4696 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.101639 r[mm]=30.4688 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0262742 r[mm]=7.87633 deltaR[mum]=8.88178e-13 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.953841 r[mm]=285.937 deltaR[mum]=-5.68434e-11 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0701252 r[mm]=21.0217 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0431411 r[mm]=12.9326 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.11178 r[mm]=33.5088 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.0311985 r[mm]=9.35249 deltaR[mum]=-1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.046217 r[mm]=13.8547 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.13423 r[mm]=40.2388 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.00790726 r[mm]=2.37039 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.259455 r[mm]=77.7778 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0445669 r[mm]=13.36 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.155479 r[mm]=46.6084 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.260000s Real=0.255272s Sys=0.000000s + User=0.180000s Real=0.182832s Sys=0.000000s ============ Run::printInfo() =============== RunID = 25 @@ -2409,45 +2409,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9805 + # Decays = 9772 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.04463e-05 mean=0.131019 max=1.22793 - decay R [mm] : min=0.00313153 mean=39.2762 max=368.1 - decay X [mm] : min=0.00313153 mean=39.2762 max=368.1 - decay Y [mm] : min=-0.0104972 mean=-9.17588e-08 max=0.0230658 - decay Z [mm] : min=-0.0154968 mean=7.18373e-07 max=0.0493521 - Delta decay R [mm] : min=-5.68434e-14 mean=1.23468e-09 max=2.88423e-06 - deflection angle [deg] : min=0 mean=7.0148e-05 max=0.043573 - Delta Ekin [MeV] : min=0 mean=0.00129821 max=2.83778 - decay Ekin [GeV] : min=499.997 mean=500 max=500 - decay Px [GeV] : min=505.585 mean=505.588 max=505.588 - decay Py [GeV] : min=-0.1701 mean=-5.14832e-05 max=0.162815 - decay Pz [GeV] : min=-0.13717 mean=-9.21917e-06 max=0.348363 - decay Etot violation [MeV] : min=-1.59122e-06 mean=-3.74384e-07 max=1.0017e-06 - decay Px violation [MeV] : min=-1.59111e-06 mean=-3.74284e-07 max=1.00175e-06 - decay Py violation [MeV] : min=-3.25628e-10 mean=3.10054e-14 max=2.3941e-10 - decay Pz violation [MeV] : min=-6.97298e-10 mean=-1.36823e-13 max=1.36154e-10 + decay T [ns] : min=4.05583e-06 mean=0.130063 max=1.08596 + decay R [mm] : min=0.00121583 mean=38.9896 max=325.541 + decay X [mm] : min=0.00121583 mean=38.9896 max=325.541 + decay Y [mm] : min=-0.0334477 mean=1.06424e-05 max=0.0257546 + decay Z [mm] : min=-0.0516231 mean=-7.3714e-06 max=0.0201737 + Delta decay R [mm] : min=-5.68434e-14 mean=1.83633e-09 max=1.60151e-06 + deflection angle [deg] : min=0 mean=9.58158e-05 max=0.0312437 + Delta Ekin [MeV] : min=0 mean=0.00183159 max=1.45904 + decay Ekin [GeV] : min=499.999 mean=500 max=500 + decay Px [GeV] : min=505.587 mean=505.588 max=505.588 + decay Py [GeV] : min=-0.244684 mean=2.23583e-05 max=0.24192 + decay Pz [GeV] : min=-0.145877 mean=2.4294e-05 max=0.197487 + decay Etot violation [MeV] : min=-1.68098e-06 mean=-3.7284e-07 max=8.07107e-07 + decay Px violation [MeV] : min=-1.68098e-06 mean=-3.72742e-07 max=8.07107e-07 + decay Py violation [MeV] : min=-2.93085e-10 mean=-1.16561e-13 max=1.95087e-10 + decay Pz violation [MeV] : min=-2.46416e-10 mean=-1.68232e-13 max=1.60483e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0139153 (mean=0.00306226) - maxBeta_deltaMax{1,2} = 1.11022e-16 , 2.22045e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.07676e-10 , 1.07676e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 1.63709e-05 , 0.0139153 (mean=0.00306631) + maxBeta_deltaMax{1,2} = 1.11022e-16 , 4.44089e-16 + maxGamma_deltaMax{1,2,3} = 0 , 9.89502e-11 , 9.89502e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0637803 (mean=-4.04746e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.402 (mean=9.97181e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0608961 (mean=-3.92399e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.404884 (mean=0.000100953) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0406133 (mean=-6.3222e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.179043 (mean=0.000145233) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0400863 (mean=-6.13856e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.180221 (mean=0.000147069) (#above threshold = 0) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0316951 ============================================= @@ -2471,20 +2471,20 @@ Index : 1 used in the geometry : Yes ### Run 26 starts. ### Run 26 starts. - Event#=0 t[ns]=0.0875761 r[mm]=26.2529 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.132041 r[mm]=39.5824 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.0336019 r[mm]=10.0729 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.119753 r[mm]=35.8986 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0443319 r[mm]=13.2895 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.623009 r[mm]=186.761 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0164997 r[mm]=4.94615 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.163488 r[mm]=49.0092 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.0491852 r[mm]=14.7444 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.1495 r[mm]=44.8161 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.164942 r[mm]=49.4453 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0945173 r[mm]=28.3337 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.365361 r[mm]=109.525 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.139485 r[mm]=41.8138 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.0333064 r[mm]=9.98436 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.132688 r[mm]=39.7762 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0449096 r[mm]=13.4627 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.0274784 r[mm]=8.23727 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.152823 r[mm]=45.8122 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.015154 r[mm]=4.54276 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.250000s Real=0.255989s Sys=0.000000s + User=0.180000s Real=0.294375s Sys=0.000000s ============ Run::printInfo() =============== RunID = 26 @@ -2501,43 +2501,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9793 + # Decays = 9799 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=4.44757e-06 mean=0.12831 max=1.19316 - decay R [mm] : min=0.00133326 mean=38.4638 max=357.677 - decay X [mm] : min=0.00133326 mean=38.4638 max=357.677 - decay Y [mm] : min=-0.0430007 mean=-2.62076e-06 max=0.0222367 - decay Z [mm] : min=-0.0575674 mean=5.95039e-07 max=0.0338493 - Delta decay R [mm] : min=-5.68434e-14 mean=1.35152e-09 max=1.42555e-06 - deflection angle [deg] : min=0 mean=6.91036e-05 max=0.0300232 - Delta Ekin [MeV] : min=0 mean=0.00128557 max=1.34819 + decay T [ns] : min=1.66907e-05 mean=0.126356 max=1.03791 + decay R [mm] : min=0.00500342 mean=37.878 max=311.137 + decay X [mm] : min=0.00500342 mean=37.878 max=311.137 + decay Y [mm] : min=-0.0368568 mean=-1.19766e-05 max=0.00872278 + decay Z [mm] : min=-0.0293937 mean=-6.49087e-06 max=0.0149671 + Delta decay R [mm] : min=-5.68434e-14 mean=1.13746e-09 max=1.63609e-06 + deflection angle [deg] : min=0 mean=7.14088e-05 max=0.024989 + Delta Ekin [MeV] : min=0 mean=0.00120588 max=0.933973 decay Ekin [GeV] : min=499.999 mean=500 max=500 - decay Px [GeV] : min=505.757 mean=505.759 max=505.759 - decay Py [GeV] : min=-0.229983 mean=-7.94246e-05 max=0.110649 - decay Pz [GeV] : min=-0.165205 mean=-8.39237e-06 max=0.128587 - decay Etot violation [MeV] : min=-4.30329e-07 mean=6.25918e-07 max=2.17912e-06 - decay Px violation [MeV] : min=-4.30329e-07 mean=6.25943e-07 max=2.17912e-06 - decay Py violation [MeV] : min=-7.40926e-10 mean=-2.20899e-13 max=2.65757e-10 - decay Pz violation [MeV] : min=-6.75357e-10 mean=-8.86141e-14 max=2.47269e-10 + decay Px [GeV] : min=505.758 mean=505.759 max=505.759 + decay Py [GeV] : min=-0.172471 mean=-0.0001157 max=0.0918631 + decay Pz [GeV] : min=-0.181312 mean=-4.54998e-05 max=0.126383 + decay Etot violation [MeV] : min=-5.29806e-07 mean=6.27445e-07 max=1.81969e-06 + decay Px violation [MeV] : min=-5.29632e-07 mean=6.27471e-07 max=1.81986e-06 + decay Py violation [MeV] : min=-3.61808e-10 mean=-1.43191e-13 max=1.65173e-10 + decay Pz violation [MeV] : min=-3.13207e-10 mean=-1.10319e-14 max=2.06015e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.011908 (mean=0.00138999) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.011908 (mean=0.0013891) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 9.24842e-11 , 9.24842e-11 + maxGamma_deltaMax{1,2,3} = 0 , 9.74296e-11 , 9.74296e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.13687e-10 (mean=4.33772e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=4.20326e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0513833 (mean=-4.69926e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.163607 (mean=0.000110046) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0502714 (mean=-4.56411e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.164338 (mean=0.000111398) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0370834 (mean=-4.05689e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.199575 (mean=9.06073e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0354473 (mean=-3.94314e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.201211 (mean=9.17448e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -2563,20 +2563,20 @@ Index : 1 used in the geometry : Yes ### Run 27 starts. ### Run 27 starts. - Event#=0 t[ns]=0.0577026 r[mm]=17.2977 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.325317 r[mm]=97.5212 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=2000 t[ns]=0.126348 r[mm]=37.8756 deltaR[mum]=7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=3000 t[ns]=0.174331 r[mm]=52.2596 deltaR[mum]=-7.10543e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=4000 t[ns]=0.0138385 r[mm]=4.1484 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=5000 t[ns]=0.468435 r[mm]=140.424 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=6000 t[ns]=0.0592874 r[mm]=17.7727 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=7000 t[ns]=0.0790083 r[mm]=23.6845 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=8000 t[ns]=0.132714 r[mm]=39.784 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=9000 t[ns]=0.0276793 r[mm]=8.2975 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=0 t[ns]=0.0420898 r[mm]=12.6174 deltaR[mum]=1.77636e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=1000 t[ns]=0.0649552 r[mm]=19.4718 deltaR[mum]=3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=2000 t[ns]=0.0120062 r[mm]=3.59913 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=3000 t[ns]=0.15305 r[mm]=45.8803 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=4000 t[ns]=0.103706 r[mm]=31.0881 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=5000 t[ns]=0.353596 r[mm]=105.998 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=6000 t[ns]=0.0312192 r[mm]=9.35868 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=7000 t[ns]=0.19181 r[mm]=57.4996 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=8000 t[ns]=0.0658567 r[mm]=19.7421 deltaR[mum]=-3.55271e-12 deltaEkin[MeV]=0 deltaAngle(deg)=0 + Event#=9000 t[ns]=0.0301506 r[mm]=9.03833 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 Run terminated. Run Summary Number of events processed : 10000 - User=0.240000s Real=0.243058s Sys=0.000000s + User=0.170000s Real=0.261542s Sys=0.000000s ============ Run::printInfo() =============== RunID = 27 @@ -2593,43 +2593,43 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9810 + # Decays = 9800 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=3.48749e-05 mean=0.12951 max=1.47469 - decay R [mm] : min=0.0104545 mean=38.8236 max=442.071 - decay X [mm] : min=0.0104545 mean=38.8236 max=442.071 - decay Y [mm] : min=-0.0211514 mean=5.35276e-06 max=0.0328335 - decay Z [mm] : min=-0.0205332 mean=-3.6529e-06 max=0.0209197 - Delta decay R [mm] : min=-5.68434e-14 mean=1.40675e-09 max=1.3592e-06 - deflection angle [deg] : min=0 mean=8.02364e-05 max=0.0281798 - Delta Ekin [MeV] : min=0 mean=0.00138199 max=1.18772 + decay T [ns] : min=7.79763e-06 mean=0.128961 max=1.48007 + decay R [mm] : min=0.00233752 mean=38.659 max=443.685 + decay X [mm] : min=0.00233752 mean=38.659 max=443.685 + decay Y [mm] : min=-0.0126842 mean=2.55012e-06 max=0.0145861 + decay Z [mm] : min=-0.0189932 mean=3.46848e-06 max=0.0567531 + Delta decay R [mm] : min=-5.68434e-14 mean=1.06929e-09 max=7.34876e-07 + deflection angle [deg] : min=0 mean=6.44504e-05 max=0.0192398 + Delta Ekin [MeV] : min=0 mean=0.00102551 max=0.553652 decay Ekin [GeV] : min=499.999 mean=500 max=500 - decay Px [GeV] : min=505.757 mean=505.759 max=505.759 - decay Py [GeV] : min=-0.214419 mean=1.98426e-05 max=0.128752 - decay Pz [GeV] : min=-0.18315 mean=-4.23709e-05 max=0.229268 - decay Etot violation [MeV] : min=-6.79109e-07 mean=6.27858e-07 max=2.00956e-06 - decay Px violation [MeV] : min=-6.79109e-07 mean=6.27883e-07 max=2.0095e-06 - decay Py violation [MeV] : min=-2.6273e-10 mean=9.219e-14 max=3.07878e-10 - decay Pz violation [MeV] : min=-4.98346e-10 mean=-6.29722e-14 max=3.91253e-10 + decay Px [GeV] : min=505.758 mean=505.759 max=505.759 + decay Py [GeV] : min=-0.146395 mean=8.0258e-05 max=0.150707 + decay Pz [GeV] : min=-0.147372 mean=4.60175e-06 max=0.141766 + decay Etot violation [MeV] : min=-3.66766e-07 mean=6.2219e-07 max=1.95124e-06 + decay Px violation [MeV] : min=-3.66825e-07 mean=6.22214e-07 max=1.95135e-06 + decay Py violation [MeV] : min=-3.11047e-10 mean=1.33478e-13 max=3.85e-10 + decay Pz violation [MeV] : min=-2.80025e-10 mean=-4.78784e-14 max=2.42522e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0145428 (mean=0.00139281) + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.00927412 (mean=0.00139135) maxBeta_deltaMax{1,2} = 1.11022e-16 , 3.33067e-16 - maxGamma_deltaMax{1,2,3} = 0 , 8.5393e-11 , 8.5393e-11 + maxGamma_deltaMax{1,2,3} = 0 , 9.45732e-11 , 9.45732e-11 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=4.3613e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=4.32839e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -0.0442199 (mean=-4.89876e-05) (#above threshold = 0) - maxOverestimated_mc_truth_rPos_delta [mum] = 0.0655157 (mean=9.47951e-05) (#above threshold = 0) - minUnderestimated_rDeltaPos [mum] = -0.0428607 (mean=-4.75808e-05) (#above threshold = 0) - maxOverestimated_rDeltaPos [mum] = 0.0661426 (mean=9.62019e-05) (#above threshold = 0) + minUnderestimated_mc_truth_rPos_delta [mum] = -0.0301811 (mean=-3.69268e-05) (#above threshold = 0) + maxOverestimated_mc_truth_rPos_delta [mum] = 0.122757 (mean=8.15107e-05) (#above threshold = 0) + minUnderestimated_rDeltaPos [mum] = -0.0298544 (mean=-3.58575e-05) (#above threshold = 0) + maxOverestimated_rDeltaPos [mum] = 0.123059 (mean=8.258e-05) (#above threshold = 0) --- float instead of double --- fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0305176 ============================================= @@ -2655,20 +2655,20 @@ Index : 1 used in the geometry : Yes ### Run 28 starts. ### Run 28 starts. - Event#=0 t[ns]=0.394294 r[mm]=118.199 deltaR[mum]=0.00051901 deltaEkin[MeV]=6.80282 deltaAngle(deg)=0.0159745 - Event#=1000 t[ns]=0.0938605 r[mm]=28.1368 deltaR[mum]=3.65901e-06 deltaEkin[MeV]=6.66224 deltaAngle(deg)=0.00249269 - Event#=2000 t[ns]=0.088053 r[mm]=26.3959 deltaR[mum]=3.03955e-06 deltaEkin[MeV]=5.83269 deltaAngle(deg)=0.00296339 - Event#=3000 t[ns]=0.68999 r[mm]=206.84 deltaR[mum]=0.00245041 deltaEkin[MeV]=7.88888 deltaAngle(deg)=0.0282411 - Event#=4000 t[ns]=0.0687389 r[mm]=20.6061 deltaR[mum]=1.54987e-06 deltaEkin[MeV]=4.19489 deltaAngle(deg)=0.00323768 - Event#=5000 t[ns]=0.342916 r[mm]=102.797 deltaR[mum]=0.000462675 deltaEkin[MeV]=9.81686 deltaAngle(deg)=0.0144759 - Event#=6000 t[ns]=0.975232 r[mm]=292.348 deltaR[mum]=0.00640976 deltaEkin[MeV]=8.04792 deltaAngle(deg)=0.0401486 - Event#=7000 t[ns]=0.15545 r[mm]=46.5997 deltaR[mum]=0.000117034 deltaEkin[MeV]=14.6177 deltaAngle(deg)=0.00546257 - Event#=8000 t[ns]=0.172102 r[mm]=51.5915 deltaR[mum]=5.88451e-05 deltaEkin[MeV]=6.69885 deltaAngle(deg)=0.0065647 - Event#=9000 t[ns]=0.0799689 r[mm]=23.9725 deltaR[mum]=2.31769e-06 deltaEkin[MeV]=5.03697 deltaAngle(deg)=0.00349603 + Event#=0 t[ns]=0.0139949 r[mm]=4.1953 deltaR[mum]=1.72973e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000569871 + Event#=1000 t[ns]=0.226694 r[mm]=67.9567 deltaR[mum]=0.000172737 deltaEkin[MeV]=10.1571 deltaAngle(deg)=0.00849935 + Event#=2000 t[ns]=0.137252 r[mm]=41.1445 deltaR[mum]=3.45065e-05 deltaEkin[MeV]=6.80352 deltaAngle(deg)=0.00576182 + Event#=3000 t[ns]=0.082841 r[mm]=24.8335 deltaR[mum]=2.55652e-06 deltaEkin[MeV]=5.3219 deltaAngle(deg)=0.00271998 + Event#=4000 t[ns]=0.0669804 r[mm]=20.0789 deltaR[mum]=1.45111e-06 deltaEkin[MeV]=3.84097 deltaAngle(deg)=0.00279074 + Event#=5000 t[ns]=0.159492 r[mm]=47.8113 deltaR[mum]=5.58428e-05 deltaEkin[MeV]=7.36404 deltaAngle(deg)=0.00677256 + Event#=6000 t[ns]=0.0352582 r[mm]=10.5694 deltaR[mum]=3.12486e-07 deltaEkin[MeV]=0.490737 deltaAngle(deg)=0.00133121 + Event#=7000 t[ns]=0.086402 r[mm]=25.901 deltaR[mum]=5.69901e-05 deltaEkin[MeV]=20.4439 deltaAngle(deg)=0.00391615 + Event#=8000 t[ns]=0.157496 r[mm]=47.213 deltaR[mum]=5.00984e-05 deltaEkin[MeV]=7.57734 deltaAngle(deg)=0.00569049 + Event#=9000 t[ns]=0.0984306 r[mm]=29.5068 deltaR[mum]=1.38906e-05 deltaEkin[MeV]=7.79238 deltaAngle(deg)=0.00365075 Run terminated. Run Summary Number of events processed : 10000 - User=0.380000s Real=0.376504s Sys=0.000000s + User=0.240000s Real=0.410699s Sys=0.000000s ============ Run::printInfo() =============== RunID = 28 @@ -2685,45 +2685,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9804 + # Decays = 9803 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=3.45216e-06 mean=0.136817 max=1.47498 - decay R [mm] : min=0.00103486 mean=41.014 max=442.158 - decay X [mm] : min=0.00103486 mean=41.014 max=442.158 - decay Y [mm] : min=-0.00415043 mean=0.00433897 max=0.233544 - decay Z [mm] : min=-0.019168 mean=-1.46385e-06 max=0.0236748 - Delta decay R [mm] : min=2.1684e-19 mean=1.55001e-07 max=2.72524e-05 - deflection angle [deg] : min=0 mean=0.00562793 max=0.0603031 - Delta Ekin [MeV] : min=0 mean=6.35136 max=1263.63 - decay Ekin [GeV] : min=498.736 mean=499.994 max=500 - decay Px [GeV] : min=504.498 mean=505.755 max=505.761 - decay Py [GeV] : min=-0.0878919 mean=0.0492428 max=0.532353 - decay Pz [GeV] : min=-0.125489 mean=-0.000101049 max=0.129117 - decay Etot violation [MeV] : min=-1.93674e-06 mean=-7.3342e-08 max=1.54995e-06 - decay Px violation [MeV] : min=-1.93686e-06 mean=-7.33404e-08 max=1.55001e-06 - decay Py violation [MeV] : min=-7.83018e-10 mean=-8.17949e-12 max=6.29029e-10 - decay Pz violation [MeV] : min=-2.09099e-10 mean=-2.17552e-14 max=1.41895e-10 + decay T [ns] : min=1.86464e-05 mean=0.136436 max=1.05745 + decay R [mm] : min=0.00558968 mean=40.8999 max=316.996 + decay X [mm] : min=0.00558968 mean=40.8999 max=316.996 + decay Y [mm] : min=-0.00540596 mean=0.00423691 max=0.119831 + decay Z [mm] : min=-0.0271741 mean=6.33157e-06 max=0.0518642 + Delta decay R [mm] : min=-3.46945e-18 mean=1.48133e-07 max=2.54562e-05 + deflection angle [deg] : min=0 mean=0.00562743 max=0.0439487 + Delta Ekin [MeV] : min=0 mean=6.68402 max=1204.11 + decay Ekin [GeV] : min=498.796 mean=499.993 max=500 + decay Px [GeV] : min=504.557 mean=505.755 max=505.761 + decay Py [GeV] : min=-0.0973342 mean=0.0489894 max=0.381147 + decay Pz [GeV] : min=-0.168489 mean=1.1496e-05 max=0.142221 + decay Etot violation [MeV] : min=-1.65857e-06 mean=-7.08709e-08 max=1.63319e-06 + decay Px violation [MeV] : min=-1.65834e-06 mean=-7.08698e-08 max=1.63319e-06 + decay Py violation [MeV] : min=-6.93802e-10 mean=-6.84401e-12 max=4.40508e-10 + decay Pz violation [MeV] : min=-2.3681e-10 mean=-1.00962e-13 max=1.08201e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 0 , 0.0157997 (mean=0.00347184) + maxMass_deltaMax{1,2,3} [eV] = 0 , 0 , 0.0184336 (mean=0.0034558) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.15136e-10 , 1.15136e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.17765e-10 , 1.17765e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -50.7872 (mean=-0.294266) (#above threshold = 109) - maxOverestimated_mc_truth_rPos_delta [mum] = 202.972 (mean=0.472259) (#above threshold = 1219) - minUnderestimated_rDeltaPos [mum] = -50.7599 (mean=-0.294111) (#above threshold = 109) - maxOverestimated_rDeltaPos [mum] = 202.999 (mean=0.472414) (#above threshold = 1219) + minUnderestimated_mc_truth_rPos_delta [mum] = -59.4392 (mean=-0.301328) (#above threshold = 140) + maxOverestimated_mc_truth_rPos_delta [mum] = 188.816 (mean=0.477624) (#above threshold = 1272) + minUnderestimated_rDeltaPos [mum] = -59.4137 (mean=-0.30118) (#above threshold = 140) + maxOverestimated_rDeltaPos [mum] = 188.842 (mean=0.477772) (#above threshold = 1273) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0406985 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0366833 ============================================= @@ -2747,20 +2747,20 @@ Index : 1 used in the geometry : Yes ### Run 29 starts. ### Run 29 starts. - Event#=0 t[ns]=0 r[mm]=0 deltaR[mum]=0 deltaEkin[MeV]=0 deltaAngle(deg)=0 - Event#=1000 t[ns]=0.0116803 r[mm]=3.50143 deltaR[mum]=1.00564e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.00047562 - Event#=2000 t[ns]=0.181892 r[mm]=54.5264 deltaR[mum]=9.08449e-05 deltaEkin[MeV]=8.21163 deltaAngle(deg)=0.00707665 - Event#=3000 t[ns]=0.0772107 r[mm]=23.1457 deltaR[mum]=2.10549e-06 deltaEkin[MeV]=5.08891 deltaAngle(deg)=0.00239453 - Event#=4000 t[ns]=0.174539 r[mm]=52.3219 deltaR[mum]=6.8328e-05 deltaEkin[MeV]=6.95567 deltaAngle(deg)=0.00761482 - Event#=5000 t[ns]=0.0402221 r[mm]=12.0575 deltaR[mum]=4.43087e-07 deltaEkin[MeV]=1.01115 deltaAngle(deg)=0.00176085 - Event#=6000 t[ns]=0.103116 r[mm]=30.9115 deltaR[mum]=8.60428e-06 deltaEkin[MeV]=7.48781 deltaAngle(deg)=0.00363368 - Event#=7000 t[ns]=0.0445748 r[mm]=13.3623 deltaR[mum]=5.631e-07 deltaEkin[MeV]=1.51536 deltaAngle(deg)=0.00187853 - Event#=8000 t[ns]=0.0621004 r[mm]=18.616 deltaR[mum]=1.20348e-06 deltaEkin[MeV]=3.57572 deltaAngle(deg)=0.00275841 - Event#=9000 t[ns]=0.24576 r[mm]=73.672 deltaR[mum]=0.000167798 deltaEkin[MeV]=6.86935 deltaAngle(deg)=0.0106131 + Event#=0 t[ns]=0.164692 r[mm]=49.3702 deltaR[mum]=6.99868e-05 deltaEkin[MeV]=8.18283 deltaAngle(deg)=0.00663472 + Event#=1000 t[ns]=0.34432 r[mm]=103.218 deltaR[mum]=0.00039514 deltaEkin[MeV]=7.1558 deltaAngle(deg)=0.0141178 + Event#=2000 t[ns]=0.650246 r[mm]=194.926 deltaR[mum]=0.00207213 deltaEkin[MeV]=9.03309 deltaAngle(deg)=0.0257488 + Event#=3000 t[ns]=0.107547 r[mm]=32.2395 deltaR[mum]=2.18844e-05 deltaEkin[MeV]=8.03379 deltaAngle(deg)=0.00405229 + Event#=4000 t[ns]=0.477405 r[mm]=143.113 deltaR[mum]=0.000842535 deltaEkin[MeV]=6.98511 deltaAngle(deg)=0.0191306 + Event#=5000 t[ns]=0.101459 r[mm]=30.4147 deltaR[mum]=7.98303e-06 deltaEkin[MeV]=7.49893 deltaAngle(deg)=0.00424134 + Event#=6000 t[ns]=0.0346471 r[mm]=10.3863 deltaR[mum]=2.96417e-07 deltaEkin[MeV]=0.440277 deltaAngle(deg)=0.00131408 + Event#=7000 t[ns]=0.0307582 r[mm]=9.22047 deltaR[mum]=1.91484e-07 deltaEkin[MeV]=0.0521387 deltaAngle(deg)=0.00131649 + Event#=8000 t[ns]=0.358157 r[mm]=107.366 deltaR[mum]=0.000519346 deltaEkin[MeV]=9.71576 deltaAngle(deg)=0.0149212 + Event#=9000 t[ns]=0.00877659 r[mm]=2.63098 deltaR[mum]=4.26637e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000357382 Run terminated. Run Summary Number of events processed : 10000 - User=0.370000s Real=0.374363s Sys=0.000000s + User=0.220000s Real=0.660298s Sys=0.000000s ============ Run::printInfo() =============== RunID = 29 @@ -2777,45 +2777,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9810 + # Decays = 9822 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=1.08635e-05 mean=0.133856 max=1.1414 - decay R [mm] : min=0.00325657 mean=40.1265 max=342.159 - decay X [mm] : min=0.00325657 mean=40.1265 max=342.159 - decay Y [mm] : min=-0.14826 mean=-0.00415061 max=0.00229889 - decay Z [mm] : min=-0.0397111 mean=-3.83942e-06 max=0.0431542 - Delta decay R [mm] : min=0 mean=1.43555e-07 max=1.25499e-05 - deflection angle [deg] : min=8.53688e-07 mean=0.00552624 max=0.0480558 - Delta Ekin [MeV] : min=0 mean=7.48867 max=5523.39 - decay Ekin [GeV] : min=494.477 mean=499.993 max=500 - decay Px [GeV] : min=500.238 mean=505.754 max=505.761 - decay Py [GeV] : min=-0.424232 mean=-0.0482007 max=0.0687949 - decay Pz [GeV] : min=-0.175825 mean=4.53286e-05 max=0.165055 - decay Etot violation [MeV] : min=-2.05095e-06 mean=-7.16475e-08 max=1.74763e-06 - decay Px violation [MeV] : min=-2.05083e-06 mean=-7.16455e-08 max=1.74763e-06 - decay Py violation [MeV] : min=-3.67265e-10 mean=7.5846e-12 max=6.60748e-10 - decay Pz violation [MeV] : min=-2.84103e-10 mean=-1.14769e-13 max=1.45263e-10 + decay T [ns] : min=8.95109e-06 mean=0.136163 max=1.40684 + decay R [mm] : min=0.00268329 mean=40.8178 max=421.732 + decay X [mm] : min=0.00268329 mean=40.8178 max=421.732 + decay Y [mm] : min=-0.208351 mean=-0.00435182 max=0.0162766 + decay Z [mm] : min=-0.0133898 mean=4.47824e-06 max=0.0113011 + Delta decay R [mm] : min=4.33681e-19 mean=1.49498e-07 max=1.80444e-05 + deflection angle [deg] : min=8.53688e-07 mean=0.00562454 max=0.0568699 + Delta Ekin [MeV] : min=0 mean=6.0978 max=597.526 + decay Ekin [GeV] : min=499.402 mean=499.994 max=500 + decay Px [GeV] : min=505.164 mean=505.755 max=505.761 + decay Py [GeV] : min=-0.502045 mean=-0.0490181 max=0.222805 + decay Pz [GeV] : min=-0.0938571 mean=0.000102129 max=0.279884 + decay Etot violation [MeV] : min=-2.16131e-06 mean=-7.64811e-08 max=2.02295e-06 + decay Px violation [MeV] : min=-2.16148e-06 mean=-7.64824e-08 max=2.02307e-06 + decay Py violation [MeV] : min=-5.9768e-10 mean=6.9496e-12 max=7.12475e-10 + decay Pz violation [MeV] : min=-5.45299e-10 mean=-1.02951e-13 max=1.36794e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 0 , 0.0184336 (mean=0.00346811) + maxMass_deltaMax{1,2,3} [eV] = 0 , 0 , 0.0157997 (mean=0.0034266) maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.20792e-10 , 1.20792e-10 + maxGamma_deltaMax{1,2,3} = 0 , 1.19002e-10 , 1.19002e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 maxMc_truth_rPos_deltaMax [mum] = 0 (mean=0) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -234.677 (mean=-0.336732) (#above threshold = 130) - maxOverestimated_mc_truth_rPos_delta [mum] = 95.0138 (mean=0.451693) (#above threshold = 1238) - minUnderestimated_rDeltaPos [mum] = -234.668 (mean=-0.336588) (#above threshold = 130) - maxOverestimated_rDeltaPos [mum] = 95.0263 (mean=0.451836) (#above threshold = 1238) + minUnderestimated_mc_truth_rPos_delta [mum] = -26.1273 (mean=-0.279755) (#above threshold = 119) + maxOverestimated_mc_truth_rPos_delta [mum] = 32.1022 (mean=0.414046) (#above threshold = 1222) + minUnderestimated_rDeltaPos [mum] = -26.1272 (mean=-0.279606) (#above threshold = 119) + maxOverestimated_rDeltaPos [mum] = 32.1065 (mean=0.414195) (#above threshold = 1222) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0393062 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0391319 ============================================= @@ -2839,20 +2839,20 @@ Index : 1 used in the geometry : Yes ### Run 30 starts. ### Run 30 starts. - Event#=0 t[ns]=0.0773155 r[mm]=23.1769 deltaR[mum]=9.76451e-05 deltaEkin[MeV]=31.7569 deltaAngle(deg)=0.00475263 - Event#=1000 t[ns]=0.0441941 r[mm]=13.2481 deltaR[mum]=1.41407e-06 deltaEkin[MeV]=2.00083 deltaAngle(deg)=0.0021465 - Event#=2000 t[ns]=0.0241703 r[mm]=7.24554 deltaR[mum]=8.90097e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.00098372 - Event#=3000 t[ns]=0.0057953 r[mm]=1.73726 deltaR[mum]=1.22702e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000235867 - Event#=4000 t[ns]=0.138938 r[mm]=41.6495 deltaR[mum]=4.54782e-05 deltaEkin[MeV]=8.27521 deltaAngle(deg)=0.00628345 - Event#=5000 t[ns]=0.314873 r[mm]=94.3899 deltaR[mum]=0.000236159 deltaEkin[MeV]=6.8455 deltaAngle(deg)=0.0115911 - Event#=6000 t[ns]=0.142252 r[mm]=42.6429 deltaR[mum]=8.52559e-05 deltaEkin[MeV]=11.3895 deltaAngle(deg)=0.00560826 - Event#=7000 t[ns]=0.000479583 r[mm]=0.143765 deltaR[mum]=6.66134e-13 deltaEkin[MeV]=0 deltaAngle(deg)=1.95045e-05 - Event#=8000 t[ns]=0.185287 r[mm]=55.5435 deltaR[mum]=8.32013e-05 deltaEkin[MeV]=7.99987 deltaAngle(deg)=0.00646083 - Event#=9000 t[ns]=0.0686742 r[mm]=20.5865 deltaR[mum]=1.5446e-06 deltaEkin[MeV]=4.94306 deltaAngle(deg)=0.00296334 + Event#=0 t[ns]=0.00210329 r[mm]=0.630504 deltaR[mum]=5.83977e-11 deltaEkin[MeV]=0 deltaAngle(deg)=8.55989e-05 + Event#=1000 t[ns]=0.269916 r[mm]=80.9129 deltaR[mum]=0.000212639 deltaEkin[MeV]=6.99213 deltaAngle(deg)=0.0117515 + Event#=2000 t[ns]=0.170939 r[mm]=51.2425 deltaR[mum]=6.43416e-05 deltaEkin[MeV]=7.13347 deltaAngle(deg)=0.00657452 + Event#=3000 t[ns]=0.0506279 r[mm]=15.1768 deltaR[mum]=7.48537e-07 deltaEkin[MeV]=2.06873 deltaAngle(deg)=0.002134 + Event#=4000 t[ns]=0.00541729 r[mm]=1.62395 deltaR[mum]=1.00231e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.000220481 + Event#=5000 t[ns]=0.0395909 r[mm]=11.8682 deltaR[mum]=1.22195e-06 deltaEkin[MeV]=10.5202 deltaAngle(deg)=0.00188723 + Event#=6000 t[ns]=0.395069 r[mm]=118.43 deltaR[mum]=0.000540013 deltaEkin[MeV]=7.16973 deltaAngle(deg)=0.0161128 + Event#=7000 t[ns]=0.325395 r[mm]=97.544 deltaR[mum]=0.00031432 deltaEkin[MeV]=7.11262 deltaAngle(deg)=0.013422 + Event#=8000 t[ns]=0.00531136 r[mm]=1.59219 deltaR[mum]=9.44578e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.00021617 + Event#=9000 t[ns]=0.0436899 r[mm]=13.097 deltaR[mum]=5.3744e-07 deltaEkin[MeV]=1.4358 deltaAngle(deg)=0.00199668 Run terminated. Run Summary Number of events processed : 10000 - User=0.380000s Real=0.381559s Sys=0.000000s + User=0.210000s Real=0.485310s Sys=0.000000s ============ Run::printInfo() =============== RunID = 30 @@ -2869,45 +2869,45 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9787 + # Decays = 9826 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=8.60919e-06 mean=0.13741 max=1.63345 - decay R [mm] : min=0.00258078 mean=41.1916 max=489.662 - decay X [mm] : min=0.00258078 mean=41.1916 max=489.662 - decay Y [mm] : min=-0.0152006 mean=0.0044001 max=0.288292 - decay Z [mm] : min=-0.016036 mean=-2.77276e-07 max=0.0297136 - Delta decay R [mm] : min=0 mean=1.64052e-07 max=4.03387e-05 - deflection angle [deg] : min=0 mean=0.00566145 max=0.0670143 - Delta Ekin [MeV] : min=0 mean=6.45555 max=1342.6 - decay Ekin [GeV] : min=498.657 mean=499.994 max=500 - decay Px [GeV] : min=504.667 mean=506.004 max=506.01 - decay Py [GeV] : min=-0.0907033 mean=0.0495373 max=0.591625 - decay Pz [GeV] : min=-0.169075 mean=1.21408e-05 max=0.133818 - decay Etot violation [MeV] : min=-1.2755e-06 mean=1.4932e-07 max=1.93185e-06 - decay Px violation [MeV] : min=-1.2755e-06 mean=1.49311e-07 max=1.93191e-06 - decay Py violation [MeV] : min=-5.86624e-10 mean=1.07179e-11 max=7.79437e-10 - decay Pz violation [MeV] : min=-1.93438e-10 mean=-6.72494e-14 max=1.00918e-10 + decay T [ns] : min=7.6336e-06 mean=0.136185 max=1.13622 + decay R [mm] : min=0.00228833 mean=40.8243 max=340.606 + decay X [mm] : min=0.00228833 mean=40.8243 max=340.606 + decay Y [mm] : min=-0.0045383 mean=0.00429051 max=0.139535 + decay Z [mm] : min=-0.0265067 mean=-1.37072e-05 max=0.0225382 + Delta decay R [mm] : min=-3.46945e-18 mean=1.53113e-07 max=1.67415e-05 + deflection angle [deg] : min=0 mean=0.00559013 max=0.0466066 + Delta Ekin [MeV] : min=0 mean=6.36042 max=1223.08 + decay Ekin [GeV] : min=498.777 mean=499.994 max=500 + decay Px [GeV] : min=504.787 mean=506.004 max=506.01 + decay Py [GeV] : min=-0.0972589 mean=0.0489144 max=0.411616 + decay Pz [GeV] : min=-0.150415 mean=-0.000156777 max=0.181704 + decay Etot violation [MeV] : min=-1.37498e-06 mean=1.45692e-07 max=1.64099e-06 + decay Px violation [MeV] : min=-1.37504e-06 mean=1.45682e-07 max=1.64105e-06 + decay Py violation [MeV] : min=-5.5843e-10 mean=1.04915e-11 max=7.32314e-10 + decay Pz violation [MeV] : min=-1.6756e-10 mean=3.98581e-14 max=2.062e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0158498 (mean=0.00439656) - maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.06212e-10 , 1.06212e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0183736 (mean=0.00442858) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 5.55112e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.07448e-10 , 1.07448e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 1.13687e-10 (mean=4.47168e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=4.42321e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -58.9033 (mean=-0.290821) (#above threshold = 112) - maxOverestimated_mc_truth_rPos_delta [mum] = 276.992 (mean=0.47755) (#above threshold = 1252) - minUnderestimated_rDeltaPos [mum] = -58.863 (mean=-0.290657) (#above threshold = 112) - maxOverestimated_rDeltaPos [mum] = 277.033 (mean=0.477714) (#above threshold = 1253) + minUnderestimated_mc_truth_rPos_delta [mum] = -33.0101 (mean=-0.28928) (#above threshold = 147) + maxOverestimated_mc_truth_rPos_delta [mum] = 116.185 (mean=0.440117) (#above threshold = 1194) + minUnderestimated_rDeltaPos [mum] = -33.0011 (mean=-0.289126) (#above threshold = 147) + maxOverestimated_rDeltaPos [mum] = 116.202 (mean=0.44027) (#above threshold = 1194) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0657328 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0708957 ============================================= @@ -2931,20 +2931,20 @@ Index : 1 used in the geometry : Yes ### Run 31 starts. ### Run 31 starts. - Event#=0 t[ns]=0.0438123 r[mm]=13.1337 deltaR[mum]=1.65076e-06 deltaEkin[MeV]=2.58697 deltaAngle(deg)=0.00207744 - Event#=1000 t[ns]=0.0349795 r[mm]=10.4858 deltaR[mum]=3.04853e-07 deltaEkin[MeV]=0.5417 deltaAngle(deg)=0.00167043 - Event#=2000 t[ns]=0.164507 r[mm]=49.3146 deltaR[mum]=9.3173e-05 deltaEkin[MeV]=9.04616 deltaAngle(deg)=0.00691195 - Event#=3000 t[ns]=0.0405901 r[mm]=12.1677 deltaR[mum]=4.5249e-07 deltaEkin[MeV]=1.09127 deltaAngle(deg)=0.00171054 - Event#=4000 t[ns]=0.000417492 r[mm]=0.125152 deltaR[mum]=4.71845e-13 deltaEkin[MeV]=0 deltaAngle(deg)=1.69667e-05 - Event#=5000 t[ns]=0.225307 r[mm]=67.5404 deltaR[mum]=0.00016068 deltaEkin[MeV]=8.90404 deltaAngle(deg)=0.00926902 - Event#=6000 t[ns]=0.461706 r[mm]=138.406 deltaR[mum]=0.00111759 deltaEkin[MeV]=13.1453 deltaAngle(deg)=0.0200924 - Event#=7000 t[ns]=0.00903255 r[mm]=2.7077 deltaR[mum]=4.64517e-09 deltaEkin[MeV]=0 deltaAngle(deg)=0.00036762 - Event#=8000 t[ns]=0.0305696 r[mm]=9.16389 deltaR[mum]=1.86013e-07 deltaEkin[MeV]=0.0555526 deltaAngle(deg)=0.001158 - Event#=9000 t[ns]=0.109514 r[mm]=32.8292 deltaR[mum]=3.17202e-05 deltaEkin[MeV]=7.505 deltaAngle(deg)=0.00600692 + Event#=0 t[ns]=0.0427818 r[mm]=12.8247 deltaR[mum]=5.12115e-07 deltaEkin[MeV]=1.64665 deltaAngle(deg)=0.00168231 + Event#=1000 t[ns]=0.0230412 r[mm]=6.9071 deltaR[mum]=7.71108e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.00093777 + Event#=2000 t[ns]=0.133412 r[mm]=39.9932 deltaR[mum]=5.30673e-05 deltaEkin[MeV]=7.67542 deltaAngle(deg)=0.0063448 + Event#=3000 t[ns]=0.0244441 r[mm]=7.32763 deltaR[mum]=9.20704e-08 deltaEkin[MeV]=0 deltaAngle(deg)=0.000994865 + Event#=4000 t[ns]=0.0984137 r[mm]=29.5016 deltaR[mum]=5.33124e-06 deltaEkin[MeV]=7.22103 deltaAngle(deg)=0.00387027 + Event#=5000 t[ns]=0.00481436 r[mm]=1.44321 deltaR[mum]=7.03881e-10 deltaEkin[MeV]=0 deltaAngle(deg)=0.000195941 + Event#=6000 t[ns]=0.480079 r[mm]=143.914 deltaR[mum]=0.00097898 deltaEkin[MeV]=6.80626 deltaAngle(deg)=0.0202463 + Event#=7000 t[ns]=0.101121 r[mm]=30.3131 deltaR[mum]=2.06145e-05 deltaEkin[MeV]=7.91889 deltaAngle(deg)=0.00393136 + Event#=8000 t[ns]=0.138354 r[mm]=41.4746 deltaR[mum]=3.4132e-05 deltaEkin[MeV]=6.46978 deltaAngle(deg)=0.00551962 + Event#=9000 t[ns]=0.315887 r[mm]=94.6939 deltaR[mum]=0.000297312 deltaEkin[MeV]=7.01301 deltaAngle(deg)=0.0131849 Run terminated. Run Summary Number of events processed : 10000 - User=0.520000s Real=0.525835s Sys=0.000000s + User=0.230000s Real=0.461570s Sys=0.000000s ============ Run::printInfo() =============== RunID = 31 @@ -2961,48 +2961,48 @@ Run Summary isPreassignedDecayEnabled = 1 isBoostToLabEnabled = 1 # Events = 10000 - # Decays = 9788 + # Decays = 9799 (# Bad decays = 0 ) (# Unexpected decays = 0 ) # E violations = 0 # P violations = 0 - decay T [ns] : min=2.97191e-06 mean=0.135826 max=1.25697 - decay R [mm] : min=0.000890892 mean=40.7168 max=376.802 - decay X [mm] : min=0.000890892 mean=40.7168 max=376.802 - decay Y [mm] : min=-0.166802 mean=-0.004258 max=0.00551836 - decay Z [mm] : min=-0.0173959 mean=1.16419e-05 max=0.0187878 - Delta decay R [mm] : min=-1.73472e-18 mean=1.61375e-07 max=6.63696e-05 - deflection angle [deg] : min=0 mean=0.00558411 max=0.0509357 - Delta Ekin [MeV] : min=0 mean=6.67224 max=1896.48 - decay Ekin [GeV] : min=498.104 mean=499.993 max=500 - decay Px [GeV] : min=504.113 mean=506.003 max=506.01 - decay Py [GeV] : min=-0.449672 mean=-0.0488357 max=0.0619739 - decay Pz [GeV] : min=-0.0908656 mean=6.10245e-05 max=0.151563 - decay Etot violation [MeV] : min=-1.40467e-06 mean=1.54529e-07 max=1.99536e-06 - decay Px violation [MeV] : min=-1.40478e-06 mean=1.54518e-07 max=1.9953e-06 - decay Py violation [MeV] : min=-9.16089e-10 mean=-1.04468e-11 max=5.08578e-10 - decay Pz violation [MeV] : min=-2.09937e-10 mean=-1.30628e-14 max=1.70957e-10 + decay T [ns] : min=7.31734e-05 mean=0.137032 max=1.4367 + decay R [mm] : min=0.0219353 mean=41.0784 max=430.681 + decay X [mm] : min=0.0219353 mean=41.0784 max=430.681 + decay Y [mm] : min=-0.214914 mean=-0.00431217 max=0.00668866 + decay Z [mm] : min=-0.0338999 mean=-1.20243e-05 max=0.0136738 + Delta decay R [mm] : min=0 mean=1.59099e-07 max=5.32722e-05 + deflection angle [deg] : min=2.95726e-06 mean=0.00564629 max=0.057788 + Delta Ekin [MeV] : min=0 mean=6.70523 max=3740.08 + decay Ekin [GeV] : min=496.26 mean=499.993 max=500 + decay Px [GeV] : min=502.27 mean=506.003 max=506.01 + decay Py [GeV] : min=-0.510303 mean=-0.0493002 max=0.358224 + decay Pz [GeV] : min=-0.291008 mean=-6.34288e-05 max=0.12859 + decay Etot violation [MeV] : min=-1.53418e-06 mean=1.51223e-07 max=1.69728e-06 + decay Px violation [MeV] : min=-1.5343e-06 mean=1.51214e-07 max=1.69716e-06 + decay Py violation [MeV] : min=-5.47914e-10 mean=-1.05556e-11 max=5.80769e-10 + decay Pz violation [MeV] : min=-2.2618e-10 mean=1.75496e-14 max=1.71894e-10 --- Consistency checks --- maxEkin_deltaMax [eV] = 0 maxEtot_deltaMax [eV] = 0 maxP_deltaMax [eV] = 0 maxPdir_deltaMax = 0 - maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0183736 (mean=0.00446447) - maxBeta_deltaMax{1,2} = 4.44089e-16 , 4.44089e-16 - maxGamma_deltaMax{1,2,3} = 0 , 1.03924e-10 , 1.03924e-10 + maxMass_deltaMax{1,2,3} [eV] = 0 , 2.36469e-05 , 0.0158498 (mean=0.00441965) + maxBeta_deltaMax{1,2} = 3.33067e-16 , 4.44089e-16 + maxGamma_deltaMax{1,2,3} = 0 , 1.06766e-10 , 1.06766e-10 maxT_proper_deltaMax [fs] = 0 maxT_lab_deltaMax [fs] = 0 - maxMc_truth_rPos_deltaMax [mum] = 5.68434e-11 (mean=4.56327e-12) (# above threshold = 0) + maxMc_truth_rPos_deltaMax [mum] = 1.13687e-10 (mean=4.51265e-12) (# above threshold = 0) --- Extra checks --- - minUnderestimated_mc_truth_rPos_delta [mum] = -72.3752 (mean=-0.303503) (#above threshold = 134) - maxOverestimated_mc_truth_rPos_delta [mum] = 458.168 (mean=0.506811) (#above threshold = 1260) - minUnderestimated_rDeltaPos [mum] = -72.3089 (mean=-0.303341) (#above threshold = 134) - maxOverestimated_rDeltaPos [mum] = 458.235 (mean=0.506973) (#above threshold = 1261) + minUnderestimated_mc_truth_rPos_delta [mum] = -91.1465 (mean=-0.302283) (#above threshold = 119) + maxOverestimated_mc_truth_rPos_delta [mum] = 371.162 (mean=0.478908) (#above threshold = 1251) + minUnderestimated_rDeltaPos [mum] = -91.0933 (mean=-0.302124) (#above threshold = 119) + maxOverestimated_rDeltaPos [mum] = 371.216 (mean=0.479067) (#above threshold = 1252) --- float instead of double --- - fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0437214 + fMaxFloat_rDeltaPos_deltaMax [mum] = 0.0500179 ============================================= ================== Deleting memory pools =================== Number of memory pools allocated: 11 of which, static: 0 -Dynamic pools deleted: 11 / Total memory freed: 0.064 MB +Dynamic pools deleted: 11 / Total memory freed: 0.071 MB ============================================================ diff --git a/examples/extended/hadronic/NeutronSource/NeutronSource.out b/examples/extended/hadronic/NeutronSource/NeutronSource.out index 7ea6bb3755bf2cff31384eb33fa981924a770194..71f360c8649599fa04d39e7cd4f465b3dce4bc49 100644 --- a/examples/extended/hadronic/NeutronSource/NeutronSource.out +++ b/examples/extended/hadronic/NeutronSource/NeutronSource.out @@ -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 ) diff --git a/examples/extended/hadronic/ParticleFluence/Calo/Calo.out b/examples/extended/hadronic/ParticleFluence/Calo/Calo.out index 12b51f0c799c8c49c501ed4f862cc3a513b3265d..00eddb5fa9ca59896b8a5b8648127e18a1f9d7ab 100644 --- a/examples/extended/hadronic/ParticleFluence/Calo/Calo.out +++ b/examples/extended/hadronic/ParticleFluence/Calo/Calo.out @@ -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 ============================================================ diff --git a/examples/extended/hadronic/ParticleFluence/ConcentricSpheres/ConcentricSpheres.out b/examples/extended/hadronic/ParticleFluence/ConcentricSpheres/ConcentricSpheres.out index 5af29a14d0136aeacb53ff9e3b1af27486a7b684..8a7d4419ce3854c83f1ed2778b3da7a743752d6f 100644 --- a/examples/extended/hadronic/ParticleFluence/ConcentricSpheres/ConcentricSpheres.out +++ b/examples/extended/hadronic/ParticleFluence/ConcentricSpheres/ConcentricSpheres.out @@ -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 @@ -843,7 +843,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=38.850000s Real=39.461773s Sys=0.150000s + User=24.360000s Real=24.385843s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 0 @@ -859,198 +859,198 @@ 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 tracker forward all 0.0606157 - case= 1 tracker forward electron 0.000775592 - case= 2 tracker forward gamma 0.0140004 - case= 3 tracker forward muon 2.45742e-06 - case= 4 tracker forward neutrino 0.000650575 - case= 5 tracker forward pion 0.000593233 - case= 6 tracker forward neutron 0.0444257 - case= 7 tracker forward proton 0.000113778 - case= 8 tracker forward ion 1.66827e-05 - case= 9 tracker forward otherMeson 3.63763e-05 - case= 10 tracker forward otherBaryon 8.69332e-07 - case= 11 tracker backward all 0.00795574 - case= 12 tracker backward electron 7.45327e-05 - case= 13 tracker backward gamma 0.00295108 + case= 0 tracker forward all 0.0585951 + case= 1 tracker forward electron 0.000699794 + case= 2 tracker forward gamma 0.0135859 + case= 3 tracker forward muon 0 + case= 4 tracker forward neutrino 0.000581685 + case= 5 tracker forward pion 0.00051682 + case= 6 tracker forward neutron 0.0431071 + case= 7 tracker forward proton 7.39572e-05 + case= 8 tracker forward ion 1.13147e-05 + case= 9 tracker forward otherMeson 1.85094e-05 + case= 10 tracker forward otherBaryon 0 + case= 11 tracker backward all 0.00774101 + case= 12 tracker backward electron 9.13896e-05 + case= 13 tracker backward gamma 0.00291672 case= 14 tracker backward muon 1.35564e-06 - case= 15 tracker backward neutrino 0.000220191 + case= 15 tracker backward neutrino 0.000216396 case= 16 tracker backward pion 1.86263e-06 - case= 17 tracker backward neutron 0.00470416 + case= 17 tracker backward neutron 0.00451073 case= 18 tracker backward proton 2.55391e-06 case= 19 tracker backward ion 0 case= 20 tracker backward otherMeson 0 case= 21 tracker backward otherBaryon 0 - case= 22 tracker below 20 MeV forward all 0.0576686 - case= 23 tracker below 20 MeV forward electron 0.000615053 - case= 24 tracker below 20 MeV forward gamma 0.0134079 + case= 22 tracker below 20 MeV forward all 0.0560642 + case= 23 tracker below 20 MeV forward electron 0.000577664 + case= 24 tracker below 20 MeV forward gamma 0.0130983 case= 25 tracker below 20 MeV forward muon 0 - case= 26 tracker below 20 MeV forward neutrino 2.37638e-05 - case= 27 tracker below 20 MeV forward pion 5.84641e-06 - case= 28 tracker below 20 MeV forward neutron 0.0436043 + case= 26 tracker below 20 MeV forward neutrino 3.0043e-05 + case= 27 tracker below 20 MeV forward pion 3.2986e-06 + case= 28 tracker below 20 MeV forward neutron 0.0423432 case= 29 tracker below 20 MeV forward proton 4.00048e-06 case= 30 tracker below 20 MeV forward ion 4.43023e-06 case= 31 tracker below 20 MeV forward otherMeson 3.31768e-06 case= 32 tracker below 20 MeV forward otherBaryon 0 - case= 33 tracker below 20 MeV backward all 0.00756546 - case= 34 tracker below 20 MeV backward electron 7.15844e-05 - case= 35 tracker below 20 MeV backward gamma 0.00293675 + case= 33 tracker below 20 MeV backward all 0.00739594 + case= 34 tracker below 20 MeV backward electron 8.84414e-05 + case= 35 tracker below 20 MeV backward gamma 0.00290824 case= 36 tracker below 20 MeV backward muon 1.35564e-06 - case= 37 tracker below 20 MeV backward neutrino 1.54317e-05 + case= 37 tracker below 20 MeV backward neutrino 2.21987e-05 case= 38 tracker below 20 MeV backward pion 1.86263e-06 - case= 39 tracker below 20 MeV backward neutron 0.00453847 + case= 39 tracker below 20 MeV backward neutron 0.00437384 case= 40 tracker below 20 MeV backward proton 0 case= 41 tracker below 20 MeV backward ion 0 case= 42 tracker below 20 MeV backward otherMeson 0 case= 43 tracker below 20 MeV backward otherBaryon 0 - case= 44 tracker above 20 MeV forward all 0.0029471 - case= 45 tracker above 20 MeV forward electron 0.000160539 - case= 46 tracker above 20 MeV forward gamma 0.000592507 - case= 47 tracker above 20 MeV forward muon 2.45742e-06 - case= 48 tracker above 20 MeV forward neutrino 0.000626812 - case= 49 tracker above 20 MeV forward pion 0.000587387 - case= 50 tracker above 20 MeV forward neutron 0.000821444 - case= 51 tracker above 20 MeV forward proton 0.000109778 - case= 52 tracker above 20 MeV forward ion 1.22524e-05 - case= 53 tracker above 20 MeV forward otherMeson 3.30586e-05 - case= 54 tracker above 20 MeV forward otherBaryon 8.69332e-07 - case= 55 tracker above 20 MeV backward all 0.000390276 + case= 44 tracker above 20 MeV forward all 0.00253089 + case= 45 tracker above 20 MeV forward electron 0.00012213 + case= 46 tracker above 20 MeV forward gamma 0.000487637 + case= 47 tracker above 20 MeV forward muon 0 + case= 48 tracker above 20 MeV forward neutrino 0.000551642 + case= 49 tracker above 20 MeV forward pion 0.000513521 + case= 50 tracker above 20 MeV forward neutron 0.000763926 + case= 51 tracker above 20 MeV forward proton 6.99567e-05 + case= 52 tracker above 20 MeV forward ion 6.88442e-06 + case= 53 tracker above 20 MeV forward otherMeson 1.51918e-05 + case= 54 tracker above 20 MeV forward otherBaryon 0 + case= 55 tracker above 20 MeV backward all 0.000345067 case= 56 tracker above 20 MeV backward electron 2.94825e-06 - case= 57 tracker above 20 MeV backward gamma 1.43272e-05 + case= 57 tracker above 20 MeV backward gamma 8.48197e-06 case= 58 tracker above 20 MeV backward muon 0 - case= 59 tracker above 20 MeV backward neutrino 0.000204759 + case= 59 tracker above 20 MeV backward neutrino 0.000194197 case= 60 tracker above 20 MeV backward pion 0 - case= 61 tracker above 20 MeV backward neutron 0.000165687 + case= 61 tracker above 20 MeV backward neutron 0.000136885 case= 62 tracker above 20 MeV backward proton 2.55391e-06 case= 63 tracker above 20 MeV backward ion 0 case= 64 tracker above 20 MeV backward otherMeson 0 case= 65 tracker above 20 MeV backward otherBaryon 0 - case= 66 emCalo forward all 0.073547 - case= 67 emCalo forward electron 0.00100445 - case= 68 emCalo forward gamma 0.0188577 - case= 69 emCalo forward muon 2.80026e-06 - case= 70 emCalo forward neutrino 0.000585971 - case= 71 emCalo forward pion 0.000218032 - case= 72 emCalo forward neutron 0.0527601 - case= 73 emCalo forward proton 9.13414e-05 - case= 74 emCalo forward ion 3.40705e-06 - case= 75 emCalo forward otherMeson 2.18125e-05 - case= 76 emCalo forward otherBaryon 1.42198e-06 - case= 77 emCalo backward all 0.00431056 - case= 78 emCalo backward electron 4.70018e-05 - case= 79 emCalo backward gamma 0.000528134 + case= 66 emCalo forward all 0.0778323 + case= 67 emCalo forward electron 0.00112316 + case= 68 emCalo forward gamma 0.0207 + case= 69 emCalo forward muon 3.13886e-06 + case= 70 emCalo forward neutrino 0.000547511 + case= 71 emCalo forward pion 0.00024643 + case= 72 emCalo forward neutron 0.0550917 + case= 73 emCalo forward proton 9.346e-05 + case= 74 emCalo forward ion 6.31254e-06 + case= 75 emCalo forward otherMeson 1.9013e-05 + case= 76 emCalo forward otherBaryon 1.50803e-06 + case= 77 emCalo backward all 0.00435391 + case= 78 emCalo backward electron 5.14192e-05 + case= 79 emCalo backward gamma 0.000547831 case= 80 emCalo backward muon 0 - case= 81 emCalo backward neutrino 0.000123395 + case= 81 emCalo backward neutrino 0.000108282 case= 82 emCalo backward pion 0 - case= 83 emCalo backward neutron 0.00361203 + case= 83 emCalo backward neutron 0.00364638 case= 84 emCalo backward proton 0 case= 85 emCalo backward ion 0 case= 86 emCalo backward otherMeson 0 case= 87 emCalo backward otherBaryon 0 - case= 88 emCalo below 20 MeV forward all 0.0714346 - case= 89 emCalo below 20 MeV forward electron 0.000879643 - case= 90 emCalo below 20 MeV forward gamma 0.0185211 + case= 88 emCalo below 20 MeV forward all 0.0755857 + case= 89 emCalo below 20 MeV forward electron 0.000966892 + case= 90 emCalo below 20 MeV forward gamma 0.0203302 case= 91 emCalo below 20 MeV forward muon 0 - case= 92 emCalo below 20 MeV forward neutrino 6.78109e-05 - case= 93 emCalo below 20 MeV forward pion 2.15021e-06 - case= 94 emCalo below 20 MeV forward neutron 0.0519595 - case= 95 emCalo below 20 MeV forward proton 3.19327e-06 - case= 96 emCalo below 20 MeV forward ion 1.28509e-06 - case= 97 emCalo below 20 MeV forward otherMeson 0 + case= 92 emCalo below 20 MeV forward neutrino 5.79993e-05 + case= 93 emCalo below 20 MeV forward pion 2.1798e-06 + case= 94 emCalo below 20 MeV forward neutron 0.0542229 + case= 95 emCalo below 20 MeV forward proton 3.65473e-06 + case= 96 emCalo below 20 MeV forward ion 1.14231e-06 + case= 97 emCalo below 20 MeV forward otherMeson 7.46586e-07 case= 98 emCalo below 20 MeV forward otherBaryon 0 - case= 99 emCalo below 20 MeV backward all 0.00418994 - case=100 emCalo below 20 MeV backward electron 4.70018e-05 - case=101 emCalo below 20 MeV backward gamma 0.000528134 + case= 99 emCalo below 20 MeV backward all 0.0042451 + case=100 emCalo below 20 MeV backward electron 5.14192e-05 + case=101 emCalo below 20 MeV backward gamma 0.000547831 case=102 emCalo below 20 MeV backward muon 0 - case=103 emCalo below 20 MeV backward neutrino 1.2207e-05 + case=103 emCalo below 20 MeV backward neutrino 1.0989e-05 case=104 emCalo below 20 MeV backward pion 0 - case=105 emCalo below 20 MeV backward neutron 0.0036026 + case=105 emCalo below 20 MeV backward neutron 0.00363486 case=106 emCalo below 20 MeV backward proton 0 case=107 emCalo below 20 MeV backward ion 0 case=108 emCalo below 20 MeV backward otherMeson 0 case=109 emCalo below 20 MeV backward otherBaryon 0 - case=110 emCalo above 20 MeV forward all 0.00211237 - case=111 emCalo above 20 MeV forward electron 0.000124804 - case=112 emCalo above 20 MeV forward gamma 0.000336551 - case=113 emCalo above 20 MeV forward muon 2.80026e-06 - case=114 emCalo above 20 MeV forward neutrino 0.00051816 - case=115 emCalo above 20 MeV forward pion 0.000215881 - case=116 emCalo above 20 MeV forward neutron 0.00080067 - case=117 emCalo above 20 MeV forward proton 8.81481e-05 - case=118 emCalo above 20 MeV forward ion 2.12195e-06 - case=119 emCalo above 20 MeV forward otherMeson 2.18125e-05 - case=120 emCalo above 20 MeV forward otherBaryon 1.42198e-06 - case=121 emCalo above 20 MeV backward all 0.000120612 + case=110 emCalo above 20 MeV forward all 0.00224656 + case=111 emCalo above 20 MeV forward electron 0.000156265 + case=112 emCalo above 20 MeV forward gamma 0.000369853 + case=113 emCalo above 20 MeV forward muon 3.13886e-06 + case=114 emCalo above 20 MeV forward neutrino 0.000489512 + case=115 emCalo above 20 MeV forward pion 0.00024425 + case=116 emCalo above 20 MeV forward neutron 0.000868787 + case=117 emCalo above 20 MeV forward proton 8.98053e-05 + case=118 emCalo above 20 MeV forward ion 5.17022e-06 + case=119 emCalo above 20 MeV forward otherMeson 1.82664e-05 + case=120 emCalo above 20 MeV forward otherBaryon 1.50803e-06 + case=121 emCalo above 20 MeV backward all 0.000108812 case=122 emCalo above 20 MeV backward electron 0 case=123 emCalo above 20 MeV backward gamma 0 case=124 emCalo above 20 MeV backward muon 0 - case=125 emCalo above 20 MeV backward neutrino 0.000111188 + case=125 emCalo above 20 MeV backward neutrino 9.72929e-05 case=126 emCalo above 20 MeV backward pion 0 - case=127 emCalo above 20 MeV backward neutron 9.42428e-06 + case=127 emCalo above 20 MeV backward neutron 1.15192e-05 case=128 emCalo above 20 MeV backward proton 0 case=129 emCalo above 20 MeV backward ion 0 case=130 emCalo above 20 MeV backward otherMeson 0 case=131 emCalo above 20 MeV backward otherBaryon 0 - case=132 hadCalo forward all 0.000310963 - case=133 hadCalo forward electron 3.99304e-06 - case=134 hadCalo forward gamma 0.000136935 + case=132 hadCalo forward all 0.00024823 + case=133 hadCalo forward electron 2.70585e-06 + case=134 hadCalo forward gamma 7.95091e-05 case=135 hadCalo forward muon 5.48197e-08 - case=136 hadCalo forward neutrino 8.36203e-05 - case=137 hadCalo forward pion 8.8286e-07 - case=138 hadCalo forward neutron 8.47057e-05 - case=139 hadCalo forward proton 6.60061e-07 + case=136 hadCalo forward neutrino 8.11011e-05 + case=137 hadCalo forward pion 6.52681e-07 + case=138 hadCalo forward neutron 8.37165e-05 + case=139 hadCalo forward proton 4.35716e-07 case=140 hadCalo forward ion 0 - case=141 hadCalo forward otherMeson 1.11535e-07 + case=141 hadCalo forward otherMeson 5.47574e-08 case=142 hadCalo forward otherBaryon 0 - case=143 hadCalo backward all 3.15951e-05 + case=143 hadCalo backward all 3.00139e-05 case=144 hadCalo backward electron 0 case=145 hadCalo backward gamma 0 case=146 hadCalo backward muon 0 - case=147 hadCalo backward neutrino 3.15951e-05 + case=147 hadCalo backward neutrino 3.00139e-05 case=148 hadCalo backward pion 0 case=149 hadCalo backward neutron 0 case=150 hadCalo backward proton 0 case=151 hadCalo backward ion 0 case=152 hadCalo backward otherMeson 0 case=153 hadCalo backward otherBaryon 0 - case=154 hadCalo below 20 MeV forward all 0.000217606 - case=155 hadCalo below 20 MeV forward electron 3.11916e-06 - case=156 hadCalo below 20 MeV forward gamma 0.000133149 + case=154 hadCalo below 20 MeV forward all 0.000160236 + case=155 hadCalo below 20 MeV forward electron 1.89176e-06 + case=156 hadCalo below 20 MeV forward gamma 7.71283e-05 case=157 hadCalo below 20 MeV forward muon 0 - case=158 hadCalo below 20 MeV forward neutrino 7.02027e-06 + case=158 hadCalo below 20 MeV forward neutrino 6.96989e-06 case=159 hadCalo below 20 MeV forward pion 0 - case=160 hadCalo below 20 MeV forward neutron 7.43174e-05 + case=160 hadCalo below 20 MeV forward neutron 7.42458e-05 case=161 hadCalo below 20 MeV forward proton 0 case=162 hadCalo below 20 MeV forward ion 0 case=163 hadCalo below 20 MeV forward otherMeson 0 case=164 hadCalo below 20 MeV forward otherBaryon 0 - case=165 hadCalo below 20 MeV backward all 3.18592e-06 + case=165 hadCalo below 20 MeV backward all 2.92947e-06 case=166 hadCalo below 20 MeV backward electron 0 case=167 hadCalo below 20 MeV backward gamma 0 case=168 hadCalo below 20 MeV backward muon 0 - case=169 hadCalo below 20 MeV backward neutrino 3.18592e-06 + case=169 hadCalo below 20 MeV backward neutrino 2.92947e-06 case=170 hadCalo below 20 MeV backward pion 0 case=171 hadCalo below 20 MeV backward neutron 0 case=172 hadCalo below 20 MeV backward proton 0 case=173 hadCalo below 20 MeV backward ion 0 case=174 hadCalo below 20 MeV backward otherMeson 0 case=175 hadCalo below 20 MeV backward otherBaryon 0 - case=176 hadCalo above 20 MeV forward all 9.33576e-05 - case=177 hadCalo above 20 MeV forward electron 8.73887e-07 - case=178 hadCalo above 20 MeV forward gamma 3.78617e-06 + case=176 hadCalo above 20 MeV forward all 8.79947e-05 + case=177 hadCalo above 20 MeV forward electron 8.1409e-07 + case=178 hadCalo above 20 MeV forward gamma 2.38074e-06 case=179 hadCalo above 20 MeV forward muon 5.48197e-08 - case=180 hadCalo above 20 MeV forward neutrino 7.66e-05 - case=181 hadCalo above 20 MeV forward pion 8.8286e-07 - case=182 hadCalo above 20 MeV forward neutron 1.03883e-05 - case=183 hadCalo above 20 MeV forward proton 6.60061e-07 + case=180 hadCalo above 20 MeV forward neutrino 7.41312e-05 + case=181 hadCalo above 20 MeV forward pion 6.52681e-07 + case=182 hadCalo above 20 MeV forward neutron 9.47067e-06 + case=183 hadCalo above 20 MeV forward proton 4.35716e-07 case=184 hadCalo above 20 MeV forward ion 0 - case=185 hadCalo above 20 MeV forward otherMeson 1.11535e-07 + case=185 hadCalo above 20 MeV forward otherMeson 5.47574e-08 case=186 hadCalo above 20 MeV forward otherBaryon 0 - case=187 hadCalo above 20 MeV backward all 2.84092e-05 + case=187 hadCalo above 20 MeV backward all 2.70844e-05 case=188 hadCalo above 20 MeV backward electron 0 case=189 hadCalo above 20 MeV backward gamma 0 case=190 hadCalo above 20 MeV backward muon 0 - case=191 hadCalo above 20 MeV backward neutrino 2.84092e-05 + case=191 hadCalo above 20 MeV backward neutrino 2.70844e-05 case=192 hadCalo above 20 MeV backward pion 0 case=193 hadCalo above 20 MeV backward neutron 0 case=194 hadCalo above 20 MeV backward proton 0 @@ -1059,105 +1059,105 @@ Run Summary case=197 hadCalo above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 tracker all 165.2 93.7688 15490.6 - case= 1 tracker electron 95.04 4.76501 452.867 - case= 2 tracker gamma 10.95 249.035 2726.93 - case= 3 tracker muon 0.04 105.294 4.21174 - case= 4 tracker neutrino 0.11 50.5724 5.56296 - case= 5 tracker pion 2.89 3595.13 10389.9 - case= 6 tracker neutron 1.79 218.738 391.541 - case= 7 tracker proton 39.05 9.8872 386.095 - case= 8 tracker ion 15.02 2.51478 37.772 - case= 9 tracker otherMeson 0.28 3840.17 1075.25 - case= 10 tracker otherBaryon 0.03 682.195 20.4659 - case= 11 tracker below 20 MeV all 156.91 0.570858 89.5733 - case= 12 tracker below 20 MeV electron 94.25 0.342862 32.3148 - case= 13 tracker below 20 MeV gamma 8.35 1.34976 11.2705 + case= 0 tracker all 153.75 87.2543 13415.4 + case= 1 tracker electron 88.55 4.37225 387.163 + case= 2 tracker gamma 9.39 288.281 2706.96 + case= 3 tracker muon 0.03 4.11981 0.123594 + case= 4 tracker neutrino 0.1 36.3929 3.63929 + case= 5 tracker pion 2.41 3639.91 8772.17 + case= 6 tracker neutron 1.67 199.189 332.646 + case= 7 tracker proton 37.41 9.23682 345.549 + case= 8 tracker ion 14.02 2.20668 30.9377 + case= 9 tracker otherMeson 0.17 4918.6 836.162 + case= 10 tracker otherBaryon 0 0 0 + case= 11 tracker below 20 MeV all 146.91 0.561529 82.4942 + case= 12 tracker below 20 MeV electron 87.96 0.334673 29.4379 + case= 13 tracker below 20 MeV gamma 7.26 1.30096 9.44499 case= 14 tracker below 20 MeV muon 0.03 4.11981 0.123594 - case= 15 tracker below 20 MeV neutrino 0.02 14.3376 0.286752 - case= 16 tracker below 20 MeV pion 0.04 7.74413 0.309765 - case= 17 tracker below 20 MeV neutron 1.09 6.40226 6.97847 - case= 18 tracker below 20 MeV proton 38.42 0.677889 26.0445 - case= 19 tracker below 20 MeV ion 14.71 0.832425 12.245 + case= 15 tracker below 20 MeV neutrino 0.02 16.0286 0.320572 + case= 16 tracker below 20 MeV pion 0.03 9.65864 0.289759 + case= 17 tracker below 20 MeV neutron 0.99 6.27807 6.21529 + case= 18 tracker below 20 MeV proton 36.84 0.670324 24.6947 + case= 19 tracker below 20 MeV ion 13.78 0.868462 11.9674 case= 20 tracker below 20 MeV otherMeson 0 0 0 case= 21 tracker below 20 MeV otherBaryon 0 0 0 - case= 22 tracker above 20 MeV all 8.29 1857.78 15401 - case= 23 tracker above 20 MeV electron 0.79 532.344 420.552 - case= 24 tracker above 20 MeV gamma 2.6 1044.48 2715.66 - case= 25 tracker above 20 MeV muon 0.01 408.815 4.08815 - case= 26 tracker above 20 MeV neutrino 0.09 58.6246 5.27621 - case= 27 tracker above 20 MeV pion 2.85 3645.47 10389.6 - case= 28 tracker above 20 MeV neutron 0.7 549.375 384.562 - case= 29 tracker above 20 MeV proton 0.63 571.509 360.051 - case= 30 tracker above 20 MeV ion 0.31 82.3452 25.527 - case= 31 tracker above 20 MeV otherMeson 0.28 3840.17 1075.25 - case= 32 tracker above 20 MeV otherBaryon 0.03 682.195 20.4659 - case= 33 emCalo all 23730 5.3626 127254 - case= 34 emCalo electron 14500.1 2.90643 42143.6 - case= 35 emCalo gamma 7894.94 5.18281 40918 - case= 36 emCalo muon 1.91 24.642 47.0662 - case= 37 emCalo neutrino 5.62 36.8388 207.034 - case= 38 emCalo pion 20.27 1283.52 26016.9 - case= 39 emCalo neutron 465.99 12.0728 5625.82 - case= 40 emCalo proton 37.69 117.536 4429.93 - case= 41 emCalo ion 800.98 0.635228 508.805 - case= 42 emCalo otherMeson 2.03 3349.9 6800.29 - case= 43 emCalo otherBaryon 0.45 1237.62 556.931 - case= 44 emCalo below 20 MeV all 23187.2 0.970687 22507.5 - case= 45 emCalo below 20 MeV electron 14270 0.79733 11377.9 - case= 46 emCalo below 20 MeV gamma 7674.5 1.27879 9814.09 - case= 47 emCalo below 20 MeV muon 1.76 4.18246 7.36113 - case= 48 emCalo below 20 MeV neutrino 0.41 14.6165 5.99277 - case= 49 emCalo below 20 MeV pion 0.35 11.7583 4.11539 - case= 50 emCalo below 20 MeV neutron 428.17 2.05297 879.022 - case= 51 emCalo below 20 MeV proton 15.89 10.2273 162.511 - case= 52 emCalo below 20 MeV ion 796.02 0.321331 255.786 - case= 53 emCalo below 20 MeV otherMeson 0.08 5.45722 0.436578 - case= 54 emCalo below 20 MeV otherBaryon 0.02 15.128 0.30256 - case= 55 emCalo above 20 MeV all 542.76 192.989 104747 - case= 56 emCalo above 20 MeV electron 230.08 133.717 30765.7 - case= 57 emCalo above 20 MeV gamma 220.44 141.099 31103.9 - case= 58 emCalo above 20 MeV muon 0.15 264.701 39.7051 - case= 59 emCalo above 20 MeV neutrino 5.21 38.5876 201.041 - case= 60 emCalo above 20 MeV pion 19.92 1305.87 26012.8 - case= 61 emCalo above 20 MeV neutron 37.82 125.51 4746.8 - case= 62 emCalo above 20 MeV proton 21.8 195.753 4267.42 - case= 63 emCalo above 20 MeV ion 4.96 51.0119 253.019 - case= 64 emCalo above 20 MeV otherMeson 1.95 3487.1 6799.85 - case= 65 emCalo above 20 MeV otherBaryon 0.43 1294.48 556.628 - case= 66 hadCalo all 41611.8 3.1652 131710 - case= 67 hadCalo electron 30768.7 1.31754 40538.9 - case= 68 hadCalo gamma 8849.86 4.40731 39004.1 - case= 69 hadCalo muon 4.32 15.7748 68.147 - case= 70 hadCalo neutrino 13.04 36.6307 477.664 - case= 71 hadCalo pion 32.5 846.132 27499.3 - case= 72 hadCalo neutron 733.16 15.039 11026 - case= 73 hadCalo proton 159.35 54.633 8705.77 - case= 74 hadCalo ion 1048.04 0.723985 758.765 - case= 75 hadCalo otherMeson 2.34 1334.46 3122.63 - case= 76 hadCalo otherBaryon 0.49 1037.74 508.493 - case= 77 hadCalo below 20 MeV all 40997.2 0.65259 26754.4 - case= 78 hadCalo below 20 MeV electron 30545.6 0.435093 13290.2 - case= 79 hadCalo below 20 MeV gamma 8653.11 1.21642 10525.8 - case= 80 hadCalo below 20 MeV muon 3.96 4.13304 16.3668 - case= 81 hadCalo below 20 MeV neutrino 1.22 14.7651 18.0134 - case= 82 hadCalo below 20 MeV pion 0.9 12.0078 10.8071 - case= 83 hadCalo below 20 MeV neutron 644.22 2.54262 1638 - case= 84 hadCalo below 20 MeV proton 106.89 7.98443 853.456 - case= 85 hadCalo below 20 MeV ion 1041 0.384216 399.969 - case= 86 hadCalo below 20 MeV otherMeson 0.25 4.88354 1.22089 - case= 87 hadCalo below 20 MeV otherBaryon 0.04 13.9803 0.559211 - case= 88 hadCalo above 20 MeV all 614.62 170.765 104955 - case= 89 hadCalo above 20 MeV electron 223.11 122.131 27248.7 - case= 90 hadCalo above 20 MeV gamma 196.75 144.743 28478.3 - case= 91 hadCalo above 20 MeV muon 0.36 143.834 51.7802 - case= 92 hadCalo above 20 MeV neutrino 11.82 38.8876 459.651 - case= 93 hadCalo above 20 MeV pion 31.6 869.888 27488.5 - case= 94 hadCalo above 20 MeV neutron 88.94 105.555 9388.02 - case= 95 hadCalo above 20 MeV proton 52.46 149.682 7852.31 - case= 96 hadCalo above 20 MeV ion 7.04 50.9654 358.796 - case= 97 hadCalo above 20 MeV otherMeson 2.09 1493.5 3121.41 - case= 98 hadCalo above 20 MeV otherBaryon 0.45 1128.74 507.934 + case= 22 tracker above 20 MeV all 6.84 1949.25 13332.9 + case= 23 tracker above 20 MeV electron 0.59 606.313 357.725 + case= 24 tracker above 20 MeV gamma 2.13 1266.44 2697.52 + case= 25 tracker above 20 MeV muon 0 0 0 + case= 26 tracker above 20 MeV neutrino 0.08 41.484 3.31872 + case= 27 tracker above 20 MeV pion 2.38 3685.66 8771.88 + case= 28 tracker above 20 MeV neutron 0.68 480.045 326.43 + case= 29 tracker above 20 MeV proton 0.57 562.903 320.855 + case= 30 tracker above 20 MeV ion 0.24 79.0427 18.9703 + case= 31 tracker above 20 MeV otherMeson 0.17 4918.6 836.162 + case= 32 tracker above 20 MeV otherBaryon 0 0 0 + case= 33 emCalo all 25197.6 5.45098 137352 + case= 34 emCalo electron 15424.1 2.98837 46092.7 + case= 35 emCalo gamma 8419.38 5.31856 44779 + case= 36 emCalo muon 1.8 16.2695 29.2852 + case= 37 emCalo neutrino 5.31 34.2083 181.646 + case= 38 emCalo pion 20.96 1360.37 28513.4 + case= 39 emCalo neutron 472.42 12.6633 5982.41 + case= 40 emCalo proton 38.42 111.704 4291.67 + case= 41 emCalo ion 813.09 0.670907 545.507 + case= 42 emCalo otherMeson 1.76 3596.51 6329.86 + case= 43 emCalo otherBaryon 0.42 1443.27 606.172 + case= 44 emCalo below 20 MeV all 24615.9 0.975124 24003.6 + case= 45 emCalo below 20 MeV electron 15175.1 0.801673 12165.4 + case= 46 emCalo below 20 MeV gamma 8180.78 1.28418 10505.6 + case= 47 emCalo below 20 MeV muon 1.71 4.104 7.01784 + case= 48 emCalo below 20 MeV neutrino 0.43 14.8903 6.40281 + case= 49 emCalo below 20 MeV pion 0.3 11.6039 3.48116 + case= 50 emCalo below 20 MeV neutron 433.67 2.05177 889.792 + case= 51 emCalo below 20 MeV proton 16.17 10.2377 165.544 + case= 52 emCalo below 20 MeV ion 807.72 0.321493 259.676 + case= 53 emCalo below 20 MeV otherMeson 0.07 5.85998 0.410199 + case= 54 emCalo below 20 MeV otherBaryon 0.01 19.325 0.19325 + case= 55 emCalo above 20 MeV all 581.69 194.86 113348 + case= 56 emCalo above 20 MeV electron 248.99 136.26 33927.3 + case= 57 emCalo above 20 MeV gamma 238.6 143.644 34273.4 + case= 58 emCalo above 20 MeV muon 0.09 247.415 22.2673 + case= 59 emCalo above 20 MeV neutrino 4.88 35.9105 175.243 + case= 60 emCalo above 20 MeV pion 20.66 1379.96 28510 + case= 61 emCalo above 20 MeV neutron 38.75 131.422 5092.62 + case= 62 emCalo above 20 MeV proton 22.25 185.444 4126.12 + case= 63 emCalo above 20 MeV ion 5.37 53.2274 285.831 + case= 64 emCalo above 20 MeV otherMeson 1.69 3745.24 6329.45 + case= 65 emCalo above 20 MeV otherBaryon 0.41 1478 605.979 + case= 66 hadCalo all 40278.6 3.02878 121995 + case= 67 hadCalo electron 29744.8 1.21407 36112.4 + case= 68 hadCalo gamma 8462.53 4.07228 34461.8 + case= 69 hadCalo muon 4.22 15.6327 65.9699 + case= 70 hadCalo neutrino 12.7 36.8382 467.845 + case= 71 hadCalo pion 32.59 801.64 26125.5 + case= 72 hadCalo neutron 762.96 15.1732 11576.5 + case= 73 hadCalo proton 165.4 51.1274 8456.47 + case= 74 hadCalo ion 1090.5 0.754892 823.21 + case= 75 hadCalo otherMeson 2.39 1372.73 3280.82 + case= 76 hadCalo otherBaryon 0.51 1224.9 624.7 + case= 77 hadCalo below 20 MeV all 39703.3 0.64902 25768.2 + case= 78 hadCalo below 20 MeV electron 29544.6 0.427848 12640.6 + case= 79 hadCalo below 20 MeV gamma 8288.15 1.21516 10071.4 + case= 80 hadCalo below 20 MeV muon 3.85 4.13341 15.9136 + case= 81 hadCalo below 20 MeV neutrino 1.15 14.5324 16.7123 + case= 82 hadCalo below 20 MeV pion 0.92 12.3184 11.3329 + case= 83 hadCalo below 20 MeV neutron 670.74 2.53881 1702.88 + case= 84 hadCalo below 20 MeV proton 111.14 7.98345 887.281 + case= 85 hadCalo below 20 MeV ion 1082.44 0.388428 420.45 + case= 86 hadCalo below 20 MeV otherMeson 0.23 4.23204 0.973369 + case= 87 hadCalo below 20 MeV otherBaryon 0.04 15.5964 0.623856 + case= 88 hadCalo above 20 MeV all 575.36 167.247 96227 + case= 89 hadCalo above 20 MeV electron 200.22 117.23 23471.8 + case= 90 hadCalo above 20 MeV gamma 174.38 139.869 24390.4 + case= 91 hadCalo above 20 MeV muon 0.37 135.287 50.0563 + case= 92 hadCalo above 20 MeV neutrino 11.55 39.0591 451.133 + case= 93 hadCalo above 20 MeV pion 31.67 824.57 26114.1 + case= 94 hadCalo above 20 MeV neutron 92.22 107.066 9873.63 + case= 95 hadCalo above 20 MeV proton 54.26 139.499 7569.19 + case= 96 hadCalo above 20 MeV ion 8.06 49.9702 402.76 + case= 97 hadCalo above 20 MeV otherMeson 2.16 1518.45 3279.85 + case= 98 hadCalo above 20 MeV otherBaryon 0.47 1327.82 624.077 ============================================================= @@ -1258,7 +1258,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=58.950000s Real=59.583389s Sys=0.140000s + User=34.350000s Real=34.412384s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 1 @@ -1274,305 +1274,305 @@ 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 tracker forward all 0.383963 - case= 1 tracker forward electron 0.00158416 - case= 2 tracker forward gamma 0.0224381 - case= 3 tracker forward muon 7.96437e-06 - case= 4 tracker forward neutrino 0.000620031 - case= 5 tracker forward pion 0.000686362 - case= 6 tracker forward neutron 0.358491 - case= 7 tracker forward proton 9.69107e-05 - case= 8 tracker forward ion 8.97546e-06 - case= 9 tracker forward otherMeson 2.97014e-05 - case= 10 tracker forward otherBaryon 0 - case= 11 tracker backward all 0.243201 - case= 12 tracker backward electron 8.90337e-05 - case= 13 tracker backward gamma 0.00412888 + case= 0 tracker forward all 0.315372 + case= 1 tracker forward electron 0.00146631 + case= 2 tracker forward gamma 0.0206118 + case= 3 tracker forward muon 2.4493e-06 + case= 4 tracker forward neutrino 0.000731192 + case= 5 tracker forward pion 0.000648802 + case= 6 tracker forward neutron 0.29174 + case= 7 tracker forward proton 0.000137948 + case= 8 tracker forward ion 3.43455e-06 + case= 9 tracker forward otherMeson 2.29879e-05 + case= 10 tracker forward otherBaryon 7.34313e-06 + case= 11 tracker backward all 0.202987 + case= 12 tracker backward electron 0.000183388 + case= 13 tracker backward gamma 0.00345074 case= 14 tracker backward muon 0 - case= 15 tracker backward neutrino 0.000296376 + case= 15 tracker backward neutrino 0.000274167 case= 16 tracker backward pion 0 - case= 17 tracker backward neutron 0.238687 + case= 17 tracker backward neutron 0.199078 case= 18 tracker backward proton 0 case= 19 tracker backward ion 0 case= 20 tracker backward otherMeson 0 case= 21 tracker backward otherBaryon 0 - case= 22 tracker below 20 MeV forward all 0.379571 - case= 23 tracker below 20 MeV forward electron 0.00101057 - case= 24 tracker below 20 MeV forward gamma 0.0215177 + case= 22 tracker below 20 MeV forward all 0.311243 + case= 23 tracker below 20 MeV forward electron 0.0010097 + case= 24 tracker below 20 MeV forward gamma 0.0196697 case= 25 tracker below 20 MeV forward muon 0 - case= 26 tracker below 20 MeV forward neutrino 5.52314e-05 - case= 27 tracker below 20 MeV forward pion 3.87521e-06 - case= 28 tracker below 20 MeV forward neutron 0.356967 - case= 29 tracker below 20 MeV forward proton 1.13833e-05 - case= 30 tracker below 20 MeV forward ion 5.31193e-06 - case= 31 tracker below 20 MeV forward otherMeson 0 + case= 26 tracker below 20 MeV forward neutrino 5.53902e-05 + case= 27 tracker below 20 MeV forward pion 1.80754e-05 + case= 28 tracker below 20 MeV forward neutron 0.290484 + case= 29 tracker below 20 MeV forward proton 3.34941e-06 + case= 30 tracker below 20 MeV forward ion 0 + case= 31 tracker below 20 MeV forward otherMeson 3.20171e-06 case= 32 tracker below 20 MeV forward otherBaryon 0 - case= 33 tracker below 20 MeV backward all 0.242584 - case= 34 tracker below 20 MeV backward electron 8.65787e-05 - case= 35 tracker below 20 MeV backward gamma 0.00411041 + case= 33 tracker below 20 MeV backward all 0.202478 + case= 34 tracker below 20 MeV backward electron 0.000177986 + case= 35 tracker below 20 MeV backward gamma 0.00344035 case= 36 tracker below 20 MeV backward muon 0 - case= 37 tracker below 20 MeV backward neutrino 1.0986e-05 + case= 37 tracker below 20 MeV backward neutrino 2.22641e-05 case= 38 tracker below 20 MeV backward pion 0 - case= 39 tracker below 20 MeV backward neutron 0.238376 + case= 39 tracker below 20 MeV backward neutron 0.198837 case= 40 tracker below 20 MeV backward proton 0 case= 41 tracker below 20 MeV backward ion 0 case= 42 tracker below 20 MeV backward otherMeson 0 case= 43 tracker below 20 MeV backward otherBaryon 0 - case= 44 tracker above 20 MeV forward all 0.00439247 - case= 45 tracker above 20 MeV forward electron 0.000573593 - case= 46 tracker above 20 MeV forward gamma 0.000920395 - case= 47 tracker above 20 MeV forward muon 7.96437e-06 - case= 48 tracker above 20 MeV forward neutrino 0.0005648 - case= 49 tracker above 20 MeV forward pion 0.000682487 - case= 50 tracker above 20 MeV forward neutron 0.00152434 - case= 51 tracker above 20 MeV forward proton 8.55274e-05 - case= 52 tracker above 20 MeV forward ion 3.66353e-06 - case= 53 tracker above 20 MeV forward otherMeson 2.97014e-05 - case= 54 tracker above 20 MeV forward otherBaryon 0 - case= 55 tracker above 20 MeV backward all 0.00061694 - case= 56 tracker above 20 MeV backward electron 2.45499e-06 - case= 57 tracker above 20 MeV backward gamma 1.84715e-05 + case= 44 tracker above 20 MeV forward all 0.00412865 + case= 45 tracker above 20 MeV forward electron 0.000456604 + case= 46 tracker above 20 MeV forward gamma 0.000942156 + case= 47 tracker above 20 MeV forward muon 2.4493e-06 + case= 48 tracker above 20 MeV forward neutrino 0.000675802 + case= 49 tracker above 20 MeV forward pion 0.000630727 + case= 50 tracker above 20 MeV forward neutron 0.00125574 + case= 51 tracker above 20 MeV forward proton 0.000134599 + case= 52 tracker above 20 MeV forward ion 3.43455e-06 + case= 53 tracker above 20 MeV forward otherMeson 1.97862e-05 + case= 54 tracker above 20 MeV forward otherBaryon 7.34313e-06 + case= 55 tracker above 20 MeV backward all 0.000509174 + case= 56 tracker above 20 MeV backward electron 5.40262e-06 + case= 57 tracker above 20 MeV backward gamma 1.03892e-05 case= 58 tracker above 20 MeV backward muon 0 - case= 59 tracker above 20 MeV backward neutrino 0.00028539 + case= 59 tracker above 20 MeV backward neutrino 0.000251903 case= 60 tracker above 20 MeV backward pion 0 - case= 61 tracker above 20 MeV backward neutron 0.000310623 + case= 61 tracker above 20 MeV backward neutron 0.000241479 case= 62 tracker above 20 MeV backward proton 0 case= 63 tracker above 20 MeV backward ion 0 case= 64 tracker above 20 MeV backward otherMeson 0 case= 65 tracker above 20 MeV backward otherBaryon 0 - case= 66 emCalo forward all 0.204837 - case= 67 emCalo forward electron 0.000901736 - case= 68 emCalo forward gamma 0.0176308 - case= 69 emCalo forward muon 3.73536e-06 - case= 70 emCalo forward neutrino 0.000588452 - case= 71 emCalo forward pion 0.000199209 - case= 72 emCalo forward neutron 0.185388 - case= 73 emCalo forward proton 9.9273e-05 - case= 74 emCalo forward ion 6.94622e-06 - case= 75 emCalo forward otherMeson 1.48428e-05 - case= 76 emCalo forward otherBaryon 3.10402e-06 - case= 77 emCalo backward all 0.04981 - case= 78 emCalo backward electron 8.1905e-05 - case= 79 emCalo backward gamma 0.00155781 + case= 66 emCalo forward all 0.180501 + case= 67 emCalo forward electron 0.0012819 + case= 68 emCalo forward gamma 0.0205983 + case= 69 emCalo forward muon 2.54832e-06 + case= 70 emCalo forward neutrino 0.000495014 + case= 71 emCalo forward pion 0.000212056 + case= 72 emCalo forward neutron 0.157798 + case= 73 emCalo forward proton 8.68301e-05 + case= 74 emCalo forward ion 2.69507e-06 + case= 75 emCalo forward otherMeson 2.17207e-05 + case= 76 emCalo forward otherBaryon 1.89997e-06 + case= 77 emCalo backward all 0.0406694 + case= 78 emCalo backward electron 6.31798e-05 + case= 79 emCalo backward gamma 0.00132172 case= 80 emCalo backward muon 0 - case= 81 emCalo backward neutrino 0.00012825 + case= 81 emCalo backward neutrino 0.000110436 case= 82 emCalo backward pion 0 - case= 83 emCalo backward neutron 0.048042 + case= 83 emCalo backward neutron 0.039174 case= 84 emCalo backward proton 0 case= 85 emCalo backward ion 0 case= 86 emCalo backward otherMeson 0 case= 87 emCalo backward otherBaryon 0 - case= 88 emCalo below 20 MeV forward all 0.202532 - case= 89 emCalo below 20 MeV forward electron 0.000763079 - case= 90 emCalo below 20 MeV forward gamma 0.0173612 + case= 88 emCalo below 20 MeV forward all 0.178104 + case= 89 emCalo below 20 MeV forward electron 0.00106982 + case= 90 emCalo below 20 MeV forward gamma 0.0201308 case= 91 emCalo below 20 MeV forward muon 0 - case= 92 emCalo below 20 MeV forward neutrino 6.31054e-05 - case= 93 emCalo below 20 MeV forward pion 1.33189e-06 - case= 94 emCalo below 20 MeV forward neutron 0.184337 - case= 95 emCalo below 20 MeV forward proton 5.01435e-06 + case= 92 emCalo below 20 MeV forward neutrino 4.72736e-05 + case= 93 emCalo below 20 MeV forward pion 4.43902e-06 + case= 94 emCalo below 20 MeV forward neutron 0.156849 + case= 95 emCalo below 20 MeV forward proton 3.14376e-06 case= 96 emCalo below 20 MeV forward ion 0 - case= 97 emCalo below 20 MeV forward otherMeson 1.06352e-06 + case= 97 emCalo below 20 MeV forward otherMeson 0 case= 98 emCalo below 20 MeV forward otherBaryon 0 - case= 99 emCalo below 20 MeV backward all 0.0496677 - case=100 emCalo below 20 MeV backward electron 8.1905e-05 - case=101 emCalo below 20 MeV backward gamma 0.00155781 + case= 99 emCalo below 20 MeV backward all 0.0405549 + case=100 emCalo below 20 MeV backward electron 6.31798e-05 + case=101 emCalo below 20 MeV backward gamma 0.00132172 case=102 emCalo below 20 MeV backward muon 0 - case=103 emCalo below 20 MeV backward neutrino 8.49453e-06 + case=103 emCalo below 20 MeV backward neutrino 9.14562e-06 case=104 emCalo below 20 MeV backward pion 0 - case=105 emCalo below 20 MeV backward neutron 0.0480195 + case=105 emCalo below 20 MeV backward neutron 0.0391609 case=106 emCalo below 20 MeV backward proton 0 case=107 emCalo below 20 MeV backward ion 0 case=108 emCalo below 20 MeV backward otherMeson 0 case=109 emCalo below 20 MeV backward otherBaryon 0 - case=110 emCalo above 20 MeV forward all 0.00230431 - case=111 emCalo above 20 MeV forward electron 0.000138656 - case=112 emCalo above 20 MeV forward gamma 0.000269611 - case=113 emCalo above 20 MeV forward muon 3.73536e-06 - case=114 emCalo above 20 MeV forward neutrino 0.000525347 - case=115 emCalo above 20 MeV forward pion 0.000197877 - case=116 emCalo above 20 MeV forward neutron 0.00105099 - case=117 emCalo above 20 MeV forward proton 9.42587e-05 - case=118 emCalo above 20 MeV forward ion 6.94622e-06 - case=119 emCalo above 20 MeV forward otherMeson 1.37793e-05 - case=120 emCalo above 20 MeV forward otherBaryon 3.10402e-06 - case=121 emCalo above 20 MeV backward all 0.000142265 + case=110 emCalo above 20 MeV forward all 0.00239659 + case=111 emCalo above 20 MeV forward electron 0.000212074 + case=112 emCalo above 20 MeV forward gamma 0.000467495 + case=113 emCalo above 20 MeV forward muon 2.54832e-06 + case=114 emCalo above 20 MeV forward neutrino 0.000447741 + case=115 emCalo above 20 MeV forward pion 0.000207617 + case=116 emCalo above 20 MeV forward neutron 0.000949112 + case=117 emCalo above 20 MeV forward proton 8.36863e-05 + case=118 emCalo above 20 MeV forward ion 2.69507e-06 + case=119 emCalo above 20 MeV forward otherMeson 2.17207e-05 + case=120 emCalo above 20 MeV forward otherBaryon 1.89997e-06 + case=121 emCalo above 20 MeV backward all 0.000114413 case=122 emCalo above 20 MeV backward electron 0 case=123 emCalo above 20 MeV backward gamma 0 case=124 emCalo above 20 MeV backward muon 0 - case=125 emCalo above 20 MeV backward neutrino 0.000119755 + case=125 emCalo above 20 MeV backward neutrino 0.00010129 case=126 emCalo above 20 MeV backward pion 0 - case=127 emCalo above 20 MeV backward neutron 2.251e-05 + case=127 emCalo above 20 MeV backward neutron 1.31235e-05 case=128 emCalo above 20 MeV backward proton 0 case=129 emCalo above 20 MeV backward ion 0 case=130 emCalo above 20 MeV backward otherMeson 0 case=131 emCalo above 20 MeV backward otherBaryon 0 - case=132 hadCalo forward all 0.000450058 - case=133 hadCalo forward electron 3.70849e-06 - case=134 hadCalo forward gamma 0.000122757 - case=135 hadCalo forward muon 1.7995e-07 - case=136 hadCalo forward neutrino 7.77543e-05 - case=137 hadCalo forward pion 1.39274e-06 - case=138 hadCalo forward neutron 0.000243669 - case=139 hadCalo forward proton 5.96481e-07 + case=132 hadCalo forward all 0.000502994 + case=133 hadCalo forward electron 8.35146e-06 + case=134 hadCalo forward gamma 0.000137954 + case=135 hadCalo forward muon 1.17036e-07 + case=136 hadCalo forward neutrino 7.92897e-05 + case=137 hadCalo forward pion 1.96681e-06 + case=138 hadCalo forward neutron 0.000273994 + case=139 hadCalo forward proton 1.04071e-06 case=140 hadCalo forward ion 0 - case=141 hadCalo forward otherMeson 0 + case=141 hadCalo forward otherMeson 2.80121e-07 case=142 hadCalo forward otherBaryon 0 - case=143 hadCalo backward all 4.334e-05 + case=143 hadCalo backward all 4.03817e-05 case=144 hadCalo backward electron 0 - case=145 hadCalo backward gamma 6.92188e-07 + case=145 hadCalo backward gamma 4.17934e-07 case=146 hadCalo backward muon 0 - case=147 hadCalo backward neutrino 3.15986e-05 + case=147 hadCalo backward neutrino 2.92446e-05 case=148 hadCalo backward pion 0 - case=149 hadCalo backward neutron 1.10492e-05 + case=149 hadCalo backward neutron 1.07192e-05 case=150 hadCalo backward proton 0 case=151 hadCalo backward ion 0 case=152 hadCalo backward otherMeson 0 case=153 hadCalo backward otherBaryon 0 - case=154 hadCalo below 20 MeV forward all 0.000362271 - case=155 hadCalo below 20 MeV forward electron 2.8564e-06 - case=156 hadCalo below 20 MeV forward gamma 0.000119164 + case=154 hadCalo below 20 MeV forward all 0.000404642 + case=155 hadCalo below 20 MeV forward electron 6.13239e-06 + case=156 hadCalo below 20 MeV forward gamma 0.000131457 case=157 hadCalo below 20 MeV forward muon 0 - case=158 hadCalo below 20 MeV forward neutrino 6.85108e-06 + case=158 hadCalo below 20 MeV forward neutrino 6.61821e-06 case=159 hadCalo below 20 MeV forward pion 0 - case=160 hadCalo below 20 MeV forward neutron 0.000233169 - case=161 hadCalo below 20 MeV forward proton 2.30614e-07 + case=160 hadCalo below 20 MeV forward neutron 0.000260435 + case=161 hadCalo below 20 MeV forward proton 0 case=162 hadCalo below 20 MeV forward ion 0 case=163 hadCalo below 20 MeV forward otherMeson 0 case=164 hadCalo below 20 MeV forward otherBaryon 0 - case=165 hadCalo below 20 MeV backward all 1.44713e-05 + case=165 hadCalo below 20 MeV backward all 1.34026e-05 case=166 hadCalo below 20 MeV backward electron 0 - case=167 hadCalo below 20 MeV backward gamma 6.92188e-07 + case=167 hadCalo below 20 MeV backward gamma 4.17934e-07 case=168 hadCalo below 20 MeV backward muon 0 - case=169 hadCalo below 20 MeV backward neutrino 2.78538e-06 + case=169 hadCalo below 20 MeV backward neutrino 2.35308e-06 case=170 hadCalo below 20 MeV backward pion 0 - case=171 hadCalo below 20 MeV backward neutron 1.09938e-05 + case=171 hadCalo below 20 MeV backward neutron 1.06316e-05 case=172 hadCalo below 20 MeV backward proton 0 case=173 hadCalo below 20 MeV backward ion 0 case=174 hadCalo below 20 MeV backward otherMeson 0 case=175 hadCalo below 20 MeV backward otherBaryon 0 - case=176 hadCalo above 20 MeV forward all 8.77873e-05 - case=177 hadCalo above 20 MeV forward electron 8.52092e-07 - case=178 hadCalo above 20 MeV forward gamma 3.59314e-06 - case=179 hadCalo above 20 MeV forward muon 1.7995e-07 - case=180 hadCalo above 20 MeV forward neutrino 7.09032e-05 - case=181 hadCalo above 20 MeV forward pion 1.39274e-06 - case=182 hadCalo above 20 MeV forward neutron 1.05002e-05 - case=183 hadCalo above 20 MeV forward proton 3.65867e-07 + case=176 hadCalo above 20 MeV forward all 9.83523e-05 + case=177 hadCalo above 20 MeV forward electron 2.21907e-06 + case=178 hadCalo above 20 MeV forward gamma 6.49731e-06 + case=179 hadCalo above 20 MeV forward muon 1.17036e-07 + case=180 hadCalo above 20 MeV forward neutrino 7.26715e-05 + case=181 hadCalo above 20 MeV forward pion 1.96681e-06 + case=182 hadCalo above 20 MeV forward neutron 1.35598e-05 + case=183 hadCalo above 20 MeV forward proton 1.04071e-06 case=184 hadCalo above 20 MeV forward ion 0 - case=185 hadCalo above 20 MeV forward otherMeson 0 + case=185 hadCalo above 20 MeV forward otherMeson 2.80121e-07 case=186 hadCalo above 20 MeV forward otherBaryon 0 - case=187 hadCalo above 20 MeV backward all 2.88686e-05 + case=187 hadCalo above 20 MeV backward all 2.69791e-05 case=188 hadCalo above 20 MeV backward electron 0 case=189 hadCalo above 20 MeV backward gamma 0 case=190 hadCalo above 20 MeV backward muon 0 - case=191 hadCalo above 20 MeV backward neutrino 2.88132e-05 + case=191 hadCalo above 20 MeV backward neutrino 2.68915e-05 case=192 hadCalo above 20 MeV backward pion 0 - case=193 hadCalo above 20 MeV backward neutron 5.53918e-08 + case=193 hadCalo above 20 MeV backward neutron 8.75486e-08 case=194 hadCalo above 20 MeV backward proton 0 case=195 hadCalo above 20 MeV backward ion 0 case=196 hadCalo above 20 MeV backward otherMeson 0 case=197 hadCalo above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 tracker all 329.07 52.5901 17305.8 - case= 1 tracker electron 185.59 9.23288 1713.53 - case= 2 tracker gamma 60.49 60.7374 3674.01 - case= 3 tracker muon 0.09 13.9671 1.25704 - case= 4 tracker neutrino 0.27 35.3197 9.53633 - case= 5 tracker pion 3.23 2594.77 8381.11 - case= 6 tracker neutron 14.92 51.5215 768.701 - case= 7 tracker proton 1.77 229.017 405.36 - case= 8 tracker ion 62.3 0.580694 36.1773 - case= 9 tracker otherMeson 0.39 5919.83 2308.73 - case= 10 tracker otherBaryon 0.02 370.551 7.41102 - case= 11 tracker below 20 MeV all 314.16 0.647105 203.294 - case= 12 tracker below 20 MeV electron 182.43 0.362246 66.0845 - case= 13 tracker below 20 MeV gamma 55.46 1.35748 75.2861 - case= 14 tracker below 20 MeV muon 0.08 4.11981 0.329585 - case= 15 tracker below 20 MeV neutrino 0.03 15.3948 0.461843 - case= 16 tracker below 20 MeV pion 0.05 12.2026 0.610132 - case= 17 tracker below 20 MeV neutron 13.37 2.7142 36.2889 - case= 18 tracker below 20 MeV proton 0.87 8.10722 7.05328 - case= 19 tracker below 20 MeV ion 61.86 0.277498 17.1661 - case= 20 tracker below 20 MeV otherMeson 0.01 1.4176 0.014176 + case= 0 tracker all 267.23 52.3485 13989.1 + case= 1 tracker electron 156.52 9.23229 1445.04 + case= 2 tracker gamma 48.99 72.7623 3564.62 + case= 3 tracker muon 0.07 25.3151 1.77206 + case= 4 tracker neutrino 0.19 44.25 8.40751 + case= 5 tracker pion 2.85 2351.89 6702.88 + case= 6 tracker neutron 10.31 43.2101 445.496 + case= 7 tracker proton 1.17 152.588 178.528 + case= 8 tracker ion 46.78 0.34626 16.198 + case= 9 tracker otherMeson 0.27 4541.49 1226.2 + case= 10 tracker otherBaryon 0.08 4999.47 399.957 + case= 11 tracker below 20 MeV all 254.57 0.62907 160.142 + case= 12 tracker below 20 MeV electron 153.84 0.379188 58.3343 + case= 13 tracker below 20 MeV gamma 43.98 1.40555 61.8162 + case= 14 tracker below 20 MeV muon 0.06 4.11981 0.247189 + case= 15 tracker below 20 MeV neutrino 0 0 0 + case= 16 tracker below 20 MeV pion 0.06 13.2933 0.797599 + case= 17 tracker below 20 MeV neutron 9.39 2.41357 22.6634 + case= 18 tracker below 20 MeV proton 0.55 8.88095 4.88452 + case= 19 tracker below 20 MeV ion 46.67 0.237573 11.0875 + case= 20 tracker below 20 MeV otherMeson 0.02 15.5805 0.311609 case= 21 tracker below 20 MeV otherBaryon 0 0 0 - case= 22 tracker above 20 MeV all 14.91 1147.05 17102.5 - case= 23 tracker above 20 MeV electron 3.16 521.344 1647.45 - case= 24 tracker above 20 MeV gamma 5.03 715.451 3598.72 - case= 25 tracker above 20 MeV muon 0.01 92.7457 0.927457 - case= 26 tracker above 20 MeV neutrino 0.24 37.8104 9.07449 - case= 27 tracker above 20 MeV pion 3.18 2635.38 8380.5 - case= 28 tracker above 20 MeV neutron 1.55 472.524 732.412 - case= 29 tracker above 20 MeV proton 0.9 442.564 398.307 - case= 30 tracker above 20 MeV ion 0.44 43.2073 19.0112 - case= 31 tracker above 20 MeV otherMeson 0.38 6075.58 2308.72 - case= 32 tracker above 20 MeV otherBaryon 0.02 370.551 7.41102 - case= 33 emCalo all 30864 5.28217 163029 - case= 34 emCalo electron 18685.9 2.87974 53810.6 - case= 35 emCalo gamma 10807.3 4.8889 52835.8 - case= 36 emCalo muon 2.52 22.8089 57.4783 - case= 37 emCalo neutrino 7.49 35.47 265.67 - case= 38 emCalo pion 28.46 1217.15 34640.1 - case= 39 emCalo neutron 844.68 10.8002 9122.75 - case= 40 emCalo proton 53.86 103.221 5559.5 - case= 41 emCalo ion 431.67 1.59596 688.928 - case= 42 emCalo otherMeson 1.78 2983.29 5310.27 - case= 43 emCalo otherBaryon 0.34 2169.93 737.776 - case= 44 emCalo below 20 MeV all 30123.1 1.02487 30872.3 - case= 45 emCalo below 20 MeV electron 18382.9 0.83868 15417.4 - case= 46 emCalo below 20 MeV gamma 10518.2 1.26747 13331.5 - case= 47 emCalo below 20 MeV muon 2.37 4.11981 9.76396 - case= 48 emCalo below 20 MeV neutrino 0.65 15.031 9.77012 - case= 49 emCalo below 20 MeV pion 0.56 11.919 6.67462 - case= 50 emCalo below 20 MeV neutron 778.94 2.18796 1704.29 - case= 51 emCalo below 20 MeV proton 17.92 12.5705 225.264 - case= 52 emCalo below 20 MeV ion 421.41 0.395987 166.873 - case= 53 emCalo below 20 MeV otherMeson 0.07 6.89846 0.482892 - case= 54 emCalo below 20 MeV otherBaryon 0.02 12.9917 0.259834 - case= 55 emCalo above 20 MeV all 740.92 178.368 132157 - case= 56 emCalo above 20 MeV electron 302.99 126.714 38393.2 - case= 57 emCalo above 20 MeV gamma 289.07 136.66 39504.3 - case= 58 emCalo above 20 MeV muon 0.15 318.096 47.7143 - case= 59 emCalo above 20 MeV neutrino 6.84 37.4123 255.9 - case= 60 emCalo above 20 MeV pion 27.9 1241.34 34633.5 - case= 61 emCalo above 20 MeV neutron 65.74 112.845 7418.46 - case= 62 emCalo above 20 MeV proton 35.94 148.421 5334.24 - case= 63 emCalo above 20 MeV ion 10.26 50.8825 522.055 - case= 64 emCalo above 20 MeV otherMeson 1.71 3105.14 5309.78 - case= 65 emCalo above 20 MeV otherBaryon 0.32 2304.74 737.516 - case= 66 hadCalo all 34874.6 2.49833 87128.2 - case= 67 hadCalo electron 25877.4 0.971774 25146.9 - case= 68 hadCalo gamma 6752.22 3.56979 24104 - case= 69 hadCalo muon 3.38 21.7552 73.5325 - case= 70 hadCalo neutrino 10.17 36.8617 374.884 - case= 71 hadCalo pion 24.34 716.806 17447 - case= 72 hadCalo neutron 750.15 12.692 9520.91 - case= 73 hadCalo proton 121.37 52.9845 6430.73 - case= 74 hadCalo ion 1333.93 0.485702 647.893 - case= 75 hadCalo otherMeson 1.36 2356.04 3204.21 - case= 76 hadCalo otherBaryon 0.36 494.635 178.069 - case= 77 hadCalo below 20 MeV all 34481.7 0.623293 21492.2 - case= 78 hadCalo below 20 MeV electron 25749.3 0.399953 10298.5 - case= 79 hadCalo below 20 MeV gamma 6643.03 1.3147 8733.58 - case= 80 hadCalo below 20 MeV muon 3.16 4.11981 13.0186 - case= 81 hadCalo below 20 MeV neutrino 0.91 14.1554 12.8814 - case= 82 hadCalo below 20 MeV pion 0.57 11.7439 6.694 - case= 83 hadCalo below 20 MeV neutron 673.68 2.10683 1419.33 - case= 84 hadCalo below 20 MeV proton 82.17 7.80283 641.159 - case= 85 hadCalo below 20 MeV ion 1328.69 0.275359 365.867 - case= 86 hadCalo below 20 MeV otherMeson 0.11 8.52861 0.938147 - case= 87 hadCalo below 20 MeV otherBaryon 0.01 19.7741 0.197741 - case= 88 hadCalo above 20 MeV all 392.96 167.03 65636 - case= 89 hadCalo above 20 MeV electron 128.01 115.994 14848.4 - case= 90 hadCalo above 20 MeV gamma 109.19 140.767 15370.4 - case= 91 hadCalo above 20 MeV muon 0.22 275.063 60.5139 - case= 92 hadCalo above 20 MeV neutrino 9.26 39.0931 362.002 - case= 93 hadCalo above 20 MeV pion 23.77 733.713 17440.4 - case= 94 hadCalo above 20 MeV neutron 76.47 105.944 8101.57 - case= 95 hadCalo above 20 MeV proton 39.2 147.693 5789.57 - case= 96 hadCalo above 20 MeV ion 5.24 53.8217 282.026 - case= 97 hadCalo above 20 MeV otherMeson 1.25 2562.62 3203.28 - case= 98 hadCalo above 20 MeV otherBaryon 0.35 508.203 177.871 + case= 22 tracker above 20 MeV all 12.66 1092.33 13829 + case= 23 tracker above 20 MeV electron 2.68 517.427 1386.7 + case= 24 tracker above 20 MeV gamma 5.01 699.163 3502.81 + case= 25 tracker above 20 MeV muon 0.01 152.487 1.52487 + case= 26 tracker above 20 MeV neutrino 0.19 44.25 8.40751 + case= 27 tracker above 20 MeV pion 2.79 2402.18 6702.08 + case= 28 tracker above 20 MeV neutron 0.92 459.601 422.832 + case= 29 tracker above 20 MeV proton 0.62 280.071 173.644 + case= 30 tracker above 20 MeV ion 0.11 46.4592 5.11051 + case= 31 tracker above 20 MeV otherMeson 0.25 4903.56 1225.89 + case= 32 tracker above 20 MeV otherBaryon 0.08 4999.47 399.957 + case= 33 emCalo all 27146.8 5.52942 150106 + case= 34 emCalo electron 16439.5 3.02823 49782.5 + case= 35 emCalo gamma 9580.38 5.139 49233.6 + case= 36 emCalo muon 2.12 13.8629 29.3894 + case= 37 emCalo neutrino 6.35 35.4557 225.143 + case= 38 emCalo pion 24.15 1246.01 30091.2 + case= 39 emCalo neutron 693.6 11.404 7909.8 + case= 40 emCalo proton 46.22 95.6372 4420.35 + case= 41 emCalo ion 351.79 1.66575 585.993 + case= 42 emCalo otherMeson 2.24 3215.11 7201.85 + case= 43 emCalo otherBaryon 0.5 1252.83 626.416 + case= 44 emCalo below 20 MeV all 26477.7 1.03249 27337.9 + case= 45 emCalo below 20 MeV electron 16163.6 0.846354 13680.1 + case= 46 emCalo below 20 MeV gamma 9313.13 1.27786 11900.9 + case= 47 emCalo below 20 MeV muon 2.02 4.16307 8.4094 + case= 48 emCalo below 20 MeV neutrino 0.55 14.7004 8.08521 + case= 49 emCalo below 20 MeV pion 0.49 13.8324 6.7779 + case= 50 emCalo below 20 MeV neutron 638.85 2.18849 1398.12 + case= 51 emCalo below 20 MeV proton 15.7 12.6369 198.399 + case= 52 emCalo below 20 MeV ion 343.23 0.395978 135.912 + case= 53 emCalo below 20 MeV otherMeson 0.1 7.92486 0.792486 + case= 54 emCalo below 20 MeV otherBaryon 0.03 12.8547 0.385642 + case= 55 emCalo above 20 MeV all 669.13 183.475 122768 + case= 56 emCalo above 20 MeV electron 275.88 130.863 36102.4 + case= 57 emCalo above 20 MeV gamma 267.25 139.692 37332.7 + case= 58 emCalo above 20 MeV muon 0.1 209.8 20.98 + case= 59 emCalo above 20 MeV neutrino 5.8 37.4238 217.058 + case= 60 emCalo above 20 MeV pion 23.66 1271.53 30084.5 + case= 61 emCalo above 20 MeV neutron 54.75 118.935 6511.69 + case= 62 emCalo above 20 MeV proton 30.52 138.334 4221.95 + case= 63 emCalo above 20 MeV ion 8.56 52.5797 450.082 + case= 64 emCalo above 20 MeV otherMeson 2.14 3364.98 7201.06 + case= 65 emCalo above 20 MeV otherBaryon 0.47 1331.98 626.03 + case= 66 hadCalo all 37949.9 2.74545 104189 + case= 67 hadCalo electron 28309.6 1.08796 30799.7 + case= 68 hadCalo gamma 7439.75 3.90159 29026.9 + case= 69 hadCalo muon 3.63 17.9106 65.0156 + case= 70 hadCalo neutrino 10.88 37.1063 403.716 + case= 71 hadCalo pion 27.4 813.811 22298.4 + case= 72 hadCalo neutron 744.99 13.2696 9885.71 + case= 73 hadCalo proton 126.42 51.6711 6532.26 + case= 74 hadCalo ion 1284.16 0.566502 727.479 + case= 75 hadCalo otherMeson 2.24 1892.63 4239.49 + case= 76 hadCalo otherBaryon 0.76 277.295 210.744 + case= 77 hadCalo below 20 MeV all 37476.5 0.62523 23431.4 + case= 78 hadCalo below 20 MeV electron 28143.1 0.410346 11548.4 + case= 79 hadCalo below 20 MeV gamma 7298.02 1.28183 9354.85 + case= 80 hadCalo below 20 MeV muon 3.35 4.13557 13.8542 + case= 81 hadCalo below 20 MeV neutrino 0.89 14.6368 13.0268 + case= 82 hadCalo below 20 MeV pion 0.6 12.4331 7.45984 + case= 83 hadCalo below 20 MeV neutron 667.57 2.15677 1439.8 + case= 84 hadCalo below 20 MeV proton 84.51 7.76967 656.615 + case= 85 hadCalo below 20 MeV ion 1278.24 0.309472 395.579 + case= 86 hadCalo below 20 MeV otherMeson 0.1 6.08781 0.608781 + case= 87 hadCalo below 20 MeV otherBaryon 0.09 13.6904 1.23213 + case= 88 hadCalo above 20 MeV all 473.35 170.609 80758 + case= 89 hadCalo above 20 MeV electron 166.49 115.63 19251.3 + case= 90 hadCalo above 20 MeV gamma 141.73 138.799 19672 + case= 91 hadCalo above 20 MeV muon 0.28 182.72 51.1615 + case= 92 hadCalo above 20 MeV neutrino 9.99 39.1081 390.689 + case= 93 hadCalo above 20 MeV pion 26.8 831.752 22291 + case= 94 hadCalo above 20 MeV neutron 77.42 109.092 8445.91 + case= 95 hadCalo above 20 MeV proton 41.91 140.197 5875.65 + case= 96 hadCalo above 20 MeV ion 5.92 56.0642 331.9 + case= 97 hadCalo above 20 MeV otherMeson 2.14 1980.79 4238.88 + case= 98 hadCalo above 20 MeV otherBaryon 0.67 312.705 209.512 ============================================================= @@ -1681,7 +1681,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=76.920000s Real=77.562605s Sys=0.020000s + User=51.110000s Real=51.163113s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 2 @@ -1697,198 +1697,198 @@ 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 tracker forward all 0.206533 - case= 1 tracker forward electron 0.0025304 - case= 2 tracker forward gamma 0.0380809 - case= 3 tracker forward muon 2.08466e-05 - case= 4 tracker forward neutrino 0.000884742 - case= 5 tracker forward pion 0.000800878 - case= 6 tracker forward neutron 0.163834 - case= 7 tracker forward proton 0.000275276 - case= 8 tracker forward ion 3.58248e-06 - case= 9 tracker forward otherMeson 9.16013e-05 - case= 10 tracker forward otherBaryon 1.12203e-05 - case= 11 tracker backward all 0.0693231 - case= 12 tracker backward electron 0.000204319 - case= 13 tracker backward gamma 0.00650671 + case= 0 tracker forward all 0.234253 + case= 1 tracker forward electron 0.00285513 + case= 2 tracker forward gamma 0.0452887 + case= 3 tracker forward muon 7.50021e-06 + case= 4 tracker forward neutrino 0.00114584 + case= 5 tracker forward pion 0.000936844 + case= 6 tracker forward neutron 0.18382 + case= 7 tracker forward proton 0.000161706 + case= 8 tracker forward ion 4.75064e-06 + case= 9 tracker forward otherMeson 2.96153e-05 + case= 10 tracker forward otherBaryon 2.60505e-06 + case= 11 tracker backward all 0.075 + case= 12 tracker backward electron 0.000352827 + case= 13 tracker backward gamma 0.00728195 case= 14 tracker backward muon 0 - case= 15 tracker backward neutrino 0.000328664 - case= 16 tracker backward pion 0 - case= 17 tracker backward neutron 0.0622499 - case= 18 tracker backward proton 3.3455e-05 + case= 15 tracker backward neutrino 0.000359839 + case= 16 tracker backward pion 2.96588e-05 + case= 17 tracker backward neutron 0.066973 + case= 18 tracker backward proton 2.68548e-06 case= 19 tracker backward ion 0 case= 20 tracker backward otherMeson 0 case= 21 tracker backward otherBaryon 0 - case= 22 tracker below 20 MeV forward all 0.20058 - case= 23 tracker below 20 MeV forward electron 0.00184138 - case= 24 tracker below 20 MeV forward gamma 0.0367335 - case= 25 tracker below 20 MeV forward muon 1.48683e-05 - case= 26 tracker below 20 MeV forward neutrino 7.43207e-05 - case= 27 tracker below 20 MeV forward pion 0 - case= 28 tracker below 20 MeV forward neutron 0.161874 - case= 29 tracker below 20 MeV forward proton 4.26168e-05 + case= 22 tracker below 20 MeV forward all 0.227569 + case= 23 tracker below 20 MeV forward electron 0.00195229 + case= 24 tracker below 20 MeV forward gamma 0.0437283 + case= 25 tracker below 20 MeV forward muon 1.93323e-06 + case= 26 tracker below 20 MeV forward neutrino 7.2538e-05 + case= 27 tracker below 20 MeV forward pion 1.05908e-06 + case= 28 tracker below 20 MeV forward neutron 0.181804 + case= 29 tracker below 20 MeV forward proton 9.67369e-06 case= 30 tracker below 20 MeV forward ion 0 case= 31 tracker below 20 MeV forward otherMeson 0 case= 32 tracker below 20 MeV forward otherBaryon 0 - case= 33 tracker below 20 MeV backward all 0.0687854 - case= 34 tracker below 20 MeV backward electron 0.000204319 - case= 35 tracker below 20 MeV backward gamma 0.0064936 + case= 33 tracker below 20 MeV backward all 0.074383 + case= 34 tracker below 20 MeV backward electron 0.000352827 + case= 35 tracker below 20 MeV backward gamma 0.00727422 case= 36 tracker below 20 MeV backward muon 0 - case= 37 tracker below 20 MeV backward neutrino 3.04327e-05 + case= 37 tracker below 20 MeV backward neutrino 1.5294e-05 case= 38 tracker below 20 MeV backward pion 0 - case= 39 tracker below 20 MeV backward neutron 0.0620571 + case= 39 tracker below 20 MeV backward neutron 0.0667407 case= 40 tracker below 20 MeV backward proton 0 case= 41 tracker below 20 MeV backward ion 0 case= 42 tracker below 20 MeV backward otherMeson 0 case= 43 tracker below 20 MeV backward otherBaryon 0 - case= 44 tracker above 20 MeV forward all 0.00595293 - case= 45 tracker above 20 MeV forward electron 0.000689024 - case= 46 tracker above 20 MeV forward gamma 0.00134739 - case= 47 tracker above 20 MeV forward muon 5.97822e-06 - case= 48 tracker above 20 MeV forward neutrino 0.000810421 - case= 49 tracker above 20 MeV forward pion 0.000800878 - case= 50 tracker above 20 MeV forward neutron 0.00196018 - case= 51 tracker above 20 MeV forward proton 0.00023266 - case= 52 tracker above 20 MeV forward ion 3.58248e-06 - case= 53 tracker above 20 MeV forward otherMeson 9.16013e-05 - case= 54 tracker above 20 MeV forward otherBaryon 1.12203e-05 - case= 55 tracker above 20 MeV backward all 0.000537616 + case= 44 tracker above 20 MeV forward all 0.00668356 + case= 45 tracker above 20 MeV forward electron 0.000902839 + case= 46 tracker above 20 MeV forward gamma 0.00156045 + case= 47 tracker above 20 MeV forward muon 5.56698e-06 + case= 48 tracker above 20 MeV forward neutrino 0.0010733 + case= 49 tracker above 20 MeV forward pion 0.000935785 + case= 50 tracker above 20 MeV forward neutron 0.00201662 + case= 51 tracker above 20 MeV forward proton 0.000152032 + case= 52 tracker above 20 MeV forward ion 4.75064e-06 + case= 53 tracker above 20 MeV forward otherMeson 2.96153e-05 + case= 54 tracker above 20 MeV forward otherBaryon 2.60505e-06 + case= 55 tracker above 20 MeV backward all 0.000616989 case= 56 tracker above 20 MeV backward electron 0 - case= 57 tracker above 20 MeV backward gamma 1.31099e-05 + case= 57 tracker above 20 MeV backward gamma 7.72741e-06 case= 58 tracker above 20 MeV backward muon 0 - case= 59 tracker above 20 MeV backward neutrino 0.000298232 - case= 60 tracker above 20 MeV backward pion 0 - case= 61 tracker above 20 MeV backward neutron 0.000192819 - case= 62 tracker above 20 MeV backward proton 3.3455e-05 + case= 59 tracker above 20 MeV backward neutrino 0.000344545 + case= 60 tracker above 20 MeV backward pion 2.96588e-05 + case= 61 tracker above 20 MeV backward neutron 0.000232372 + case= 62 tracker above 20 MeV backward proton 2.68548e-06 case= 63 tracker above 20 MeV backward ion 0 case= 64 tracker above 20 MeV backward otherMeson 0 case= 65 tracker above 20 MeV backward otherBaryon 0 - case= 66 emCalo forward all 0.0667348 - case= 67 emCalo forward electron 0.000485791 - case= 68 emCalo forward gamma 0.00898282 - case= 69 emCalo forward muon 1.55823e-06 - case= 70 emCalo forward neutrino 0.000572723 - case= 71 emCalo forward pion 0.000131272 - case= 72 emCalo forward neutron 0.0564695 - case= 73 emCalo forward proton 7.79895e-05 - case= 74 emCalo forward ion 3.25871e-06 - case= 75 emCalo forward otherMeson 9.01307e-06 - case= 76 emCalo forward otherBaryon 9.46398e-07 - case= 77 emCalo backward all 0.00207151 - case= 78 emCalo backward electron 1.7207e-05 - case= 79 emCalo backward gamma 0.000163592 + case= 66 emCalo forward all 0.0706965 + case= 67 emCalo forward electron 0.000450683 + case= 68 emCalo forward gamma 0.00894573 + case= 69 emCalo forward muon 0 + case= 70 emCalo forward neutrino 0.000673878 + case= 71 emCalo forward pion 0.000127109 + case= 72 emCalo forward neutron 0.0604375 + case= 73 emCalo forward proton 4.97351e-05 + case= 74 emCalo forward ion 2.07877e-06 + case= 75 emCalo forward otherMeson 8.74192e-06 + case= 76 emCalo forward otherBaryon 9.96352e-07 + case= 77 emCalo backward all 0.00233722 + case= 78 emCalo backward electron 2.51124e-05 + case= 79 emCalo backward gamma 0.000223252 case= 80 emCalo backward muon 0 - case= 81 emCalo backward neutrino 0.000139753 + case= 81 emCalo backward neutrino 0.000154883 case= 82 emCalo backward pion 0 - case= 83 emCalo backward neutron 0.00175096 + case= 83 emCalo backward neutron 0.00193398 case= 84 emCalo backward proton 0 case= 85 emCalo backward ion 0 case= 86 emCalo backward otherMeson 0 case= 87 emCalo backward otherBaryon 0 - case= 88 emCalo below 20 MeV forward all 0.0650942 - case= 89 emCalo below 20 MeV forward electron 0.000448319 - case= 90 emCalo below 20 MeV forward gamma 0.00888838 + case= 88 emCalo below 20 MeV forward all 0.0690261 + case= 89 emCalo below 20 MeV forward electron 0.000424228 + case= 90 emCalo below 20 MeV forward gamma 0.00888039 case= 91 emCalo below 20 MeV forward muon 0 - case= 92 emCalo below 20 MeV forward neutrino 4.8302e-05 - case= 93 emCalo below 20 MeV forward pion 6.24524e-07 - case= 94 emCalo below 20 MeV forward neutron 0.0557013 - case= 95 emCalo below 20 MeV forward proton 6.1623e-06 - case= 96 emCalo below 20 MeV forward ion 1.14454e-06 - case= 97 emCalo below 20 MeV forward otherMeson 0 + case= 92 emCalo below 20 MeV forward neutrino 5.40529e-05 + case= 93 emCalo below 20 MeV forward pion 4.67185e-07 + case= 94 emCalo below 20 MeV forward neutron 0.0596632 + case= 95 emCalo below 20 MeV forward proton 3.16912e-06 + case= 96 emCalo below 20 MeV forward ion 0 + case= 97 emCalo below 20 MeV forward otherMeson 6.63411e-07 case= 98 emCalo below 20 MeV forward otherBaryon 0 - case= 99 emCalo below 20 MeV backward all 0.00194116 - case=100 emCalo below 20 MeV backward electron 1.7207e-05 - case=101 emCalo below 20 MeV backward gamma 0.000163592 + case= 99 emCalo below 20 MeV backward all 0.00218588 + case=100 emCalo below 20 MeV backward electron 2.51124e-05 + case=101 emCalo below 20 MeV backward gamma 0.000223252 case=102 emCalo below 20 MeV backward muon 0 - case=103 emCalo below 20 MeV backward neutrino 1.1393e-05 + case=103 emCalo below 20 MeV backward neutrino 6.87176e-06 case=104 emCalo below 20 MeV backward pion 0 - case=105 emCalo below 20 MeV backward neutron 0.00174897 + case=105 emCalo below 20 MeV backward neutron 0.00193064 case=106 emCalo below 20 MeV backward proton 0 case=107 emCalo below 20 MeV backward ion 0 case=108 emCalo below 20 MeV backward otherMeson 0 case=109 emCalo below 20 MeV backward otherBaryon 0 - case=110 emCalo above 20 MeV forward all 0.00164061 - case=111 emCalo above 20 MeV forward electron 3.74726e-05 - case=112 emCalo above 20 MeV forward gamma 9.44366e-05 - case=113 emCalo above 20 MeV forward muon 1.55823e-06 - case=114 emCalo above 20 MeV forward neutrino 0.000524421 - case=115 emCalo above 20 MeV forward pion 0.000130648 - case=116 emCalo above 20 MeV forward neutron 0.000768169 - case=117 emCalo above 20 MeV forward proton 7.18272e-05 - case=118 emCalo above 20 MeV forward ion 2.11417e-06 - case=119 emCalo above 20 MeV forward otherMeson 9.01307e-06 - case=120 emCalo above 20 MeV forward otherBaryon 9.46398e-07 - case=121 emCalo above 20 MeV backward all 0.000130351 + case=110 emCalo above 20 MeV forward all 0.00167036 + case=111 emCalo above 20 MeV forward electron 2.64549e-05 + case=112 emCalo above 20 MeV forward gamma 6.53342e-05 + case=113 emCalo above 20 MeV forward muon 0 + case=114 emCalo above 20 MeV forward neutrino 0.000619825 + case=115 emCalo above 20 MeV forward pion 0.000126642 + case=116 emCalo above 20 MeV forward neutron 0.000774386 + case=117 emCalo above 20 MeV forward proton 4.65659e-05 + case=118 emCalo above 20 MeV forward ion 2.07877e-06 + case=119 emCalo above 20 MeV forward otherMeson 8.07851e-06 + case=120 emCalo above 20 MeV forward otherBaryon 9.96352e-07 + case=121 emCalo above 20 MeV backward all 0.000151348 case=122 emCalo above 20 MeV backward electron 0 case=123 emCalo above 20 MeV backward gamma 0 case=124 emCalo above 20 MeV backward muon 0 - case=125 emCalo above 20 MeV backward neutrino 0.00012836 + case=125 emCalo above 20 MeV backward neutrino 0.000148011 case=126 emCalo above 20 MeV backward pion 0 - case=127 emCalo above 20 MeV backward neutron 1.99133e-06 + case=127 emCalo above 20 MeV backward neutron 3.33697e-06 case=128 emCalo above 20 MeV backward proton 0 case=129 emCalo above 20 MeV backward ion 0 case=130 emCalo above 20 MeV backward otherMeson 0 case=131 emCalo above 20 MeV backward otherBaryon 0 - case=132 hadCalo forward all 5.51248e-05 - case=133 hadCalo forward electron 0 - case=134 hadCalo forward gamma 1.9202e-07 + case=132 hadCalo forward all 6.87215e-05 + case=133 hadCalo forward electron 5.49966e-08 + case=134 hadCalo forward gamma 1.2123e-06 case=135 hadCalo forward muon 0 - case=136 hadCalo forward neutrino 5.17199e-05 - case=137 hadCalo forward pion 0 - case=138 hadCalo forward neutron 3.21287e-06 + case=136 hadCalo forward neutrino 6.25513e-05 + case=137 hadCalo forward pion 5.63526e-08 + case=138 hadCalo forward neutron 4.84649e-06 case=139 hadCalo forward proton 0 case=140 hadCalo forward ion 0 case=141 hadCalo forward otherMeson 0 case=142 hadCalo forward otherBaryon 0 - case=143 hadCalo backward all 2.98012e-05 + case=143 hadCalo backward all 3.23636e-05 case=144 hadCalo backward electron 0 case=145 hadCalo backward gamma 0 case=146 hadCalo backward muon 0 - case=147 hadCalo backward neutrino 2.98012e-05 + case=147 hadCalo backward neutrino 3.23636e-05 case=148 hadCalo backward pion 0 case=149 hadCalo backward neutron 0 case=150 hadCalo backward proton 0 case=151 hadCalo backward ion 0 case=152 hadCalo backward otherMeson 0 case=153 hadCalo backward otherBaryon 0 - case=154 hadCalo below 20 MeV forward all 6.90566e-06 - case=155 hadCalo below 20 MeV forward electron 0 - case=156 hadCalo below 20 MeV forward gamma 1.9202e-07 + case=154 hadCalo below 20 MeV forward all 1.13024e-05 + case=155 hadCalo below 20 MeV forward electron 5.49966e-08 + case=156 hadCalo below 20 MeV forward gamma 1.2123e-06 case=157 hadCalo below 20 MeV forward muon 0 - case=158 hadCalo below 20 MeV forward neutrino 3.72751e-06 + case=158 hadCalo below 20 MeV forward neutrino 5.33603e-06 case=159 hadCalo below 20 MeV forward pion 0 - case=160 hadCalo below 20 MeV forward neutron 2.98613e-06 + case=160 hadCalo below 20 MeV forward neutron 4.69911e-06 case=161 hadCalo below 20 MeV forward proton 0 case=162 hadCalo below 20 MeV forward ion 0 case=163 hadCalo below 20 MeV forward otherMeson 0 case=164 hadCalo below 20 MeV forward otherBaryon 0 - case=165 hadCalo below 20 MeV backward all 2.47455e-06 + case=165 hadCalo below 20 MeV backward all 2.03375e-06 case=166 hadCalo below 20 MeV backward electron 0 case=167 hadCalo below 20 MeV backward gamma 0 case=168 hadCalo below 20 MeV backward muon 0 - case=169 hadCalo below 20 MeV backward neutrino 2.47455e-06 + case=169 hadCalo below 20 MeV backward neutrino 2.03375e-06 case=170 hadCalo below 20 MeV backward pion 0 case=171 hadCalo below 20 MeV backward neutron 0 case=172 hadCalo below 20 MeV backward proton 0 case=173 hadCalo below 20 MeV backward ion 0 case=174 hadCalo below 20 MeV backward otherMeson 0 case=175 hadCalo below 20 MeV backward otherBaryon 0 - case=176 hadCalo above 20 MeV forward all 4.82191e-05 + case=176 hadCalo above 20 MeV forward all 5.7419e-05 case=177 hadCalo above 20 MeV forward electron 0 case=178 hadCalo above 20 MeV forward gamma 0 case=179 hadCalo above 20 MeV forward muon 0 - case=180 hadCalo above 20 MeV forward neutrino 4.79924e-05 - case=181 hadCalo above 20 MeV forward pion 0 - case=182 hadCalo above 20 MeV forward neutron 2.26738e-07 + case=180 hadCalo above 20 MeV forward neutrino 5.72153e-05 + case=181 hadCalo above 20 MeV forward pion 5.63526e-08 + case=182 hadCalo above 20 MeV forward neutron 1.47379e-07 case=183 hadCalo above 20 MeV forward proton 0 case=184 hadCalo above 20 MeV forward ion 0 case=185 hadCalo above 20 MeV forward otherMeson 0 case=186 hadCalo above 20 MeV forward otherBaryon 0 - case=187 hadCalo above 20 MeV backward all 2.73266e-05 + case=187 hadCalo above 20 MeV backward all 3.03299e-05 case=188 hadCalo above 20 MeV backward electron 0 case=189 hadCalo above 20 MeV backward gamma 0 case=190 hadCalo above 20 MeV backward muon 0 - case=191 hadCalo above 20 MeV backward neutrino 2.73266e-05 + case=191 hadCalo above 20 MeV backward neutrino 3.03299e-05 case=192 hadCalo above 20 MeV backward pion 0 case=193 hadCalo above 20 MeV backward neutron 0 case=194 hadCalo above 20 MeV backward proton 0 @@ -1897,105 +1897,105 @@ Run Summary case=197 hadCalo above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 tracker all 583.16 46.3402 27023.8 - case= 1 tracker electron 441.63 4.81524 2126.55 - case= 2 tracker gamma 78.92 69.5998 5492.81 - case= 3 tracker muon 0.1 7.87339 0.787339 - case= 4 tracker neutrino 0.36 36.6474 13.1931 - case= 5 tracker pion 4.65 2943.22 13686 - case= 6 tracker neutron 10.69 51.5947 551.548 - case= 7 tracker proton 4.86 149.703 727.557 - case= 8 tracker ion 41.2 1.04057 42.8716 - case= 9 tracker otherMeson 0.62 6381.95 3956.81 - case= 10 tracker otherBaryon 0.13 3274.34 425.665 - case= 11 tracker below 20 MeV all 561.26 0.565894 317.614 - case= 12 tracker below 20 MeV electron 437.16 0.32546 142.278 - case= 13 tracker below 20 MeV gamma 71.23 1.36312 97.0949 - case= 14 tracker below 20 MeV muon 0.09 4.11981 0.370783 - case= 15 tracker below 20 MeV neutrino 0.01 12.1406 0.121406 - case= 16 tracker below 20 MeV pion 0.03 13.7658 0.412975 - case= 17 tracker below 20 MeV neutron 8.75 3.30196 28.8921 - case= 18 tracker below 20 MeV proton 3.26 6.09711 19.8766 - case= 19 tracker below 20 MeV ion 40.73 0.701376 28.5671 + case= 0 tracker all 701.46 38.925 27304.3 + case= 1 tracker electron 523.7 5.71919 2995.14 + case= 2 tracker gamma 106.7 52.7227 5625.51 + case= 3 tracker muon 0.12 49.3387 5.92065 + case= 4 tracker neutrino 0.32 41.3098 13.2191 + case= 5 tracker pion 5.17 2778.28 14363.7 + case= 6 tracker neutron 11.82 117.987 1394.6 + case= 7 tracker proton 5.31 136.289 723.693 + case= 8 tracker ion 47.86 0.794725 38.0356 + case= 9 tracker otherMeson 0.41 5211.85 2136.86 + case= 10 tracker otherBaryon 0.05 153.084 7.65422 + case= 11 tracker below 20 MeV all 675.05 0.598955 404.325 + case= 12 tracker below 20 MeV electron 517.22 0.349119 180.571 + case= 13 tracker below 20 MeV gamma 96.61 1.44479 139.581 + case= 14 tracker below 20 MeV muon 0.1 4.11981 0.411981 + case= 15 tracker below 20 MeV neutrino 0.04 18.6778 0.747111 + case= 16 tracker below 20 MeV pion 0.05 11.5591 0.577957 + case= 17 tracker below 20 MeV neutron 9.76 3.34015 32.5999 + case= 18 tracker below 20 MeV proton 3.66 5.96359 21.8267 + case= 19 tracker below 20 MeV ion 47.61 0.58829 28.0085 case= 20 tracker below 20 MeV otherMeson 0 0 0 case= 21 tracker below 20 MeV otherBaryon 0 0 0 - case= 22 tracker above 20 MeV all 21.9 1219.46 26706.2 - case= 23 tracker above 20 MeV electron 4.47 443.91 1984.28 - case= 24 tracker above 20 MeV gamma 7.69 701.654 5395.72 - case= 25 tracker above 20 MeV muon 0.01 41.6556 0.416556 - case= 26 tracker above 20 MeV neutrino 0.35 37.3476 13.0716 - case= 27 tracker above 20 MeV pion 4.62 2962.24 13685.6 - case= 28 tracker above 20 MeV neutron 1.94 269.41 522.655 - case= 29 tracker above 20 MeV proton 1.6 442.301 707.681 - case= 30 tracker above 20 MeV ion 0.47 30.4352 14.3045 - case= 31 tracker above 20 MeV otherMeson 0.62 6381.95 3956.81 - case= 32 tracker above 20 MeV otherBaryon 0.13 3274.34 425.665 - case= 33 emCalo all 54153.5 3.71883 201388 - case= 34 emCalo electron 32541.6 2.09787 68267.8 - case= 35 emCalo gamma 17304 3.82417 66173.5 - case= 36 emCalo muon 3.22 19.6125 63.1523 - case= 37 emCalo neutrino 9.59 38.5887 370.065 - case= 38 emCalo pion 34.59 1086.81 37592.8 - case= 39 emCalo neutron 2082.46 6.25053 13016.5 - case= 40 emCalo proton 80.19 95.391 7649.4 - case= 41 emCalo ion 2094.17 0.435454 911.916 - case= 42 emCalo otherMeson 2.8 2410.88 6750.47 - case= 43 emCalo otherBaryon 0.87 680.613 592.133 - case= 44 emCalo below 20 MeV all 53246.1 0.875036 46592.3 - case= 45 emCalo below 20 MeV electron 32179.4 0.705166 22691.8 - case= 46 emCalo below 20 MeV gamma 16962 1.21513 20611 - case= 47 emCalo below 20 MeV muon 2.92 4.15665 12.1374 - case= 48 emCalo below 20 MeV neutrino 0.8 15.5678 12.4542 - case= 49 emCalo below 20 MeV pion 0.7 13.0648 9.14535 - case= 50 emCalo below 20 MeV neutron 1989.03 1.3191 2623.73 - case= 51 emCalo below 20 MeV proton 28.65 12.4919 357.894 - case= 52 emCalo below 20 MeV ion 2082.28 0.130371 271.469 - case= 53 emCalo below 20 MeV otherMeson 0.3 5.58178 1.67454 - case= 54 emCalo below 20 MeV otherBaryon 0.06 15.3706 0.922234 - case= 55 emCalo above 20 MeV all 907.34 170.604 154795 - case= 56 emCalo above 20 MeV electron 362.15 125.848 45576 - case= 57 emCalo above 20 MeV gamma 342.04 133.208 45562.4 - case= 58 emCalo above 20 MeV muon 0.3 170.05 51.0149 - case= 59 emCalo above 20 MeV neutrino 8.79 40.6838 357.611 - case= 60 emCalo above 20 MeV pion 33.89 1108.99 37583.7 - case= 61 emCalo above 20 MeV neutron 93.43 111.236 10392.7 - case= 62 emCalo above 20 MeV proton 51.54 141.473 7291.51 - case= 63 emCalo above 20 MeV ion 11.89 53.8643 640.447 - case= 64 emCalo above 20 MeV otherMeson 2.5 2699.52 6748.79 - case= 65 emCalo above 20 MeV otherBaryon 0.81 729.89 591.211 - case= 66 hadCalo all 21783.6 2.34392 51059 - case= 67 hadCalo electron 12683.5 1.2493 15845.5 - case= 68 hadCalo gamma 6527.77 2.46351 16081.2 - case= 69 hadCalo muon 1.4 14.7175 20.6044 - case= 70 hadCalo neutrino 4.26 38.0252 161.987 - case= 71 hadCalo pion 11.01 830.916 9148.38 - case= 72 hadCalo neutron 1207.95 4.39554 5309.59 - case= 73 hadCalo proton 35.01 73.9006 2587.26 - case= 74 hadCalo ion 1311.83 0.298794 391.966 - case= 75 hadCalo otherMeson 0.73 2042.22 1490.82 - case= 76 hadCalo otherBaryon 0.13 167.012 21.7116 - case= 77 hadCalo below 20 MeV all 21556.1 0.760838 16400.7 - case= 78 hadCalo below 20 MeV electron 12610.9 0.591227 7455.88 - case= 79 hadCalo below 20 MeV gamma 6460.35 1.11681 7215 - case= 80 hadCalo below 20 MeV muon 1.3 4.11981 5.35576 - case= 81 hadCalo below 20 MeV neutrino 0.28 14.7152 4.12027 - case= 82 hadCalo below 20 MeV pion 0.25 11.6579 2.91448 - case= 83 hadCalo below 20 MeV neutron 1162.76 1.22714 1426.87 - case= 84 hadCalo below 20 MeV proton 13.29 12.8938 171.359 - case= 85 hadCalo below 20 MeV ion 1306.98 0.0908803 118.779 - case= 86 hadCalo below 20 MeV otherMeson 0.05 4.04637 0.202318 - case= 87 hadCalo below 20 MeV otherBaryon 0.02 12.4323 0.248647 - case= 88 hadCalo above 20 MeV all 227.43 152.391 34658.3 - case= 89 hadCalo above 20 MeV electron 72.62 115.527 8389.6 - case= 90 hadCalo above 20 MeV gamma 67.42 131.507 8866.22 - case= 91 hadCalo above 20 MeV muon 0.1 152.487 15.2487 - case= 92 hadCalo above 20 MeV neutrino 3.98 39.6651 157.867 - case= 93 hadCalo above 20 MeV pion 10.76 849.951 9145.47 - case= 94 hadCalo above 20 MeV neutron 45.19 85.9198 3882.71 - case= 95 hadCalo above 20 MeV proton 21.72 111.229 2415.9 - case= 96 hadCalo above 20 MeV ion 4.85 56.3274 273.188 - case= 97 hadCalo above 20 MeV otherMeson 0.68 2192.09 1490.62 - case= 98 hadCalo above 20 MeV otherBaryon 0.11 195.118 21.4629 + case= 22 tracker above 20 MeV all 26.41 1018.55 26900 + case= 23 tracker above 20 MeV electron 6.48 434.347 2814.57 + case= 24 tracker above 20 MeV gamma 10.09 543.7 5485.93 + case= 25 tracker above 20 MeV muon 0.02 275.433 5.50867 + case= 26 tracker above 20 MeV neutrino 0.28 44.543 12.472 + case= 27 tracker above 20 MeV pion 5.12 2805.29 14363.1 + case= 28 tracker above 20 MeV neutron 2.06 661.167 1362 + case= 29 tracker above 20 MeV proton 1.65 425.374 701.866 + case= 30 tracker above 20 MeV ion 0.25 40.1084 10.0271 + case= 31 tracker above 20 MeV otherMeson 0.41 5211.85 2136.86 + case= 32 tracker above 20 MeV otherBaryon 0.05 153.084 7.65422 + case= 33 emCalo all 55650.8 3.58411 199459 + case= 34 emCalo electron 33309.5 1.97812 65890.1 + case= 35 emCalo gamma 17668.2 3.65338 64548.8 + case= 36 emCalo muon 3.79 11.9082 45.1319 + case= 37 emCalo neutrino 11.45 36.4311 417.136 + case= 38 emCalo pion 37.45 996.727 37327.4 + case= 39 emCalo neutron 2260.74 5.82167 13161.3 + case= 40 emCalo proton 86.51 95.7309 8281.68 + case= 41 emCalo ion 2269.45 0.412922 937.106 + case= 42 emCalo otherMeson 2.91 2834.17 8247.44 + case= 43 emCalo otherBaryon 0.8 753.229 602.583 + case= 44 emCalo below 20 MeV all 54746.8 0.866457 47435.7 + case= 45 emCalo below 20 MeV electron 32952.3 0.694895 22898.4 + case= 46 emCalo below 20 MeV gamma 17337 1.20609 20910 + case= 47 emCalo below 20 MeV muon 3.57 4.11981 14.7077 + case= 48 emCalo below 20 MeV neutrino 0.87 14.9441 13.0013 + case= 49 emCalo below 20 MeV pion 0.82 11.4703 9.40566 + case= 50 emCalo below 20 MeV neutron 2161.59 1.33086 2876.77 + case= 51 emCalo below 20 MeV proton 32.54 12.5386 408.008 + case= 52 emCalo below 20 MeV ion 2257.87 0.13428 303.187 + case= 53 emCalo below 20 MeV otherMeson 0.19 8.26379 1.57012 + case= 54 emCalo below 20 MeV otherBaryon 0.06 11.3985 0.683909 + case= 55 emCalo above 20 MeV all 903.99 168.169 152023 + case= 56 emCalo above 20 MeV electron 357.22 120.351 42991.7 + case= 57 emCalo above 20 MeV gamma 331.18 131.767 43638.7 + case= 58 emCalo above 20 MeV muon 0.22 138.292 30.4242 + case= 59 emCalo above 20 MeV neutrino 10.58 38.198 404.134 + case= 60 emCalo above 20 MeV pion 36.63 1018.78 37318 + case= 61 emCalo above 20 MeV neutron 99.15 103.727 10284.5 + case= 62 emCalo above 20 MeV proton 53.97 145.89 7873.67 + case= 63 emCalo above 20 MeV ion 11.58 54.7425 633.919 + case= 64 emCalo above 20 MeV otherMeson 2.72 3031.57 8245.87 + case= 65 emCalo above 20 MeV otherBaryon 0.74 813.378 601.9 + case= 66 hadCalo all 19952.4 2.00148 39934.3 + case= 67 hadCalo electron 11500 1.00774 11589 + case= 68 hadCalo gamma 5873.83 2.01459 11833.4 + case= 69 hadCalo muon 1.58 9.754 15.4113 + case= 70 hadCalo neutrino 4.76 35.7231 170.042 + case= 71 hadCalo pion 10.92 572.037 6246.64 + case= 72 hadCalo neutron 1206.35 4.74247 5721.07 + case= 73 hadCalo proton 35.16 85.4481 3004.35 + case= 74 hadCalo ion 1318.96 0.272017 358.78 + case= 75 hadCalo otherMeson 0.68 1279.95 870.366 + case= 76 hadCalo otherBaryon 0.23 544.694 125.28 + case= 77 hadCalo below 20 MeV all 19764.9 0.728998 14408.6 + case= 78 hadCalo below 20 MeV electron 11448.9 0.559158 6401.75 + case= 79 hadCalo below 20 MeV gamma 5827.69 1.08707 6335.1 + case= 80 hadCalo below 20 MeV muon 1.52 4.11981 6.26212 + case= 81 hadCalo below 20 MeV neutrino 0.37 14.8865 5.508 + case= 82 hadCalo below 20 MeV pion 0.29 10.6537 3.08958 + case= 83 hadCalo below 20 MeV neutron 1159.67 1.19345 1384 + case= 84 hadCalo below 20 MeV proton 12 12.7605 153.126 + case= 85 hadCalo below 20 MeV ion 1314.33 0.0904309 118.856 + case= 86 hadCalo below 20 MeV otherMeson 0.07 7.20754 0.504528 + case= 87 hadCalo below 20 MeV otherBaryon 0.04 9.10136 0.364054 + case= 88 hadCalo above 20 MeV all 187.54 136.108 25525.7 + case= 89 hadCalo above 20 MeV electron 51.05 101.611 5187.23 + case= 90 hadCalo above 20 MeV gamma 46.14 119.165 5498.25 + case= 91 hadCalo above 20 MeV muon 0.06 152.487 9.14921 + case= 92 hadCalo above 20 MeV neutrino 4.39 37.4792 164.534 + case= 93 hadCalo above 20 MeV pion 10.63 587.352 6243.55 + case= 94 hadCalo above 20 MeV neutron 46.68 92.9107 4337.07 + case= 95 hadCalo above 20 MeV proton 23.16 123.11 2851.23 + case= 96 hadCalo above 20 MeV ion 4.63 51.8195 239.924 + case= 97 hadCalo above 20 MeV otherMeson 0.61 1426 869.861 + case= 98 hadCalo above 20 MeV otherBaryon 0.19 657.451 124.916 ============================================================= ================== Deleting memory pools =================== diff --git a/examples/extended/hadronic/ParticleFluence/Layer/Layer.out b/examples/extended/hadronic/ParticleFluence/Layer/Layer.out index dc3c28904a0c0440f8bae421672dd830fa452128..339fcc2a57fa47fbec0f4b1574f777a42bc34d8d 100644 --- a/examples/extended/hadronic/ParticleFluence/Layer/Layer.out +++ b/examples/extended/hadronic/ParticleFluence/Layer/Layer.out @@ -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 @@ -810,7 +810,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.650000s Real=0.665370s Sys=0.010000s + User=0.420000s Real=0.424600s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 0 @@ -835,7 +835,7 @@ Run Summary case= 9 downstream otherMeson 4.82602e-05 case= 10 downstream otherBaryon 6.08045e-07 case= 11 downstream below 20 MeV all 0.00672744 - case= 12 downstream below 20 MeV electron 0.00044616 + case= 12 downstream below 20 MeV electron 0.000446161 case= 13 downstream below 20 MeV gamma 0.00616509 case= 14 downstream below 20 MeV muon 0 case= 15 downstream below 20 MeV neutrino 0 @@ -1021,7 +1021,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=4.770000s Real=4.800717s Sys=0.010000s + User=3.250000s Real=3.291569s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 1 @@ -1034,140 +1034,140 @@ 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.045193 - case= 1 downstream electron 0.00424154 - case= 2 downstream gamma 0.0375148 - case= 3 downstream muon 1.43457e-05 - case= 4 downstream neutrino 0.00038344 - case= 5 downstream pion 0.000636305 - case= 6 downstream neutron 0.00207727 - case= 7 downstream proton 0.000257068 - case= 8 downstream ion 7.65402e-06 - case= 9 downstream otherMeson 5.67597e-05 - case= 10 downstream otherBaryon 3.84463e-06 - case= 11 downstream below 20 MeV all 0.0360225 - case= 12 downstream below 20 MeV electron 0.00222614 - case= 13 downstream below 20 MeV gamma 0.0326568 + case= 0 downstream all 0.0454072 + case= 1 downstream electron 0.00413017 + case= 2 downstream gamma 0.0378251 + case= 3 downstream muon 1.05939e-05 + case= 4 downstream neutrino 0.000350836 + case= 5 downstream pion 0.000641681 + case= 6 downstream neutron 0.00208604 + case= 7 downstream proton 0.000292048 + case= 8 downstream ion 1.32496e-06 + case= 9 downstream otherMeson 6.50303e-05 + case= 10 downstream otherBaryon 4.44304e-06 + case= 11 downstream below 20 MeV all 0.0363028 + case= 12 downstream below 20 MeV electron 0.00210862 + case= 13 downstream below 20 MeV gamma 0.0330833 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 2.71285e-05 - case= 16 downstream below 20 MeV pion 1.49567e-06 - case= 17 downstream below 20 MeV neutron 0.00111088 - case= 18 downstream below 20 MeV proton 0 + case= 15 downstream below 20 MeV neutrino 2.95658e-05 + case= 16 downstream below 20 MeV pion 6.09889e-06 + case= 17 downstream below 20 MeV neutron 0.0010721 + case= 18 downstream below 20 MeV proton 3.0703e-06 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.00917055 - case= 23 downstream above 20 MeV electron 0.0020154 - case= 24 downstream above 20 MeV gamma 0.00485797 - case= 25 downstream above 20 MeV muon 1.43457e-05 - case= 26 downstream above 20 MeV neutrino 0.000356311 - case= 27 downstream above 20 MeV pion 0.000634809 - case= 28 downstream above 20 MeV neutron 0.000966384 - case= 29 downstream above 20 MeV proton 0.000257068 - case= 30 downstream above 20 MeV ion 7.65402e-06 - case= 31 downstream above 20 MeV otherMeson 5.67597e-05 - case= 32 downstream above 20 MeV otherBaryon 3.84463e-06 - case= 33 side all 0.00263197 - case= 34 side electron 0.000103316 - case= 35 side gamma 0.0018659 - case= 36 side muon 3.88556e-07 - case= 37 side neutrino 0.00017898 - case= 38 side pion 1.40775e-05 - case= 39 side neutron 0.000461494 - case= 40 side proton 6.6299e-06 + case= 22 downstream above 20 MeV all 0.00910444 + case= 23 downstream above 20 MeV electron 0.00202155 + case= 24 downstream above 20 MeV gamma 0.00474174 + case= 25 downstream above 20 MeV muon 1.05939e-05 + case= 26 downstream above 20 MeV neutrino 0.00032127 + case= 27 downstream above 20 MeV pion 0.000635582 + case= 28 downstream above 20 MeV neutron 0.00101393 + case= 29 downstream above 20 MeV proton 0.000288977 + case= 30 downstream above 20 MeV ion 1.32496e-06 + case= 31 downstream above 20 MeV otherMeson 6.50303e-05 + case= 32 downstream above 20 MeV otherBaryon 4.44304e-06 + case= 33 side all 0.00310778 + case= 34 side electron 0.000111624 + case= 35 side gamma 0.0022335 + case= 36 side muon 9.56343e-07 + case= 37 side neutrino 0.000211205 + case= 38 side pion 1.76999e-05 + case= 39 side neutron 0.000522713 + case= 40 side proton 9.77207e-06 case= 41 side ion 0 - case= 42 side otherMeson 1.18589e-06 + case= 42 side otherMeson 3.16774e-07 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00209671 - case= 45 side below 20 MeV electron 5.70101e-05 - case= 46 side below 20 MeV gamma 0.0017302 + case= 44 side below 20 MeV all 0.00250126 + case= 45 side below 20 MeV electron 6.0882e-05 + case= 46 side below 20 MeV gamma 0.00208438 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 1.60533e-05 + case= 48 side below 20 MeV neutrino 2.07963e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.000293099 + case= 50 side below 20 MeV neutron 0.000334858 case= 51 side below 20 MeV proton 3.39956e-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.000535266 - case= 56 side above 20 MeV electron 4.63061e-05 - case= 57 side above 20 MeV gamma 0.000135697 - case= 58 side above 20 MeV muon 3.88556e-07 - case= 59 side above 20 MeV neutrino 0.000162926 - case= 60 side above 20 MeV pion 1.40775e-05 - case= 61 side above 20 MeV neutron 0.000168394 - case= 62 side above 20 MeV proton 6.28995e-06 + case= 55 side above 20 MeV all 0.000606524 + case= 56 side above 20 MeV electron 5.07418e-05 + case= 57 side above 20 MeV gamma 0.000149113 + case= 58 side above 20 MeV muon 9.56343e-07 + case= 59 side above 20 MeV neutrino 0.000190409 + case= 60 side above 20 MeV pion 1.76999e-05 + case= 61 side above 20 MeV neutron 0.000187855 + case= 62 side above 20 MeV proton 9.43212e-06 case= 63 side above 20 MeV ion 0 - case= 64 side above 20 MeV otherMeson 1.18589e-06 + case= 64 side above 20 MeV otherMeson 3.16774e-07 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.00239761 - case= 67 upstream electron 2.74138e-05 - case= 68 upstream gamma 0.00157625 + case= 66 upstream all 0.00263608 + case= 67 upstream electron 3.45687e-05 + case= 68 upstream gamma 0.00171885 case= 69 upstream muon 0 - case= 70 upstream neutrino 0.000192401 - case= 71 upstream pion 1.69603e-05 - case= 72 upstream neutron 0.000582362 - case= 73 upstream proton 0 + case= 70 upstream neutrino 0.000218091 + case= 71 upstream pion 1.34056e-05 + case= 72 upstream neutron 0.000635547 + case= 73 upstream proton 1.3399e-05 case= 74 upstream ion 2.21588e-06 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0019505 - case= 78 upstream below 20 MeV electron 1.10498e-05 - case= 79 upstream below 20 MeV gamma 0.00148691 + case= 77 upstream below 20 MeV all 0.00215678 + case= 78 upstream below 20 MeV electron 2.50982e-05 + case= 79 upstream below 20 MeV gamma 0.00161436 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 1.4112e-05 + case= 81 upstream below 20 MeV neutrino 1.35863e-05 case= 82 upstream below 20 MeV pion 1.32497e-06 - case= 83 upstream below 20 MeV neutron 0.0004371 - case= 84 upstream below 20 MeV proton 0 + case= 83 upstream below 20 MeV neutron 0.000500546 + case= 84 upstream below 20 MeV proton 1.85789e-06 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.000447107 - case= 89 upstream above 20 MeV electron 1.6364e-05 - case= 90 upstream above 20 MeV gamma 8.93411e-05 + case= 88 upstream above 20 MeV all 0.000479303 + case= 89 upstream above 20 MeV electron 9.47057e-06 + case= 90 upstream above 20 MeV gamma 0.000104489 case= 91 upstream above 20 MeV muon 0 - case= 92 upstream above 20 MeV neutrino 0.000178289 - case= 93 upstream above 20 MeV pion 1.56353e-05 - case= 94 upstream above 20 MeV neutron 0.000145262 - case= 95 upstream above 20 MeV proton 0 + case= 92 upstream above 20 MeV neutrino 0.000204504 + case= 93 upstream above 20 MeV pion 1.20806e-05 + case= 94 upstream above 20 MeV neutron 0.000135001 + case= 95 upstream above 20 MeV proton 1.15411e-05 case= 96 upstream above 20 MeV ion 2.21588e-06 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 layer all 12068.6 10.8509 130955 - case= 1 layer electron 10307.8 2.49011 25667.6 - case= 2 layer gamma 1218.03 26.9148 32783.1 - case= 3 layer muon 2.54 37.9442 96.3784 - case= 4 layer neutrino 7.43 38.7173 287.669 - case= 5 layer pion 34.01 1505.64 51206.7 - case= 6 layer neutron 75.19 91.7468 6898.44 - case= 7 layer proton 41.93 130.357 5465.89 - case= 8 layer ion 378.73 2.03144 769.369 - case= 9 layer otherMeson 2.48 2882.09 7147.59 - case= 10 layer otherBaryon 0.44 1437.41 632.459 - case= 11 layer below 20 MeV all 11773.8 0.422599 4975.61 - case= 12 layer below 20 MeV electron 10216.4 0.240111 2453.08 - case= 13 layer below 20 MeV gamma 1115.94 1.39383 1555.43 - case= 14 layer below 20 MeV muon 2.32 4.18431 9.7076 - case= 15 layer below 20 MeV neutrino 0.65 14.0236 9.11534 - case= 16 layer below 20 MeV pion 0.4 13.1177 5.24707 - case= 17 layer below 20 MeV neutron 42.57 6.33114 269.516 - case= 18 layer below 20 MeV proton 21.45 7.26888 155.917 - case= 19 layer below 20 MeV ion 373.96 1.3816 516.664 - case= 20 layer below 20 MeV otherMeson 0.07 5.82832 0.407983 - case= 21 layer below 20 MeV otherBaryon 0.04 13.0733 0.522931 - case= 22 layer above 20 MeV all 294.74 427.426 125980 - case= 23 layer above 20 MeV electron 91.36 254.099 23214.5 - case= 24 layer above 20 MeV gamma 102.09 305.884 31227.7 - case= 25 layer above 20 MeV muon 0.22 393.958 86.6708 - case= 26 layer above 20 MeV neutrino 6.78 41.0847 278.554 - case= 27 layer above 20 MeV pion 33.61 1523.4 51201.5 - case= 28 layer above 20 MeV neutron 32.62 203.217 6628.92 - case= 29 layer above 20 MeV proton 20.48 259.276 5309.97 - case= 30 layer above 20 MeV ion 4.77 52.978 252.705 - case= 31 layer above 20 MeV otherMeson 2.41 2965.64 7147.19 - case= 32 layer above 20 MeV otherBaryon 0.4 1579.84 631.936 + case= 0 layer all 12986.3 10.4082 135164 + case= 1 layer electron 11079 2.27469 25201.3 + case= 2 layer gamma 1296.23 25.0579 32480.8 + case= 3 layer muon 2.94 20.606 60.5817 + case= 4 layer neutrino 8.61 36.325 312.758 + case= 5 layer pion 36.27 1379.79 50044.9 + case= 6 layer neutron 83.47 89.8463 7499.47 + case= 7 layer proton 46.7 132.063 6167.32 + case= 8 layer ion 429.71 1.8703 803.685 + case= 9 layer otherMeson 2.81 4188.95 11770.9 + case= 10 layer otherBaryon 0.54 1522.68 822.245 + case= 11 layer below 20 MeV all 12672.4 0.422474 5353.77 + case= 12 layer below 20 MeV electron 10982.1 0.238776 2622.26 + case= 13 layer below 20 MeV gamma 1190.13 1.3923 1657.01 + case= 14 layer below 20 MeV muon 2.71 4.16927 11.2987 + case= 15 layer below 20 MeV neutrino 0.79 14.6479 11.5718 + case= 16 layer below 20 MeV pion 0.42 12.5472 5.26982 + case= 17 layer below 20 MeV neutron 47.83 6.34238 303.356 + case= 18 layer below 20 MeV proton 23.52 7.40687 174.21 + case= 19 layer below 20 MeV ion 424.87 1.33741 568.225 + case= 20 layer below 20 MeV otherMeson 0.04 5.4276 0.217104 + case= 21 layer below 20 MeV otherBaryon 0.03 11.6438 0.349315 + case= 22 layer above 20 MeV all 313.84 413.619 129810 + case= 23 layer above 20 MeV electron 96.9 233.014 22579 + case= 24 layer above 20 MeV gamma 106.1 290.517 30823.8 + case= 25 layer above 20 MeV muon 0.23 214.274 49.283 + case= 26 layer above 20 MeV neutrino 7.82 38.5149 301.187 + case= 27 layer above 20 MeV pion 35.85 1395.8 50039.6 + case= 28 layer above 20 MeV neutron 35.64 201.911 7196.11 + case= 29 layer above 20 MeV proton 23.18 258.547 5993.11 + case= 30 layer above 20 MeV ion 4.84 48.6488 235.46 + case= 31 layer above 20 MeV otherMeson 2.77 4249.36 11770.7 + case= 32 layer above 20 MeV otherBaryon 0.51 1611.56 821.896 ============================================================= @@ -1237,7 +1237,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=6.890000s Real=7.036665s Sys=0.000000s + User=4.370000s Real=4.371503s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 2 @@ -1250,140 +1250,140 @@ 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.0674458 - case= 1 downstream electron 0.00492017 - case= 2 downstream gamma 0.0582286 - case= 3 downstream muon 4.02642e-06 - case= 4 downstream neutrino 0.000288782 - case= 5 downstream pion 0.000613687 - case= 6 downstream neutron 0.0030507 - case= 7 downstream proton 0.000262355 + case= 0 downstream all 0.0623825 + case= 1 downstream electron 0.00472345 + case= 2 downstream gamma 0.0529433 + case= 3 downstream muon 1.14641e-05 + case= 4 downstream neutrino 0.000337373 + case= 5 downstream pion 0.000675168 + case= 6 downstream neutron 0.00336848 + case= 7 downstream proton 0.000250889 case= 8 downstream ion 0 - case= 9 downstream otherMeson 7.27953e-05 - case= 10 downstream otherBaryon 4.68219e-06 - case= 11 downstream below 20 MeV all 0.0590331 - case= 12 downstream below 20 MeV electron 0.00306339 - case= 13 downstream below 20 MeV gamma 0.0537626 - case= 14 downstream below 20 MeV muon 1.33994e-06 - case= 15 downstream below 20 MeV neutrino 4.10431e-05 - case= 16 downstream below 20 MeV pion 4.89815e-06 - case= 17 downstream below 20 MeV neutron 0.00215317 - case= 18 downstream below 20 MeV proton 5.94472e-06 + case= 9 downstream otherMeson 6.92279e-05 + case= 10 downstream otherBaryon 3.13847e-06 + case= 11 downstream below 20 MeV all 0.0543068 + case= 12 downstream below 20 MeV electron 0.00293604 + case= 13 downstream below 20 MeV gamma 0.048937 + case= 14 downstream below 20 MeV muon 0 + case= 15 downstream below 20 MeV neutrino 1.89713e-05 + case= 16 downstream below 20 MeV pion 0 + case= 17 downstream below 20 MeV neutron 0.00239861 + case= 18 downstream below 20 MeV proton 1.61269e-05 case= 19 downstream below 20 MeV ion 0 - case= 20 downstream below 20 MeV otherMeson 7.70102e-07 + case= 20 downstream below 20 MeV otherMeson 0 case= 21 downstream below 20 MeV otherBaryon 0 - case= 22 downstream above 20 MeV all 0.0084127 - case= 23 downstream above 20 MeV electron 0.00185678 - case= 24 downstream above 20 MeV gamma 0.00446605 - case= 25 downstream above 20 MeV muon 2.68648e-06 - case= 26 downstream above 20 MeV neutrino 0.000247739 - case= 27 downstream above 20 MeV pion 0.000608789 - case= 28 downstream above 20 MeV neutron 0.00089753 - case= 29 downstream above 20 MeV proton 0.000256411 + case= 22 downstream above 20 MeV all 0.00807572 + case= 23 downstream above 20 MeV electron 0.00178741 + case= 24 downstream above 20 MeV gamma 0.00400629 + case= 25 downstream above 20 MeV muon 1.14641e-05 + case= 26 downstream above 20 MeV neutrino 0.000318402 + case= 27 downstream above 20 MeV pion 0.000675168 + case= 28 downstream above 20 MeV neutron 0.000969864 + case= 29 downstream above 20 MeV proton 0.000234762 case= 30 downstream above 20 MeV ion 0 - case= 31 downstream above 20 MeV otherMeson 7.20252e-05 - case= 32 downstream above 20 MeV otherBaryon 4.68219e-06 - case= 33 side all 0.00330746 - case= 34 side electron 6.25595e-05 - case= 35 side gamma 0.00181228 - case= 36 side muon 0 - case= 37 side neutrino 0.000178442 - case= 38 side pion 1.16805e-05 - case= 39 side neutron 0.0012382 - case= 40 side proton 3.91472e-06 + case= 31 downstream above 20 MeV otherMeson 6.92279e-05 + case= 32 downstream above 20 MeV otherBaryon 3.13847e-06 + case= 33 side all 0.0033981 + case= 34 side electron 7.5827e-05 + case= 35 side gamma 0.00184783 + case= 36 side muon 7.28126e-07 + case= 37 side neutrino 0.000191246 + case= 38 side pion 1.59929e-05 + case= 39 side neutron 0.00125978 + case= 40 side proton 6.31567e-06 case= 41 side ion 0 - case= 42 side otherMeson 3.92792e-07 + case= 42 side otherMeson 3.89781e-07 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00289992 - case= 45 side below 20 MeV electron 4.43329e-05 - case= 46 side below 20 MeV gamma 0.00175943 + case= 44 side below 20 MeV all 0.00296178 + case= 45 side below 20 MeV electron 6.11874e-05 + case= 46 side below 20 MeV gamma 0.00179666 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 1.66859e-05 + case= 48 side below 20 MeV neutrino 1.44841e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.00107947 + case= 50 side below 20 MeV neutron 0.00108945 case= 51 side below 20 MeV proton 0 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.000407545 - case= 56 side above 20 MeV electron 1.82266e-05 - case= 57 side above 20 MeV gamma 5.28467e-05 - case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000161756 - case= 60 side above 20 MeV pion 1.16805e-05 - case= 61 side above 20 MeV neutron 0.000158727 - case= 62 side above 20 MeV proton 3.91472e-06 + case= 55 side above 20 MeV all 0.000436328 + case= 56 side above 20 MeV electron 1.46396e-05 + case= 57 side above 20 MeV gamma 5.11721e-05 + case= 58 side above 20 MeV muon 7.28126e-07 + case= 59 side above 20 MeV neutrino 0.000176762 + case= 60 side above 20 MeV pion 1.59929e-05 + case= 61 side above 20 MeV neutron 0.000170328 + case= 62 side above 20 MeV proton 6.31567e-06 case= 63 side above 20 MeV ion 0 - case= 64 side above 20 MeV otherMeson 3.92792e-07 + case= 64 side above 20 MeV otherMeson 3.89781e-07 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.00274534 - case= 67 upstream electron 3.41164e-05 - case= 68 upstream gamma 0.00130335 - case= 69 upstream muon 2.74716e-06 - case= 70 upstream neutrino 0.000203301 - case= 71 upstream pion 1.75104e-05 - case= 72 upstream neutron 0.00117993 - case= 73 upstream proton 4.38054e-06 + case= 66 upstream all 0.00334351 + case= 67 upstream electron 5.06516e-05 + case= 68 upstream gamma 0.00184772 + case= 69 upstream muon 0 + case= 70 upstream neutrino 0.000177726 + case= 71 upstream pion 1.9413e-05 + case= 72 upstream neutron 0.00123778 + case= 73 upstream proton 1.02258e-05 case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.00238288 - case= 78 upstream below 20 MeV electron 2.05697e-05 - case= 79 upstream below 20 MeV gamma 0.00127997 + case= 77 upstream below 20 MeV all 0.00294573 + case= 78 upstream below 20 MeV electron 2.95043e-05 + case= 79 upstream below 20 MeV gamma 0.00178234 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 2.00445e-05 - case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.00106079 - case= 84 upstream below 20 MeV proton 1.50107e-06 + case= 81 upstream below 20 MeV neutrino 1.03158e-05 + case= 82 upstream below 20 MeV pion 1.69626e-06 + case= 83 upstream below 20 MeV neutron 0.00112188 + 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.000362459 - case= 89 upstream above 20 MeV electron 1.35467e-05 - case= 90 upstream above 20 MeV gamma 2.33759e-05 - case= 91 upstream above 20 MeV muon 2.74716e-06 - case= 92 upstream above 20 MeV neutrino 0.000183257 - case= 93 upstream above 20 MeV pion 1.75104e-05 - case= 94 upstream above 20 MeV neutron 0.000119143 - case= 95 upstream above 20 MeV proton 2.87947e-06 + case= 88 upstream above 20 MeV all 0.000397778 + case= 89 upstream above 20 MeV electron 2.11473e-05 + case= 90 upstream above 20 MeV gamma 6.53803e-05 + case= 91 upstream above 20 MeV muon 0 + case= 92 upstream above 20 MeV neutrino 0.00016741 + case= 93 upstream above 20 MeV pion 1.77167e-05 + case= 94 upstream above 20 MeV neutron 0.000115898 + case= 95 upstream above 20 MeV proton 1.02258e-05 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 layer all 17994.1 7.94788 143015 - case= 1 layer electron 14435 2.48829 35918.3 - case= 2 layer gamma 3117.68 12.601 39286 - case= 3 layer muon 2.45 23.9771 58.7439 - case= 4 layer neutrino 7.23 40.5618 293.262 - case= 5 layer pion 28.93 1559.35 45111.9 - case= 6 layer neutron 94.76 51.8928 4917.36 - case= 7 layer proton 67.49 84.6342 5711.96 - case= 8 layer ion 237.18 1.81757 431.092 - case= 9 layer otherMeson 2.9 3666.28 10632.2 - case= 10 layer otherBaryon 0.51 1282.41 654.028 - case= 11 layer below 20 MeV all 17564.6 0.559109 9820.54 - case= 12 layer below 20 MeV electron 14266.2 0.365152 5209.32 - case= 13 layer below 20 MeV gamma 2948.51 1.26462 3728.75 - case= 14 layer below 20 MeV muon 2.23 4.11981 9.18718 - case= 15 layer below 20 MeV neutrino 0.72 14.7192 10.5978 - case= 16 layer below 20 MeV pion 0.36 12.4265 4.47355 - case= 17 layer below 20 MeV neutron 67.14 4.40844 295.983 - case= 18 layer below 20 MeV proton 45.51 6.47402 294.633 - case= 19 layer below 20 MeV ion 233.89 1.14087 266.838 - case= 20 layer below 20 MeV otherMeson 0.02 9.64575 0.192915 - case= 21 layer below 20 MeV otherBaryon 0.05 11.3206 0.566032 - case= 22 layer above 20 MeV all 429.47 310.136 133194 - case= 23 layer above 20 MeV electron 168.77 181.958 30709 - case= 24 layer above 20 MeV gamma 169.17 210.186 35557.2 - case= 25 layer above 20 MeV muon 0.22 225.258 49.5567 - case= 26 layer above 20 MeV neutrino 6.51 43.42 282.664 - case= 27 layer above 20 MeV pion 28.57 1578.84 45107.4 - case= 28 layer above 20 MeV neutron 27.62 167.32 4621.38 - case= 29 layer above 20 MeV proton 21.98 246.466 5417.33 - case= 30 layer above 20 MeV ion 3.29 49.9253 164.254 - case= 31 layer above 20 MeV otherMeson 2.88 3691.67 10632 - case= 32 layer above 20 MeV otherBaryon 0.46 1420.57 653.462 + case= 0 layer all 18557.3 7.7556 143923 + case= 1 layer electron 14934 2.37792 35511.8 + case= 2 layer gamma 3169.1 12.1988 38659.3 + case= 3 layer muon 2.61 28.5824 74.6002 + case= 4 layer neutrino 7.62 38.1777 290.914 + case= 5 layer pion 30.46 1523.78 46414.5 + case= 6 layer neutron 96.54 59.6566 5759.25 + case= 7 layer proton 71.24 78.931 5623.05 + case= 8 layer ion 242.64 1.76549 428.378 + case= 9 layer otherMeson 2.65 3907.84 10355.8 + case= 10 layer otherBaryon 0.47 1714.04 805.597 + case= 11 layer below 20 MeV all 18123.3 0.552464 10012.5 + case= 12 layer below 20 MeV electron 14763 0.363458 5365.74 + case= 13 layer below 20 MeV gamma 3002.01 1.24888 3749.14 + case= 14 layer below 20 MeV muon 2.31 4.14856 9.58317 + case= 15 layer below 20 MeV neutrino 0.53 15.6319 8.28491 + case= 16 layer below 20 MeV pion 0.46 11.8767 5.4633 + case= 17 layer below 20 MeV neutron 67.98 4.34459 295.345 + case= 18 layer below 20 MeV proton 47.73 6.3793 304.484 + case= 19 layer below 20 MeV ion 239.16 1.14338 273.452 + case= 20 layer below 20 MeV otherMeson 0.09 9.6343 0.867087 + case= 21 layer below 20 MeV otherBaryon 0.01 11.0981 0.110981 + case= 22 layer above 20 MeV all 434.03 308.529 133911 + case= 23 layer above 20 MeV electron 170.98 176.313 30146.1 + case= 24 layer above 20 MeV gamma 167.09 208.93 34910.2 + case= 25 layer above 20 MeV muon 0.3 216.723 65.017 + case= 26 layer above 20 MeV neutrino 7.09 39.863 282.629 + case= 27 layer above 20 MeV pion 30 1546.97 46409 + case= 28 layer above 20 MeV neutron 28.56 191.313 5463.9 + case= 29 layer above 20 MeV proton 23.51 226.226 5318.56 + case= 30 layer above 20 MeV ion 3.48 44.519 154.926 + case= 31 layer above 20 MeV otherMeson 2.56 4044.89 10354.9 + case= 32 layer above 20 MeV otherBaryon 0.46 1751.06 805.486 ============================================================= @@ -1458,7 +1458,7 @@ Index : 4 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=3.730000s Real=3.765751s Sys=0.000000s + User=1.880000s Real=1.893670s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 3 @@ -1471,140 +1471,140 @@ 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.0688341 - case= 1 downstream electron 0.00572062 - case= 2 downstream gamma 0.0590037 - case= 3 downstream muon 8.26679e-06 - case= 4 downstream neutrino 0.000130396 - case= 5 downstream pion 0.000740835 - case= 6 downstream neutron 0.00292862 - case= 7 downstream proton 0.000237994 - case= 8 downstream ion 1.0295e-05 - case= 9 downstream otherMeson 4.82012e-05 - case= 10 downstream otherBaryon 5.17243e-06 - case= 11 downstream below 20 MeV all 0.0598035 - case= 12 downstream below 20 MeV electron 0.00344073 - case= 13 downstream below 20 MeV gamma 0.0541476 - case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 2.6046e-05 - case= 16 downstream below 20 MeV pion 2.96495e-06 - case= 17 downstream below 20 MeV neutron 0.00217917 - case= 18 downstream below 20 MeV proton 6.9675e-06 + case= 0 downstream all 0.0539571 + case= 1 downstream electron 0.00435871 + case= 2 downstream gamma 0.0461174 + case= 3 downstream muon 1.03549e-05 + case= 4 downstream neutrino 0.000118072 + case= 5 downstream pion 0.000655465 + case= 6 downstream neutron 0.00247472 + case= 7 downstream proton 0.000183779 + case= 8 downstream ion 2.93729e-06 + case= 9 downstream otherMeson 3.27901e-05 + case= 10 downstream otherBaryon 2.8687e-06 + case= 11 downstream below 20 MeV all 0.0470575 + case= 12 downstream below 20 MeV electron 0.00269286 + case= 13 downstream below 20 MeV gamma 0.0424159 + case= 14 downstream below 20 MeV muon 1.47472e-06 + case= 15 downstream below 20 MeV neutrino 8.74978e-06 + case= 16 downstream below 20 MeV pion 2.64377e-06 + case= 17 downstream below 20 MeV neutron 0.00193071 + case= 18 downstream below 20 MeV proton 5.18555e-06 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.00903061 - case= 23 downstream above 20 MeV electron 0.00227989 - case= 24 downstream above 20 MeV gamma 0.00485608 - case= 25 downstream above 20 MeV muon 8.26679e-06 - case= 26 downstream above 20 MeV neutrino 0.00010435 - case= 27 downstream above 20 MeV pion 0.00073787 - case= 28 downstream above 20 MeV neutron 0.000749453 - case= 29 downstream above 20 MeV proton 0.000231027 - case= 30 downstream above 20 MeV ion 1.0295e-05 - case= 31 downstream above 20 MeV otherMeson 4.82012e-05 - case= 32 downstream above 20 MeV otherBaryon 5.17243e-06 - case= 33 side all 0.00429347 - case= 34 side electron 8.34261e-05 - case= 35 side gamma 0.00281981 - case= 36 side muon 7.28864e-07 - case= 37 side neutrino 5.96667e-05 - case= 38 side pion 2.10274e-05 - case= 39 side neutron 0.00130264 - case= 40 side proton 5.59249e-06 + case= 22 downstream above 20 MeV all 0.00689963 + case= 23 downstream above 20 MeV electron 0.00166585 + case= 24 downstream above 20 MeV gamma 0.00370156 + case= 25 downstream above 20 MeV muon 8.88016e-06 + case= 26 downstream above 20 MeV neutrino 0.000109322 + case= 27 downstream above 20 MeV pion 0.000652821 + case= 28 downstream above 20 MeV neutron 0.000544007 + case= 29 downstream above 20 MeV proton 0.000178593 + case= 30 downstream above 20 MeV ion 2.93729e-06 + case= 31 downstream above 20 MeV otherMeson 3.27901e-05 + case= 32 downstream above 20 MeV otherBaryon 2.8687e-06 + case= 33 side all 0.00356356 + case= 34 side electron 8.10126e-05 + case= 35 side gamma 0.0022246 + case= 36 side muon 2.44336e-06 + case= 37 side neutrino 5.74461e-05 + case= 38 side pion 1.98207e-05 + case= 39 side neutron 0.00117113 + case= 40 side proton 5.16696e-06 case= 41 side ion 0 - case= 42 side otherMeson 5.74848e-07 + case= 42 side otherMeson 1.93528e-06 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00395252 - case= 45 side below 20 MeV electron 5.78068e-05 - case= 46 side below 20 MeV gamma 0.00274705 + case= 44 side below 20 MeV all 0.0032648 + case= 45 side below 20 MeV electron 6.24057e-05 + case= 46 side below 20 MeV gamma 0.00217354 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.43354e-06 + case= 48 side below 20 MeV neutrino 5.53585e-06 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.00114423 + case= 50 side below 20 MeV neutron 0.00102298 case= 51 side below 20 MeV proton 0 case= 52 side below 20 MeV ion 0 - case= 53 side below 20 MeV otherMeson 0 + case= 53 side below 20 MeV otherMeson 3.44317e-07 case= 54 side below 20 MeV otherBaryon 0 - case= 55 side above 20 MeV all 0.000340942 - case= 56 side above 20 MeV electron 2.56193e-05 - case= 57 side above 20 MeV gamma 7.27569e-05 - case= 58 side above 20 MeV muon 7.28864e-07 - case= 59 side above 20 MeV neutrino 5.62332e-05 - case= 60 side above 20 MeV pion 2.10274e-05 - case= 61 side above 20 MeV neutron 0.000158409 - case= 62 side above 20 MeV proton 5.59249e-06 + case= 55 side above 20 MeV all 0.000298751 + case= 56 side above 20 MeV electron 1.86069e-05 + case= 57 side above 20 MeV gamma 5.10601e-05 + case= 58 side above 20 MeV muon 2.44336e-06 + case= 59 side above 20 MeV neutrino 5.19102e-05 + case= 60 side above 20 MeV pion 1.98207e-05 + case= 61 side above 20 MeV neutron 0.000148151 + case= 62 side above 20 MeV proton 5.16696e-06 case= 63 side above 20 MeV ion 0 - case= 64 side above 20 MeV otherMeson 5.74848e-07 + case= 64 side above 20 MeV otherMeson 1.59097e-06 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.00251 - case= 67 upstream electron 2.549e-05 - case= 68 upstream gamma 0.0012555 + case= 66 upstream all 0.00222628 + case= 67 upstream electron 2.9952e-05 + case= 68 upstream gamma 0.00121037 case= 69 upstream muon 0 - case= 70 upstream neutrino 5.20196e-05 - case= 71 upstream pion 8.74185e-06 - case= 72 upstream neutron 0.00115344 - case= 73 upstream proton 9.23568e-06 - case= 74 upstream ion 5.56892e-06 + case= 70 upstream neutrino 5.52081e-05 + case= 71 upstream pion 7.97966e-06 + case= 72 upstream neutron 0.000921202 + case= 73 upstream proton 1.56265e-06 + case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.00231987 - case= 78 upstream below 20 MeV electron 2.27194e-05 - case= 79 upstream below 20 MeV gamma 0.00122671 + case= 77 upstream below 20 MeV all 0.00203079 + case= 78 upstream below 20 MeV electron 1.94557e-05 + case= 79 upstream below 20 MeV gamma 0.00118934 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 4.25143e-06 + case= 81 upstream below 20 MeV neutrino 3.33397e-06 case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.00105922 - case= 84 upstream below 20 MeV proton 2.75153e-06 - case= 85 upstream below 20 MeV ion 4.22101e-06 + case= 83 upstream below 20 MeV neutron 0.000818655 + 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.000190127 - case= 89 upstream above 20 MeV electron 2.7706e-06 - case= 90 upstream above 20 MeV gamma 2.87899e-05 + case= 88 upstream above 20 MeV all 0.00019549 + case= 89 upstream above 20 MeV electron 1.04964e-05 + case= 90 upstream above 20 MeV gamma 2.10305e-05 case= 91 upstream above 20 MeV muon 0 - case= 92 upstream above 20 MeV neutrino 4.77681e-05 - case= 93 upstream above 20 MeV pion 8.74185e-06 - case= 94 upstream above 20 MeV neutron 9.42243e-05 - case= 95 upstream above 20 MeV proton 6.48415e-06 - case= 96 upstream above 20 MeV ion 1.34791e-06 + case= 92 upstream above 20 MeV neutrino 5.18741e-05 + case= 93 upstream above 20 MeV pion 7.97966e-06 + case= 94 upstream above 20 MeV neutron 0.000102547 + case= 95 upstream above 20 MeV proton 1.56265e-06 + 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 layer all 8107.04 12.7749 103567 - case= 1 layer electron 6012.03 3.90405 23471.3 - case= 2 layer gamma 1849.17 15.225 28153.7 - case= 3 layer muon 0.9 96.3189 86.687 - case= 4 layer neutrino 2.53 45.4036 114.871 - case= 5 layer pion 18.84 1928.9 36340.5 - case= 6 layer neutron 79.77 52.3707 4177.61 - case= 7 layer proton 21.22 155.07 3290.58 - case= 8 layer ion 120.57 1.71087 206.279 - case= 9 layer otherMeson 1.52 4449.63 6763.44 - case= 10 layer otherBaryon 0.49 1962.83 961.787 - case= 11 layer below 20 MeV all 7848.16 0.657682 5161.6 - case= 12 layer below 20 MeV electron 5915.98 0.428703 2536.2 - case= 13 layer below 20 MeV gamma 1737.46 1.25302 2177.07 - case= 14 layer below 20 MeV muon 0.8 4.18866 3.35092 - case= 15 layer below 20 MeV neutrino 0.22 15.0363 3.30798 - case= 16 layer below 20 MeV pion 0.2 11.5981 2.31963 - case= 17 layer below 20 MeV neutron 64 3.82348 244.703 - case= 18 layer below 20 MeV proton 10.91 8.00854 87.3732 - case= 19 layer below 20 MeV ion 118.52 0.899157 106.568 - case= 20 layer below 20 MeV otherMeson 0.02 1.62504 0.0325008 - case= 21 layer below 20 MeV otherBaryon 0.05 13.5869 0.679344 - case= 22 layer above 20 MeV all 258.88 380.119 98405.1 - case= 23 layer above 20 MeV electron 96.05 217.96 20935.1 - case= 24 layer above 20 MeV gamma 111.71 232.536 25976.6 - case= 25 layer above 20 MeV muon 0.1 833.361 83.3361 - case= 26 layer above 20 MeV neutrino 2.31 48.2957 111.563 - case= 27 layer above 20 MeV pion 18.64 1949.47 36338.2 - case= 28 layer above 20 MeV neutron 15.77 249.392 3932.91 - case= 29 layer above 20 MeV proton 10.31 310.689 3203.2 - case= 30 layer above 20 MeV ion 2.05 48.6396 99.7111 - case= 31 layer above 20 MeV otherMeson 1.5 4508.94 6763.4 - case= 32 layer above 20 MeV otherBaryon 0.44 2184.34 961.108 + case= 0 layer all 6524.69 12.7931 83471.1 + case= 1 layer electron 4836.25 3.96357 19168.8 + case= 2 layer gamma 1474.29 15.9892 23572.7 + case= 3 layer muon 0.87 56.4184 49.084 + case= 4 layer neutrino 2.33 46.6376 108.666 + case= 5 layer pion 15.79 1815.97 28674.1 + case= 6 layer neutron 69.98 40.5907 2840.53 + case= 7 layer proton 17.49 166.39 2910.15 + case= 8 layer ion 105.83 1.76189 186.46 + case= 9 layer otherMeson 1.5 3644.65 5466.98 + case= 10 layer otherBaryon 0.36 1370.93 493.534 + case= 11 layer below 20 MeV all 6319.49 0.664248 4197.71 + case= 12 layer below 20 MeV electron 4761.01 0.43133 2053.57 + case= 13 layer below 20 MeV gamma 1388.14 1.26932 1762 + case= 14 layer below 20 MeV muon 0.67 4.35028 2.91469 + case= 15 layer below 20 MeV neutrino 0.21 15.8226 3.32275 + case= 16 layer below 20 MeV pion 0.17 10.9714 1.86513 + case= 17 layer below 20 MeV neutron 56.46 3.71609 209.811 + case= 18 layer below 20 MeV proton 8.82 8.08122 71.2763 + case= 19 layer below 20 MeV ion 103.97 0.89029 92.5634 + case= 20 layer below 20 MeV otherMeson 0.03 8.84657 0.265397 + case= 21 layer below 20 MeV otherBaryon 0.01 13.0265 0.130265 + case= 22 layer above 20 MeV all 205.2 386.322 79273.3 + case= 23 layer above 20 MeV electron 75.24 227.476 17115.3 + case= 24 layer above 20 MeV gamma 86.15 253.171 21810.7 + case= 25 layer above 20 MeV muon 0.2 230.846 46.1693 + case= 26 layer above 20 MeV neutrino 2.12 49.69 105.343 + case= 27 layer above 20 MeV pion 15.62 1835.61 28672.3 + case= 28 layer above 20 MeV neutron 13.52 194.58 2630.72 + case= 29 layer above 20 MeV proton 8.67 327.437 2838.88 + case= 30 layer above 20 MeV ion 1.86 50.4823 93.897 + case= 31 layer above 20 MeV otherMeson 1.47 3718.85 5466.71 + case= 32 layer above 20 MeV otherBaryon 0.35 1409.73 493.404 ============================================================= @@ -1684,7 +1684,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=27.980000s Real=28.144506s Sys=0.010000s + User=16.690000s Real=16.725027s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 4 @@ -1697,140 +1697,140 @@ 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.0156007 - case= 1 downstream electron 0.000342983 - case= 2 downstream gamma 0.00658687 - case= 3 downstream muon 2.60357e-06 - case= 4 downstream neutrino 0.000509862 - case= 5 downstream pion 0.000123957 - case= 6 downstream neutron 0.00793087 - case= 7 downstream proton 8.88309e-05 - case= 8 downstream ion 2.18489e-06 - case= 9 downstream otherMeson 1.25094e-05 + case= 0 downstream all 0.0203941 + case= 1 downstream electron 0.000844276 + case= 2 downstream gamma 0.0102727 + case= 3 downstream muon 1.48202e-06 + case= 4 downstream neutrino 0.000480632 + case= 5 downstream pion 0.000140045 + case= 6 downstream neutron 0.00856595 + case= 7 downstream proton 7.69595e-05 + case= 8 downstream ion 0 + case= 9 downstream otherMeson 1.20019e-05 case= 10 downstream otherBaryon 0 - case= 11 downstream below 20 MeV all 0.0139913 - case= 12 downstream below 20 MeV electron 0.000283797 - case= 13 downstream below 20 MeV gamma 0.00637502 + case= 11 downstream below 20 MeV all 0.018327 + case= 12 downstream below 20 MeV electron 0.000651673 + case= 13 downstream below 20 MeV gamma 0.00979707 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 4.15452e-05 + case= 15 downstream below 20 MeV neutrino 3.9958e-05 case= 16 downstream below 20 MeV pion 0 - case= 17 downstream below 20 MeV neutron 0.00728012 - case= 18 downstream below 20 MeV proton 1.08649e-05 + case= 17 downstream below 20 MeV neutron 0.00783007 + case= 18 downstream below 20 MeV proton 8.19782e-06 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.00160932 - case= 23 downstream above 20 MeV electron 5.91858e-05 - case= 24 downstream above 20 MeV gamma 0.000211846 - case= 25 downstream above 20 MeV muon 2.60357e-06 - case= 26 downstream above 20 MeV neutrino 0.000468317 - case= 27 downstream above 20 MeV pion 0.000123957 - case= 28 downstream above 20 MeV neutron 0.00065075 - case= 29 downstream above 20 MeV proton 7.7966e-05 - case= 30 downstream above 20 MeV ion 2.18489e-06 - case= 31 downstream above 20 MeV otherMeson 1.25094e-05 + case= 22 downstream above 20 MeV all 0.00206711 + case= 23 downstream above 20 MeV electron 0.000192603 + case= 24 downstream above 20 MeV gamma 0.000475663 + case= 25 downstream above 20 MeV muon 1.48202e-06 + case= 26 downstream above 20 MeV neutrino 0.000440674 + case= 27 downstream above 20 MeV pion 0.000140045 + case= 28 downstream above 20 MeV neutron 0.000735884 + case= 29 downstream above 20 MeV proton 6.87617e-05 + case= 30 downstream above 20 MeV ion 0 + case= 31 downstream above 20 MeV otherMeson 1.20019e-05 case= 32 downstream above 20 MeV otherBaryon 0 - case= 33 side all 0.00532923 - case= 34 side electron 5.11471e-06 - case= 35 side gamma 0.000470914 + case= 33 side all 0.00555258 + case= 34 side electron 6.67145e-06 + case= 35 side gamma 0.000502209 case= 36 side muon 0 - case= 37 side neutrino 0.000415928 - case= 38 side pion 3.20498e-07 - case= 39 side neutron 0.00443537 - case= 40 side proton 1.22047e-06 - case= 41 side ion 3.64463e-07 + case= 37 side neutrino 0.000410632 + case= 38 side pion 0 + case= 39 side neutron 0.00463275 + case= 40 side proton 3.19032e-07 + case= 41 side ion 0 case= 42 side otherMeson 0 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00481869 - case= 45 side below 20 MeV electron 5.11471e-06 - case= 46 side below 20 MeV gamma 0.000470914 + case= 44 side below 20 MeV all 0.00505999 + case= 45 side below 20 MeV electron 6.67145e-06 + case= 46 side below 20 MeV gamma 0.000501407 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.24043e-05 + case= 48 side below 20 MeV neutrino 3.52987e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.00431025 + case= 50 side below 20 MeV neutron 0.00451661 case= 51 side below 20 MeV proton 0 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.000510548 + case= 55 side above 20 MeV all 0.000492595 case= 56 side above 20 MeV electron 0 - case= 57 side above 20 MeV gamma 0 + case= 57 side above 20 MeV gamma 8.01606e-07 case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000383523 - case= 60 side above 20 MeV pion 3.20498e-07 - case= 61 side above 20 MeV neutron 0.000125119 - case= 62 side above 20 MeV proton 1.22047e-06 - case= 63 side above 20 MeV ion 3.64463e-07 + case= 59 side above 20 MeV neutrino 0.000375334 + case= 60 side above 20 MeV pion 0 + case= 61 side above 20 MeV neutron 0.000116141 + case= 62 side above 20 MeV proton 3.19032e-07 + case= 63 side above 20 MeV ion 0 case= 64 side above 20 MeV otherMeson 0 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.0141377 - case= 67 upstream electron 2.08662e-05 - case= 68 upstream gamma 0.0029474 - case= 69 upstream muon 6.15113e-06 - case= 70 upstream neutrino 0.000679785 - case= 71 upstream pion 1.39152e-05 - case= 72 upstream neutron 0.0104683 - case= 73 upstream proton 1.31136e-06 + case= 66 upstream all 0.0134028 + case= 67 upstream electron 6.62836e-05 + case= 68 upstream gamma 0.00246121 + case= 69 upstream muon 0 + case= 70 upstream neutrino 0.00061294 + case= 71 upstream pion 9.60148e-06 + case= 72 upstream neutron 0.0102487 + case= 73 upstream proton 4.05659e-06 case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0131431 - case= 78 upstream below 20 MeV electron 1.38875e-05 - case= 79 upstream below 20 MeV gamma 0.00293305 - case= 80 upstream below 20 MeV muon 2.31518e-06 - case= 81 upstream below 20 MeV neutrino 5.27972e-05 - case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.010141 + case= 77 upstream below 20 MeV all 0.0124376 + case= 78 upstream below 20 MeV electron 5.30713e-05 + case= 79 upstream below 20 MeV gamma 0.00244676 + case= 80 upstream below 20 MeV muon 0 + case= 81 upstream below 20 MeV neutrino 5.20363e-05 + case= 82 upstream below 20 MeV pion 2.44255e-06 + case= 83 upstream below 20 MeV neutron 0.00988333 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.000994625 - case= 89 upstream above 20 MeV electron 6.97866e-06 - case= 90 upstream above 20 MeV gamma 1.43501e-05 - case= 91 upstream above 20 MeV muon 3.83595e-06 - case= 92 upstream above 20 MeV neutrino 0.000626987 - case= 93 upstream above 20 MeV pion 1.39152e-05 - case= 94 upstream above 20 MeV neutron 0.000327246 - case= 95 upstream above 20 MeV proton 1.31136e-06 + case= 88 upstream above 20 MeV all 0.000965176 + case= 89 upstream above 20 MeV electron 1.32123e-05 + case= 90 upstream above 20 MeV gamma 1.44471e-05 + case= 91 upstream above 20 MeV muon 0 + case= 92 upstream above 20 MeV neutrino 0.000560903 + case= 93 upstream above 20 MeV pion 7.15893e-06 + case= 94 upstream above 20 MeV neutron 0.000365398 + case= 95 upstream above 20 MeV proton 4.05659e-06 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 layer all 56766 4.48734 254728 - case= 1 layer electron 42559.1 1.79315 76315 - case= 2 layer gamma 12079.3 6.1851 74711.8 - case= 3 layer muon 5.97 22.3993 133.724 - case= 4 layer neutrino 17.73 38.1626 676.624 - case= 5 layer pion 55.25 1135.77 62751.5 - case= 6 layer neutron 807.06 19.1983 15494.2 - case= 7 layer proton 179.2 68.033 12191.5 - case= 8 layer ion 1057.46 0.94978 1004.35 - case= 9 layer otherMeson 3.85 2862.51 11020.7 - case= 10 layer otherBaryon 1.08 397.173 428.946 - case= 11 layer below 20 MeV all 55701 0.65418 36438.5 - case= 12 layer below 20 MeV electron 42130.4 0.450639 18985.6 - case= 13 layer below 20 MeV gamma 11696.7 1.21081 14162.5 - case= 14 layer below 20 MeV muon 5.51 4.11981 22.7002 - case= 15 layer below 20 MeV neutrino 1.41 14.621 20.6156 - case= 16 layer below 20 MeV pion 1.07 12.2643 13.1228 - case= 17 layer below 20 MeV neutron 701.34 2.53773 1779.81 - case= 18 layer below 20 MeV proton 115.77 7.89877 914.441 - case= 19 layer below 20 MeV ion 1048.59 0.512987 537.913 - case= 20 layer below 20 MeV otherMeson 0.17 4.90035 0.83306 - case= 21 layer below 20 MeV otherBaryon 0.07 13.4559 0.941916 - case= 22 layer above 20 MeV all 1064.97 204.973 218290 - case= 23 layer above 20 MeV electron 428.68 133.735 57329.4 - case= 24 layer above 20 MeV gamma 382.62 158.249 60549.3 - case= 25 layer above 20 MeV muon 0.46 241.356 111.024 - case= 26 layer above 20 MeV neutrino 16.32 40.1966 656.008 - case= 27 layer above 20 MeV pion 54.18 1157.96 62738.3 - case= 28 layer above 20 MeV neutron 105.72 129.724 13714.4 - case= 29 layer above 20 MeV proton 63.43 177.788 11277.1 - case= 30 layer above 20 MeV ion 8.87 52.5864 466.442 - case= 31 layer above 20 MeV otherMeson 3.68 2994.52 11019.8 - case= 32 layer above 20 MeV otherBaryon 1.01 423.767 428.004 + case= 0 layer all 56020.5 4.5555 255202 + case= 1 layer electron 41894.2 1.7478 73222.6 + case= 2 layer gamma 11886.5 6.02721 71642.7 + case= 3 layer muon 5.74 13.2156 75.8578 + case= 4 layer neutrino 17.21 36.0571 620.542 + case= 5 layer pion 56.57 1122.54 63501.8 + case= 6 layer neutron 850.26 19.2251 16346.3 + case= 7 layer proton 189.91 61.7382 11724.7 + case= 8 layer ion 1114.38 0.920848 1026.17 + case= 9 layer otherMeson 4.68 3469.7 16238.2 + case= 10 layer otherBaryon 1.09 736.497 802.782 + case= 11 layer below 20 MeV all 54968.3 0.657003 36114.3 + case= 12 layer below 20 MeV electron 41480 0.450108 18670.5 + case= 13 layer below 20 MeV gamma 11513.6 1.21422 13980.1 + case= 14 layer below 20 MeV muon 5.38 4.15333 22.3449 + case= 15 layer below 20 MeV neutrino 1.5 14.8492 22.2737 + case= 16 layer below 20 MeV pion 1.38 12.0125 16.5772 + case= 17 layer below 20 MeV neutron 737.51 2.52418 1861.61 + case= 18 layer below 20 MeV proton 123.62 7.93789 981.282 + case= 19 layer below 20 MeV ion 1104.97 0.5043 557.236 + case= 20 layer below 20 MeV otherMeson 0.17 8.65485 1.47132 + case= 21 layer below 20 MeV otherBaryon 0.07 13.1707 0.921949 + case= 22 layer above 20 MeV all 1052.27 208.205 219087 + case= 23 layer above 20 MeV electron 414.14 131.724 54552.1 + case= 24 layer above 20 MeV gamma 372.89 154.637 57662.6 + case= 25 layer above 20 MeV muon 0.36 148.647 53.5128 + case= 26 layer above 20 MeV neutrino 15.71 38.082 598.268 + case= 27 layer above 20 MeV pion 55.19 1150.3 63485.2 + case= 28 layer above 20 MeV neutron 112.75 128.467 14484.7 + case= 29 layer above 20 MeV proton 66.29 162.067 10743.4 + case= 30 layer above 20 MeV ion 9.41 49.834 468.938 + case= 31 layer above 20 MeV otherMeson 4.51 3600.16 16236.7 + case= 32 layer above 20 MeV otherBaryon 1.02 786.137 801.86 ============================================================= @@ -1915,7 +1915,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=28.960000s Real=29.154952s Sys=0.010000s + User=17.030000s Real=17.062301s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 5 @@ -1928,140 +1928,140 @@ 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.00889505 - case= 1 downstream electron 0.000110512 - case= 2 downstream gamma 0.00326086 - case= 3 downstream muon 1.28282e-06 - case= 4 downstream neutrino 0.000437079 - case= 5 downstream pion 8.17882e-05 - case= 6 downstream neutron 0.00493508 - case= 7 downstream proton 6.04562e-05 + case= 0 downstream all 0.0113453 + case= 1 downstream electron 0.000249269 + case= 2 downstream gamma 0.00542681 + case= 3 downstream muon 1.30718e-06 + case= 4 downstream neutrino 0.000546338 + case= 5 downstream pion 0.000113231 + case= 6 downstream neutron 0.00489891 + case= 7 downstream proton 9.70854e-05 case= 8 downstream ion 0 - case= 9 downstream otherMeson 5.0823e-06 - case= 10 downstream otherBaryon 2.91049e-06 - case= 11 downstream below 20 MeV all 0.00768821 - case= 12 downstream below 20 MeV electron 9.1585e-05 - case= 13 downstream below 20 MeV gamma 0.00320013 + case= 9 downstream otherMeson 1.23217e-05 + case= 10 downstream otherBaryon 0 + case= 11 downstream below 20 MeV all 0.00980316 + case= 12 downstream below 20 MeV electron 0.000204986 + case= 13 downstream below 20 MeV gamma 0.00528667 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 3.31602e-05 - case= 16 downstream below 20 MeV pion 0 - case= 17 downstream below 20 MeV neutron 0.00436136 - case= 18 downstream below 20 MeV proton 1.97615e-06 + case= 15 downstream below 20 MeV neutrino 3.76576e-05 + case= 16 downstream below 20 MeV pion 1.27619e-06 + case= 17 downstream below 20 MeV neutron 0.0042615 + case= 18 downstream below 20 MeV proton 1.10673e-05 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.00120683 - case= 23 downstream above 20 MeV electron 1.89269e-05 - case= 24 downstream above 20 MeV gamma 6.07255e-05 - case= 25 downstream above 20 MeV muon 1.28282e-06 - case= 26 downstream above 20 MeV neutrino 0.000403919 - case= 27 downstream above 20 MeV pion 8.17882e-05 - case= 28 downstream above 20 MeV neutron 0.00057372 - case= 29 downstream above 20 MeV proton 5.848e-05 + case= 22 downstream above 20 MeV all 0.00154211 + case= 23 downstream above 20 MeV electron 4.42831e-05 + case= 24 downstream above 20 MeV gamma 0.000140136 + case= 25 downstream above 20 MeV muon 1.30718e-06 + case= 26 downstream above 20 MeV neutrino 0.000508681 + case= 27 downstream above 20 MeV pion 0.000111954 + case= 28 downstream above 20 MeV neutron 0.000637412 + case= 29 downstream above 20 MeV proton 8.60181e-05 case= 30 downstream above 20 MeV ion 0 - case= 31 downstream above 20 MeV otherMeson 5.0823e-06 - case= 32 downstream above 20 MeV otherBaryon 2.91049e-06 - case= 33 side all 0.00225998 - case= 34 side electron 3.67146e-06 - case= 35 side gamma 0.000408916 + case= 31 downstream above 20 MeV otherMeson 1.23217e-05 + case= 32 downstream above 20 MeV otherBaryon 0 + case= 33 side all 0.00222812 + case= 34 side electron 5.61803e-06 + case= 35 side gamma 0.000419151 case= 36 side muon 0 - case= 37 side neutrino 0.000428885 - case= 38 side pion 0 - case= 39 side neutron 0.00141775 - case= 40 side proton 7.6062e-07 + case= 37 side neutrino 0.000413772 + case= 38 side pion 6.81119e-07 + case= 39 side neutron 0.00138784 + case= 40 side proton 7.3061e-07 case= 41 side ion 0 - case= 42 side otherMeson 0 + case= 42 side otherMeson 3.35611e-07 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00176235 - case= 45 side below 20 MeV electron 3.67146e-06 - case= 46 side below 20 MeV gamma 0.000408916 + case= 44 side below 20 MeV all 0.00175163 + case= 45 side below 20 MeV electron 5.30034e-06 + case= 46 side below 20 MeV gamma 0.000418832 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.61603e-05 + case= 48 side below 20 MeV neutrino 3.98624e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.0013136 - case= 51 side below 20 MeV proton 0 + case= 50 side below 20 MeV neutron 0.0012873 + case= 51 side below 20 MeV proton 3.38071e-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.000497631 - case= 56 side above 20 MeV electron 0 - case= 57 side above 20 MeV gamma 0 + case= 55 side above 20 MeV all 0.000476495 + case= 56 side above 20 MeV electron 3.17691e-07 + case= 57 side above 20 MeV gamma 3.19132e-07 case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000392725 - case= 60 side above 20 MeV pion 0 - case= 61 side above 20 MeV neutron 0.000104145 - case= 62 side above 20 MeV proton 7.6062e-07 + case= 59 side above 20 MeV neutrino 0.000373909 + case= 60 side above 20 MeV pion 6.81119e-07 + case= 61 side above 20 MeV neutron 0.00010054 + case= 62 side above 20 MeV proton 3.92538e-07 case= 63 side above 20 MeV ion 0 - case= 64 side above 20 MeV otherMeson 0 + case= 64 side above 20 MeV otherMeson 3.35611e-07 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.0120346 - case= 67 upstream electron 0.000131597 - case= 68 upstream gamma 0.00324646 - case= 69 upstream muon 1.61759e-06 - case= 70 upstream neutrino 0.000750382 - case= 71 upstream pion 1.05953e-05 - case= 72 upstream neutron 0.00789391 - case= 73 upstream proton 0 + case= 66 upstream all 0.0115627 + case= 67 upstream electron 0.000125131 + case= 68 upstream gamma 0.00331541 + case= 69 upstream muon 0 + case= 70 upstream neutrino 0.000761193 + case= 71 upstream pion 5.7884e-05 + case= 72 upstream neutron 0.00730144 + case= 73 upstream proton 1.62177e-06 case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0109301 - case= 78 upstream below 20 MeV electron 0.000124718 - case= 79 upstream below 20 MeV gamma 0.0032155 + case= 77 upstream below 20 MeV all 0.0104034 + case= 78 upstream below 20 MeV electron 0.000116823 + case= 79 upstream below 20 MeV gamma 0.0032559 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 6.22572e-05 + case= 81 upstream below 20 MeV neutrino 6.73631e-05 case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.00752758 + case= 83 upstream below 20 MeV neutron 0.00696335 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.00110451 - case= 89 upstream above 20 MeV electron 6.87896e-06 - case= 90 upstream above 20 MeV gamma 3.09596e-05 - case= 91 upstream above 20 MeV muon 1.61759e-06 - case= 92 upstream above 20 MeV neutrino 0.000688124 - case= 93 upstream above 20 MeV pion 1.05953e-05 - case= 94 upstream above 20 MeV neutron 0.000366332 - case= 95 upstream above 20 MeV proton 0 + case= 88 upstream above 20 MeV all 0.00115925 + case= 89 upstream above 20 MeV electron 8.30791e-06 + case= 90 upstream above 20 MeV gamma 5.951e-05 + case= 91 upstream above 20 MeV muon 0 + case= 92 upstream above 20 MeV neutrino 0.00069383 + case= 93 upstream above 20 MeV pion 5.7884e-05 + case= 94 upstream above 20 MeV neutron 0.000338092 + case= 95 upstream above 20 MeV proton 1.62177e-06 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 layer all 62647.8 4.25162 266355 - case= 1 layer electron 46380 1.68885 78328.8 - case= 2 layer gamma 13926.6 5.51667 76828.3 - case= 3 layer muon 6.13 16.1257 98.8503 - case= 4 layer neutrino 18.3 36.8595 674.529 - case= 5 layer pion 58.69 1131.46 66405.2 - case= 6 layer neutron 897.7 18.4599 16571.5 - case= 7 layer proton 211 59.9034 12639.6 - case= 8 layer ion 1143.8 0.999607 1143.35 - case= 9 layer otherMeson 4.14 2947.13 12201.1 - case= 10 layer otherBaryon 1.5 975.865 1463.8 - case= 11 layer below 20 MeV all 61538.7 0.674565 41511.8 - case= 12 layer below 20 MeV electron 45944.8 0.462532 21250.9 - case= 13 layer below 20 MeV gamma 13535.7 1.21669 16468.7 - case= 14 layer below 20 MeV muon 5.74 4.13634 23.7426 - case= 15 layer below 20 MeV neutrino 1.51 14.778 22.3148 - case= 16 layer below 20 MeV pion 1.3 12.3349 16.0354 - case= 17 layer below 20 MeV neutron 779.37 2.65082 2065.97 - case= 18 layer below 20 MeV proton 137.12 8.0799 1107.92 - case= 19 layer below 20 MeV ion 1132.89 0.488411 553.316 - case= 20 layer below 20 MeV otherMeson 0.2 8.48559 1.69712 - case= 21 layer below 20 MeV otherBaryon 0.1 12.0883 1.20883 - case= 22 layer above 20 MeV all 1109.14 202.718 224843 - case= 23 layer above 20 MeV electron 435.23 131.144 57077.9 - case= 24 layer above 20 MeV gamma 390.88 154.42 60359.5 - case= 25 layer above 20 MeV muon 0.39 192.584 75.1077 - case= 26 layer above 20 MeV neutrino 16.79 38.8454 652.214 - case= 27 layer above 20 MeV pion 57.39 1156.81 66389.1 - case= 28 layer above 20 MeV neutron 118.33 122.585 14505.5 - case= 29 layer above 20 MeV proton 73.88 156.087 11531.7 - case= 30 layer above 20 MeV ion 10.91 54.082 590.034 - case= 31 layer above 20 MeV otherMeson 3.94 3096.3 12199.4 - case= 32 layer above 20 MeV otherBaryon 1.4 1044.71 1462.59 + case= 0 layer all 59405.2 4.30416 255690 + case= 1 layer electron 43941.9 1.66825 73306 + case= 2 layer gamma 13219 5.45184 72068 + case= 3 layer muon 6.12 14.015 85.772 + case= 4 layer neutrino 18.3 36.1702 661.914 + case= 5 layer pion 55.84 1174.94 65608.6 + case= 6 layer neutron 862.12 18.6894 16112.5 + case= 7 layer proton 200.01 60.9237 12185.3 + case= 8 layer ion 1096.09 0.99032 1085.48 + case= 9 layer otherMeson 4.8 2846.8 13664.6 + case= 10 layer otherBaryon 1.02 893.689 911.563 + case= 11 layer below 20 MeV all 58350.1 0.672945 39266.4 + case= 12 layer below 20 MeV electron 43529 0.461142 20073 + case= 13 layer below 20 MeV gamma 12846.5 1.21206 15570.7 + case= 14 layer below 20 MeV muon 5.7 4.12412 23.5075 + case= 15 layer below 20 MeV neutrino 1.7 14.9035 25.3359 + case= 16 layer below 20 MeV pion 1.04 11.3021 11.7541 + case= 17 layer below 20 MeV neutron 748 2.63869 1973.74 + case= 18 layer below 20 MeV proton 131.34 8.06613 1059.41 + case= 19 layer below 20 MeV ion 1086.38 0.484259 526.089 + case= 20 layer below 20 MeV otherMeson 0.31 5.60854 1.73865 + case= 21 layer below 20 MeV otherBaryon 0.09 11.1962 1.00765 + case= 22 layer above 20 MeV all 1055.18 205.106 216423 + case= 23 layer above 20 MeV electron 412.86 128.937 53232.9 + case= 24 layer above 20 MeV gamma 372.58 151.638 56497.2 + case= 25 layer above 20 MeV muon 0.42 148.249 62.2645 + case= 26 layer above 20 MeV neutrino 16.6 38.3481 636.578 + case= 27 layer above 20 MeV pion 54.8 1197.02 65596.9 + case= 28 layer above 20 MeV neutron 114.12 123.894 14138.8 + case= 29 layer above 20 MeV proton 68.67 162.02 11125.9 + case= 30 layer above 20 MeV ion 9.71 57.6097 559.39 + case= 31 layer above 20 MeV otherMeson 4.49 3042.96 13662.9 + case= 32 layer above 20 MeV otherBaryon 0.93 979.092 910.555 ============================================================= @@ -2151,7 +2151,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=72.880000s Real=73.660485s Sys=0.040000s + User=47.880000s Real=48.087992s Sys=0.070000s =============== Run::PrintInfo() =============== RunID = 6 @@ -2164,140 +2164,140 @@ 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.00104708 - case= 1 downstream electron 1.36543e-06 - case= 2 downstream gamma 5.80558e-05 - case= 3 downstream muon 1.80127e-06 - case= 4 downstream neutrino 0.000204133 - case= 5 downstream pion 1.3043e-06 - case= 6 downstream neutron 0.000780418 - case= 7 downstream proton 0 + case= 0 downstream all 0.00120259 + case= 1 downstream electron 0 + case= 2 downstream gamma 0.000107451 + case= 3 downstream muon 0 + case= 4 downstream neutrino 0.000245348 + case= 5 downstream pion 2.92659e-06 + case= 6 downstream neutron 0.000845544 + case= 7 downstream proton 1.323e-06 case= 8 downstream ion 0 case= 9 downstream otherMeson 0 case= 10 downstream otherBaryon 0 - case= 11 downstream below 20 MeV all 0.00082925 - case= 12 downstream below 20 MeV electron 1.36543e-06 - case= 13 downstream below 20 MeV gamma 5.80558e-05 + case= 11 downstream below 20 MeV all 0.000932532 + case= 12 downstream below 20 MeV electron 0 + case= 13 downstream below 20 MeV gamma 0.000107451 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 1.89846e-05 + case= 15 downstream below 20 MeV neutrino 3.64648e-05 case= 16 downstream below 20 MeV pion 0 - case= 17 downstream below 20 MeV neutron 0.000750844 + case= 17 downstream below 20 MeV neutron 0.000788616 case= 18 downstream below 20 MeV proton 0 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.000217829 + case= 22 downstream above 20 MeV all 0.00027006 case= 23 downstream above 20 MeV electron 0 case= 24 downstream above 20 MeV gamma 0 - case= 25 downstream above 20 MeV muon 1.80127e-06 - case= 26 downstream above 20 MeV neutrino 0.000185149 - case= 27 downstream above 20 MeV pion 1.3043e-06 - case= 28 downstream above 20 MeV neutron 2.95742e-05 - case= 29 downstream above 20 MeV proton 0 + case= 25 downstream above 20 MeV muon 0 + case= 26 downstream above 20 MeV neutrino 0.000208883 + case= 27 downstream above 20 MeV pion 2.92659e-06 + case= 28 downstream above 20 MeV neutron 5.69274e-05 + case= 29 downstream above 20 MeV proton 1.323e-06 case= 30 downstream above 20 MeV ion 0 case= 31 downstream above 20 MeV otherMeson 0 case= 32 downstream above 20 MeV otherBaryon 0 - case= 33 side all 0.000754132 - case= 34 side electron 3.26559e-07 - case= 35 side gamma 4.4751e-05 + case= 33 side all 0.000793001 + case= 34 side electron 3.41521e-07 + case= 35 side gamma 3.37317e-05 case= 36 side muon 0 - case= 37 side neutrino 0.00034985 + case= 37 side neutrino 0.00035428 case= 38 side pion 0 - case= 39 side neutron 0.000359204 + case= 39 side neutron 0.000404648 case= 40 side proton 0 case= 41 side ion 0 case= 42 side otherMeson 0 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.000415422 - case= 45 side below 20 MeV electron 3.26559e-07 - case= 46 side below 20 MeV gamma 4.4751e-05 + case= 44 side below 20 MeV all 0.000448421 + case= 45 side below 20 MeV electron 3.41521e-07 + case= 46 side below 20 MeV gamma 3.37317e-05 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.33182e-05 + case= 48 side below 20 MeV neutrino 3.04878e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.000337026 + case= 50 side below 20 MeV neutron 0.00038386 case= 51 side below 20 MeV proton 0 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.00033871 + case= 55 side above 20 MeV all 0.000344579 case= 56 side above 20 MeV electron 0 case= 57 side above 20 MeV gamma 0 case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000316532 + case= 59 side above 20 MeV neutrino 0.000323792 case= 60 side above 20 MeV pion 0 - case= 61 side above 20 MeV neutron 2.21779e-05 + case= 61 side above 20 MeV neutron 2.07871e-05 case= 62 side above 20 MeV proton 0 case= 63 side above 20 MeV ion 0 case= 64 side above 20 MeV otherMeson 0 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.0277591 - case= 67 upstream electron 7.51203e-05 - case= 68 upstream gamma 0.00348006 + case= 66 upstream all 0.0291733 + case= 67 upstream electron 6.50963e-05 + case= 68 upstream gamma 0.00380254 case= 69 upstream muon 0 - case= 70 upstream neutrino 0.00100596 - case= 71 upstream pion 1.24437e-05 - case= 72 upstream neutron 0.0231769 - case= 73 upstream proton 8.66711e-06 + case= 70 upstream neutrino 0.00110084 + case= 71 upstream pion 3.53502e-05 + case= 72 upstream neutron 0.0241254 + case= 73 upstream proton 4.40606e-05 case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0258932 - case= 78 upstream below 20 MeV electron 6.91544e-05 - case= 79 upstream below 20 MeV gamma 0.00347136 + case= 77 upstream below 20 MeV all 0.0271363 + case= 78 upstream below 20 MeV electron 6.15439e-05 + case= 79 upstream below 20 MeV gamma 0.0037979 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 7.00299e-05 + case= 81 upstream below 20 MeV neutrino 0.000111992 case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.0222812 - case= 84 upstream below 20 MeV proton 1.46929e-06 + case= 83 upstream below 20 MeV neutron 0.0231619 + case= 84 upstream below 20 MeV proton 2.99292e-06 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.00186591 - case= 89 upstream above 20 MeV electron 5.96585e-06 - case= 90 upstream above 20 MeV gamma 8.69693e-06 + case= 88 upstream above 20 MeV all 0.00203694 + case= 89 upstream above 20 MeV electron 3.55246e-06 + case= 90 upstream above 20 MeV gamma 4.63542e-06 case= 91 upstream above 20 MeV muon 0 - case= 92 upstream above 20 MeV neutrino 0.000935928 - case= 93 upstream above 20 MeV pion 1.24437e-05 - case= 94 upstream above 20 MeV neutron 0.000895674 - case= 95 upstream above 20 MeV proton 7.19781e-06 + case= 92 upstream above 20 MeV neutrino 0.000988844 + case= 93 upstream above 20 MeV pion 3.53502e-05 + case= 94 upstream above 20 MeV neutron 0.000963494 + case= 95 upstream above 20 MeV proton 4.10676e-05 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 layer all 73269.1 3.601 263842 - case= 1 layer electron 43455.3 1.88799 82043.5 - case= 2 layer gamma 22972.3 3.62846 83354 - case= 3 layer muon 5.25 15.4502 81.1136 - case= 4 layer neutrino 15.67 36.1948 567.172 - case= 5 layer pion 51.01 1076.39 54906.8 - case= 6 layer neutron 3320.48 6.01467 19971.6 - case= 7 layer proton 121.14 90.6661 10983.3 - case= 8 layer ion 3323.33 0.392145 1303.23 - case= 9 layer otherMeson 3.49 2550.76 8902.14 - case= 10 layer otherBaryon 1.1 1572.04 1729.24 - case= 11 layer below 20 MeV all 72131.7 0.844714 60930.7 - case= 12 layer below 20 MeV electron 43028.4 0.674126 29006.6 - case= 13 layer below 20 MeV gamma 22570 1.1857 26761.2 - case= 14 layer below 20 MeV muon 4.92 4.11981 20.2695 - case= 15 layer below 20 MeV neutrino 1.35 15.0097 20.263 - case= 16 layer below 20 MeV pion 1.25 11.7648 14.706 - case= 17 layer below 20 MeV neutron 3174.84 1.30184 4133.13 - case= 18 layer below 20 MeV proton 44.06 12.5076 551.085 - case= 19 layer below 20 MeV ion 3306.61 0.127477 421.517 - case= 20 layer below 20 MeV otherMeson 0.23 6.38072 1.46756 - case= 21 layer below 20 MeV otherBaryon 0.03 15.5852 0.467557 - case= 22 layer above 20 MeV all 1137.37 178.404 202911 - case= 23 layer above 20 MeV electron 426.94 124.226 53036.9 - case= 24 layer above 20 MeV gamma 402.25 140.691 56592.8 - case= 25 layer above 20 MeV muon 0.33 184.376 60.8441 - case= 26 layer above 20 MeV neutrino 14.32 38.192 546.909 - case= 27 layer above 20 MeV pion 49.76 1103.14 54892.1 - case= 28 layer above 20 MeV neutron 145.64 108.751 15838.5 - case= 29 layer above 20 MeV proton 77.08 135.343 10432.2 - case= 30 layer above 20 MeV ion 16.72 52.7338 881.71 - case= 31 layer above 20 MeV otherMeson 3.26 2730.27 8900.67 - case= 32 layer above 20 MeV otherBaryon 1.07 1615.68 1728.78 + case= 0 layer all 73342.4 3.5882 263167 + case= 1 layer electron 43446.3 1.87728 81560.9 + case= 2 layer gamma 22946.4 3.61212 82885 + case= 3 layer muon 5.44 15.0086 81.6467 + case= 4 layer neutrino 16.31 36.6139 597.172 + case= 5 layer pion 51.54 1079.07 55615 + case= 6 layer neutron 3375.54 5.78901 19541 + case= 7 layer proton 120.07 86.9535 10440.5 + case= 8 layer ion 3375.49 0.410915 1387.04 + case= 9 layer otherMeson 4.3 2417.94 10397.1 + case= 10 layer otherBaryon 0.99 668.583 661.897 + case= 11 layer below 20 MeV all 72214 0.841541 60771.1 + case= 12 layer below 20 MeV electron 43026.2 0.67094 28868 + case= 13 layer below 20 MeV gamma 22551.4 1.18294 26676.9 + case= 14 layer below 20 MeV muon 5.07 4.11981 20.8875 + case= 15 layer below 20 MeV neutrino 1.46 14.6065 21.3255 + case= 16 layer below 20 MeV pion 1.15 11.9556 13.749 + case= 17 layer below 20 MeV neutron 3226.11 1.30059 4195.86 + case= 18 layer below 20 MeV proton 44.19 12.4979 552.284 + case= 19 layer below 20 MeV ion 3357.99 0.124678 418.667 + case= 20 layer below 20 MeV otherMeson 0.37 6.47149 2.39445 + case= 21 layer below 20 MeV otherBaryon 0.07 14.6171 1.02319 + case= 22 layer above 20 MeV all 1128.38 179.369 202396 + case= 23 layer above 20 MeV electron 420.1 125.429 52692.9 + case= 24 layer above 20 MeV gamma 395.01 142.296 56208.2 + case= 25 layer above 20 MeV muon 0.37 164.214 60.7593 + case= 26 layer above 20 MeV neutrino 14.85 38.7776 575.847 + case= 27 layer above 20 MeV pion 50.39 1103.42 55601.3 + case= 28 layer above 20 MeV neutron 149.43 102.691 15345.2 + case= 29 layer above 20 MeV proton 75.88 130.314 9888.23 + case= 30 layer above 20 MeV ion 17.5 55.3357 968.374 + case= 31 layer above 20 MeV otherMeson 3.93 2644.97 10394.8 + case= 32 layer above 20 MeV otherBaryon 0.92 718.341 660.874 ============================================================= @@ -2392,7 +2392,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=49.010000s Real=49.726922s Sys=0.040000s + User=30.200000s Real=30.353682s Sys=0.050000s =============== Run::PrintInfo() =============== RunID = 7 @@ -2405,140 +2405,140 @@ 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.0331843 - case= 1 downstream electron 3.14202e-05 - case= 2 downstream gamma 0.000744884 + case= 0 downstream all 0.0324024 + case= 1 downstream electron 0.00011655 + case= 2 downstream gamma 0.00167306 case= 3 downstream muon 0 - case= 4 downstream neutrino 0.000351633 - case= 5 downstream pion 6.2288e-05 - case= 6 downstream neutron 0.0319588 - case= 7 downstream proton 2.83762e-05 - case= 8 downstream ion 1.61649e-06 - case= 9 downstream otherMeson 3.92695e-06 - case= 10 downstream otherBaryon 1.4215e-06 - case= 11 downstream below 20 MeV all 0.0323014 - case= 12 downstream below 20 MeV electron 2.66917e-05 - case= 13 downstream below 20 MeV gamma 0.000730466 + case= 4 downstream neutrino 0.000304877 + case= 5 downstream pion 8.28174e-05 + case= 6 downstream neutron 0.030156 + case= 7 downstream proton 5.70923e-05 + case= 8 downstream ion 0 + case= 9 downstream otherMeson 1.20222e-05 + case= 10 downstream otherBaryon 0 + case= 11 downstream below 20 MeV all 0.031334 + case= 12 downstream below 20 MeV electron 9.03315e-05 + case= 13 downstream below 20 MeV gamma 0.00164889 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 3.57038e-05 + case= 15 downstream below 20 MeV neutrino 2.35558e-05 case= 16 downstream below 20 MeV pion 0 - case= 17 downstream below 20 MeV neutron 0.0315085 + case= 17 downstream below 20 MeV neutron 0.0295713 case= 18 downstream below 20 MeV proton 0 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.000882911 - case= 23 downstream above 20 MeV electron 4.7285e-06 - case= 24 downstream above 20 MeV gamma 1.44178e-05 + case= 22 downstream above 20 MeV all 0.00106836 + case= 23 downstream above 20 MeV electron 2.62188e-05 + case= 24 downstream above 20 MeV gamma 2.41745e-05 case= 25 downstream above 20 MeV muon 0 - case= 26 downstream above 20 MeV neutrino 0.000315929 - case= 27 downstream above 20 MeV pion 6.2288e-05 - case= 28 downstream above 20 MeV neutron 0.000450207 - case= 29 downstream above 20 MeV proton 2.83762e-05 - case= 30 downstream above 20 MeV ion 1.61649e-06 - case= 31 downstream above 20 MeV otherMeson 3.92695e-06 - case= 32 downstream above 20 MeV otherBaryon 1.4215e-06 - case= 33 side all 0.0314692 - case= 34 side electron 4.18829e-06 - case= 35 side gamma 0.000159271 + case= 26 downstream above 20 MeV neutrino 0.000281321 + case= 27 downstream above 20 MeV pion 8.28174e-05 + case= 28 downstream above 20 MeV neutron 0.000584711 + case= 29 downstream above 20 MeV proton 5.70923e-05 + case= 30 downstream above 20 MeV ion 0 + case= 31 downstream above 20 MeV otherMeson 1.20222e-05 + case= 32 downstream above 20 MeV otherBaryon 0 + case= 33 side all 0.0296091 + case= 34 side electron 7.41393e-07 + case= 35 side gamma 0.000121359 case= 36 side muon 0 - case= 37 side neutrino 0.000348584 - case= 38 side pion 0 - case= 39 side neutron 0.0309567 - case= 40 side proton 0 - case= 41 side ion 3.80331e-07 - case= 42 side otherMeson 0 + case= 37 side neutrino 0.000371616 + case= 38 side pion 3.18053e-07 + case= 39 side neutron 0.0291127 + case= 40 side proton 1.93896e-06 + case= 41 side ion 0 + case= 42 side otherMeson 3.90421e-07 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.0309742 - case= 45 side below 20 MeV electron 4.18829e-06 - case= 46 side below 20 MeV gamma 0.000159271 + case= 44 side below 20 MeV all 0.0291111 + case= 45 side below 20 MeV electron 7.41393e-07 + case= 46 side below 20 MeV gamma 0.000121359 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.31347e-05 + case= 48 side below 20 MeV neutrino 3.14559e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.0307772 + case= 50 side below 20 MeV neutron 0.0289576 case= 51 side below 20 MeV proton 0 - case= 52 side below 20 MeV ion 3.80331e-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.000495006 + case= 55 side above 20 MeV all 0.000497941 case= 56 side above 20 MeV electron 0 case= 57 side above 20 MeV gamma 0 case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000315449 - case= 60 side above 20 MeV pion 0 - case= 61 side above 20 MeV neutron 0.000179556 - case= 62 side above 20 MeV proton 0 + case= 59 side above 20 MeV neutrino 0.00034016 + case= 60 side above 20 MeV pion 3.18053e-07 + case= 61 side above 20 MeV neutron 0.000155134 + case= 62 side above 20 MeV proton 1.93896e-06 case= 63 side above 20 MeV ion 0 - case= 64 side above 20 MeV otherMeson 0 + case= 64 side above 20 MeV otherMeson 3.90421e-07 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.0683465 - case= 67 upstream electron 5.36731e-05 - case= 68 upstream gamma 0.00183186 + case= 66 upstream all 0.0677284 + case= 67 upstream electron 3.81787e-05 + case= 68 upstream gamma 0.00160714 case= 69 upstream muon 0 - case= 70 upstream neutrino 0.000633066 - case= 71 upstream pion 2.88151e-05 - case= 72 upstream neutron 0.0657545 - case= 73 upstream proton 4.1545e-05 - case= 74 upstream ion 0 - case= 75 upstream otherMeson 2.94661e-06 + case= 70 upstream neutrino 0.000733094 + case= 71 upstream pion 2.00265e-05 + case= 72 upstream neutron 0.0653245 + case= 73 upstream proton 1.64709e-06 + case= 74 upstream ion 3.79453e-06 + case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0667547 - case= 78 upstream below 20 MeV electron 4.53318e-05 - case= 79 upstream below 20 MeV gamma 0.00181649 + case= 77 upstream below 20 MeV all 0.0661493 + case= 78 upstream below 20 MeV electron 3.68194e-05 + case= 79 upstream below 20 MeV gamma 0.00160505 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 5.72779e-05 - case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.0648342 + case= 81 upstream below 20 MeV neutrino 6.85607e-05 + case= 82 upstream below 20 MeV pion 1.40623e-06 + case= 83 upstream below 20 MeV neutron 0.0644375 case= 84 upstream below 20 MeV proton 0 case= 85 upstream below 20 MeV ion 0 - case= 86 upstream below 20 MeV otherMeson 1.44055e-06 + case= 86 upstream below 20 MeV otherMeson 0 case= 87 upstream below 20 MeV otherBaryon 0 - case= 88 upstream above 20 MeV all 0.00159172 - case= 89 upstream above 20 MeV electron 8.34134e-06 - case= 90 upstream above 20 MeV gamma 1.53736e-05 + case= 88 upstream above 20 MeV all 0.00157906 + case= 89 upstream above 20 MeV electron 1.35936e-06 + case= 90 upstream above 20 MeV gamma 2.0935e-06 case= 91 upstream above 20 MeV muon 0 - case= 92 upstream above 20 MeV neutrino 0.000575788 - case= 93 upstream above 20 MeV pion 2.88151e-05 - case= 94 upstream above 20 MeV neutron 0.000920353 - case= 95 upstream above 20 MeV proton 4.1545e-05 - case= 96 upstream above 20 MeV ion 0 - case= 97 upstream above 20 MeV otherMeson 1.50606e-06 + case= 92 upstream above 20 MeV neutrino 0.000664533 + case= 93 upstream above 20 MeV pion 1.86203e-05 + case= 94 upstream above 20 MeV neutron 0.000887017 + case= 95 upstream above 20 MeV proton 1.64709e-06 + case= 96 upstream above 20 MeV ion 3.79453e-06 + 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 layer all 46406.2 5.04046 233909 - case= 1 layer electron 27341.8 2.51792 68844.4 - case= 2 layer gamma 15722.6 4.41637 69436.6 - case= 3 layer muon 5.07 16.0542 81.3947 - case= 4 layer neutrino 15.17 36.9882 561.111 - case= 5 layer pion 50.05 1046.88 52396.5 - case= 6 layer neutron 2053.29 8.91448 18304 - case= 7 layer proton 112.01 95.0096 10642 - case= 8 layer ion 1101.5 1.38669 1527.43 - case= 9 layer otherMeson 3.9 2914.69 11367.3 - case= 10 layer otherBaryon 0.88 850.223 748.196 - case= 11 layer below 20 MeV all 45341.2 0.990866 44927.1 - case= 12 layer below 20 MeV electron 26950.1 0.795887 21449.2 - case= 13 layer below 20 MeV gamma 15353.4 1.21343 18630.2 - case= 14 layer below 20 MeV muon 4.72 4.17968 19.7281 - case= 15 layer below 20 MeV neutrino 1.39 15.1686 21.0844 - case= 16 layer below 20 MeV pion 1.27 12.5575 15.9481 - case= 17 layer below 20 MeV neutron 1912.5 2.05412 3928.5 - case= 18 layer below 20 MeV proton 38.84 12.6165 490.025 - case= 19 layer below 20 MeV ion 1078.79 0.344158 371.274 - case= 20 layer below 20 MeV otherMeson 0.17 4.02955 0.685023 - case= 21 layer below 20 MeV otherBaryon 0.06 6.41623 0.384974 - case= 22 layer above 20 MeV all 1065.02 177.444 188982 - case= 23 layer above 20 MeV electron 391.71 120.996 47395.2 - case= 24 layer above 20 MeV gamma 369.18 137.619 50806.4 - case= 25 layer above 20 MeV muon 0.35 176.19 61.6666 - case= 26 layer above 20 MeV neutrino 13.78 39.1891 540.026 - case= 27 layer above 20 MeV pion 48.78 1073.81 52380.5 - case= 28 layer above 20 MeV neutron 140.79 102.106 14375.5 - case= 29 layer above 20 MeV proton 73.17 138.745 10152 - case= 30 layer above 20 MeV ion 22.71 50.9097 1156.16 - case= 31 layer above 20 MeV otherMeson 3.73 3047.35 11366.6 - case= 32 layer above 20 MeV otherBaryon 0.82 911.965 747.811 + case= 0 layer all 46203.3 5.15955 238389 + case= 1 layer electron 27301.9 2.58387 70544.5 + case= 2 layer gamma 15720.9 4.5252 71140 + case= 3 layer muon 5.24 13.0536 68.4008 + case= 4 layer neutrino 15.67 35.7885 560.805 + case= 5 layer pion 48.34 1111.06 53708.4 + case= 6 layer neutron 1953.22 8.85639 17298.5 + case= 7 layer proton 111.53 99.5212 11099.6 + case= 8 layer ion 1041.52 1.41719 1476.03 + case= 9 layer otherMeson 3.9 2892.51 11280.8 + case= 10 layer otherBaryon 1.15 1053.61 1211.65 + case= 11 layer below 20 MeV all 45125.5 0.994129 44860.6 + case= 12 layer below 20 MeV electron 26901.2 0.801812 21569.7 + case= 13 layer below 20 MeV gamma 15343.1 1.21879 18700 + case= 14 layer below 20 MeV muon 4.91 4.1652 20.4511 + case= 15 layer below 20 MeV neutrino 1.41 13.5305 19.078 + case= 16 layer below 20 MeV pion 1.16 12.1105 14.0482 + case= 17 layer below 20 MeV neutron 1816 2.04898 3720.96 + case= 18 layer below 20 MeV proton 36.99 12.6949 469.585 + case= 19 layer below 20 MeV ion 1020.28 0.33683 343.66 + case= 20 layer below 20 MeV otherMeson 0.31 6.06026 1.87868 + case= 21 layer below 20 MeV otherBaryon 0.11 11.1726 1.22898 + case= 22 layer above 20 MeV all 1077.83 179.553 193528 + case= 23 layer above 20 MeV electron 400.69 122.226 48974.8 + case= 24 layer above 20 MeV gamma 377.74 138.826 52440 + case= 25 layer above 20 MeV muon 0.33 145.302 47.9497 + case= 26 layer above 20 MeV neutrino 14.26 37.9893 541.727 + case= 27 layer above 20 MeV pion 47.18 1138.07 53694.4 + case= 28 layer above 20 MeV neutron 137.22 98.947 13577.5 + case= 29 layer above 20 MeV proton 74.54 142.608 10630 + case= 30 layer above 20 MeV ion 21.24 53.3131 1132.37 + case= 31 layer above 20 MeV otherMeson 3.59 3141.76 11278.9 + case= 32 layer above 20 MeV otherBaryon 1.04 1163.87 1210.42 ============================================================= @@ -2638,7 +2638,7 @@ Index : 9 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=43.580000s Real=44.171008s Sys=0.010000s + User=27.290000s Real=27.351542s Sys=0.040000s =============== Run::PrintInfo() =============== RunID = 8 @@ -2651,140 +2651,140 @@ 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.0184964 - case= 1 downstream electron 0.000390564 - case= 2 downstream gamma 0.005188 - case= 3 downstream muon 5.16468e-06 - case= 4 downstream neutrino 0.000447947 - case= 5 downstream pion 0.000198567 - case= 6 downstream neutron 0.0121552 - case= 7 downstream proton 9.61506e-05 - case= 8 downstream ion 1.38653e-06 - case= 9 downstream otherMeson 1.21739e-05 - case= 10 downstream otherBaryon 1.32156e-06 - case= 11 downstream below 20 MeV all 0.0166186 - case= 12 downstream below 20 MeV electron 0.000294339 - case= 13 downstream below 20 MeV gamma 0.00500807 + case= 0 downstream all 0.0178156 + case= 1 downstream electron 0.000355062 + case= 2 downstream gamma 0.00431534 + case= 3 downstream muon 1.28327e-06 + case= 4 downstream neutrino 0.000509917 + case= 5 downstream pion 0.000169781 + case= 6 downstream neutron 0.0123454 + case= 7 downstream proton 8.3469e-05 + case= 8 downstream ion 3.22734e-06 + case= 9 downstream otherMeson 2.80401e-05 + case= 10 downstream otherBaryon 4.02305e-06 + case= 11 downstream below 20 MeV all 0.0159922 + case= 12 downstream below 20 MeV electron 0.000281595 + case= 13 downstream below 20 MeV gamma 0.00415889 case= 14 downstream below 20 MeV muon 0 - case= 15 downstream below 20 MeV neutrino 3.93207e-05 - case= 16 downstream below 20 MeV pion 1.38557e-06 - case= 17 downstream below 20 MeV neutron 0.0112741 - case= 18 downstream below 20 MeV proton 1.31519e-06 + case= 15 downstream below 20 MeV neutrino 3.76399e-05 + case= 16 downstream below 20 MeV pion 0 + case= 17 downstream below 20 MeV neutron 0.0115126 + case= 18 downstream below 20 MeV proton 1.47504e-06 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.00187787 - case= 23 downstream above 20 MeV electron 9.62242e-05 - case= 24 downstream above 20 MeV gamma 0.000179939 - case= 25 downstream above 20 MeV muon 5.16468e-06 - case= 26 downstream above 20 MeV neutrino 0.000408626 - case= 27 downstream above 20 MeV pion 0.000197181 - case= 28 downstream above 20 MeV neutron 0.000881015 - case= 29 downstream above 20 MeV proton 9.48354e-05 - case= 30 downstream above 20 MeV ion 1.38653e-06 - case= 31 downstream above 20 MeV otherMeson 1.21739e-05 - case= 32 downstream above 20 MeV otherBaryon 1.32156e-06 - case= 33 side all 0.00497501 - case= 34 side electron 5.05995e-06 - case= 35 side gamma 0.000475668 - case= 36 side muon 0 - case= 37 side neutrino 0.000368133 - case= 38 side pion 1.38794e-06 - case= 39 side neutron 0.00412288 - case= 40 side proton 1.88475e-06 + case= 22 downstream above 20 MeV all 0.00182333 + case= 23 downstream above 20 MeV electron 7.34667e-05 + case= 24 downstream above 20 MeV gamma 0.000156453 + case= 25 downstream above 20 MeV muon 1.28327e-06 + case= 26 downstream above 20 MeV neutrino 0.000472278 + case= 27 downstream above 20 MeV pion 0.000169781 + case= 28 downstream above 20 MeV neutron 0.000832782 + case= 29 downstream above 20 MeV proton 8.19939e-05 + case= 30 downstream above 20 MeV ion 3.22734e-06 + case= 31 downstream above 20 MeV otherMeson 2.80401e-05 + case= 32 downstream above 20 MeV otherBaryon 4.02305e-06 + case= 33 side all 0.00503012 + case= 34 side electron 3.90612e-06 + case= 35 side gamma 0.00049953 + case= 36 side muon 3.66536e-07 + case= 37 side neutrino 0.000370823 + case= 38 side pion 4.58889e-07 + case= 39 side neutron 0.00415365 + case= 40 side proton 1.38619e-06 case= 41 side ion 0 case= 42 side otherMeson 0 case= 43 side otherBaryon 0 - case= 44 side below 20 MeV all 0.00443603 - case= 45 side below 20 MeV electron 5.05995e-06 - case= 46 side below 20 MeV gamma 0.000475668 + case= 44 side below 20 MeV all 0.00447445 + case= 45 side below 20 MeV electron 3.90612e-06 + case= 46 side below 20 MeV gamma 0.00049953 case= 47 side below 20 MeV muon 0 - case= 48 side below 20 MeV neutrino 3.01506e-05 + case= 48 side below 20 MeV neutrino 3.23513e-05 case= 49 side below 20 MeV pion 0 - case= 50 side below 20 MeV neutron 0.00392468 - case= 51 side below 20 MeV proton 4.69846e-07 + case= 50 side below 20 MeV neutron 0.00393866 + case= 51 side below 20 MeV proton 0 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.000538987 + case= 55 side above 20 MeV all 0.000555673 case= 56 side above 20 MeV electron 0 case= 57 side above 20 MeV gamma 0 - case= 58 side above 20 MeV muon 0 - case= 59 side above 20 MeV neutrino 0.000337983 - case= 60 side above 20 MeV pion 1.38794e-06 - case= 61 side above 20 MeV neutron 0.000198201 - case= 62 side above 20 MeV proton 1.4149e-06 + case= 58 side above 20 MeV muon 3.66536e-07 + case= 59 side above 20 MeV neutrino 0.000338472 + case= 60 side above 20 MeV pion 4.58889e-07 + case= 61 side above 20 MeV neutron 0.00021499 + case= 62 side above 20 MeV proton 1.38619e-06 case= 63 side above 20 MeV ion 0 case= 64 side above 20 MeV otherMeson 0 case= 65 side above 20 MeV otherBaryon 0 - case= 66 upstream all 0.0213164 - case= 67 upstream electron 7.57839e-05 - case= 68 upstream gamma 0.00262738 - case= 69 upstream muon 0 - case= 70 upstream neutrino 0.000583174 - case= 71 upstream pion 3.28664e-05 - case= 72 upstream neutron 0.0179117 - case= 73 upstream proton 7.96533e-05 - case= 74 upstream ion 5.86021e-06 + case= 66 upstream all 0.0186354 + case= 67 upstream electron 1.97464e-05 + case= 68 upstream gamma 0.00191698 + case= 69 upstream muon 4.88984e-06 + case= 70 upstream neutrino 0.000625343 + case= 71 upstream pion 1.35153e-05 + case= 72 upstream neutron 0.01605 + case= 73 upstream proton 4.96891e-06 + case= 74 upstream ion 0 case= 75 upstream otherMeson 0 case= 76 upstream otherBaryon 0 - case= 77 upstream below 20 MeV all 0.0198856 - case= 78 upstream below 20 MeV electron 7.28923e-05 - case= 79 upstream below 20 MeV gamma 0.00261171 + case= 77 upstream below 20 MeV all 0.0173723 + case= 78 upstream below 20 MeV electron 1.97464e-05 + case= 79 upstream below 20 MeV gamma 0.0019139 case= 80 upstream below 20 MeV muon 0 - case= 81 upstream below 20 MeV neutrino 4.68819e-05 + case= 81 upstream below 20 MeV neutrino 4.13337e-05 case= 82 upstream below 20 MeV pion 0 - case= 83 upstream below 20 MeV neutron 0.0171314 - case= 84 upstream below 20 MeV proton 2.26896e-05 + case= 83 upstream below 20 MeV neutron 0.015395 + case= 84 upstream below 20 MeV proton 2.29434e-06 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.00143084 - case= 89 upstream above 20 MeV electron 2.89162e-06 - case= 90 upstream above 20 MeV gamma 1.56708e-05 - case= 91 upstream above 20 MeV muon 0 - case= 92 upstream above 20 MeV neutrino 0.000536293 - case= 93 upstream above 20 MeV pion 3.28664e-05 - case= 94 upstream above 20 MeV neutron 0.000780293 - case= 95 upstream above 20 MeV proton 5.69637e-05 - case= 96 upstream above 20 MeV ion 5.86021e-06 + case= 88 upstream above 20 MeV all 0.00126312 + case= 89 upstream above 20 MeV electron 0 + case= 90 upstream above 20 MeV gamma 3.08505e-06 + case= 91 upstream above 20 MeV muon 4.88984e-06 + case= 92 upstream above 20 MeV neutrino 0.000584009 + case= 93 upstream above 20 MeV pion 1.35153e-05 + case= 94 upstream above 20 MeV neutron 0.000654947 + case= 95 upstream above 20 MeV proton 2.67457e-06 + 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 layer all 55204.4 4.60054 253970 - case= 1 layer electron 32900.8 2.31811 76267.6 - case= 2 layer gamma 17444.3 4.3991 76739.2 - case= 3 layer muon 5.29 16.4654 87.1019 - case= 4 layer neutrino 15.76 36.4262 574.076 - case= 5 layer pion 52.16 1122.28 58538.3 - case= 6 layer neutron 1652.76 9.84555 16272.3 - case= 7 layer proton 122.05 96.7712 11810.9 - case= 8 layer ion 3005.78 0.577206 1734.95 - case= 9 layer otherMeson 4.43 2349.47 10408.1 - case= 10 layer otherBaryon 1.03 1492.26 1537.03 - case= 11 layer below 20 MeV all 54126.6 0.91143 49332.6 - case= 12 layer below 20 MeV electron 32487.4 0.738167 23981.1 - case= 13 layer below 20 MeV gamma 17057.4 1.22795 20945.6 - case= 14 layer below 20 MeV muon 4.9 4.16588 20.4128 - case= 15 layer below 20 MeV neutrino 1.27 14.8539 18.8645 - case= 16 layer below 20 MeV pion 1.09 12.3927 13.508 - case= 17 layer below 20 MeV neutron 1530.15 1.92013 2938.08 - case= 18 layer below 20 MeV proton 53.72 9.63088 517.371 - case= 19 layer below 20 MeV ion 2990.27 0.299001 894.095 - case= 20 layer below 20 MeV otherMeson 0.27 8.51048 2.29783 - case= 21 layer below 20 MeV otherBaryon 0.1 12.3358 1.23358 - case= 22 layer above 20 MeV all 1077.8 189.866 204637 - case= 23 layer above 20 MeV electron 413.38 126.485 52286.5 - case= 24 layer above 20 MeV gamma 386.93 144.196 55793.6 - case= 25 layer above 20 MeV muon 0.39 170.998 66.6891 - case= 26 layer above 20 MeV neutrino 14.49 38.3169 555.212 - case= 27 layer above 20 MeV pion 51.07 1145.97 58524.8 - case= 28 layer above 20 MeV neutron 122.61 108.753 13334.3 - case= 29 layer above 20 MeV proton 68.33 165.28 11293.6 - case= 30 layer above 20 MeV ion 15.51 54.214 840.859 - case= 31 layer above 20 MeV otherMeson 4.16 2501.41 10405.8 - case= 32 layer above 20 MeV otherBaryon 0.93 1651.39 1535.8 + case= 0 layer all 54627.9 4.55175 248652 + case= 1 layer electron 32549.9 2.30417 75000.7 + case= 2 layer gamma 17225.5 4.41131 75987.1 + case= 3 layer muon 5.4 17.1356 92.5324 + case= 4 layer neutrino 16.06 36.8848 592.369 + case= 5 layer pion 50.43 1089.32 54934.5 + case= 6 layer neutron 1650.04 9.77441 16128.2 + case= 7 layer proton 121.35 87.4115 10607.4 + case= 8 layer ion 3004.18 0.561377 1686.48 + case= 9 layer otherMeson 4.07 3058.78 12449.2 + case= 10 layer otherBaryon 0.91 1289.9 1173.81 + case= 11 layer below 20 MeV all 53564.3 0.909755 48730.4 + case= 12 layer below 20 MeV electron 32144.7 0.736392 23671.1 + case= 13 layer below 20 MeV gamma 16844.8 1.22716 20671.2 + case= 14 layer below 20 MeV muon 5.01 4.17568 20.9202 + case= 15 layer below 20 MeV neutrino 1.33 15.1907 20.2036 + case= 16 layer below 20 MeV pion 0.93 12.5115 11.6357 + case= 17 layer below 20 MeV neutron 1525.8 1.92905 2943.34 + case= 18 layer below 20 MeV proton 53.45 9.62979 514.712 + case= 19 layer below 20 MeV ion 2987.95 0.292718 874.627 + case= 20 layer below 20 MeV otherMeson 0.25 7.87559 1.9689 + case= 21 layer below 20 MeV otherBaryon 0.05 12.9222 0.646109 + case= 22 layer above 20 MeV all 1063.63 187.962 199922 + case= 23 layer above 20 MeV electron 405.21 126.674 51329.5 + case= 24 layer above 20 MeV gamma 380.75 145.281 55315.9 + case= 25 layer above 20 MeV muon 0.39 183.621 71.6122 + case= 26 layer above 20 MeV neutrino 14.73 38.8436 572.166 + case= 27 layer above 20 MeV pion 49.5 1109.55 54922.9 + case= 28 layer above 20 MeV neutron 124.24 106.124 13184.8 + case= 29 layer above 20 MeV proton 67.9 148.64 10092.7 + case= 30 layer above 20 MeV ion 16.23 50.0216 811.851 + case= 31 layer above 20 MeV otherMeson 3.82 3258.44 12447.2 + case= 32 layer above 20 MeV otherBaryon 0.86 1364.14 1173.16 ============================================================= ================== Deleting memory pools =================== diff --git a/examples/extended/hadronic/ParticleFluence/Sphere/Sphere.out b/examples/extended/hadronic/ParticleFluence/Sphere/Sphere.out index db5dee5ca93953d3ca5c8e2536635781ae82f04f..896eeca589397f68924ea242929efe69d60b89ee 100644 --- a/examples/extended/hadronic/ParticleFluence/Sphere/Sphere.out +++ b/examples/extended/hadronic/ParticleFluence/Sphere/Sphere.out @@ -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 @@ -799,7 +799,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.000000s Real=1.016660s Sys=0.010000s + User=0.650000s Real=0.660016s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 0 @@ -811,107 +811,107 @@ 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 forward all 0.00224279 - case= 1 forward electron 0.000235392 - case= 2 forward gamma 0.00174211 - case= 3 forward muon 8.35154e-07 - case= 4 forward neutrino 4.75824e-05 - case= 5 forward pion 8.27513e-05 - case= 6 forward neutron 0.000101981 - case= 7 forward proton 2.25668e-05 - case= 8 forward ion 6.80316e-07 - case= 9 forward otherMeson 8.57095e-06 - case= 10 forward otherBaryon 3.16982e-07 - case= 11 backward all 4.76944e-05 - case= 12 backward electron 1.23722e-06 - case= 13 backward gamma 3.05319e-05 + case= 0 forward all 0.00207823 + case= 1 forward electron 0.00021474 + case= 2 forward gamma 0.00159746 + case= 3 forward muon 1.15311e-06 + case= 4 forward neutrino 4.45917e-05 + case= 5 forward pion 8.28466e-05 + case= 6 forward neutron 0.000103734 + case= 7 forward proton 2.3378e-05 + case= 8 forward ion 8.50274e-07 + case= 9 forward otherMeson 8.5774e-06 + case= 10 forward otherBaryon 8.9959e-07 + case= 11 backward all 4.88406e-05 + case= 12 backward electron 9.99137e-07 + case= 13 backward gamma 3.16787e-05 case= 14 backward muon 0 - case= 15 backward neutrino 1.22302e-05 + case= 15 backward neutrino 1.22858e-05 case= 16 backward pion 1.64266e-07 - case= 17 backward neutron 3.53079e-06 + case= 17 backward neutron 3.71273e-06 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00158841 - case= 23 below 20 MeV forward electron 9.87823e-05 - case= 24 below 20 MeV forward gamma 0.00145644 + case= 22 below 20 MeV forward all 0.00147679 + case= 23 below 20 MeV forward electron 9.07998e-05 + case= 24 below 20 MeV forward gamma 0.00134811 case= 25 below 20 MeV forward muon 1.76541e-07 - case= 26 below 20 MeV forward neutrino 3.16915e-06 - case= 27 below 20 MeV forward pion 2.14787e-07 - case= 28 below 20 MeV forward neutron 2.89397e-05 - case= 29 below 20 MeV forward proton 3.81187e-07 + case= 26 below 20 MeV forward neutrino 4.02213e-06 + case= 27 below 20 MeV forward pion 1.04189e-06 + case= 28 below 20 MeV forward neutron 3.21297e-05 + case= 29 below 20 MeV forward proton 1.98991e-07 case= 30 below 20 MeV forward ion 3.07896e-07 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 3.10859e-05 - case= 34 below 20 MeV backward electron 7.35195e-07 - case= 35 below 20 MeV backward gamma 2.84905e-05 + case= 33 below 20 MeV backward all 3.1586e-05 + case= 34 below 20 MeV backward electron 6.77938e-07 + case= 35 below 20 MeV backward gamma 2.96526e-05 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 1.49459e-06 + case= 37 below 20 MeV backward neutrino 6.65708e-07 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 3.65647e-07 + case= 39 below 20 MeV backward neutron 5.89774e-07 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000654379 - case= 45 above 20 MeV forward electron 0.00013661 - case= 46 above 20 MeV forward gamma 0.000285674 - case= 47 above 20 MeV forward muon 6.58613e-07 - case= 48 above 20 MeV forward neutrino 4.44133e-05 - case= 49 above 20 MeV forward pion 8.25365e-05 - case= 50 above 20 MeV forward neutron 7.30408e-05 - case= 51 above 20 MeV forward proton 2.21856e-05 - case= 52 above 20 MeV forward ion 3.7242e-07 - case= 53 above 20 MeV forward otherMeson 8.57095e-06 - case= 54 above 20 MeV forward otherBaryon 3.16982e-07 - case= 55 above 20 MeV backward all 1.66084e-05 - case= 56 above 20 MeV backward electron 5.02024e-07 - case= 57 above 20 MeV backward gamma 2.04143e-06 + case= 44 above 20 MeV forward all 0.000601441 + case= 45 above 20 MeV forward electron 0.00012394 + case= 46 above 20 MeV forward gamma 0.000249347 + case= 47 above 20 MeV forward muon 9.7657e-07 + case= 48 above 20 MeV forward neutrino 4.05695e-05 + case= 49 above 20 MeV forward pion 8.18047e-05 + case= 50 above 20 MeV forward neutron 7.16047e-05 + case= 51 above 20 MeV forward proton 2.3179e-05 + case= 52 above 20 MeV forward ion 5.42378e-07 + case= 53 above 20 MeV forward otherMeson 8.5774e-06 + case= 54 above 20 MeV forward otherBaryon 8.9959e-07 + case= 55 above 20 MeV backward all 1.72545e-05 + case= 56 above 20 MeV backward electron 3.212e-07 + case= 57 above 20 MeV backward gamma 2.02604e-06 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 1.07356e-05 + case= 59 above 20 MeV backward neutrino 1.162e-05 case= 60 above 20 MeV backward pion 1.64266e-07 - case= 61 above 20 MeV backward neutron 3.16514e-06 + case= 61 above 20 MeV backward neutron 3.12296e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 2063.83 58.9551 121673 - case= 1 sphere electron 1712.29 5.60114 9590.78 - case= 2 sphere gamma 235.85 71.9377 16966.5 - case= 3 sphere muon 0.98 26.776 26.2405 - case= 4 sphere neutrino 2.84 36.2602 102.979 - case= 5 sphere pion 16.49 4823.57 79540.6 - case= 6 sphere neutron 16.83 111.762 1880.95 - case= 7 sphere proton 37.61 57.8651 2176.31 - case= 8 sphere ion 38.93 5.31627 206.962 - case= 9 sphere otherMeson 1.68 6526.06 10963.8 - case= 10 sphere otherBaryon 0.33 660.931 218.107 - case= 11 sphere below 20 MeV all 1974.39 0.540941 1068.03 - case= 12 sphere below 20 MeV electron 1691.01 0.30504 515.825 - case= 13 sphere below 20 MeV gamma 206.3 1.44731 298.58 - case= 14 sphere below 20 MeV muon 0.89 4.27726 3.80676 - case= 15 sphere below 20 MeV neutrino 0.2 16.7119 3.34237 - case= 16 sphere below 20 MeV pion 0.22 7.63137 1.6789 - case= 17 sphere below 20 MeV neutron 8.45 6.52156 55.1072 - case= 18 sphere below 20 MeV proton 30.41 2.769 84.2052 - case= 19 sphere below 20 MeV ion 36.9 2.85579 105.379 - case= 20 sphere below 20 MeV otherMeson 0.01 10.4154 0.104154 - case= 21 sphere below 20 MeV otherBaryon 0 0 0 - case= 22 sphere above 20 MeV all 89.44 1348.45 120605 - case= 23 sphere above 20 MeV electron 21.28 426.455 9074.96 - case= 24 sphere above 20 MeV gamma 29.55 564.058 16667.9 - case= 25 sphere above 20 MeV muon 0.09 249.263 22.4337 - case= 26 sphere above 20 MeV neutrino 2.64 37.7411 99.6366 - case= 27 sphere above 20 MeV pion 16.27 4888.69 79538.9 - case= 28 sphere above 20 MeV neutron 8.38 217.881 1825.84 - case= 29 sphere above 20 MeV proton 7.2 290.57 2092.1 - case= 30 sphere above 20 MeV ion 2.03 50.0412 101.584 - case= 31 sphere above 20 MeV otherMeson 1.67 6565.08 10963.7 - case= 32 sphere above 20 MeV otherBaryon 0.33 660.931 218.107 + case= 0 sphere all 1958.53 55.3909 108485 + case= 1 sphere electron 1618.37 4.34478 7031.46 + case= 2 sphere gamma 221.57 59.4446 13171.1 + case= 3 sphere muon 0.95 45.8004 43.5104 + case= 4 sphere neutrino 2.71 40.0595 108.561 + case= 5 sphere pion 16.54 4597.47 76042.2 + case= 6 sphere neutron 17.41 123.24 2145.61 + case= 7 sphere proton 39.22 56.5102 2216.33 + case= 8 sphere ion 40.02 4.85356 194.239 + case= 9 sphere otherMeson 1.5 4827.15 7240.73 + case= 10 sphere otherBaryon 0.24 1212.46 290.99 + case= 11 sphere below 20 MeV all 1874.93 0.546753 1025.12 + case= 12 sphere below 20 MeV electron 1598.76 0.305378 488.226 + case= 13 sphere below 20 MeV gamma 195.29 1.38787 271.037 + case= 14 sphere below 20 MeV muon 0.82 4.2907 3.51837 + case= 15 sphere below 20 MeV neutrino 0.21 13.9824 2.93631 + case= 16 sphere below 20 MeV pion 0.18 6.45384 1.16169 + case= 17 sphere below 20 MeV neutron 9.24 6.4165 59.2885 + case= 18 sphere below 20 MeV proton 32.19 2.69087 86.6193 + case= 19 sphere below 20 MeV ion 38.23 2.93654 112.264 + case= 20 sphere below 20 MeV otherMeson 0 0 0 + case= 21 sphere below 20 MeV otherBaryon 0.01 7.3026 0.073026 + case= 22 sphere above 20 MeV all 83.6 1285.4 107460 + case= 23 sphere above 20 MeV electron 19.61 333.668 6543.24 + case= 24 sphere above 20 MeV gamma 26.28 490.872 12900.1 + case= 25 sphere above 20 MeV muon 0.13 307.631 39.992 + case= 26 sphere above 20 MeV neutrino 2.5 42.25 105.625 + case= 27 sphere above 20 MeV pion 16.36 4647.98 76041 + case= 28 sphere above 20 MeV neutron 8.17 255.363 2086.32 + case= 29 sphere above 20 MeV proton 7.03 302.946 2129.71 + case= 30 sphere above 20 MeV ion 1.79 45.7963 81.9754 + case= 31 sphere above 20 MeV otherMeson 1.5 4827.15 7240.73 + case= 32 sphere above 20 MeV otherBaryon 0.23 1264.86 290.917 ============================================================= @@ -970,7 +970,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=4.750000s Real=4.784852s Sys=0.010000s + User=3.020000s Real=3.036943s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 1 @@ -982,107 +982,107 @@ 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 forward all 0.00574059 - case= 1 forward electron 0.000472389 - case= 2 forward gamma 0.00461785 - case= 3 forward muon 1.98767e-06 - case= 4 forward neutrino 0.000119405 - case= 5 forward pion 9.04195e-05 - case= 6 forward neutron 0.000395456 - case= 7 forward proton 3.25142e-05 - case= 8 forward ion 0 - case= 9 forward otherMeson 9.93762e-06 - case= 10 forward otherBaryon 6.37921e-07 - case= 11 backward all 7.23407e-05 - case= 12 backward electron 7.15743e-07 - case= 13 backward gamma 3.09119e-05 + case= 0 forward all 0.00601755 + case= 1 forward electron 0.000518746 + case= 2 forward gamma 0.00488188 + case= 3 forward muon 1.01071e-06 + case= 4 forward neutrino 0.000111942 + case= 5 forward pion 9.72825e-05 + case= 6 forward neutron 0.000361534 + case= 7 forward proton 3.67084e-05 + case= 8 forward ion 1.62818e-07 + case= 9 forward otherMeson 8.12792e-06 + case= 10 forward otherBaryon 1.58373e-07 + case= 11 backward all 7.0686e-05 + case= 12 backward electron 2.58113e-06 + case= 13 backward gamma 3.27438e-05 case= 14 backward muon 0 - case= 15 backward neutrino 3.62747e-05 + case= 15 backward neutrino 2.82912e-05 case= 16 backward pion 0 - case= 17 backward neutron 4.43839e-06 + case= 17 backward neutron 7.06981e-06 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00453408 - case= 23 below 20 MeV forward electron 0.000233431 - case= 24 below 20 MeV forward gamma 0.00406194 + case= 22 below 20 MeV forward all 0.00472644 + case= 23 below 20 MeV forward electron 0.000248708 + case= 24 below 20 MeV forward gamma 0.00425823 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 9.54439e-06 - case= 27 below 20 MeV forward pion 5.43209e-07 - case= 28 below 20 MeV forward neutron 0.000227507 - case= 29 below 20 MeV forward proton 1.11572e-06 + case= 26 below 20 MeV forward neutrino 1.14252e-05 + case= 27 below 20 MeV forward pion 1.61993e-07 + case= 28 below 20 MeV forward neutron 0.000206673 + case= 29 below 20 MeV forward proton 1.2375e-06 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 3.37424e-05 - case= 34 below 20 MeV backward electron 7.15743e-07 - case= 35 below 20 MeV backward gamma 2.76934e-05 + case= 33 below 20 MeV backward all 4.0054e-05 + case= 34 below 20 MeV backward electron 2.40563e-06 + case= 35 below 20 MeV backward gamma 3.13952e-05 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 3.53736e-06 + case= 37 below 20 MeV backward neutrino 1.66987e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 1.79594e-06 + case= 39 below 20 MeV backward neutron 4.5833e-06 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.00120651 - case= 45 above 20 MeV forward electron 0.000238958 - case= 46 above 20 MeV forward gamma 0.000555909 - case= 47 above 20 MeV forward muon 1.98767e-06 - case= 48 above 20 MeV forward neutrino 0.000109861 - case= 49 above 20 MeV forward pion 8.98763e-05 - case= 50 above 20 MeV forward neutron 0.000167948 - case= 51 above 20 MeV forward proton 3.13985e-05 - case= 52 above 20 MeV forward ion 0 - case= 53 above 20 MeV forward otherMeson 9.93762e-06 - case= 54 above 20 MeV forward otherBaryon 6.37921e-07 - case= 55 above 20 MeV backward all 3.85983e-05 - case= 56 above 20 MeV backward electron 0 - case= 57 above 20 MeV backward gamma 3.21853e-06 + case= 44 above 20 MeV forward all 0.00129111 + case= 45 above 20 MeV forward electron 0.000270038 + case= 46 above 20 MeV forward gamma 0.000623647 + case= 47 above 20 MeV forward muon 1.01071e-06 + case= 48 above 20 MeV forward neutrino 0.000100517 + case= 49 above 20 MeV forward pion 9.71205e-05 + case= 50 above 20 MeV forward neutron 0.000154861 + case= 51 above 20 MeV forward proton 3.54709e-05 + case= 52 above 20 MeV forward ion 1.62818e-07 + case= 53 above 20 MeV forward otherMeson 8.12792e-06 + case= 54 above 20 MeV forward otherBaryon 1.58373e-07 + case= 55 above 20 MeV backward all 3.06319e-05 + case= 56 above 20 MeV backward electron 1.75505e-07 + case= 57 above 20 MeV backward gamma 1.34861e-06 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 3.27373e-05 + case= 59 above 20 MeV backward neutrino 2.66213e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 2.64245e-06 + case= 61 above 20 MeV backward neutron 2.48651e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 11621.2 15.0476 174871 - case= 1 sphere electron 9899.99 2.25548 22329.2 - case= 2 sphere gamma 1128.79 25.47 28750.3 - case= 3 sphere muon 2.7 62.2775 168.149 - case= 4 sphere neutrino 7.89 44.3725 350.099 - case= 5 sphere pion 33.29 2913.48 96989.7 - case= 6 sphere neutron 77.53 92.5417 7174.76 - case= 7 sphere proton 40.43 134.427 5434.89 - case= 8 sphere ion 427.1 1.7911 764.979 - case= 9 sphere otherMeson 2.87 4053.58 11633.8 - case= 10 sphere otherBaryon 0.61 2090.48 1275.19 - case= 11 sphere below 20 MeV all 11346.5 0.42018 4767.56 - case= 12 sphere below 20 MeV electron 9816.67 0.237101 2327.54 - case= 13 sphere below 20 MeV gamma 1037.65 1.39356 1446.03 - case= 14 sphere below 20 MeV muon 2.37 4.17924 9.90479 - case= 15 sphere below 20 MeV neutrino 0.69 13.6684 9.43123 - case= 16 sphere below 20 MeV pion 0.47 12.6873 5.96302 - case= 17 sphere below 20 MeV neutron 45.34 6.19737 280.989 - case= 18 sphere below 20 MeV proton 20.44 7.04218 143.942 - case= 19 sphere below 20 MeV ion 422.75 1.28459 543.059 - case= 20 sphere below 20 MeV otherMeson 0.08 7.00414 0.560331 - case= 21 sphere below 20 MeV otherBaryon 0.02 7.26354 0.145271 - case= 22 sphere above 20 MeV all 274.72 619.189 170104 - case= 23 sphere above 20 MeV electron 83.32 240.058 20001.7 - case= 24 sphere above 20 MeV gamma 91.14 299.586 27304.2 - case= 25 sphere above 20 MeV muon 0.33 479.529 158.244 - case= 26 sphere above 20 MeV neutrino 7.2 47.315 340.668 - case= 27 sphere above 20 MeV pion 32.82 2955.02 96983.8 - case= 28 sphere above 20 MeV neutron 32.19 214.159 6893.77 - case= 29 sphere above 20 MeV proton 19.99 264.68 5290.95 - case= 30 sphere above 20 MeV ion 4.35 51.0161 221.92 - case= 31 sphere above 20 MeV otherMeson 2.79 4169.61 11633.2 - case= 32 sphere above 20 MeV otherBaryon 0.59 2161.09 1275.05 + case= 0 sphere all 12233.6 14.9478 182866 + case= 1 sphere electron 10453.8 2.36559 24729.4 + case= 2 sphere gamma 1203.21 26.523 31912.8 + case= 3 sphere muon 2.3 19.9926 45.983 + case= 4 sphere neutrino 6.8 35.7441 243.06 + case= 5 sphere pion 34.33 2954.47 101427 + case= 6 sphere neutron 74.66 84.104 6279.21 + case= 7 sphere proton 41.04 137.304 5634.95 + case= 8 sphere ion 414.87 1.77427 736.09 + case= 9 sphere otherMeson 2.29 5027.71 11513.5 + case= 10 sphere otherBaryon 0.29 1185.41 343.77 + case= 11 sphere below 20 MeV all 11943.3 0.415825 4966.31 + case= 12 sphere below 20 MeV electron 10362.6 0.237393 2460.02 + case= 13 sphere below 20 MeV gamma 1102.34 1.38995 1532.2 + case= 14 sphere below 20 MeV muon 2.11 4.20019 8.8624 + case= 15 sphere below 20 MeV neutrino 0.61 14.3764 8.76962 + case= 16 sphere below 20 MeV pion 0.52 12.2318 6.36056 + case= 17 sphere below 20 MeV neutron 44.1 6.24206 275.275 + case= 18 sphere below 20 MeV proton 20.43 7.27281 148.583 + case= 19 sphere below 20 MeV ion 410.51 1.28136 526.012 + case= 20 sphere below 20 MeV otherMeson 0.02 11.573 0.23146 + case= 21 sphere below 20 MeV otherBaryon 0 0 0 + case= 22 sphere above 20 MeV all 290.29 612.833 177899 + case= 23 sphere above 20 MeV electron 91.14 244.343 22269.4 + case= 24 sphere above 20 MeV gamma 100.87 301.185 30380.6 + case= 25 sphere above 20 MeV muon 0.19 195.372 37.1206 + case= 26 sphere above 20 MeV neutrino 6.19 37.8498 234.29 + case= 27 sphere above 20 MeV pion 33.81 2999.72 101421 + case= 28 sphere above 20 MeV neutron 30.56 196.464 6003.93 + case= 29 sphere above 20 MeV proton 20.61 266.199 5486.37 + case= 30 sphere above 20 MeV ion 4.36 48.1831 210.078 + case= 31 sphere above 20 MeV otherMeson 2.27 5071.91 11513.2 + case= 32 sphere above 20 MeV otherBaryon 0.29 1185.41 343.77 ============================================================= @@ -1146,7 +1146,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=7.460000s Real=7.529707s Sys=0.010000s + User=3.830000s Real=3.838219s Sys=0.000000s =============== Run::PrintInfo() =============== RunID = 2 @@ -1158,107 +1158,107 @@ 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 forward all 0.00971869 - case= 1 forward electron 0.000629455 - case= 2 forward gamma 0.00791961 - case= 3 forward muon 9.46174e-07 - case= 4 forward neutrino 0.000102828 - case= 5 forward pion 9.46414e-05 - case= 6 forward neutron 0.000926377 - case= 7 forward proton 3.79052e-05 - case= 8 forward ion 2.32231e-07 - case= 9 forward otherMeson 6.50964e-06 - case= 10 forward otherBaryon 1.882e-07 - case= 11 backward all 0.000199036 - case= 12 backward electron 0 - case= 13 backward gamma 1.01242e-05 + case= 0 forward all 0.00765432 + case= 1 forward electron 0.000463141 + case= 2 forward gamma 0.00612174 + case= 3 forward muon 2.75616e-06 + case= 4 forward neutrino 0.00011119 + case= 5 forward pion 8.01286e-05 + case= 6 forward neutron 0.000837752 + case= 7 forward proton 3.17804e-05 + case= 8 forward ion 0 + case= 9 forward otherMeson 5.02127e-06 + case= 10 forward otherBaryon 8.0838e-07 + case= 11 backward all 0.000193397 + case= 12 backward electron 6.37455e-07 + case= 13 backward gamma 1.0535e-05 case= 14 backward muon 0 - case= 15 backward neutrino 2.90953e-05 + case= 15 backward neutrino 2.55122e-05 case= 16 backward pion 0 - case= 17 backward neutron 0.000159816 + case= 17 backward neutron 0.000156712 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00847908 - case= 23 below 20 MeV forward electron 0.000391027 - case= 24 below 20 MeV forward gamma 0.00731608 + case= 22 below 20 MeV forward all 0.00666671 + case= 23 below 20 MeV forward electron 0.000292344 + case= 24 below 20 MeV forward gamma 0.00567456 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 7.17853e-06 - case= 27 below 20 MeV forward pion 8.8586e-07 - case= 28 below 20 MeV forward neutron 0.000763066 - case= 29 below 20 MeV forward proton 6.06963e-07 - case= 30 below 20 MeV forward ion 2.32231e-07 + case= 26 below 20 MeV forward neutrino 7.45378e-06 + case= 27 below 20 MeV forward pion 7.17988e-07 + case= 28 below 20 MeV forward neutron 0.000690775 + case= 29 below 20 MeV forward proton 8.66534e-07 + case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 0.000167711 - case= 34 below 20 MeV backward electron 0 - case= 35 below 20 MeV backward gamma 9.62723e-06 + case= 33 below 20 MeV backward all 0.000167305 + case= 34 below 20 MeV backward electron 6.37455e-07 + case= 35 below 20 MeV backward gamma 1.02143e-05 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 2.03803e-06 + case= 37 below 20 MeV backward neutrino 2.1864e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 0.000156046 + case= 39 below 20 MeV backward neutron 0.000154267 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.00123961 - case= 45 above 20 MeV forward electron 0.000238428 - case= 46 above 20 MeV forward gamma 0.000603522 - case= 47 above 20 MeV forward muon 9.46174e-07 - case= 48 above 20 MeV forward neutrino 9.56494e-05 - case= 49 above 20 MeV forward pion 9.37555e-05 - case= 50 above 20 MeV forward neutron 0.00016331 - case= 51 above 20 MeV forward proton 3.72982e-05 + case= 44 above 20 MeV forward all 0.00098761 + case= 45 above 20 MeV forward electron 0.000170797 + case= 46 above 20 MeV forward gamma 0.000447189 + case= 47 above 20 MeV forward muon 2.75616e-06 + case= 48 above 20 MeV forward neutrino 0.000103737 + case= 49 above 20 MeV forward pion 7.94106e-05 + case= 50 above 20 MeV forward neutron 0.000146977 + case= 51 above 20 MeV forward proton 3.09139e-05 case= 52 above 20 MeV forward ion 0 - case= 53 above 20 MeV forward otherMeson 6.50964e-06 - case= 54 above 20 MeV forward otherBaryon 1.882e-07 - case= 55 above 20 MeV backward all 3.13244e-05 + case= 53 above 20 MeV forward otherMeson 5.02127e-06 + case= 54 above 20 MeV forward otherBaryon 8.0838e-07 + case= 55 above 20 MeV backward all 2.60916e-05 case= 56 above 20 MeV backward electron 0 - case= 57 above 20 MeV backward gamma 4.97014e-07 + case= 57 above 20 MeV backward gamma 3.20728e-07 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 2.70572e-05 + case= 59 above 20 MeV backward neutrino 2.33258e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 3.77017e-06 + case= 61 above 20 MeV backward neutron 2.4451e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 19614 10.4049 204082 - case= 1 sphere electron 15764.3 2.46138 38802 - case= 2 sphere gamma 3358.02 12.7974 42973.9 - case= 3 sphere muon 2.23 18.8718 42.0841 - case= 4 sphere neutrino 6.56 37.066 243.153 - case= 5 sphere pion 31.02 3249.31 100793 - case= 6 sphere neutron 99.85 51.6711 5159.36 - case= 7 sphere proton 68.94 75.0815 5176.12 - case= 8 sphere ion 280.19 1.57917 442.466 - case= 9 sphere otherMeson 2.43 4005.63 9733.68 - case= 10 sphere otherBaryon 0.46 1556.75 716.104 - case= 11 sphere below 20 MeV all 19157.8 0.550273 10542 - case= 12 sphere below 20 MeV electron 15582.4 0.361323 5630.29 - case= 13 sphere below 20 MeV gamma 3176.71 1.25654 3991.66 - case= 14 sphere below 20 MeV muon 2.09 4.12167 8.61429 - case= 15 sphere below 20 MeV neutrino 0.47 14.3834 6.76019 - case= 16 sphere below 20 MeV pion 0.48 11.637 5.58577 - case= 17 sphere below 20 MeV neutron 72.03 4.31752 310.991 - case= 18 sphere below 20 MeV proton 46.71 6.51567 304.347 - case= 19 sphere below 20 MeV ion 276.78 1.02264 283.045 - case= 20 sphere below 20 MeV otherMeson 0.05 5.61343 0.280671 - case= 21 sphere below 20 MeV otherBaryon 0.03 14.8285 0.444854 - case= 22 sphere above 20 MeV all 456.21 424.235 193540 - case= 23 sphere above 20 MeV electron 181.86 182.402 33171.7 - case= 24 sphere above 20 MeV gamma 181.31 215.003 38982.2 - case= 25 sphere above 20 MeV muon 0.14 239.07 33.4698 - case= 26 sphere above 20 MeV neutrino 6.09 38.8166 236.393 - case= 27 sphere above 20 MeV pion 30.54 3300.19 100788 - case= 28 sphere above 20 MeV neutron 27.82 174.276 4848.37 - case= 29 sphere above 20 MeV proton 22.23 219.153 4871.77 - case= 30 sphere above 20 MeV ion 3.41 46.7511 159.421 - case= 31 sphere above 20 MeV otherMeson 2.38 4089.66 9733.4 - case= 32 sphere above 20 MeV otherBaryon 0.43 1664.32 715.659 + case= 0 sphere all 16070.1 11.3236 181971 + case= 1 sphere electron 12899.6 2.32481 29989.2 + case= 2 sphere gamma 2719.91 12.043 32756 + case= 3 sphere muon 2.26 33.9202 76.6597 + case= 4 sphere neutrino 6.53 40.7831 266.313 + case= 5 sphere pion 27.83 3611.34 100504 + case= 6 sphere neutron 91.32 51.242 4679.42 + case= 7 sphere proton 62.27 77.5742 4830.55 + case= 8 sphere ion 257.77 1.49304 384.86 + case= 9 sphere otherMeson 2.11 3761.27 7936.27 + case= 10 sphere otherBaryon 0.43 1275.72 548.558 + case= 11 sphere below 20 MeV all 15696.4 0.55133 8653.88 + case= 12 sphere below 20 MeV electron 12754.3 0.361232 4607.25 + case= 13 sphere below 20 MeV gamma 2576.71 1.25331 3229.41 + case= 14 sphere below 20 MeV muon 1.96 4.22133 8.2738 + case= 15 sphere below 20 MeV neutrino 0.44 15.325 6.74301 + case= 16 sphere below 20 MeV pion 0.49 11.2541 5.51452 + case= 17 sphere below 20 MeV neutron 65.29 4.25725 277.956 + case= 18 sphere below 20 MeV proton 42.6 6.33871 270.029 + case= 19 sphere below 20 MeV ion 254.5 0.971523 247.253 + case= 20 sphere below 20 MeV otherMeson 0.07 9.66356 0.676449 + case= 21 sphere below 20 MeV otherBaryon 0.06 12.9119 0.774717 + case= 22 sphere above 20 MeV all 373.7 463.788 173318 + case= 23 sphere above 20 MeV electron 145.39 174.578 25382 + case= 24 sphere above 20 MeV gamma 143.2 206.191 29526.6 + case= 25 sphere above 20 MeV muon 0.3 227.953 68.3859 + case= 26 sphere above 20 MeV neutrino 6.09 42.6224 259.57 + case= 27 sphere above 20 MeV pion 27.34 3675.86 100498 + case= 28 sphere above 20 MeV neutron 26.03 169.092 4401.47 + case= 29 sphere above 20 MeV proton 19.67 231.851 4560.52 + case= 30 sphere above 20 MeV ion 3.27 42.0818 137.607 + case= 31 sphere above 20 MeV otherMeson 2.04 3890 7935.59 + case= 32 sphere above 20 MeV otherBaryon 0.37 1480.5 547.783 ============================================================= @@ -1327,7 +1327,7 @@ Index : 4 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=2.200000s Real=2.222916s Sys=0.010000s + User=2.040000s Real=2.053909s Sys=0.010000s =============== Run::PrintInfo() =============== RunID = 3 @@ -1339,107 +1339,107 @@ 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 forward all 0.00551741 - case= 1 forward electron 0.000414736 - case= 2 forward gamma 0.00433809 - case= 3 forward muon 9.30289e-07 - case= 4 forward neutrino 2.46183e-05 - case= 5 forward pion 7.72199e-05 - case= 6 forward neutron 0.000634497 - case= 7 forward proton 1.94903e-05 - case= 8 forward ion 5.53145e-07 - case= 9 forward otherMeson 6.96515e-06 - case= 10 forward otherBaryon 3.16161e-07 - case= 11 backward all 0.000149279 - case= 12 backward electron 1.8877e-07 - case= 13 backward gamma 2.42259e-05 + case= 0 forward all 0.00830913 + case= 1 forward electron 0.000639494 + case= 2 forward gamma 0.00666056 + case= 3 forward muon 1.37383e-06 + case= 4 forward neutrino 4.20503e-05 + case= 5 forward pion 7.63949e-05 + case= 6 forward neutron 0.000858513 + case= 7 forward proton 2.30412e-05 + case= 8 forward ion 5.22446e-07 + case= 9 forward otherMeson 6.86565e-06 + case= 10 forward otherBaryon 3.15773e-07 + case= 11 backward all 0.000213678 + case= 12 backward electron 1.64356e-07 + case= 13 backward gamma 4.13382e-05 case= 14 backward muon 0 - case= 15 backward neutrino 6.16471e-06 - case= 16 backward pion 3.32501e-07 - case= 17 backward neutron 0.000118367 + case= 15 backward neutrino 1.32419e-05 + case= 16 backward pion 0 + case= 17 backward neutron 0.000158934 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00479286 - case= 23 below 20 MeV forward electron 0.000245367 - case= 24 below 20 MeV forward gamma 0.00400023 - case= 25 below 20 MeV forward muon 1.70161e-07 - case= 26 below 20 MeV forward neutrino 1.59058e-06 - case= 27 below 20 MeV forward pion 4.36652e-07 - case= 28 below 20 MeV forward neutron 0.000544726 - case= 29 below 20 MeV forward proton 3.36207e-07 + case= 22 below 20 MeV forward all 0.00723213 + case= 23 below 20 MeV forward electron 0.000373843 + case= 24 below 20 MeV forward gamma 0.00611189 + case= 25 below 20 MeV forward muon 0 + case= 26 below 20 MeV forward neutrino 4.83857e-06 + case= 27 below 20 MeV forward pion 3.90906e-07 + case= 28 below 20 MeV forward neutron 0.000740833 + case= 29 below 20 MeV forward proton 3.33781e-07 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 0.000138081 - case= 34 below 20 MeV backward electron 1.8877e-07 - case= 35 below 20 MeV backward gamma 2.40644e-05 + case= 33 below 20 MeV backward all 0.000196219 + case= 34 below 20 MeV backward electron 1.64356e-07 + case= 35 below 20 MeV backward gamma 4.10059e-05 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 6.7638e-07 + case= 37 below 20 MeV backward neutrino 1.15594e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 0.000113152 + case= 39 below 20 MeV backward neutron 0.000153893 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000724556 - case= 45 above 20 MeV forward electron 0.000169369 - case= 46 above 20 MeV forward gamma 0.000337856 - case= 47 above 20 MeV forward muon 7.60127e-07 - case= 48 above 20 MeV forward neutrino 2.30278e-05 - case= 49 above 20 MeV forward pion 7.67832e-05 - case= 50 above 20 MeV forward neutron 8.97714e-05 - case= 51 above 20 MeV forward proton 1.91541e-05 - case= 52 above 20 MeV forward ion 5.53145e-07 - case= 53 above 20 MeV forward otherMeson 6.96515e-06 - case= 54 above 20 MeV forward otherBaryon 3.16161e-07 - case= 55 above 20 MeV backward all 1.1198e-05 + case= 44 above 20 MeV forward all 0.001077 + case= 45 above 20 MeV forward electron 0.000265651 + case= 46 above 20 MeV forward gamma 0.000548666 + case= 47 above 20 MeV forward muon 1.37383e-06 + case= 48 above 20 MeV forward neutrino 3.72118e-05 + case= 49 above 20 MeV forward pion 7.6004e-05 + case= 50 above 20 MeV forward neutron 0.00011768 + case= 51 above 20 MeV forward proton 2.27074e-05 + case= 52 above 20 MeV forward ion 5.22446e-07 + case= 53 above 20 MeV forward otherMeson 6.86565e-06 + case= 54 above 20 MeV forward otherBaryon 3.15773e-07 + case= 55 above 20 MeV backward all 1.74594e-05 case= 56 above 20 MeV backward electron 0 - case= 57 above 20 MeV backward gamma 1.61538e-07 + case= 57 above 20 MeV backward gamma 3.32302e-07 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 5.48833e-06 - case= 60 above 20 MeV backward pion 3.32501e-07 - case= 61 above 20 MeV backward neutron 5.21565e-06 + case= 59 above 20 MeV backward neutrino 1.2086e-05 + case= 60 above 20 MeV backward pion 0 + case= 61 above 20 MeV backward neutron 5.04108e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 4509.18 25.9598 117058 - case= 1 sphere electron 3329.2 4.05925 13514.1 - case= 2 sphere gamma 986.86 17.3544 17126.4 - case= 3 sphere muon 0.54 44.3384 23.9427 - case= 4 sphere neutrino 1.48 42.4843 62.8768 - case= 5 sphere pion 13.51 5699.56 77001.1 - case= 6 sphere neutron 57 36.31 2069.67 - case= 7 sphere proton 13.09 128.036 1675.99 - case= 8 sphere ion 105.97 1.30328 138.108 - case= 9 sphere otherMeson 1.29 3755.54 4844.65 - case= 10 sphere otherBaryon 0.24 2503.6 600.864 - case= 11 sphere below 20 MeV all 4364.84 0.654831 2858.23 - case= 12 sphere below 20 MeV electron 3278.53 0.426721 1399.02 - case= 13 sphere below 20 MeV gamma 927.75 1.24771 1157.56 - case= 14 sphere below 20 MeV muon 0.44 4.72215 2.07775 - case= 15 sphere below 20 MeV neutrino 0.12 15.0211 1.80253 - case= 16 sphere below 20 MeV pion 0.11 15.0029 1.65032 - case= 17 sphere below 20 MeV neutron 46.68 3.52752 164.665 - case= 18 sphere below 20 MeV proton 6.51 8.21321 53.468 - case= 19 sphere below 20 MeV ion 104.66 0.742045 77.6625 - case= 20 sphere below 20 MeV otherMeson 0.01 2.50086 0.0250086 - case= 21 sphere below 20 MeV otherBaryon 0.03 10.0228 0.300685 - case= 22 sphere above 20 MeV all 144.34 791.183 114199 - case= 23 sphere above 20 MeV electron 50.67 239.097 12115 - case= 24 sphere above 20 MeV gamma 59.11 270.154 15968.8 - case= 25 sphere above 20 MeV muon 0.1 218.65 21.865 - case= 26 sphere above 20 MeV neutrino 1.36 44.9075 61.0742 - case= 27 sphere above 20 MeV pion 13.4 5746.23 76999.5 - case= 28 sphere above 20 MeV neutron 10.32 184.593 1905 - case= 29 sphere above 20 MeV proton 6.58 246.584 1622.52 - case= 30 sphere above 20 MeV ion 1.31 46.1417 60.4456 - case= 31 sphere above 20 MeV otherMeson 1.28 3784.86 4844.62 - case= 32 sphere above 20 MeV otherBaryon 0.21 2859.83 600.564 + case= 0 sphere all 6759.5 21.7403 146954 + case= 1 sphere electron 4990.31 4.64321 23171.1 + case= 2 sphere gamma 1508.37 19.2368 29016.2 + case= 3 sphere muon 0.93 79.1435 73.6034 + case= 4 sphere neutrino 2.62 43.9885 115.25 + case= 5 sphere pion 16.29 4931.11 80327.8 + case= 6 sphere neutron 76.91 37.1523 2857.39 + case= 7 sphere proton 17.31 114.813 1987.41 + case= 8 sphere ion 144.99 1.21723 176.486 + case= 9 sphere otherMeson 1.49 5357.11 7982.09 + case= 10 sphere otherBaryon 0.28 4451.41 1246.39 + case= 11 sphere below 20 MeV all 6544.23 0.658491 4309.31 + case= 12 sphere below 20 MeV electron 4912.31 0.426422 2094.72 + case= 13 sphere below 20 MeV gamma 1415.12 1.27908 1810.05 + case= 14 sphere below 20 MeV muon 0.77 4.11981 3.17226 + case= 15 sphere below 20 MeV neutrino 0.22 14.0093 3.08204 + case= 16 sphere below 20 MeV pion 0.2 12.1059 2.42119 + case= 17 sphere below 20 MeV neutron 63.27 3.58027 226.524 + case= 18 sphere below 20 MeV proton 8.85 7.72081 68.3292 + case= 19 sphere below 20 MeV ion 143.45 0.701296 100.601 + case= 20 sphere below 20 MeV otherMeson 0.02 6.87311 0.137462 + case= 21 sphere below 20 MeV otherBaryon 0.02 14.0003 0.280007 + case= 22 sphere above 20 MeV all 215.27 662.63 142644 + case= 23 sphere above 20 MeV electron 78 270.21 21076.4 + case= 24 sphere above 20 MeV gamma 93.25 291.755 27206.1 + case= 25 sphere above 20 MeV muon 0.16 440.195 70.4312 + case= 26 sphere above 20 MeV neutrino 2.4 46.7366 112.168 + case= 27 sphere above 20 MeV pion 16.09 4992.26 80325.4 + case= 28 sphere above 20 MeV neutron 13.64 192.878 2630.86 + case= 29 sphere above 20 MeV proton 8.46 226.842 1919.08 + case= 30 sphere above 20 MeV ion 1.54 49.2763 75.8855 + case= 31 sphere above 20 MeV otherMeson 1.47 5429.9 7981.95 + case= 32 sphere above 20 MeV otherBaryon 0.26 4792.75 1246.11 ============================================================= @@ -1513,7 +1513,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=30.800000s Real=30.992522s Sys=0.010000s + User=18.040000s Real=18.088689s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 4 @@ -1525,107 +1525,107 @@ 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 forward all 0.00295244 - case= 1 forward electron 3.12314e-05 - case= 2 forward gamma 0.000776354 - case= 3 forward muon 5.79955e-07 - case= 4 forward neutrino 0.000211426 - case= 5 forward pion 1.68883e-05 - case= 6 forward neutron 0.00190257 - case= 7 forward proton 1.11942e-05 - case= 8 forward ion 3.39065e-07 - case= 9 forward otherMeson 1.69718e-06 - case= 10 forward otherBaryon 1.60015e-07 - case= 11 backward all 0.000169184 + case= 0 forward all 0.00353029 + case= 1 forward electron 4.73859e-05 + case= 2 forward gamma 0.00113271 + case= 3 forward muon 1.34312e-06 + case= 4 forward neutrino 0.000237822 + case= 5 forward pion 1.88039e-05 + case= 6 forward neutron 0.00207718 + case= 7 forward proton 1.23573e-05 + case= 8 forward ion 3.28241e-07 + case= 9 forward otherMeson 2.19483e-06 + case= 10 forward otherBaryon 1.66395e-07 + case= 11 backward all 0.000166009 case= 12 backward electron 0 - case= 13 backward gamma 3.5863e-06 + case= 13 backward gamma 7.49852e-06 case= 14 backward muon 0 - case= 15 backward neutrino 9.21672e-05 + case= 15 backward neutrino 8.30951e-05 case= 16 backward pion 0 - case= 17 backward neutron 7.34301e-05 + case= 17 backward neutron 7.54149e-05 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00257619 - case= 23 below 20 MeV forward electron 2.00768e-05 - case= 24 below 20 MeV forward gamma 0.000749638 + case= 22 below 20 MeV forward all 0.00309761 + case= 23 below 20 MeV forward electron 3.67451e-05 + case= 24 below 20 MeV forward gamma 0.00109953 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 1.61438e-05 - case= 27 below 20 MeV forward pion 1.62446e-07 - case= 28 below 20 MeV forward neutron 0.00178901 - case= 29 below 20 MeV forward proton 1.15753e-06 + case= 26 below 20 MeV forward neutrino 2.25721e-05 + case= 27 below 20 MeV forward pion 0 + case= 28 below 20 MeV forward neutron 0.00193877 + case= 29 below 20 MeV forward proton 0 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 8.50643e-05 + case= 33 below 20 MeV backward all 8.90698e-05 case= 34 below 20 MeV backward electron 0 - case= 35 below 20 MeV backward gamma 3.5863e-06 + case= 35 below 20 MeV backward gamma 7.49852e-06 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 8.21404e-06 + case= 37 below 20 MeV backward neutrino 6.74187e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 7.32639e-05 + case= 39 below 20 MeV backward neutron 7.48294e-05 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000376254 - case= 45 above 20 MeV forward electron 1.11546e-05 - case= 46 above 20 MeV forward gamma 2.67162e-05 - case= 47 above 20 MeV forward muon 5.79955e-07 - case= 48 above 20 MeV forward neutrino 0.000195283 - case= 49 above 20 MeV forward pion 1.67258e-05 - case= 50 above 20 MeV forward neutron 0.000113562 - case= 51 above 20 MeV forward proton 1.00366e-05 - case= 52 above 20 MeV forward ion 3.39065e-07 - case= 53 above 20 MeV forward otherMeson 1.69718e-06 - case= 54 above 20 MeV forward otherBaryon 1.60015e-07 - case= 55 above 20 MeV backward all 8.41194e-05 + case= 44 above 20 MeV forward all 0.000432679 + case= 45 above 20 MeV forward electron 1.06407e-05 + case= 46 above 20 MeV forward gamma 3.31871e-05 + case= 47 above 20 MeV forward muon 1.34312e-06 + case= 48 above 20 MeV forward neutrino 0.00021525 + case= 49 above 20 MeV forward pion 1.88039e-05 + case= 50 above 20 MeV forward neutron 0.000138407 + case= 51 above 20 MeV forward proton 1.23573e-05 + case= 52 above 20 MeV forward ion 3.28241e-07 + case= 53 above 20 MeV forward otherMeson 2.19483e-06 + case= 54 above 20 MeV forward otherBaryon 1.66395e-07 + case= 55 above 20 MeV backward all 7.69387e-05 case= 56 above 20 MeV backward electron 0 case= 57 above 20 MeV backward gamma 0 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 8.39532e-05 + case= 59 above 20 MeV backward neutrino 7.63532e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 1.66169e-07 + case= 61 above 20 MeV backward neutron 5.85517e-07 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 60048 5.23613 314419 - case= 1 sphere electron 45070.7 1.75 78873.9 - case= 2 sphere gamma 12678 6.11554 77532.8 - case= 3 sphere muon 5.73 17.0857 97.9012 - case= 4 sphere neutrino 17.07 36.2052 618.022 - case= 5 sphere pion 55.29 2026.87 112066 - case= 6 sphere neutron 854.44 19.0978 16317.9 - case= 7 sphere proton 184.97 71.4966 13224.7 - case= 8 sphere ion 1176.62 0.926378 1089.99 - case= 9 sphere otherMeson 4.14 3307.24 13692 - case= 10 sphere otherBaryon 0.99 915.201 906.049 - case= 11 sphere below 20 MeV all 58962.8 0.650992 38384.3 - case= 12 sphere below 20 MeV electron 44636.6 0.446248 19919 - case= 13 sphere below 20 MeV gamma 12288.1 1.22265 15024 - case= 14 sphere below 20 MeV muon 5.35 4.14484 22.1749 - case= 15 sphere below 20 MeV neutrino 1.4 14.6117 20.4564 - case= 16 sphere below 20 MeV pion 1.14 12.8907 14.6954 - case= 17 sphere below 20 MeV neutron 742.69 2.50739 1862.21 - case= 18 sphere below 20 MeV proton 120.4 7.95993 958.375 - case= 19 sphere below 20 MeV ion 1166.94 0.480873 561.15 - case= 20 sphere below 20 MeV otherMeson 0.21 5.54069 1.16354 - case= 21 sphere below 20 MeV otherBaryon 0.08 14.4651 1.15721 - case= 22 sphere above 20 MeV all 1085.11 254.384 276035 - case= 23 sphere above 20 MeV electron 434.15 135.794 58954.9 - case= 24 sphere above 20 MeV gamma 389.92 160.312 62508.8 - case= 25 sphere above 20 MeV muon 0.38 199.28 75.7263 - case= 26 sphere above 20 MeV neutrino 15.67 38.1344 597.566 - case= 27 sphere above 20 MeV pion 54.15 2069.27 112051 - case= 28 sphere above 20 MeV neutron 111.75 129.357 14455.7 - case= 29 sphere above 20 MeV proton 64.57 189.97 12266.4 - case= 30 sphere above 20 MeV ion 9.68 54.6328 528.845 - case= 31 sphere above 20 MeV otherMeson 3.93 3483.66 13690.8 - case= 32 sphere above 20 MeV otherBaryon 0.91 994.387 904.892 + case= 0 sphere all 57608.4 5.26744 303449 + case= 1 sphere electron 43140.6 1.69075 72939.8 + case= 2 sphere gamma 12121 5.86597 71101.4 + case= 3 sphere muon 5.85 20.5863 120.43 + case= 4 sphere neutrino 17.33 36.5469 633.357 + case= 5 sphere pion 57.55 1980.04 113951 + case= 6 sphere neutron 873.05 19.0368 16620.1 + case= 7 sphere proton 189.41 67.3586 12758.4 + case= 8 sphere ion 1198.26 0.895482 1073.02 + case= 9 sphere otherMeson 4.37 3056.76 13358 + case= 10 sphere otherBaryon 0.97 921.169 893.534 + case= 11 sphere below 20 MeV all 56570.4 0.653523 36970 + case= 12 sphere below 20 MeV electron 42733.7 0.445394 19033.3 + case= 13 sphere below 20 MeV gamma 11756.6 1.22613 14415.1 + case= 14 sphere below 20 MeV muon 5.37 4.13714 22.2164 + case= 15 sphere below 20 MeV neutrino 1.59 14.6595 23.3086 + case= 16 sphere below 20 MeV pion 1.29 12.8475 16.5733 + case= 17 sphere below 20 MeV neutron 759.94 2.51573 1911.8 + case= 18 sphere below 20 MeV proton 122.83 7.87248 966.976 + case= 19 sphere below 20 MeV ion 1188.77 0.486401 578.218 + case= 20 sphere below 20 MeV otherMeson 0.26 6.95671 1.80874 + case= 21 sphere below 20 MeV otherBaryon 0.06 11.4804 0.688824 + case= 22 sphere above 20 MeV all 1038.01 256.721 266479 + case= 23 sphere above 20 MeV electron 406.92 132.474 53906.5 + case= 24 sphere above 20 MeV gamma 364.41 155.556 56686.3 + case= 25 sphere above 20 MeV muon 0.48 204.611 98.2135 + case= 26 sphere above 20 MeV neutrino 15.74 38.7579 610.049 + case= 27 sphere above 20 MeV pion 56.26 2025.14 113934 + case= 28 sphere above 20 MeV neutron 113.11 130.035 14708.3 + case= 29 sphere above 20 MeV proton 66.58 177.101 11791.4 + case= 30 sphere above 20 MeV ion 9.49 52.1393 494.802 + case= 31 sphere above 20 MeV otherMeson 4.11 3249.69 13356.2 + case= 32 sphere above 20 MeV otherBaryon 0.91 981.148 892.845 ============================================================= @@ -1704,7 +1704,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=30.580000s Real=30.768622s Sys=0.010000s + User=18.310000s Real=18.359091s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 5 @@ -1716,107 +1716,107 @@ 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 forward all 0.00117691 - case= 1 forward electron 9.37629e-06 - case= 2 forward gamma 0.000307607 - case= 3 forward muon 0 - case= 4 forward neutrino 0.000223557 - case= 5 forward pion 4.19404e-06 - case= 6 forward neutron 0.00062827 - case= 7 forward proton 2.84254e-06 + case= 0 forward all 0.0011345 + case= 1 forward electron 1.2358e-05 + case= 2 forward gamma 0.000321739 + case= 3 forward muon 3.15687e-07 + case= 4 forward neutrino 0.000205869 + case= 5 forward pion 8.04375e-06 + case= 6 forward neutron 0.000580028 + case= 7 forward proton 5.33172e-06 case= 8 forward ion 0 - case= 9 forward otherMeson 1.06453e-06 - case= 10 forward otherBaryon 0 - case= 11 backward all 0.00010045 - case= 12 backward electron 1.85146e-07 - case= 13 backward gamma 1.52718e-06 + case= 9 forward otherMeson 6.45327e-07 + case= 10 forward otherBaryon 1.67497e-07 + case= 11 backward all 0.000112058 + case= 12 backward electron 0 + case= 13 backward gamma 2.05418e-06 case= 14 backward muon 0 - case= 15 backward neutrino 9.49011e-05 + case= 15 backward neutrino 0.000104704 case= 16 backward pion 0 - case= 17 backward neutron 3.83689e-06 + case= 17 backward neutron 5.3003e-06 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.000889461 - case= 23 below 20 MeV forward electron 8.67715e-06 - case= 24 below 20 MeV forward gamma 0.000305145 + case= 22 below 20 MeV forward all 0.000859596 + case= 23 below 20 MeV forward electron 1.04542e-05 + case= 24 below 20 MeV forward gamma 0.000315203 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 1.98789e-05 - case= 27 below 20 MeV forward pion 0 - case= 28 below 20 MeV forward neutron 0.00055576 + case= 26 below 20 MeV forward neutrino 1.53937e-05 + case= 27 below 20 MeV forward pion 1.90005e-07 + case= 28 below 20 MeV forward neutron 0.000518355 case= 29 below 20 MeV forward proton 0 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 1.4475e-05 - case= 34 below 20 MeV backward electron 1.85146e-07 - case= 35 below 20 MeV backward gamma 1.52718e-06 + case= 33 below 20 MeV backward all 1.67729e-05 + case= 34 below 20 MeV backward electron 0 + case= 35 below 20 MeV backward gamma 2.05418e-06 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 8.92579e-06 + case= 37 below 20 MeV backward neutrino 1.05619e-05 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 3.83689e-06 + case= 39 below 20 MeV backward neutron 4.15673e-06 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000287451 - case= 45 above 20 MeV forward electron 6.99141e-07 - case= 46 above 20 MeV forward gamma 2.46182e-06 - case= 47 above 20 MeV forward muon 0 - case= 48 above 20 MeV forward neutrino 0.000203679 - case= 49 above 20 MeV forward pion 4.19404e-06 - case= 50 above 20 MeV forward neutron 7.25101e-05 - case= 51 above 20 MeV forward proton 2.84254e-06 + case= 44 above 20 MeV forward all 0.000274902 + case= 45 above 20 MeV forward electron 1.90386e-06 + case= 46 above 20 MeV forward gamma 6.53579e-06 + case= 47 above 20 MeV forward muon 3.15687e-07 + case= 48 above 20 MeV forward neutrino 0.000190475 + case= 49 above 20 MeV forward pion 7.85374e-06 + case= 50 above 20 MeV forward neutron 6.16729e-05 + case= 51 above 20 MeV forward proton 5.33172e-06 case= 52 above 20 MeV forward ion 0 - case= 53 above 20 MeV forward otherMeson 1.06453e-06 - case= 54 above 20 MeV forward otherBaryon 0 - case= 55 above 20 MeV backward all 8.59753e-05 + case= 53 above 20 MeV forward otherMeson 6.45327e-07 + case= 54 above 20 MeV forward otherBaryon 1.67497e-07 + case= 55 above 20 MeV backward all 9.52856e-05 case= 56 above 20 MeV backward electron 0 case= 57 above 20 MeV backward gamma 0 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 8.59753e-05 + case= 59 above 20 MeV backward neutrino 9.4142e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 0 + case= 61 above 20 MeV backward neutron 1.14356e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 66006 4.77092 314910 - case= 1 sphere electron 48839.8 1.5983 78060.9 - case= 2 sphere gamma 14515.7 5.28271 76682.4 - case= 3 sphere muon 6.19 16.305 100.928 - case= 4 sphere neutrino 18.5 36.5256 675.724 - case= 5 sphere pion 59.31 1898.96 112627 - case= 6 sphere neutron 999.08 17.4749 17458.8 - case= 7 sphere proton 231.11 59.9208 13848.3 - case= 8 sphere ion 1330.51 0.912344 1213.88 - case= 9 sphere otherMeson 4.6 2821.2 12977.5 - case= 10 sphere otherBaryon 1.13 1118.64 1264.06 - case= 11 sphere below 20 MeV all 64883.8 0.666379 43237.2 - case= 12 sphere below 20 MeV electron 48406.7 0.451848 21872.5 - case= 13 sphere below 20 MeV gamma 14128.5 1.21708 17195.5 - case= 14 sphere below 20 MeV muon 5.73 4.14736 23.7644 - case= 15 sphere below 20 MeV neutrino 1.63 14.845 24.1973 - case= 16 sphere below 20 MeV pion 1.32 11.6364 15.3601 - case= 17 sphere below 20 MeV neutron 869.27 2.63154 2287.52 - case= 18 sphere below 20 MeV proton 151.53 8.07137 1223.06 - case= 19 sphere below 20 MeV ion 1318.69 0.44882 591.855 - case= 20 sphere below 20 MeV otherMeson 0.29 5.75351 1.66852 - case= 21 sphere below 20 MeV otherBaryon 0.12 14.663 1.75956 - case= 22 sphere above 20 MeV all 1122.22 242.085 271672 - case= 23 sphere above 20 MeV electron 433.12 129.729 56188.4 - case= 24 sphere above 20 MeV gamma 387.25 153.614 59486.9 - case= 25 sphere above 20 MeV muon 0.46 167.746 77.1634 - case= 26 sphere above 20 MeV neutrino 16.87 38.6204 651.527 - case= 27 sphere above 20 MeV pion 57.99 1941.92 112612 - case= 28 sphere above 20 MeV neutron 129.81 116.873 15171.3 - case= 29 sphere above 20 MeV proton 79.58 158.648 12625.2 - case= 30 sphere above 20 MeV ion 11.82 52.625 622.028 - case= 31 sphere above 20 MeV otherMeson 4.31 3010.63 12975.8 - case= 32 sphere above 20 MeV otherBaryon 1.01 1249.81 1262.3 + case= 0 sphere all 66193.7 4.87177 322480 + case= 1 sphere electron 49095 1.67941 82450.4 + case= 2 sphere gamma 14671.5 5.51938 80977.4 + case= 3 sphere muon 6.07 26.5251 161.007 + case= 4 sphere neutrino 18.13 38.0583 689.997 + case= 5 sphere pion 57.93 2009.2 116393 + case= 6 sphere neutron 910.45 16.9672 15447.8 + case= 7 sphere proton 211.45 60.6183 12817.7 + case= 8 sphere ion 1218.29 0.919025 1119.64 + case= 9 sphere otherMeson 4.13 2894.84 11955.7 + case= 10 sphere otherBaryon 0.83 563.696 467.868 + case= 11 sphere below 20 MeV all 65057.8 0.6688 43510.7 + case= 12 sphere below 20 MeV electron 48643.6 0.459039 22329.3 + case= 13 sphere below 20 MeV gamma 14264 1.2179 17372.2 + case= 14 sphere below 20 MeV muon 5.64 4.13401 23.3158 + case= 15 sphere below 20 MeV neutrino 1.5 14.6666 21.9999 + case= 16 sphere below 20 MeV pion 1.16 12.7118 14.7457 + case= 17 sphere below 20 MeV neutron 794.18 2.60755 2070.86 + case= 18 sphere below 20 MeV proton 139.31 8.11794 1130.91 + case= 19 sphere below 20 MeV ion 1208.08 0.45177 545.774 + case= 20 sphere below 20 MeV otherMeson 0.26 4.28107 1.11308 + case= 21 sphere below 20 MeV otherBaryon 0.05 8.59195 0.429597 + case= 22 sphere above 20 MeV all 1135.93 245.587 278970 + case= 23 sphere above 20 MeV electron 451.4 133.188 60121.1 + case= 24 sphere above 20 MeV gamma 407.43 156.113 63605.2 + case= 25 sphere above 20 MeV muon 0.43 320.212 137.691 + case= 26 sphere above 20 MeV neutrino 16.63 40.1682 667.997 + case= 27 sphere above 20 MeV pion 56.77 2049.99 116378 + case= 28 sphere above 20 MeV neutron 116.27 115.05 13376.9 + case= 29 sphere above 20 MeV proton 72.14 162.002 11686.8 + case= 30 sphere above 20 MeV ion 10.21 56.2062 573.866 + case= 31 sphere above 20 MeV otherMeson 3.87 3089.04 11954.6 + case= 32 sphere above 20 MeV otherBaryon 0.78 599.279 467.438 ============================================================= @@ -1900,7 +1900,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=78.690000s Real=79.571898s Sys=0.040000s + User=50.500000s Real=50.682308s Sys=0.050000s =============== Run::PrintInfo() =============== RunID = 6 @@ -1912,107 +1912,107 @@ 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 forward all 0.000332211 - case= 1 forward electron 1.69465e-07 - case= 2 forward gamma 1.24422e-05 + case= 0 forward all 0.000267045 + case= 1 forward electron 2.85948e-07 + case= 2 forward gamma 1.19408e-05 case= 3 forward muon 0 - case= 4 forward neutrino 0.000182772 + case= 4 forward neutrino 0.000158695 case= 5 forward pion 0 - case= 6 forward neutron 0.000136335 - case= 7 forward proton 3.33466e-07 + case= 6 forward neutron 9.61232e-05 + case= 7 forward proton 0 case= 8 forward ion 0 - case= 9 forward otherMeson 1.5918e-07 + case= 9 forward otherMeson 0 case= 10 forward otherBaryon 0 - case= 11 backward all 0.000108722 + case= 11 backward all 9.00945e-05 case= 12 backward electron 0 case= 13 backward gamma 0 case= 14 backward muon 0 - case= 15 backward neutrino 0.000107866 + case= 15 backward neutrino 8.95521e-05 case= 16 backward pion 0 - case= 17 backward neutron 8.55805e-07 + case= 17 backward neutron 5.42317e-07 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.000153856 - case= 23 below 20 MeV forward electron 1.69465e-07 - case= 24 below 20 MeV forward gamma 1.24422e-05 + case= 22 below 20 MeV forward all 0.000115136 + case= 23 below 20 MeV forward electron 2.85948e-07 + case= 24 below 20 MeV forward gamma 1.19408e-05 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 1.43258e-05 + case= 26 below 20 MeV forward neutrino 1.2995e-05 case= 27 below 20 MeV forward pion 0 - case= 28 below 20 MeV forward neutron 0.000126919 + case= 28 below 20 MeV forward neutron 8.99141e-05 case= 29 below 20 MeV forward proton 0 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 1.04815e-05 + case= 33 below 20 MeV backward all 7.06095e-06 case= 34 below 20 MeV backward electron 0 case= 35 below 20 MeV backward gamma 0 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 9.62567e-06 + case= 37 below 20 MeV backward neutrino 6.68742e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 8.55805e-07 + case= 39 below 20 MeV backward neutron 3.73536e-07 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000178355 + case= 44 above 20 MeV forward all 0.000151909 case= 45 above 20 MeV forward electron 0 case= 46 above 20 MeV forward gamma 0 case= 47 above 20 MeV forward muon 0 - case= 48 above 20 MeV forward neutrino 0.000168446 + case= 48 above 20 MeV forward neutrino 0.0001457 case= 49 above 20 MeV forward pion 0 - case= 50 above 20 MeV forward neutron 9.41638e-06 - case= 51 above 20 MeV forward proton 3.33466e-07 + case= 50 above 20 MeV forward neutron 6.20904e-06 + case= 51 above 20 MeV forward proton 0 case= 52 above 20 MeV forward ion 0 - case= 53 above 20 MeV forward otherMeson 1.5918e-07 + case= 53 above 20 MeV forward otherMeson 0 case= 54 above 20 MeV forward otherBaryon 0 - case= 55 above 20 MeV backward all 9.82402e-05 + case= 55 above 20 MeV backward all 8.30335e-05 case= 56 above 20 MeV backward electron 0 case= 57 above 20 MeV backward gamma 0 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 9.82402e-05 + case= 59 above 20 MeV backward neutrino 8.28647e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 0 + case= 61 above 20 MeV backward neutron 1.6878e-07 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 76550 4.05778 310623 - case= 1 sphere electron 45239.7 1.72714 78135.5 - case= 2 sphere gamma 23773.5 3.35188 79685.7 - case= 3 sphere muon 5.93 14.0345 83.2247 - case= 4 sphere neutrino 17.77 37.2466 661.872 - case= 5 sphere pion 54.49 1985.22 108174 - case= 6 sphere neutron 3605.05 5.60891 20220.4 - case= 7 sphere proton 125.16 94.3169 11804.7 - case= 8 sphere ion 3722.81 0.362205 1348.42 - case= 9 sphere otherMeson 4.45 2050.88 9126.43 - case= 10 sphere otherBaryon 1.23 1124 1382.52 - case= 11 sphere below 20 MeV all 75444.5 0.825192 62256.2 - case= 12 sphere below 20 MeV electron 44837.6 0.654481 29345.3 - case= 13 sphere below 20 MeV gamma 23396.4 1.17296 27443 - case= 14 sphere below 20 MeV muon 5.49 4.11981 22.6178 - case= 15 sphere below 20 MeV neutrino 1.46 14.7487 21.5331 - case= 16 sphere below 20 MeV pion 1.25 13.0425 16.3031 - case= 17 sphere below 20 MeV neutron 3451.15 1.2777 4409.53 - case= 18 sphere below 20 MeV proton 45.2 12.6002 569.53 - case= 19 sphere below 20 MeV ion 3705.45 0.114603 424.656 - case= 20 sphere below 20 MeV otherMeson 0.42 7.18641 3.01829 - case= 21 sphere below 20 MeV otherBaryon 0.07 9.63769 0.674638 - case= 22 sphere above 20 MeV all 1105.5 224.665 248367 - case= 23 sphere above 20 MeV electron 402.07 121.347 48790.1 - case= 24 sphere above 20 MeV gamma 377.03 138.564 52242.7 - case= 25 sphere above 20 MeV muon 0.44 137.743 60.6069 - case= 26 sphere above 20 MeV neutrino 16.31 39.2605 640.339 - case= 27 sphere above 20 MeV pion 53.24 2031.52 108158 - case= 28 sphere above 20 MeV neutron 153.9 102.735 15810.9 - case= 29 sphere above 20 MeV proton 79.96 140.51 11235.2 - case= 30 sphere above 20 MeV ion 17.36 53.2122 923.764 - case= 31 sphere above 20 MeV otherMeson 4.03 2263.87 9123.41 - case= 32 sphere above 20 MeV otherBaryon 1.16 1191.25 1381.85 + case= 0 sphere all 77076.3 4.11504 317172 + case= 1 sphere electron 45672 1.78507 81527.7 + case= 2 sphere gamma 24023.7 3.45931 83105.5 + case= 3 sphere muon 5.07 15.2053 77.0908 + case= 4 sphere neutrino 15.19 37.1154 563.783 + case= 5 sphere pion 52.68 2025.36 106696 + case= 6 sphere neutron 3529.84 5.55834 19620 + case= 7 sphere proton 124.88 90.7687 11335.2 + case= 8 sphere ion 3647.51 0.385718 1406.91 + case= 9 sphere otherMeson 4.36 2708.94 11811 + case= 10 sphere otherBaryon 1.09 944.348 1029.34 + case= 11 sphere below 20 MeV all 75939 0.831697 63158.2 + case= 12 sphere below 20 MeV electron 45249.3 0.661188 29918.3 + case= 13 sphere below 20 MeV gamma 23626.8 1.17938 27864.9 + case= 14 sphere below 20 MeV muon 4.73 4.15455 19.651 + case= 15 sphere below 20 MeV neutrino 1.21 14.983 18.1294 + case= 16 sphere below 20 MeV pion 1.06 11.2952 11.9729 + case= 17 sphere below 20 MeV neutron 3379.84 1.27686 4315.59 + case= 18 sphere below 20 MeV proton 45.77 12.5679 575.231 + case= 19 sphere below 20 MeV ion 3629.92 0.118823 431.319 + case= 20 sphere below 20 MeV otherMeson 0.28 6.78269 1.89915 + case= 21 sphere below 20 MeV otherBaryon 0.09 13.0943 1.17849 + case= 22 sphere above 20 MeV all 1137.33 223.343 254014 + case= 23 sphere above 20 MeV electron 422.7 122.095 51609.4 + case= 24 sphere above 20 MeV gamma 396.91 139.177 55240.5 + case= 25 sphere above 20 MeV muon 0.34 168.941 57.4398 + case= 26 sphere above 20 MeV neutrino 13.98 39.031 545.653 + case= 27 sphere above 20 MeV pion 51.62 2066.72 106684 + case= 28 sphere above 20 MeV neutron 150 102.03 15304.4 + case= 29 sphere above 20 MeV proton 79.11 136.013 10760 + case= 30 sphere above 20 MeV ion 17.59 55.4628 975.59 + case= 31 sphere above 20 MeV otherMeson 4.08 2894.38 11809.1 + case= 32 sphere above 20 MeV otherBaryon 1 1028.16 1028.16 ============================================================= @@ -2101,7 +2101,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=81.780000s Real=82.830708s Sys=0.040000s + User=48.250000s Real=48.335465s Sys=0.030000s =============== Run::PrintInfo() =============== RunID = 7 @@ -2113,107 +2113,107 @@ 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 forward all 0.0142781 - case= 1 forward electron 5.81406e-06 - case= 2 forward gamma 0.000104749 - case= 3 forward muon 5.06257e-07 - case= 4 forward neutrino 0.000186754 - case= 5 forward pion 6.54001e-06 - case= 6 forward neutron 0.01397 - case= 7 forward proton 3.24168e-06 - case= 8 forward ion 1.58123e-07 - case= 9 forward otherMeson 3.29888e-07 + case= 0 forward all 0.0150004 + case= 1 forward electron 2.08423e-05 + case= 2 forward gamma 0.000346503 + case= 3 forward muon 3.48872e-07 + case= 4 forward neutrino 0.000182034 + case= 5 forward pion 1.49659e-05 + case= 6 forward neutron 0.0144301 + case= 7 forward proton 3.98503e-06 + case= 8 forward ion 6.43953e-07 + case= 9 forward otherMeson 1.00678e-06 case= 10 forward otherBaryon 0 - case= 11 backward all 0.00266061 + case= 11 backward all 0.00238182 case= 12 backward electron 0 - case= 13 backward gamma 4.42671e-06 + case= 13 backward gamma 6.68512e-06 case= 14 backward muon 0 - case= 15 backward neutrino 8.76724e-05 + case= 15 backward neutrino 7.48995e-05 case= 16 backward pion 0 - case= 17 backward neutron 0.00256851 + case= 17 backward neutron 0.00230023 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.0140065 - case= 23 below 20 MeV forward electron 5.81406e-06 - case= 24 below 20 MeV forward gamma 0.000104195 + case= 22 below 20 MeV forward all 0.0146994 + case= 23 below 20 MeV forward electron 1.77933e-05 + case= 24 below 20 MeV forward gamma 0.000337465 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 1.73337e-05 - case= 27 below 20 MeV forward pion 0 - case= 28 below 20 MeV forward neutron 0.0138791 + case= 26 below 20 MeV forward neutrino 1.34139e-05 + case= 27 below 20 MeV forward pion 2.11481e-07 + case= 28 below 20 MeV forward neutron 0.0143306 case= 29 below 20 MeV forward proton 0 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 0.00257925 + case= 33 below 20 MeV backward all 0.00231318 case= 34 below 20 MeV backward electron 0 - case= 35 below 20 MeV backward gamma 4.42671e-06 + case= 35 below 20 MeV backward gamma 6.68512e-06 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 7.78162e-06 + case= 37 below 20 MeV backward neutrino 7.15944e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 0.00256704 + case= 39 below 20 MeV backward neutron 0.00229933 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000271634 - case= 45 above 20 MeV forward electron 0 - case= 46 above 20 MeV forward gamma 5.54484e-07 - case= 47 above 20 MeV forward muon 5.06257e-07 - case= 48 above 20 MeV forward neutrino 0.00016942 - case= 49 above 20 MeV forward pion 6.54001e-06 - case= 50 above 20 MeV forward neutron 9.08834e-05 - case= 51 above 20 MeV forward proton 3.24168e-06 - case= 52 above 20 MeV forward ion 1.58123e-07 - case= 53 above 20 MeV forward otherMeson 3.29888e-07 + case= 44 above 20 MeV forward all 0.000300974 + case= 45 above 20 MeV forward electron 3.04895e-06 + case= 46 above 20 MeV forward gamma 9.03747e-06 + case= 47 above 20 MeV forward muon 3.48872e-07 + case= 48 above 20 MeV forward neutrino 0.00016862 + case= 49 above 20 MeV forward pion 1.47544e-05 + case= 50 above 20 MeV forward neutron 9.95287e-05 + case= 51 above 20 MeV forward proton 3.98503e-06 + case= 52 above 20 MeV forward ion 6.43953e-07 + case= 53 above 20 MeV forward otherMeson 1.00678e-06 case= 54 above 20 MeV forward otherBaryon 0 - case= 55 above 20 MeV backward all 8.13627e-05 + case= 55 above 20 MeV backward all 6.86418e-05 case= 56 above 20 MeV backward electron 0 case= 57 above 20 MeV backward gamma 0 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 7.98908e-05 + case= 59 above 20 MeV backward neutrino 6.774e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 1.47195e-06 + case= 61 above 20 MeV backward neutron 9.01745e-07 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 51920.8 5.75759 298939 - case= 1 sphere electron 30740.3 2.48496 76388.6 - case= 2 sphere gamma 17598.7 4.37932 77070.4 - case= 3 sphere muon 5.31 25.0138 132.823 - case= 4 sphere neutrino 15.81 40.1579 634.896 - case= 5 sphere pion 49.92 2066.67 103168 - case= 6 sphere neutron 2098.81 8.09634 16992.7 - case= 7 sphere proton 109.46 98.4492 10776.2 - case= 8 sphere ion 1296.85 1.13599 1473.21 - case= 9 sphere otherMeson 4.58 2507.39 11483.8 - case= 10 sphere otherBaryon 1.05 778.623 817.554 - case= 11 sphere below 20 MeV all 50797.4 0.97698 49628 - case= 12 sphere below 20 MeV electron 30316 0.788529 23905 - case= 13 sphere below 20 MeV gamma 17199.7 1.21966 20977.7 - case= 14 sphere below 20 MeV muon 4.82 4.14001 19.9548 - case= 15 sphere below 20 MeV neutrino 1.45 14.9515 21.6796 - case= 16 sphere below 20 MeV pion 1.02 12.4247 12.6732 - case= 17 sphere below 20 MeV neutron 1962.53 1.97405 3874.13 - case= 18 sphere below 20 MeV proton 36.46 12.6141 459.91 - case= 19 sphere below 20 MeV ion 1274.98 0.277167 353.382 - case= 20 sphere below 20 MeV otherMeson 0.41 6.18926 2.5376 - case= 21 sphere below 20 MeV otherBaryon 0.07 14.5516 1.01861 - case= 22 sphere above 20 MeV all 1123.47 221.911 249311 - case= 23 sphere above 20 MeV electron 424.37 123.674 52483.5 - case= 24 sphere above 20 MeV gamma 399.05 140.566 56092.7 - case= 25 sphere above 20 MeV muon 0.49 230.344 112.868 - case= 26 sphere above 20 MeV neutrino 14.36 42.7031 613.216 - case= 27 sphere above 20 MeV pion 48.9 2109.52 103156 - case= 28 sphere above 20 MeV neutron 136.28 96.2618 13118.6 - case= 29 sphere above 20 MeV proton 73 141.32 10316.3 - case= 30 sphere above 20 MeV ion 21.87 51.2036 1119.82 - case= 31 sphere above 20 MeV otherMeson 4.17 2753.31 11481.3 - case= 32 sphere above 20 MeV otherBaryon 0.98 833.199 816.535 + case= 0 sphere all 50616.1 5.82977 295080 + case= 1 sphere electron 29944.6 2.49634 74751.9 + case= 2 sphere gamma 17144.8 4.40865 75585.6 + case= 3 sphere muon 4.95 16.3479 80.9221 + case= 4 sphere neutrino 14.76 36.7352 542.211 + case= 5 sphere pion 49.45 2096.71 103682 + case= 6 sphere neutron 2072 8.57719 17771.9 + case= 7 sphere proton 108.75 96.0603 10446.6 + case= 8 sphere ion 1271.82 1.17881 1499.23 + case= 9 sphere otherMeson 3.86 2587.88 9989.21 + case= 10 sphere otherBaryon 1.07 682.697 730.485 + case= 11 sphere below 20 MeV all 49519.2 0.978046 48432 + case= 12 sphere below 20 MeV electron 29534 0.788799 23296.4 + case= 13 sphere below 20 MeV gamma 16755.6 1.22078 20454.8 + case= 14 sphere below 20 MeV muon 4.61 4.1428 19.0983 + case= 15 sphere below 20 MeV neutrino 1.19 14.3583 17.0863 + case= 16 sphere below 20 MeV pion 1.07 11.4153 12.2144 + case= 17 sphere below 20 MeV neutron 1936.05 1.96817 3810.47 + case= 18 sphere below 20 MeV proton 36.77 12.6215 464.094 + case= 19 sphere below 20 MeV ion 1249.5 0.283871 354.697 + case= 20 sphere below 20 MeV otherMeson 0.32 5.97748 1.91279 + case= 21 sphere below 20 MeV otherBaryon 0.1 12.6078 1.26078 + case= 22 sphere above 20 MeV all 1096.97 224.845 246648 + case= 23 sphere above 20 MeV electron 410.64 125.306 51455.6 + case= 24 sphere above 20 MeV gamma 389.28 141.622 55130.8 + case= 25 sphere above 20 MeV muon 0.34 181.835 61.8238 + case= 26 sphere above 20 MeV neutrino 13.57 38.6975 525.125 + case= 27 sphere above 20 MeV pion 48.38 2142.82 103670 + case= 28 sphere above 20 MeV neutron 135.95 102.696 13961.5 + case= 29 sphere above 20 MeV proton 71.98 138.684 9982.46 + case= 30 sphere above 20 MeV ion 22.32 51.2785 1144.54 + case= 31 sphere above 20 MeV otherMeson 3.54 2821.27 9987.3 + case= 32 sphere above 20 MeV otherBaryon 0.97 751.778 729.225 ============================================================= @@ -2307,7 +2307,7 @@ Index : 9 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=45.000000s Real=46.043565s Sys=0.020000s + User=27.520000s Real=27.584207s Sys=0.020000s =============== Run::PrintInfo() =============== RunID = 8 @@ -2319,107 +2319,107 @@ 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 forward all 0.00293791 - case= 1 forward electron 3.1912e-05 - case= 2 forward gamma 0.000604804 - case= 3 forward muon 8.21676e-07 - case= 4 forward neutrino 0.00019443 - case= 5 forward pion 2.55753e-05 - case= 6 forward neutron 0.00206279 - case= 7 forward proton 1.49912e-05 - case= 8 forward ion 1.77957e-07 - case= 9 forward otherMeson 2.23303e-06 - case= 10 forward otherBaryon 1.72877e-07 - case= 11 backward all 9.66167e-05 + case= 0 forward all 0.00286106 + case= 1 forward electron 1.40321e-05 + case= 2 forward gamma 0.000476651 + case= 3 forward muon 6.95087e-07 + case= 4 forward neutrino 0.000187233 + case= 5 forward pion 2.08958e-05 + case= 6 forward neutron 0.00214898 + case= 7 forward proton 1.10057e-05 + case= 8 forward ion 0 + case= 9 forward otherMeson 1.56705e-06 + case= 10 forward otherBaryon 0 + case= 11 backward all 0.000105074 case= 12 backward electron 0 - case= 13 backward gamma 2.25071e-06 + case= 13 backward gamma 1.68513e-06 case= 14 backward muon 0 - case= 15 backward neutrino 7.24207e-05 + case= 15 backward neutrino 8.35514e-05 case= 16 backward pion 0 - case= 17 backward neutron 2.19453e-05 + case= 17 backward neutron 1.98371e-05 case= 18 backward proton 0 case= 19 backward ion 0 case= 20 backward otherMeson 0 case= 21 backward otherBaryon 0 - case= 22 below 20 MeV forward all 0.00253794 - case= 23 below 20 MeV forward electron 2.09904e-05 - case= 24 below 20 MeV forward gamma 0.000583512 + case= 22 below 20 MeV forward all 0.00249912 + case= 23 below 20 MeV forward electron 1.1659e-05 + case= 24 below 20 MeV forward gamma 0.000470788 case= 25 below 20 MeV forward muon 0 - case= 26 below 20 MeV forward neutrino 1.56966e-05 + case= 26 below 20 MeV forward neutrino 1.549e-05 case= 27 below 20 MeV forward pion 0 - case= 28 below 20 MeV forward neutron 0.00191774 - case= 29 below 20 MeV forward proton 0 + case= 28 below 20 MeV forward neutron 0.00199954 + case= 29 below 20 MeV forward proton 1.64195e-06 case= 30 below 20 MeV forward ion 0 case= 31 below 20 MeV forward otherMeson 0 case= 32 below 20 MeV forward otherBaryon 0 - case= 33 below 20 MeV backward all 2.93169e-05 + case= 33 below 20 MeV backward all 2.71248e-05 case= 34 below 20 MeV backward electron 0 - case= 35 below 20 MeV backward gamma 2.25071e-06 + case= 35 below 20 MeV backward gamma 1.68513e-06 case= 36 below 20 MeV backward muon 0 - case= 37 below 20 MeV backward neutrino 6.64061e-06 + case= 37 below 20 MeV backward neutrino 7.53035e-06 case= 38 below 20 MeV backward pion 0 - case= 39 below 20 MeV backward neutron 2.04255e-05 + case= 39 below 20 MeV backward neutron 1.79093e-05 case= 40 below 20 MeV backward proton 0 case= 41 below 20 MeV backward ion 0 case= 42 below 20 MeV backward otherMeson 0 case= 43 below 20 MeV backward otherBaryon 0 - case= 44 above 20 MeV forward all 0.000399977 - case= 45 above 20 MeV forward electron 1.09216e-05 - case= 46 above 20 MeV forward gamma 2.12914e-05 - case= 47 above 20 MeV forward muon 8.21676e-07 - case= 48 above 20 MeV forward neutrino 0.000178734 - case= 49 above 20 MeV forward pion 2.55753e-05 - case= 50 above 20 MeV forward neutron 0.000145058 - case= 51 above 20 MeV forward proton 1.49912e-05 - case= 52 above 20 MeV forward ion 1.77957e-07 - case= 53 above 20 MeV forward otherMeson 2.23303e-06 - case= 54 above 20 MeV forward otherBaryon 1.72877e-07 - case= 55 above 20 MeV backward all 6.72998e-05 + case= 44 above 20 MeV forward all 0.00036194 + case= 45 above 20 MeV forward electron 2.37312e-06 + case= 46 above 20 MeV forward gamma 5.86256e-06 + case= 47 above 20 MeV forward muon 6.95087e-07 + case= 48 above 20 MeV forward neutrino 0.000171743 + case= 49 above 20 MeV forward pion 2.08958e-05 + case= 50 above 20 MeV forward neutron 0.000149439 + case= 51 above 20 MeV forward proton 9.36376e-06 + case= 52 above 20 MeV forward ion 0 + case= 53 above 20 MeV forward otherMeson 1.56705e-06 + case= 54 above 20 MeV forward otherBaryon 0 + case= 55 above 20 MeV backward all 7.79489e-05 case= 56 above 20 MeV backward electron 0 case= 57 above 20 MeV backward gamma 0 case= 58 above 20 MeV backward muon 0 - case= 59 above 20 MeV backward neutrino 6.57801e-05 + case= 59 above 20 MeV backward neutrino 7.60211e-05 case= 60 above 20 MeV backward pion 0 - case= 61 above 20 MeV backward neutron 1.51978e-06 + case= 61 above 20 MeV backward neutron 1.92781e-06 case= 62 above 20 MeV backward proton 0 case= 63 above 20 MeV backward ion 0 case= 64 above 20 MeV backward otherMeson 0 case= 65 above 20 MeV backward otherBaryon 0 ------------------------------------------------------------- Extra information: particle production <N> <E_kin> <Sum_Ekin> [MeV] - case= 0 sphere all 57409.8 5.22249 299822 - case= 1 sphere electron 34340.4 2.2619 77674.4 - case= 2 sphere gamma 18106.9 4.32843 78374.5 - case= 3 sphere muon 4.92 19.3926 95.4116 - case= 4 sphere neutrino 14.68 37.8652 555.86 - case= 5 sphere pion 48.93 2128.97 104170 - case= 6 sphere neutron 1639.35 9.77125 16018.5 - case= 7 sphere proton 115.91 91.995 10663.1 - case= 8 sphere ion 3134.02 0.531634 1666.15 - case= 9 sphere otherMeson 3.78 2553.68 9652.9 - case= 10 sphere otherBaryon 0.89 1068.23 950.722 - case= 11 sphere below 20 MeV all 56340.5 0.90105 50765.7 - case= 12 sphere below 20 MeV electron 33925.3 0.728681 24720.8 - case= 13 sphere below 20 MeV gamma 17717.2 1.22671 21733.8 - case= 14 sphere below 20 MeV muon 4.46 4.14605 18.4914 - case= 15 sphere below 20 MeV neutrino 1.22 14.9054 18.1846 - case= 16 sphere below 20 MeV pion 1.12 12.7686 14.3008 - case= 17 sphere below 20 MeV neutron 1520.63 1.89578 2882.77 - case= 18 sphere below 20 MeV proton 51.43 9.66795 497.223 - case= 19 sphere below 20 MeV ion 3118.89 0.28163 878.373 - case= 20 sphere below 20 MeV otherMeson 0.17 6.42397 1.09207 - case= 21 sphere below 20 MeV otherBaryon 0.05 12.9297 0.646486 - case= 22 sphere above 20 MeV all 1069.26 232.924 249056 - case= 23 sphere above 20 MeV electron 415.05 127.584 52953.6 - case= 24 sphere above 20 MeV gamma 389.7 145.344 56640.7 - case= 25 sphere above 20 MeV muon 0.46 167.218 76.9202 - case= 26 sphere above 20 MeV neutrino 13.46 39.9462 537.676 - case= 27 sphere above 20 MeV pion 47.81 2178.54 104156 - case= 28 sphere above 20 MeV neutron 118.72 110.645 13135.7 - case= 29 sphere above 20 MeV proton 64.48 157.66 10165.9 - case= 30 sphere above 20 MeV ion 15.13 52.0673 787.778 - case= 31 sphere above 20 MeV otherMeson 3.61 2673.63 9651.81 - case= 32 sphere above 20 MeV otherBaryon 0.84 1131.04 950.076 + case= 0 sphere all 57597.6 5.21303 300258 + case= 1 sphere electron 34348.5 2.19393 75358.2 + case= 2 sphere gamma 18074.6 4.19939 75902.4 + case= 3 sphere muon 5.07 25.0409 126.957 + case= 4 sphere neutrino 15.06 41.6734 627.602 + case= 5 sphere pion 50.94 2084.7 106195 + case= 6 sphere neutron 1707.31 9.31725 15907.4 + case= 7 sphere proton 119.24 85.6245 10209.9 + case= 8 sphere ion 3272.07 0.522157 1708.53 + case= 9 sphere otherMeson 3.95 3477.76 13737.2 + case= 10 sphere otherBaryon 0.82 591.66 485.161 + case= 11 sphere below 20 MeV all 56543.9 0.895974 50661.9 + case= 12 sphere below 20 MeV electron 33944.1 0.723351 24553.5 + case= 13 sphere below 20 MeV gamma 17697.9 1.22229 21631.8 + case= 14 sphere below 20 MeV muon 4.73 4.21901 19.9559 + case= 15 sphere below 20 MeV neutrino 1.27 14.7511 18.7339 + case= 16 sphere below 20 MeV pion 1.1 12.4332 13.6765 + case= 17 sphere below 20 MeV neutron 1584.65 1.89033 2995.51 + case= 18 sphere below 20 MeV proton 53.81 9.55143 513.963 + case= 19 sphere below 20 MeV ion 3256.02 0.279906 911.38 + case= 20 sphere below 20 MeV otherMeson 0.25 7.86869 1.96717 + case= 21 sphere below 20 MeV otherBaryon 0.14 9.98834 1.39837 + case= 22 sphere above 20 MeV all 1053.66 236.885 249596 + case= 23 sphere above 20 MeV electron 404.41 125.627 50804.7 + case= 24 sphere above 20 MeV gamma 376.76 144.045 54270.6 + case= 25 sphere above 20 MeV muon 0.34 314.71 107.001 + case= 26 sphere above 20 MeV neutrino 13.79 44.1529 608.868 + case= 27 sphere above 20 MeV pion 49.84 2130.44 106181 + case= 28 sphere above 20 MeV neutron 122.66 105.266 12911.9 + case= 29 sphere above 20 MeV proton 65.43 148.187 9695.91 + case= 30 sphere above 20 MeV ion 16.05 49.6668 797.153 + case= 31 sphere above 20 MeV otherMeson 3.7 3712.22 13735.2 + case= 32 sphere above 20 MeV otherBaryon 0.68 711.415 483.762 ============================================================= ================== Deleting memory pools =================== diff --git a/examples/extended/medical/DICOM/run.out b/examples/extended/medical/DICOM/run.out index 2c4cdc5e73a7e9065226be942ab5935edd3620fa..55cccb94e87231b8573643e00e2d5469096364d6 100644 --- a/examples/extended/medical/DICOM/run.out +++ b/examples/extended/medical/DICOM/run.out @@ -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 @@ -1096,7 +1096,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.016640s Sys=0.000000s + User=0.010000s Real=0.083454s Sys=0.000000s --------------------End of Global Run----------------------- The run was 100 events LOCAL TOTAL DOSE : 0 Gy diff --git a/examples/extended/medical/DICOM2/run.out b/examples/extended/medical/DICOM2/run.out index 33957d3b85409f3475b4e30fad1c78f506e766c8..8e7641a48b34026b84648e615682510867e57f7a 100644 --- a/examples/extended/medical/DICOM2/run.out +++ b/examples/extended/medical/DICOM2/run.out @@ -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 @@ -1102,7 +1102,7 @@ Index : 8 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.020000s Real=0.024081s Sys=0.000000s + User=0.010000s Real=0.017840s Sys=0.000000s [=========================================================== DICOM ===========================================================] @@ -1144,5 +1144,5 @@ Number of memory pools allocated: 10 of which, static: 0 Dynamic pools deleted: 10 / Total memory freed: 0.04 MB ============================================================ -[/build/jenkins/workspace/examples/extended/medical/DICOM2/dicom2] Primary execution time: User=7.890000s Real=8.809037s Sys=0.320000s +[/build/jenkins/workspace/examples/extended/medical/DICOM2/dicom2] Primary execution time: User=3.790000s Real=4.534401s Sys=0.260000s diff --git a/examples/extended/medical/GammaTherapy/GammaTherapy.out b/examples/extended/medical/GammaTherapy/GammaTherapy.out index 76624ddf48e10a5316620b20eba0e27f89db6d7d..1490d84599fe05893a31a2bd13cfe23919ce3571 100644 --- a/examples/extended/medical/GammaTherapy/GammaTherapy.out +++ b/examples/extended/medical/GammaTherapy/GammaTherapy.out @@ -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 @@ -664,7 +664,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=2.420000s Real=2.435956s Sys=0.000000s + User=1.610000s Real=1.608993s Sys=0.000000s Histo: End of run actions are started ======================================================== Number of events 10000 diff --git a/examples/extended/medical/dna/AuNP/AuNP.out b/examples/extended/medical/dna/AuNP/AuNP.out index 366bc311ab946df7a4d77414ada76780438f9732..43c57943abc3290915283827669db4cd9aa17c64 100644 --- a/examples/extended/medical/dna/AuNP/AuNP.out +++ b/examples/extended/medical/dna/AuNP/AuNP.out @@ -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 diff --git a/examples/extended/medical/dna/UHDR/AuNP.out b/examples/extended/medical/dna/UHDR/AuNP.out index 44c371e1a990b59d0805e719e1555006f9687489..ba7fdbadf78522d12c3e32e60a262a0529c5bd5e 100644 --- a/examples/extended/medical/dna/UHDR/AuNP.out +++ b/examples/extended/medical/dna/UHDR/AuNP.out @@ -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 diff --git a/examples/extended/medical/dna/UHDR/UHDR.out b/examples/extended/medical/dna/UHDR/UHDR.out index 44c371e1a990b59d0805e719e1555006f9687489..ba7fdbadf78522d12c3e32e60a262a0529c5bd5e 100644 --- a/examples/extended/medical/dna/UHDR/UHDR.out +++ b/examples/extended/medical/dna/UHDR/UHDR.out @@ -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 diff --git a/examples/extended/medical/dna/chem1/chem1.out b/examples/extended/medical/dna/chem1/chem1.out index 95fe5a62f09fd81227c97776af14de0e8db93f69..3c27855e04eedaa7f5cea005dfc56890a8770191 100644 --- a/examples/extended/medical/dna/chem1/chem1.out +++ b/examples/extended/medical/dna/chem1/chem1.out @@ -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 @@ -810,12 +810,12 @@ ___________________________________ Run terminated. Run Summary Number of events processed : 1 - User=74.820000s Real=75.631611s Sys=0.000000s + User=44.590000s Real=44.804535s Sys=0.000000s G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x1bc9d90 -UserPhysicsList deleted 0x1bca148 -UserActionInitialization deleted 0x1c3e1c0 +UserDetectorConstruction deleted 0x236c160 +UserPhysicsList deleted 0x236c518 +UserActionInitialization deleted 0x23e0590 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/medical/dna/chem2/chem2.out b/examples/extended/medical/dna/chem2/chem2.out index 8b075ae77cd2339151feb9c1d12687a124cd85bf..2138da4227b40ff4caca9793a9f1fcb82ff3e6e6 100644 --- a/examples/extended/medical/dna/chem2/chem2.out +++ b/examples/extended/medical/dna/chem2/chem2.out @@ -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 diff --git a/examples/extended/medical/dna/chem3/chem3.out b/examples/extended/medical/dna/chem3/chem3.out index d23a9ae8e6234eafdecc1c060d64aa1697a553c2..46f13cc6e8200f2af6a48a945e78ea8ec4a35a43 100644 --- a/examples/extended/medical/dna/chem3/chem3.out +++ b/examples/extended/medical/dna/chem3/chem3.out @@ -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 diff --git a/examples/extended/medical/dna/chem4/chem4.out b/examples/extended/medical/dna/chem4/chem4.out index 4227f2fd11e3f1f12d0ea89290d3b11b9fbc5591..c811a3467bfbbf6051cb12b755884d318adf7f54 100644 --- a/examples/extended/medical/dna/chem4/chem4.out +++ b/examples/extended/medical/dna/chem4/chem4.out @@ -1,4 +1,4 @@ -Seed used : 1742561450 +Seed used : 1745424536 Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type... ############################################ @@ -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 @@ -665,8 +665,6 @@ H^0 + H^0 -> H_2^0 1.2e+10 0.2265 ------------------------------------------------------------------------------------------------------------------------------ DNAMolecularStepByStepModel will be used Start event 1 - * PrimaryKiller: aborts event 1, energy loss is too large. - * Energy loss by primary is: 6.2815 keV. Event is aborted if the Eloss is > 2 keV Start event 2 Start event 3 Start event 4 @@ -675,13 +673,11 @@ Start event 6 Start event 7 Start event 8 Start event 9 - * PrimaryKiller: aborts event 9, energy loss is too large. - * Energy loss by primary is: 4.0551 keV. Event is aborted if the Eloss is > 2 keV --------------------End of Global Run----------------------- - The run has 8 events -Number of events recorded by the species scorer = 8 - Total energy deposited in the world volume : 9224.3 eV + The run has 10 events +Number of events recorded by the species scorer = 10 + Total energy deposited in the world volume : 11787 eV ------------------------------------------------------------ Graphics systems deleted. diff --git a/examples/extended/medical/dna/chem5/chem5.out b/examples/extended/medical/dna/chem5/chem5.out index c522dde7148b6989cbecff4d960d56e6abceb57e..aa4cd15db0dd4df28318809230f3bf1a419ad32d 100644 --- a/examples/extended/medical/dna/chem5/chem5.out +++ b/examples/extended/medical/dna/chem5/chem5.out @@ -1,4 +1,4 @@ -Seed used : 1742561451 +Seed used : 1745424536 Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type... ############################################ @@ -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 diff --git a/examples/extended/medical/dna/chem6/chem6.out b/examples/extended/medical/dna/chem6/chem6.out index a15215115c1d96c07cda13936ad43430285e6494..517d36ef0ae7ce1f3ef3e8698b3005241bfe8ae0 100644 --- a/examples/extended/medical/dna/chem6/chem6.out +++ b/examples/extended/medical/dna/chem6/chem6.out @@ -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 diff --git a/examples/extended/medical/dna/clustering/clustering.out b/examples/extended/medical/dna/clustering/clustering.out index f354a8de7ef392588b04eb4edcc1b4e8daa7ce2c..8e7dfe00a8b5af55a42a069ee28f489c42da48ef 100644 --- a/examples/extended/medical/dna/clustering/clustering.out +++ b/examples/extended/medical/dna/clustering/clustering.out @@ -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 diff --git a/examples/extended/medical/dna/dnadamage1/dnadamage1.out b/examples/extended/medical/dna/dnadamage1/dnadamage1.out index 2f9ff745a343d18b7358c03ba9a4bafc92142667..e1abf9d59be37e1fb9e10e1882d30fe9b3ff0ac0 100644 --- a/examples/extended/medical/dna/dnadamage1/dnadamage1.out +++ b/examples/extended/medical/dna/dnadamage1/dnadamage1.out @@ -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 @@ -601,17 +601,17 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 2913 kByte - Total CPU time elapsed for geometry optimisation: 5.57 seconds + Total CPU time elapsed for geometry optimisation: 3.14 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 99.28 5.53 0.01 2914k VoxelStraight_logic + 99.04 3.11 0.01 2914k VoxelStraight_logic Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 100.00 2913k 20884 21735 54614 5.53 VoxelStraight_logic + 100.00 2913k 20884 21735 54614 3.11 VoxelStraight_logic -------------------------------------------------------------------------------- ### Run 0 starts. @@ -835,16 +835,16 @@ ___________________________________ Run terminated. Run Summary Number of events processed : 2 - User=124.660000s Real=125.861253s Sys=0.050000s + User=64.560000s Real=64.628807s Sys=0.060000s ----> Histograms are saved Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x1c38c50 -UserPhysicsList deleted 0x1c398f0 -UserActionInitialization deleted 0x1eec000 +UserDetectorConstruction deleted 0x20d9020 +UserPhysicsList deleted 0x20d9cc0 +UserActionInitialization deleted 0x238c000 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/medical/dna/dnadamage2/dnadamage2.out b/examples/extended/medical/dna/dnadamage2/dnadamage2.out index 72ad927b1f0bccca6ffdeff9519f3ba8853a6820..681d66618e262938089d6f1a4a10af9b45144e6d 100644 --- a/examples/extended/medical/dna/dnadamage2/dnadamage2.out +++ b/examples/extended/medical/dna/dnadamage2/dnadamage2.out @@ -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 diff --git a/examples/extended/medical/dna/dnaphysics/dnaphysics.out b/examples/extended/medical/dna/dnaphysics/dnaphysics.out index 75959cf6db08baffaeefac10225ea8bf092da47a..64144f8e5a217b004c7c497a8938b7ba5d15f63b 100644 --- a/examples/extended/medical/dna/dnaphysics/dnaphysics.out +++ b/examples/extended/medical/dna/dnaphysics/dnaphysics.out @@ -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 @@ -19,7 +19,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0xcd95e0 +##### Create analysis manager 0x15985e0 Using analysis manager # # MT @@ -623,14 +623,14 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 2 - User=2.960000s Real=3.030904s Sys=0.030000s + User=1.850000s Real=1.897355s Sys=0.040000s ... write file : dna.root - done ... close file : dna.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xb6a3b0 -UserPhysicsList deleted 0xb07ca0 -UserActionInitialization deleted 0xccdd90 +UserDetectorConstruction deleted 0x1429780 +UserPhysicsList deleted 0x13c7070 +UserActionInitialization deleted 0x158d160 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/medical/dna/icsd/icsd.out b/examples/extended/medical/dna/icsd/icsd.out index 70e736a1daa71db4d4b96d89ce5d7b06eaa4b0c3..eb77231d7bd69a812fe79d0751e22d12f5d7d33f 100644 --- a/examples/extended/medical/dna/icsd/icsd.out +++ b/examples/extended/medical/dna/icsd/icsd.out @@ -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 @@ -19,7 +19,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0x1ddb5e0 +##### Create analysis manager 0x11d69b0 Using analysis manager e-_G4DNAPTBAugerModel is constructed ======================================================================= diff --git a/examples/extended/medical/dna/jetcounter/jetcounter.out b/examples/extended/medical/dna/jetcounter/jetcounter.out index c577891844e4ad282227f20d0056478df13630dc..5dfa9fc132b0a3475e4949b388b546b87ecf4c0b 100644 --- a/examples/extended/medical/dna/jetcounter/jetcounter.out +++ b/examples/extended/medical/dna/jetcounter/jetcounter.out @@ -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 @@ -757,4 +757,4 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1 eCoulombScattering : Emin= 0 eV Emax= 100 TeV ### Run 0 start. ev: 0 -number of event = 40 User=2.950000s Real=2.966636s Sys=0.000000s +number of event = 40 User=1.710000s Real=1.710941s Sys=0.000000s diff --git a/examples/extended/medical/dna/mfp/mfp.out b/examples/extended/medical/dna/mfp/mfp.out index 417ae4b6347c28fe7ca689690b358f764c7634b6..21d3b50e24eaca6ca9e5a21c901dc73add9560a1 100644 --- a/examples/extended/medical/dna/mfp/mfp.out +++ b/examples/extended/medical/dna/mfp/mfp.out @@ -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 diff --git a/examples/extended/medical/dna/microdosimetry/microdosimetry.out b/examples/extended/medical/dna/microdosimetry/microdosimetry.out index 131ea1008556d287d776541c53912ddac86d7597..d257927cf27f2cb8b742a677392a5c301dde9f7d 100644 --- a/examples/extended/medical/dna/microdosimetry/microdosimetry.out +++ b/examples/extended/medical/dna/microdosimetry/microdosimetry.out @@ -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 @@ -19,7 +19,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0x1048200 +##### Create analysis manager 0x1c8d200 Using analysis manager # # MT @@ -795,14 +795,14 @@ Setting was ignored. Run terminated. Run Summary Number of events processed : 2 - User=1.640000s Real=1.650067s Sys=0.010000s + User=0.940000s Real=0.947448s Sys=0.010000s ... write file : dna.root - done ... close file : dna.root - done G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xee54a0 -UserPhysicsList deleted 0xe82ca8 -UserActionInitialization deleted 0x103b2d0 +UserDetectorConstruction deleted 0x1b2a870 +UserPhysicsList deleted 0x1ac8078 +UserActionInitialization deleted 0x1c806a0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/medical/dna/microprox/microprox.out b/examples/extended/medical/dna/microprox/microprox.out index 74a4309763e9632b61e4de9bfe7de3e2505ddbf8..3bdbd1a1a69e31ded3018684be374f6ff5f37744 100644 --- a/examples/extended/medical/dna/microprox/microprox.out +++ b/examples/extended/medical/dna/microprox/microprox.out @@ -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 @@ -19,7 +19,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0xb67420 +##### Create analysis manager 0x1a14420 Using analysis manager Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... diff --git a/examples/extended/medical/dna/microyz/microyz.out b/examples/extended/medical/dna/microyz/microyz.out index 49d9111774d42f7a649bc621e829cbc4dd250d89..1340b9a417fdc5cdb7dc099d049f582779b417a0 100644 --- a/examples/extended/medical/dna/microyz/microyz.out +++ b/examples/extended/medical/dna/microyz/microyz.out @@ -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 @@ -19,7 +19,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0x170cb00 +##### Create analysis manager 0x1fdab00 Using analysis manager Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... diff --git a/examples/extended/medical/dna/neuron/neuron.out b/examples/extended/medical/dna/neuron/neuron.out index e8e39110ed17de59ce0e7dd3e2da952cd265f7a5..17694e674bc24d79df12040b89cf8964b5e3551c 100644 --- a/examples/extended/medical/dna/neuron/neuron.out +++ b/examples/extended/medical/dna/neuron/neuron.out @@ -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 @@ -665,7 +665,7 @@ Physics stage ends Dend3DEdep.out, Axon3DEdep.out, Soma3DEdep.out Outputs of energy deposition per event written in data file: OutputPerEvent.out - Calculation time = 2.21786 s + Calculation time = 1.11131 s Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.out b/examples/extended/medical/dna/pdb4dna/pdb4dna.out index f3a1d4a07a9928a83feca43d34e0c9a31716eb71..d280a147466f4e0a328a1e9e7a265a59cc218660 100644 --- a/examples/extended/medical/dna/pdb4dna/pdb4dna.out +++ b/examples/extended/medical/dna/pdb4dna/pdb4dna.out @@ -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 diff --git a/examples/extended/medical/dna/range/range.out b/examples/extended/medical/dna/range/range.out index 67d5cf2c2e1c5ddbc5f560f886062aa0656ca1fd..8f97c66f53e5229358f057e80d54341177845522 100644 --- a/examples/extended/medical/dna/range/range.out +++ b/examples/extended/medical/dna/range/range.out @@ -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 diff --git a/examples/extended/medical/dna/scavenger/scavenger.out b/examples/extended/medical/dna/scavenger/scavenger.out index 190fcdc9d4549b57b7d6a32a4a9db4e7c9fb5aa8..6eec22728151bc9ff14219d887ca25f8da187c61 100644 --- a/examples/extended/medical/dna/scavenger/scavenger.out +++ b/examples/extended/medical/dna/scavenger/scavenger.out @@ -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 @@ -609,7 +609,7 @@ DNAMolecularIRTModel will be used Run terminated. Run Summary Number of events processed : 2 - User=0.850000s Real=0.867703s Sys=0.010000s + User=0.440000s Real=0.459128s Sys=0.010000s --------------------End of Global Run----------------------- The run has 1 events diff --git a/examples/extended/medical/dna/slowing/slowing.out b/examples/extended/medical/dna/slowing/slowing.out index 94a61fca204ea100f9923da3bbd427c7f58cf2cb..7a393a4a01318f2de4d098b437a2d7550076690b 100644 --- a/examples/extended/medical/dna/slowing/slowing.out +++ b/examples/extended/medical/dna/slowing/slowing.out @@ -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 diff --git a/examples/extended/medical/dna/splitting/splitting.out b/examples/extended/medical/dna/splitting/splitting.out index aa1e9f65958a6d973a51a2da502ee3cd636f01b9..14ccc1c8218699b55895d60970b93111a459f13b 100644 --- a/examples/extended/medical/dna/splitting/splitting.out +++ b/examples/extended/medical/dna/splitting/splitting.out @@ -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 @@ -371,7 +371,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=18.390000s Real=18.822269s Sys=0.030000s + User=10.840000s Real=10.869141s Sys=0.030000s Graphics systems deleted. Visualization Manager deleting... ================== Deleting memory pools =================== diff --git a/examples/extended/medical/dna/spower/spower.out b/examples/extended/medical/dna/spower/spower.out index 95f348c354b938f6f019e79ab970ca20691c93b0..28b8bef09bb3f25df3e28085166347b38120c08e 100644 --- a/examples/extended/medical/dna/spower/spower.out +++ b/examples/extended/medical/dna/spower/spower.out @@ -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 @@ -531,7 +531,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.780000s Real=1.784695s Sys=0.000000s + User=1.010000s Real=1.011249s Sys=0.000000s ======================== run summary ===================== @@ -556,7 +556,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.910000s Real=1.923258s Sys=0.000000s + User=1.040000s Real=1.037927s Sys=0.000000s ======================== run summary ===================== @@ -581,7 +581,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=2.060000s Real=2.068067s Sys=0.000000s + User=1.120000s Real=1.130735s Sys=0.000000s ======================== run summary ===================== @@ -606,7 +606,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=2.080000s Real=2.327983s Sys=0.000000s + User=1.160000s Real=1.159362s Sys=0.000000s ======================== run summary ===================== @@ -631,7 +631,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=2.030000s Real=2.033265s Sys=0.000000s + User=1.130000s Real=1.133089s Sys=0.000000s ======================== run summary ===================== diff --git a/examples/extended/medical/dna/svalue/svalue.out b/examples/extended/medical/dna/svalue/svalue.out index c927e5bea9aa715c6e5f22bc48b8de386efda516..6d59a5616ce32321eafb8e6350dcba2785ace33d 100644 --- a/examples/extended/medical/dna/svalue/svalue.out +++ b/examples/extended/medical/dna/svalue/svalue.out @@ -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 @@ -636,7 +636,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.190000s Real=0.190681s Sys=0.000000s + User=0.120000s Real=0.115806s Sys=0.000000s ======================== run summary ===================== @@ -674,7 +674,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.350000s Real=0.352827s Sys=0.000000s + User=0.200000s Real=0.201611s Sys=0.000000s ======================== run summary ===================== @@ -712,7 +712,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.490000s Real=0.500995s Sys=0.000000s + User=0.310000s Real=0.312124s Sys=0.000000s ======================== run summary ===================== @@ -750,7 +750,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.640000s Real=0.636111s Sys=0.000000s + User=0.390000s Real=0.381746s Sys=0.000000s ======================== run summary ===================== @@ -788,7 +788,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.770000s Real=0.775820s Sys=0.000000s + User=0.450000s Real=0.458994s Sys=0.000000s ======================== run summary ===================== @@ -826,7 +826,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.950000s Real=0.954437s Sys=0.000000s + User=0.560000s Real=0.558957s Sys=0.000000s ======================== run summary ===================== @@ -864,7 +864,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.110000s Real=1.112708s Sys=0.000000s + User=0.640000s Real=0.640356s Sys=0.000000s ======================== run summary ===================== @@ -902,7 +902,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.240000s Real=1.253692s Sys=0.000000s + User=0.720000s Real=0.716270s Sys=0.000000s ======================== run summary ===================== @@ -940,7 +940,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.380000s Real=1.376599s Sys=0.000000s + User=0.820000s Real=0.821529s Sys=0.000000s ======================== run summary ===================== @@ -978,7 +978,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.540000s Real=1.546885s Sys=0.000000s + User=0.920000s Real=0.916124s Sys=0.000000s ======================== run summary ===================== @@ -1016,7 +1016,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=3.040000s Real=3.181919s Sys=0.000000s + User=1.800000s Real=1.804779s Sys=0.000000s ======================== run summary ===================== @@ -1054,7 +1054,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=4.450000s Real=4.477435s Sys=0.000000s + User=2.650000s Real=2.650037s Sys=0.000000s ======================== run summary ===================== @@ -1092,7 +1092,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=5.930000s Real=5.946494s Sys=0.000000s + User=3.580000s Real=3.579465s Sys=0.000000s ======================== run summary ===================== @@ -1130,7 +1130,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=7.310000s Real=7.347792s Sys=0.000000s + User=4.350000s Real=4.353060s Sys=0.000000s ======================== run summary ===================== @@ -1168,7 +1168,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=8.820000s Real=8.856365s Sys=0.000000s + User=5.340000s Real=5.366861s Sys=0.000000s ======================== run summary ===================== @@ -1206,7 +1206,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=10.300000s Real=10.340196s Sys=0.000000s + User=6.360000s Real=6.366106s Sys=0.000000s ======================== run summary ===================== @@ -1244,7 +1244,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=11.890000s Real=11.973630s Sys=0.000000s + User=7.320000s Real=7.320443s Sys=0.000000s ======================== run summary ===================== @@ -1282,7 +1282,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=13.770000s Real=13.833181s Sys=0.000000s + User=8.010000s Real=8.005804s Sys=0.000000s ======================== run summary ===================== @@ -1320,7 +1320,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=17.100000s Real=17.193020s Sys=0.000000s + User=8.900000s Real=8.930019s Sys=0.020000s ======================== run summary ===================== diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out index d249054ec6f9c190197ffcd170f4e6f6c159fa83..6a115edbc84075c7c37b440ccd354caf16895c22 100644 --- a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out +++ b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out @@ -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 diff --git a/examples/extended/medical/dna/wvalue/wvalue.out b/examples/extended/medical/dna/wvalue/wvalue.out index 7f30e89f6eeb3a6018cfcb3873bfb49f9936005b..f0e9602776c371f1ff42929ca91c36f97fc94822 100644 --- a/examples/extended/medical/dna/wvalue/wvalue.out +++ b/examples/extended/medical/dna/wvalue/wvalue.out @@ -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 diff --git a/examples/extended/medical/electronScattering/electronScattering.out b/examples/extended/medical/electronScattering/electronScattering.out index e0a750ddb5346e2eeda5e9bee8ba45b917908c8e..3c71fb2e590ec9c1ef151f2edd594af10d900271 100644 --- a/examples/extended/medical/electronScattering/electronScattering.out +++ b/examples/extended/medical/electronScattering/electronScattering.out @@ -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 @@ -740,7 +740,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100000 - User=4.350000s Real=4.361213s Sys=0.000000s + User=2.510000s Real=2.516897s Sys=0.000000s ======================== run summary ====================== @@ -755,9 +755,9 @@ N=17 V[N]={139564191965863788, 2302776708230382971, 254581900843411369, 22213365 --------------------------------------- G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x186b920 -UserPhysicsList deleted 0x1b09ee0 -UserActionInitialization deleted 0x1b4e170 +UserDetectorConstruction deleted 0x73b8f0 +UserPhysicsList deleted 0x9da2b0 +UserActionInitialization deleted 0xa1e540 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/medical/electronScattering2/electronScattering2.out b/examples/extended/medical/electronScattering2/electronScattering2.out index 4fac93dabf141715da5010e0d51201915061b142..e8ebb62cff8eab4639a41fa878d7013f9e73cf14 100644 --- a/examples/extended/medical/electronScattering2/electronScattering2.out +++ b/examples/extended/medical/electronScattering2/electronScattering2.out @@ -15,7 +15,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 @@ -847,4 +847,4 @@ Number of Events Processed:20000 230 0.0092149 0.0036173 10 4 231 0.0030701 0.0007328 4 1 232 0.005447 0.0032813 7 4 -### deleting electronFilter 0x2301200 +### deleting electronFilter 0x135d5d0 diff --git a/examples/extended/medical/fanoCavity/fanoCavity.out b/examples/extended/medical/fanoCavity/fanoCavity.out index e2b78489130a66837137ca172555087bc9630dd5..6fe04f2b15fe2e32aeb03f51ce2f907bebbc8c8c 100644 --- a/examples/extended/medical/fanoCavity/fanoCavity.out +++ b/examples/extended/medical/fanoCavity/fanoCavity.out @@ -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 @@ -300,7 +300,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 4000 - User=7.340000s Real=7.370136s Sys=0.000000s + User=4.630000s Real=4.641809s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/medical/fanoCavity2/fanoCavity2.out b/examples/extended/medical/fanoCavity2/fanoCavity2.out index bbbd779421aabac77c5d5014d13e1ffae8927b63..f133e0c81dd78bc92c10cab9c065fd26a915eca6 100644 --- a/examples/extended/medical/fanoCavity2/fanoCavity2.out +++ b/examples/extended/medical/fanoCavity2/fanoCavity2.out @@ -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 @@ -317,7 +317,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 40000 - User=1.320000s Real=1.329833s Sys=0.000000s + User=0.840000s Real=0.839511s Sys=0.000000s Process calls frequency ---> eIoni= 315000 msc= 275995 Transportation= 22864 diff --git a/examples/extended/medical/radiobiology/radiobiology.out b/examples/extended/medical/radiobiology/radiobiology.out index 8fcc083764747add559b723f4739d913a35626d5..98c6b461f1d6d8f1442a20a70c99f73df27ca34e 100644 --- a/examples/extended/medical/radiobiology/radiobiology.out +++ b/examples/extended/medical/radiobiology/radiobiology.out @@ -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 @@ -964,4 +964,4 @@ RBE: Computing alpha and beta... RBE: Computing survival and RBE... RBE: Alpha and beta written to RadioBio_AlphaAndBeta.out RBE: RBE written to RadioBio_RBE.out -The simulation took: 51.8738 s to run (real time) +The simulation took: 32.1905 s to run (real time) diff --git a/examples/extended/optical/LXe/LXe.out b/examples/extended/optical/LXe/LXe.out index 817112c9546146c995dac2e68c8c9460dc075760..ac688bbea7c894b7cd49b8c0ae18896b87f69b10 100644 --- a/examples/extended/optical/LXe/LXe.out +++ b/examples/extended/optical/LXe/LXe.out @@ -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 @@ -932,7 +932,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 200 - User=6.070000s Real=6.240822s Sys=0.020000s + User=3.570000s Real=3.587989s Sys=0.020000s ======================== run summary ====================== The run was 200 events. @@ -1049,7 +1049,7 @@ Unaccounted for photons in this event : 0 Run terminated. Run Summary Number of events processed : 5 - User=0.160000s Real=0.158056s Sys=0.000000s + User=0.090000s Real=0.092850s Sys=0.000000s ======================== run summary ====================== The run was 5 events. @@ -1938,7 +1938,7 @@ Unaccounted for photons in this event : 0 "./currentEvent.rndm" is copied to "./run2evt0.rndm Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.004910s Sys=0.010000s + User=0.000000s Real=0.009196s Sys=0.000000s ======================== run summary ====================== The run was 1 events. diff --git a/examples/extended/optical/LXe/cerenkov.out b/examples/extended/optical/LXe/cerenkov.out index 093302f38165b3536b50e75bec4cdc95cce1226a..66bbd2895ffd31b7ac1cb6bd8195208038796758 100644 --- a/examples/extended/optical/LXe/cerenkov.out +++ b/examples/extended/optical/LXe/cerenkov.out @@ -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 @@ -959,7 +959,7 @@ WARNING: G4VisManager::IsValidView(): Attempt to draw when no graphics system Run terminated. Run Summary Number of events processed : 10000 - User=2.500000s Real=2.517804s Sys=0.000000s + User=1.530000s Real=1.529011s Sys=0.000000s ======================== run summary ====================== The run was 10000 events. diff --git a/examples/extended/optical/LXe/photon.out b/examples/extended/optical/LXe/photon.out index ee6bc7072474e90e16fc7a6e8f1d6fcb4dba918d..8af9945b5980701235420d18b111c16420f0d408 100644 --- a/examples/extended/optical/LXe/photon.out +++ b/examples/extended/optical/LXe/photon.out @@ -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 diff --git a/examples/extended/optical/LXe/wls.out b/examples/extended/optical/LXe/wls.out index da5a82334010d0bb06bea7542038390337708bae..6c6bb2a1afdc150705a0712a39c6116b1a59f0d5 100644 --- a/examples/extended/optical/LXe/wls.out +++ b/examples/extended/optical/LXe/wls.out @@ -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 @@ -990,7 +990,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100 - User=27.430000s Real=27.599307s Sys=0.000000s + User=14.450000s Real=14.473476s Sys=0.000000s ======================== run summary ====================== The run was 100 events. @@ -1008,9 +1008,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x21b6070 -UserPhysicsList deleted 0x2203de0 -UserActionInitialization deleted 0x239cb10 +UserDetectorConstruction deleted 0xbb9440 +UserPhysicsList deleted 0xc071b0 +UserActionInitialization deleted 0xd9fed0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/optical/OpNovice/OpNovice.out b/examples/extended/optical/OpNovice/OpNovice.out index f77410309fea2dc50892519b97b4057bd0856008..6229373412d4789954b12e8b22ef918e8f38746e 100644 --- a/examples/extended/optical/OpNovice/OpNovice.out +++ b/examples/extended/optical/OpNovice/OpNovice.out @@ -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 @@ -13696,7 +13696,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 1000 - User=1.190000s Real=1.190206s Sys=0.000000s + User=0.690000s Real=0.694676s Sys=0.000000s ======================== run summary ====================== Primary particle was: e+ with energy 500 keV. diff --git a/examples/extended/optical/OpNovice/opgdml.out b/examples/extended/optical/OpNovice/opgdml.out index 09ff05218f4165c2075f1c7bf217dd471aaef58a..7c898472eac76d3987361e76031de50d12f14859 100644 --- a/examples/extended/optical/OpNovice/opgdml.out +++ b/examples/extended/optical/OpNovice/opgdml.out @@ -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 @@ -13459,7 +13459,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 1000 - User=1.170000s Real=1.172978s Sys=0.000000s + User=0.770000s Real=0.776351s Sys=0.000000s ======================== run summary ====================== Primary particle was: e+ with energy 500 keV. diff --git a/examples/extended/optical/OpNovice/optPhoton.out b/examples/extended/optical/OpNovice/optPhoton.out index 5b2d0d413d02143811b1e13e5f92dffd619346cf..b2cd298bb29f20ad7ee5b08f26059f2257134d30 100644 --- a/examples/extended/optical/OpNovice/optPhoton.out +++ b/examples/extended/optical/OpNovice/optPhoton.out @@ -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 @@ -1313,7 +1313,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001402s Sys=0.000000s + User=0.000000s Real=0.000787s Sys=0.000000s ======================== run summary ====================== Primary particle was: opticalphoton with energy 3 eV . @@ -1353,7 +1353,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.190000s Real=0.321446s Sys=0.000000s + User=0.070000s Real=0.073401s Sys=0.000000s ======================== run summary ====================== Primary particle was: opticalphoton with energy 3 eV . diff --git a/examples/extended/optical/OpNovice2/OpNovice2.out b/examples/extended/optical/OpNovice2/OpNovice2.out index dc5b61b39cf1bc9a1a443101376c3eac5eae420f..0284edb2b6d5a212bc01c3cd4b42e50be463302a 100644 --- a/examples/extended/optical/OpNovice2/OpNovice2.out +++ b/examples/extended/optical/OpNovice2/OpNovice2.out @@ -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 @@ -1018,7 +1018,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.930000s Real=0.937433s Sys=0.000000s + User=0.660000s Real=0.661123s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/boundary.out b/examples/extended/optical/OpNovice2/boundary.out index 06d55942e62850a07c81f71a9493c48a67d64c8a..e6b0a5b33308699859ddb6854da2a79678380103 100644 --- a/examples/extended/optical/OpNovice2/boundary.out +++ b/examples/extended/optical/OpNovice2/boundary.out @@ -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 @@ -1097,7 +1097,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.060000s Real=0.064466s Sys=0.000000s + User=0.030000s Real=0.038351s Sys=0.000000s Run Summary --------------------------------- @@ -1183,7 +1183,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.050452s Sys=0.000000s + User=0.030000s Real=0.028735s Sys=0.000000s Run Summary --------------------------------- @@ -1287,7 +1287,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.140000s Real=0.225753s Sys=0.000000s + User=0.030000s Real=0.029790s Sys=0.000000s Run Summary --------------------------------- @@ -1397,7 +1397,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.054803s Sys=0.000000s + User=0.030000s Real=0.034966s Sys=0.000000s Run Summary --------------------------------- @@ -1474,7 +1474,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.075920s Sys=0.000000s + User=0.040000s Real=0.034734s Sys=0.000000s Run Summary --------------------------------- @@ -1551,7 +1551,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.100000s Real=0.111006s Sys=0.000000s + User=0.070000s Real=0.069383s Sys=0.000000s Run Summary --------------------------------- @@ -1631,7 +1631,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.110000s Real=0.113732s Sys=0.000000s + User=0.070000s Real=0.066894s Sys=0.000000s Run Summary --------------------------------- @@ -1716,7 +1716,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.060000s Real=0.055089s Sys=0.000000s + User=0.030000s Real=0.032118s Sys=0.000000s Run Summary --------------------------------- @@ -1793,7 +1793,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.100000s Real=0.102626s Sys=0.000000s + User=0.040000s Real=0.036219s Sys=0.000000s Run Summary --------------------------------- @@ -1884,7 +1884,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.080000s Real=0.082753s Sys=0.000000s + User=0.040000s Real=0.044522s Sys=0.000000s Run Summary --------------------------------- @@ -1988,7 +1988,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.090000s Real=0.083660s Sys=0.010000s + User=0.050000s Real=0.047883s Sys=0.000000s Run Summary --------------------------------- @@ -2100,7 +2100,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.090000s Real=0.087524s Sys=0.000000s + User=0.040000s Real=0.031619s Sys=0.000000s Run Summary --------------------------------- @@ -2186,7 +2186,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.080000s Real=0.089688s Sys=0.000000s + User=0.030000s Real=0.031960s Sys=0.000000s Run Summary --------------------------------- @@ -2263,7 +2263,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.100000s Real=0.098977s Sys=0.000000s + User=0.050000s Real=0.054514s Sys=0.000000s Run Summary --------------------------------- @@ -2341,7 +2341,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.057148s Sys=0.000000s + User=0.030000s Real=0.032290s Sys=0.000000s Run Summary --------------------------------- @@ -2432,7 +2432,7 @@ Boundary scattering may be incorrect. Run terminated. Run Summary Number of events processed : 10000 - User=0.070000s Real=0.070661s Sys=0.000000s + User=0.040000s Real=0.044639s Sys=0.000000s Run Summary --------------------------------- @@ -2518,7 +2518,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.055395s Sys=0.000000s + User=0.030000s Real=0.033388s Sys=0.000000s Run Summary --------------------------------- @@ -2598,7 +2598,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.060000s Real=0.056303s Sys=0.000000s + User=0.030000s Real=0.032255s Sys=0.000000s Run Summary --------------------------------- @@ -2690,7 +2690,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.060000s Real=0.061481s Sys=0.000000s + User=0.040000s Real=0.035552s Sys=0.000000s Run Summary --------------------------------- @@ -2770,7 +2770,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.030000s Real=0.035645s Sys=0.000000s + User=0.010000s Real=0.019065s Sys=0.000000s Run Summary --------------------------------- @@ -2855,7 +2855,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.020000s Real=0.018085s Sys=0.000000s + User=0.010000s Real=0.009509s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/coated.out b/examples/extended/optical/OpNovice2/coated.out index ab06b0cfc8bb87b4fc0bff1f2cc0aef4dc02a237..fdf50a2906e1be04b67a6135567bb8d0ac5dfc78 100644 --- a/examples/extended/optical/OpNovice2/coated.out +++ b/examples/extended/optical/OpNovice2/coated.out @@ -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 @@ -995,7 +995,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 500000 - User=2.700000s Real=2.703692s Sys=0.000000s + User=1.370000s Real=1.380330s Sys=0.000000s Run Summary --------------------------------- @@ -1071,7 +1071,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 500000 - User=2.560000s Real=2.625746s Sys=0.000000s + User=1.390000s Real=1.395229s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/complexRindex.out b/examples/extended/optical/OpNovice2/complexRindex.out index f3ac96b55756779664c488168d2cb1d5628e0ac0..5703d51a76eec50dbc2ca756de1320ced0c60661 100644 --- a/examples/extended/optical/OpNovice2/complexRindex.out +++ b/examples/extended/optical/OpNovice2/complexRindex.out @@ -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 diff --git a/examples/extended/optical/OpNovice2/electron.out b/examples/extended/optical/OpNovice2/electron.out index ac92ca1c218f1d221a6a552ed590441b76ae2f82..fb2686e79a44b0c63f807c276a2121dd502316dd 100644 --- a/examples/extended/optical/OpNovice2/electron.out +++ b/examples/extended/optical/OpNovice2/electron.out @@ -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 @@ -1574,7 +1574,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.990000s Real=2.004645s Sys=0.000000s + User=1.190000s Real=1.212573s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/fresnel.out b/examples/extended/optical/OpNovice2/fresnel.out index a30cc06949028e542a37a94fb2011bb252767e96..7f69bbed947664218e4663a2da4c1adbc7c38b66 100644 --- a/examples/extended/optical/OpNovice2/fresnel.out +++ b/examples/extended/optical/OpNovice2/fresnel.out @@ -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 @@ -978,7 +978,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 500000 - User=2.940000s Real=3.023144s Sys=0.000000s + User=1.630000s Real=1.636282s Sys=0.000000s Run Summary --------------------------------- @@ -1055,7 +1055,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 500000 - User=3.040000s Real=3.077234s Sys=0.000000s + User=1.580000s Real=1.580925s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/scint_by_particle.out b/examples/extended/optical/OpNovice2/scint_by_particle.out index e6bfe618c330428f657aae986d22dc858164e394..7262af445dad6a3bd931b3adc1205ef73176b639 100644 --- a/examples/extended/optical/OpNovice2/scint_by_particle.out +++ b/examples/extended/optical/OpNovice2/scint_by_particle.out @@ -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 @@ -2619,7 +2619,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=6.880000s Real=7.169988s Sys=0.010000s + User=4.350000s Real=4.363002s Sys=0.010000s Run Summary --------------------------------- @@ -2688,7 +2688,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.100000s Real=0.107743s Sys=0.000000s + User=0.060000s Real=0.067397s Sys=0.000000s Run Summary --------------------------------- @@ -2757,7 +2757,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.040000s Real=1.036830s Sys=0.000000s + User=0.630000s Real=0.631578s Sys=0.000000s Run Summary --------------------------------- @@ -2826,7 +2826,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.100000s Real=0.105841s Sys=0.000000s + User=0.090000s Real=0.082111s Sys=0.000000s Run Summary --------------------------------- @@ -2896,7 +2896,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.100000s Real=0.106093s Sys=0.000000s + User=0.060000s Real=0.061949s Sys=0.000000s Run Summary --------------------------------- diff --git a/examples/extended/optical/OpNovice2/wls.out b/examples/extended/optical/OpNovice2/wls.out index e1857f861b3788de23e1def289a521b8be82a0ab..b33f78cde6c1c1334a2c91b2ecdacfa76a8501ca 100644 --- a/examples/extended/optical/OpNovice2/wls.out +++ b/examples/extended/optical/OpNovice2/wls.out @@ -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 @@ -1279,7 +1279,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.440000s Real=0.437227s Sys=0.000000s + User=0.280000s Real=0.275723s Sys=0.010000s Run Summary --------------------------------- diff --git a/examples/extended/optical/wls/electron.out b/examples/extended/optical/wls/electron.out index 4b2332c327e57814b2f6388cb19ed3712673f567..03063b70115eed7f719bf630e5232090a45df3b4 100644 --- a/examples/extended/optical/wls/electron.out +++ b/examples/extended/optical/wls/electron.out @@ -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 @@ -1293,7 +1293,7 @@ Arrival time: 28.6004 ns Arrival position: (272.367 um , -35.8856 um ) Exit posi Run terminated. Run Summary Number of events processed : 10 - User=21.290000s Real=21.375083s Sys=0.000000s + User=12.950000s Real=12.950826s Sys=0.000000s ----> print histograms statistics for the entire run diff --git a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out index c9fb50b1ddc8b6d5d72fab08930d677335e4c8e6..a5a6f5512d28435ed9cff9c0c6cc1ffe7dcfce2f 100644 --- a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out +++ b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out @@ -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 @@ -915,7 +915,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=19.750000s Real=20.521753s Sys=0.570000s + User=13.950000s Real=18.425489s Sys=0.570000s ###### EndOfTSRunAction ###### ============================================================ opened file mfd_tl_EnergyDeposit.out for output @@ -1044,130 +1044,130 @@ Run Summary 122 338602.368745 keV 123 349420.177365 keV 124 321165.757453 keV - 0 1991.73 [sigma: 576.462 | error: 0.501304 | coeff: 0.501304 | eff: 1 | fom: 0.19896 | r2int: 0.167537 | r2eff: 0 | hits: 3 ] keV - 1 77.4911 [sigma: 51.2905 | error: 0.936054 | coeff: 0.936054 | eff: 1 | fom: 0.0570648 | r2int: 0.438098 | r2eff: 0 | hits: 2 ] keV + 0 1991.73 [sigma: 576.462 | error: 0.501304 | coeff: 0.501304 | eff: 1 | fom: 0.284229 | r2int: 0.167537 | r2eff: 0 | hits: 3 ] keV + 1 77.4911 [sigma: 51.2905 | error: 0.936054 | coeff: 0.936054 | eff: 1 | fom: 0.0815212 | r2int: 0.438098 | r2eff: 0 | hits: 2 ] keV 2 33.9179 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: -2.22045e-16 | r2eff: 0 | hits: 1 ] keV - 3 285.084 [sigma: 50.5261 | error: 0.43413 | coeff: 0.43413 | eff: 1 | fom: 0.265296 | r2int: 0.157057 | r2eff: 0 | hits: 6 ] keV - 4 14.1101 [sigma: 4.128 | error: 0.413737 | coeff: 0.413737 | eff: 1 | fom: 0.292093 | r2int: 0.0855892 | r2eff: 0 | hits: 2 ] keV + 3 285.084 [sigma: 50.5261 | error: 0.43413 | coeff: 0.43413 | eff: 1 | fom: 0.378995 | r2int: 0.157057 | r2eff: 0 | hits: 6 ] keV + 4 14.1101 [sigma: 4.128 | error: 0.413737 | coeff: 0.413737 | eff: 1 | fom: 0.417276 | r2int: 0.0855892 | r2eff: 0 | hits: 2 ] keV 5 10.499 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV 6 45.9275 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 1 ] keV - 7 110.676 [sigma: 21.0117 | error: 0.379699 | coeff: 0.379699 | eff: 1 | fom: 0.34681 | r2int: 0.108128 | r2eff: 0 | hits: 4 ] keV - 8 70.4621 [sigma: 2.23753 | error: 0.0449084 | coeff: 0.0449084 | eff: 1 | fom: 24.7922 | r2int: 0.00100838 | r2eff: 0 | hits: 2 ] keV - 9 178.404 [sigma: 19.1608 | error: 0.284156 | coeff: 0.284156 | eff: 1 | fom: 0.619235 | r2int: 0.0692098 | r2eff: 0 | hits: 7 ] keV - 10 509.868 [sigma: 173.216 | error: 0.480447 | coeff: 0.480447 | eff: 1 | fom: 0.216611 | r2int: 0.115414 | r2eff: 0 | hits: 2 ] keV - 11 106.589 [sigma: 16.2694 | error: 0.305274 | coeff: 0.305274 | eff: 1 | fom: 0.536526 | r2int: 0.0698941 | r2eff: 0 | hits: 4 ] keV - 12 770.201 [sigma: 360.038 | error: 0.809663 | coeff: 0.809663 | eff: 1 | fom: 0.0762714 | r2int: 0.437036 | r2eff: 0 | hits: 3 ] keV + 7 110.676 [sigma: 21.0117 | error: 0.379699 | coeff: 0.379699 | eff: 1 | fom: 0.495443 | r2int: 0.108128 | r2eff: 0 | hits: 4 ] keV + 8 70.4621 [sigma: 2.23753 | error: 0.0449084 | coeff: 0.0449084 | eff: 1 | fom: 35.4174 | r2int: 0.00100838 | r2eff: 0 | hits: 2 ] keV + 9 178.404 [sigma: 19.1608 | error: 0.284156 | coeff: 0.284156 | eff: 1 | fom: 0.884622 | r2int: 0.0692098 | r2eff: 0 | hits: 7 ] keV + 10 509.868 [sigma: 173.216 | error: 0.480447 | coeff: 0.480447 | eff: 1 | fom: 0.309444 | r2int: 0.115414 | r2eff: 0 | hits: 2 ] keV + 11 106.589 [sigma: 16.2694 | error: 0.305274 | coeff: 0.305274 | eff: 1 | fom: 0.766466 | r2int: 0.0698941 | r2eff: 0 | hits: 4 ] keV + 12 770.201 [sigma: 360.038 | error: 0.809663 | coeff: 0.809663 | eff: 1 | fom: 0.108959 | r2int: 0.437036 | r2eff: 0 | hits: 3 ] keV 13 7.83603 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV - 14 1208.64 [sigma: 854.389 | error: 0.999713 | coeff: 0.999713 | eff: 1 | fom: 0.0500287 | r2int: 0.499713 | r2eff: 0 | hits: 2 ] keV + 14 1208.64 [sigma: 854.389 | error: 0.999713 | coeff: 0.999713 | eff: 1 | fom: 0.0714696 | r2int: 0.499713 | r2eff: 0 | hits: 2 ] keV 15 21.487 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV - 16 567.034 [sigma: 201.827 | error: 0.503368 | coeff: 0.503368 | eff: 1 | fom: 0.197333 | r2int: 0.12669 | r2eff: 0 | hits: 2 ] keV + 16 567.034 [sigma: 201.827 | error: 0.503368 | coeff: 0.503368 | eff: 1 | fom: 0.281904 | r2int: 0.12669 | r2eff: 0 | hits: 2 ] keV 17 820.543 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV - 18 673.28 [sigma: 101.979 | error: 0.371013 | coeff: 0.371013 | eff: 1 | fom: 0.363239 | r2int: 0.114709 | r2eff: 0 | hits: 6 ] keV - 19 444.45 [sigma: 215.86 | error: 0.686853 | coeff: 0.686853 | eff: 1 | fom: 0.105984 | r2int: 0.235884 | r2eff: 0 | hits: 2 ] keV - 21 240.913 [sigma: 43.921 | error: 0.407659 | coeff: 0.407659 | eff: 1 | fom: 0.300867 | r2int: 0.132949 | r2eff: 0 | hits: 5 ] keV + 18 673.28 [sigma: 101.979 | error: 0.371013 | coeff: 0.371013 | eff: 1 | fom: 0.518913 | r2int: 0.114709 | r2eff: 0 | hits: 6 ] keV + 19 444.45 [sigma: 215.86 | error: 0.686853 | coeff: 0.686853 | eff: 1 | fom: 0.151406 | r2int: 0.235884 | r2eff: 0 | hits: 2 ] keV + 21 240.913 [sigma: 43.921 | error: 0.407659 | coeff: 0.407659 | eff: 1 | fom: 0.429811 | r2int: 0.132949 | r2eff: 0 | hits: 5 ] keV 22 179.188 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 1 ] keV - 23 147.267 [sigma: 72.6422 | error: 0.854367 | coeff: 0.854367 | eff: 1 | fom: 0.0684985 | r2int: 0.486629 | r2eff: 0 | hits: 3 ] keV - 24 2221.24 [sigma: 994 | error: 0.894994 | coeff: 0.894994 | eff: 1 | fom: 0.0624209 | r2int: 0.600761 | r2eff: 0 | hits: 4 ] keV - 25 41.5894 [sigma: 8.88981 | error: 0.427503 | coeff: 0.427503 | eff: 1 | fom: 0.273584 | r2int: 0.137069 | r2eff: 0 | hits: 4 ] keV - 26 81.119 [sigma: 14.3626 | error: 0.395909 | coeff: 0.395909 | eff: 1 | fom: 0.318992 | r2int: 0.125395 | r2eff: 0 | hits: 5 ] keV - 27 1249.18 [sigma: 343.166 | error: 0.672904 | coeff: 0.672904 | eff: 1 | fom: 0.110424 | r2int: 0.377334 | r2eff: 0 | hits: 6 ] keV - 28 1272.27 [sigma: 362.974 | error: 0.69883 | coeff: 0.69883 | eff: 1 | fom: 0.102383 | r2int: 0.406969 | r2eff: 0 | hits: 6 ] keV - 29 1914.56 [sigma: 261.822 | error: 0.432451 | coeff: 0.432451 | eff: 1 | fom: 0.26736 | r2int: 0.168312 | r2eff: 0 | hits: 10 ] keV - 30 3610.59 [sigma: 710.689 | error: 0.520775 | coeff: 0.520775 | eff: 1 | fom: 0.184362 | r2int: 0.232463 | r2eff: 0 | hits: 7 ] keV - 31 1179.7 [sigma: 93.1318 | error: 0.334936 | coeff: 0.334936 | eff: 1 | fom: 0.445704 | r2int: 0.10595 | r2eff: 0 | hits: 18 ] keV - 32 8239.69 [sigma: 806.607 | error: 0.415324 | coeff: 0.415324 | eff: 1 | fom: 0.289865 | r2int: 0.162911 | r2eff: 0 | hits: 18 ] keV - 33 4017.96 [sigma: 394.85 | error: 0.41693 | coeff: 0.41693 | eff: 1 | fom: 0.287636 | r2int: 0.164173 | r2eff: 0 | hits: 18 ] keV - 34 538.132 [sigma: 68.1102 | error: 0.456347 | coeff: 0.456347 | eff: 1 | fom: 0.240093 | r2int: 0.192233 | r2eff: 0 | hits: 13 ] keV - 35 1369.33 [sigma: 347.611 | error: 0.718009 | coeff: 0.718009 | eff: 1 | fom: 0.0969862 | r2int: 0.451095 | r2eff: 0 | hits: 8 ] keV - 36 6603.43 [sigma: 656.883 | error: 0.422041 | coeff: 0.422041 | eff: 1 | fom: 0.280711 | r2int: 0.168223 | r2eff: 0 | hits: 18 ] keV - 37 3140.09 [sigma: 406.199 | error: 0.548823 | coeff: 0.548823 | eff: 1 | fom: 0.165999 | r2int: 0.284473 | r2eff: 0 | hits: 18 ] keV - 38 1953.43 [sigma: 198.11 | error: 0.405666 | coeff: 0.405666 | eff: 1 | fom: 0.303832 | r2int: 0.154279 | r2eff: 0 | hits: 16 ] keV - 39 1208.15 [sigma: 207.253 | error: 0.568952 | coeff: 0.568952 | eff: 1 | fom: 0.154461 | r2int: 0.294278 | r2eff: 0 | hits: 11 ] keV - 40 2001.91 [sigma: 615.317 | error: 0.869359 | coeff: 0.869359 | eff: 1 | fom: 0.0661564 | r2int: 0.661312 | r2eff: 0 | hits: 8 ] keV - 41 3901.57 [sigma: 677.254 | error: 0.69434 | coeff: 0.69434 | eff: 1 | fom: 0.103711 | r2int: 0.451977 | r2eff: 0 | hits: 16 ] keV - 42 781.178 [sigma: 85.0025 | error: 0.435253 | coeff: 0.435253 | eff: 1 | fom: 0.263929 | r2int: 0.177605 | r2eff: 0 | hits: 16 ] keV - 43 6339.94 [sigma: 541.734 | error: 0.391571 | coeff: 0.391571 | eff: 1 | fom: 0.326099 | r2int: 0.146026 | r2eff: 0 | hits: 21 ] keV - 44 406.602 [sigma: 87.569 | error: 0.481577 | coeff: 0.481577 | eff: 1 | fom: 0.215595 | r2int: 0.185533 | r2eff: 0 | hits: 5 ] keV - 45 2404.85 [sigma: 348.299 | error: 0.457999 | coeff: 0.457999 | eff: 1 | fom: 0.238364 | r2int: 0.188787 | r2eff: 0 | hits: 10 ] keV - 46 3183.23 [sigma: 474.23 | error: 0.494103 | coeff: 0.494103 | eff: 1 | fom: 0.204803 | r2int: 0.221943 | r2eff: 0 | hits: 11 ] keV - 47 4200.38 [sigma: 650.841 | error: 0.536756 | coeff: 0.536756 | eff: 1 | fom: 0.173546 | r2int: 0.264099 | r2eff: 0 | hits: 12 ] keV - 48 948.026 [sigma: 134.509 | error: 0.491498 | coeff: 0.491498 | eff: 1 | fom: 0.206979 | r2int: 0.221439 | r2eff: 0 | hits: 12 ] keV - 49 1393.61 [sigma: 350.448 | error: 0.5623 | coeff: 0.5623 | eff: 1 | fom: 0.158137 | r2int: 0.252945 | r2eff: 0 | hits: 5 ] keV - 50 1135.81 [sigma: 96.965 | error: 0.372121 | coeff: 0.372121 | eff: 1 | fom: 0.361079 | r2int: 0.131186 | r2eff: 0 | hits: 19 ] keV - 51 2940.75 [sigma: 360.438 | error: 0.548134 | coeff: 0.548134 | eff: 1 | fom: 0.166416 | r2int: 0.285429 | r2eff: 0 | hits: 20 ] keV - 52 5081.63 [sigma: 376.972 | error: 0.432559 | coeff: 0.432559 | eff: 1 | fom: 0.267226 | r2int: 0.181604 | r2eff: 0 | hits: 34 ] keV - 53 7691.85 [sigma: 382.721 | error: 0.330048 | coeff: 0.330048 | eff: 1 | fom: 0.459002 | r2int: 0.106456 | r2eff: 0 | hits: 44 ] keV - 54 3113.18 [sigma: 477.852 | error: 0.594476 | coeff: 0.594476 | eff: 1 | fom: 0.141482 | r2int: 0.329842 | r2eff: 0 | hits: 15 ] keV - 55 11038.9 [sigma: 564.739 | error: 0.30266 | coeff: 0.30266 | eff: 1 | fom: 0.545833 | r2int: 0.0889858 | r2eff: 0 | hits: 35 ] keV - 56 12591.7 [sigma: 505.577 | error: 0.300467 | coeff: 0.300467 | eff: 1 | fom: 0.553831 | r2int: 0.0886681 | r2eff: 0 | hits: 56 ] keV - 57 19534.5 [sigma: 600.776 | error: 0.259143 | coeff: 0.259143 | eff: 1 | fom: 0.744544 | r2int: 0.0662094 | r2eff: 0 | hits: 71 ] keV - 58 17079.8 [sigma: 710.734 | error: 0.297173 | coeff: 0.297173 | eff: 1 | fom: 0.566176 | r2int: 0.0865801 | r2eff: 0 | hits: 51 ] keV - 59 7468.12 [sigma: 471.073 | error: 0.383688 | coeff: 0.383688 | eff: 1 | fom: 0.339636 | r2int: 0.143237 | r2eff: 0 | hits: 37 ] keV - 60 2656.41 [sigma: 150.562 | error: 0.320623 | coeff: 0.320623 | eff: 1 | fom: 0.486385 | r2int: 0.0995868 | r2eff: 0 | hits: 32 ] keV - 61 20964.1 [sigma: 690.413 | error: 0.279447 | coeff: 0.279447 | eff: 1 | fom: 0.640282 | r2int: 0.077006 | r2eff: 0 | hits: 72 ] keV - 62 20152.2 [sigma: 633.932 | error: 0.261303 | coeff: 0.261303 | eff: 1 | fom: 0.732285 | r2int: 0.0672899 | r2eff: 0 | hits: 69 ] keV - 63 23653.5 [sigma: 787.407 | error: 0.257857 | coeff: 0.257857 | eff: 1 | fom: 0.751988 | r2int: 0.0653823 | r2eff: 0 | hits: 60 ] keV - 64 5120.41 [sigma: 323.992 | error: 0.410067 | coeff: 0.410067 | eff: 1 | fom: 0.297345 | r2int: 0.164151 | r2eff: 0 | hits: 42 ] keV - 65 5928.39 [sigma: 418.367 | error: 0.446324 | coeff: 0.446324 | eff: 1 | fom: 0.250998 | r2int: 0.194225 | r2eff: 0 | hits: 40 ] keV - 66 30515.9 [sigma: 805.915 | error: 0.219375 | coeff: 0.219375 | eff: 1 | fom: 1.03895 | r2int: 0.0474279 | r2eff: 0 | hits: 69 ] keV - 67 14352 [sigma: 532.005 | error: 0.298854 | coeff: 0.298854 | eff: 1 | fom: 0.559824 | r2int: 0.0879397 | r2eff: 0 | hits: 65 ] keV - 68 21742.1 [sigma: 773.949 | error: 0.266381 | coeff: 0.266381 | eff: 1 | fom: 0.704633 | r2int: 0.0696918 | r2eff: 0 | hits: 56 ] keV - 69 9961.83 [sigma: 446.613 | error: 0.268994 | coeff: 0.268994 | eff: 1 | fom: 0.69101 | r2int: 0.0703479 | r2eff: 0 | hits: 36 ] keV - 70 9190.99 [sigma: 656.633 | error: 0.342629 | coeff: 0.342629 | eff: 1 | fom: 0.425913 | r2int: 0.112291 | r2eff: 0 | hits: 23 ] keV - 71 4192.89 [sigma: 367.93 | error: 0.480632 | coeff: 0.480632 | eff: 1 | fom: 0.216444 | r2int: 0.223307 | r2eff: 0 | hits: 30 ] keV - 72 9173 [sigma: 409.509 | error: 0.309295 | coeff: 0.309295 | eff: 1 | fom: 0.522666 | r2int: 0.0936704 | r2eff: 0 | hits: 48 ] keV - 73 11806.9 [sigma: 499.676 | error: 0.270985 | coeff: 0.270985 | eff: 1 | fom: 0.680896 | r2int: 0.0716416 | r2eff: 0 | hits: 41 ] keV - 74 8520.73 [sigma: 633.47 | error: 0.371723 | coeff: 0.371723 | eff: 1 | fom: 0.361853 | r2int: 0.132651 | r2eff: 0 | hits: 25 ] keV - 75 22112.2 [sigma: 418.224 | error: 0.199269 | coeff: 0.199269 | eff: 1 | fom: 1.25919 | r2int: 0.0393503 | r2eff: 0 | hits: 111 ] keV - 76 24545.9 [sigma: 365.82 | error: 0.179462 | coeff: 0.179462 | eff: 1 | fom: 1.55248 | r2int: 0.0319845 | r2eff: 0 | hits: 145 ] keV - 77 28364.3 [sigma: 351.796 | error: 0.161236 | coeff: 0.161236 | eff: 1 | fom: 1.92329 | r2int: 0.0258433 | r2eff: 0 | hits: 169 ] keV - 78 33883.9 [sigma: 379.278 | error: 0.143346 | coeff: 0.143346 | eff: 1 | fom: 2.43332 | r2int: 0.0204228 | r2eff: 0 | hits: 164 ] keV - 79 29424.1 [sigma: 480.959 | error: 0.182751 | coeff: 0.182751 | eff: 1 | fom: 1.49709 | r2int: 0.0331308 | r2eff: 0 | hits: 125 ] keV - 80 27658.1 [sigma: 430.855 | error: 0.19643 | coeff: 0.19643 | eff: 1 | fom: 1.29585 | r2int: 0.038342 | r2eff: 0 | hits: 159 ] keV - 81 442246 [sigma: 1091.25 | error: 0.0412158 | coeff: 0.0412158 | eff: 1 | fom: 29.4335 | r2int: 0.00169266 | r2eff: 0 | hits: 279 ] keV - 82 343172 [sigma: 1157.14 | error: 0.0552003 | coeff: 0.0552003 | eff: 1 | fom: 16.4092 | r2int: 0.0030357 | r2eff: 0 | hits: 268 ] keV - 83 450217 [sigma: 1102.48 | error: 0.0412673 | coeff: 0.0412673 | eff: 1 | fom: 29.3601 | r2int: 0.001697 | r2eff: 0 | hits: 284 ] keV - 84 29376.6 [sigma: 417.05 | error: 0.186728 | coeff: 0.186728 | eff: 1 | fom: 1.43401 | r2int: 0.0346658 | r2eff: 0 | hits: 173 ] keV - 85 34279 [sigma: 418.137 | error: 0.16044 | coeff: 0.16044 | eff: 1 | fom: 1.94242 | r2int: 0.0255923 | r2eff: 0 | hits: 173 ] keV - 86 357392 [sigma: 1163.36 | error: 0.0543715 | coeff: 0.0543715 | eff: 1 | fom: 16.9133 | r2int: 0.00294566 | r2eff: 0 | hits: 279 ] keV - 87 314486 [sigma: 1144.97 | error: 0.062744 | coeff: 0.062744 | eff: 1 | fom: 12.7006 | r2int: 0.00392356 | r2eff: 0 | hits: 297 ] keV - 88 300005 [sigma: 1136.63 | error: 0.0623698 | coeff: 0.0623698 | eff: 1 | fom: 12.8535 | r2int: 0.00387564 | r2eff: 0 | hits: 271 ] keV - 89 32378.9 [sigma: 364.429 | error: 0.15184 | coeff: 0.15184 | eff: 1 | fom: 2.1687 | r2int: 0.0229286 | r2eff: 0 | hits: 182 ] keV - 90 28740.9 [sigma: 342.728 | error: 0.161315 | coeff: 0.161315 | eff: 1 | fom: 1.92141 | r2int: 0.0258804 | r2eff: 0 | hits: 183 ] keV - 91 411491 [sigma: 1111.69 | error: 0.0456884 | coeff: 0.0456884 | eff: 1 | fom: 23.9529 | r2int: 0.00208013 | r2eff: 0 | hits: 286 ] keV - 92 367275 [sigma: 1143.26 | error: 0.052918 | coeff: 0.052918 | eff: 1 | fom: 17.8551 | r2int: 0.00279062 | r2eff: 0 | hits: 289 ] keV - 93 428724 [sigma: 1138.24 | error: 0.0442668 | coeff: 0.0442668 | eff: 1 | fom: 25.516 | r2int: 0.0019525 | r2eff: 0 | hits: 278 ] keV - 94 34534.7 [sigma: 369.63 | error: 0.139961 | coeff: 0.139961 | eff: 1 | fom: 2.55243 | r2int: 0.0194747 | r2eff: 0 | hits: 171 ] keV - 95 23077 [sigma: 417.681 | error: 0.194095 | coeff: 0.194095 | eff: 1 | fom: 1.32722 | r2int: 0.0373452 | r2eff: 0 | hits: 115 ] keV - 96 30057 [sigma: 477.946 | error: 0.207328 | coeff: 0.207328 | eff: 1 | fom: 1.1632 | r2int: 0.0427319 | r2eff: 0 | hits: 170 ] keV - 97 30947.2 [sigma: 365.404 | error: 0.153041 | coeff: 0.153041 | eff: 1 | fom: 2.1348 | r2int: 0.023282 | r2eff: 0 | hits: 168 ] keV - 98 32135.5 [sigma: 418.898 | error: 0.161239 | coeff: 0.161239 | eff: 1 | fom: 1.92323 | r2int: 0.025828 | r2eff: 0 | hits: 153 ] keV - 99 23995.4 [sigma: 433.397 | error: 0.207513 | coeff: 0.207513 | eff: 1 | fom: 1.16113 | r2int: 0.0427353 | r2eff: 0 | hits: 132 ] keV - 100 344249 [sigma: 494.863 | error: 0.0343201 | coeff: 0.0343201 | eff: 1 | fom: 42.4494 | r2int: 0.00117581 | r2eff: 0 | hits: 570 ] keV - 101 330035 [sigma: 449.816 | error: 0.0361113 | coeff: 0.0361113 | eff: 1 | fom: 38.3428 | r2int: 0.00130217 | r2eff: 0 | hits: 702 ] keV - 102 357368 [sigma: 436.962 | error: 0.0337525 | coeff: 0.0337525 | eff: 1 | fom: 43.8892 | r2int: 0.00113774 | r2eff: 0 | hits: 762 ] keV - 103 347790 [sigma: 456.653 | error: 0.0349617 | coeff: 0.0349617 | eff: 1 | fom: 40.9058 | r2int: 0.0012206 | r2eff: 0 | hits: 709 ] keV - 104 313496 [sigma: 445.37 | error: 0.0341254 | coeff: 0.0341254 | eff: 1 | fom: 42.9353 | r2int: 0.00116252 | r2eff: 0 | hits: 577 ] keV - 105 328490 [sigma: 463.332 | error: 0.0363184 | coeff: 0.0363184 | eff: 1 | fom: 37.9067 | r2int: 0.00131704 | r2eff: 0 | hits: 663 ] keV - 106 355915 [sigma: 480.009 | error: 0.0391344 | coeff: 0.0391344 | eff: 1 | fom: 32.6477 | r2int: 0.00152968 | r2eff: 0 | hits: 842 ] keV - 107 376541 [sigma: 450.539 | error: 0.0359952 | coeff: 0.0359952 | eff: 1 | fom: 38.5905 | r2int: 0.00129422 | r2eff: 0 | hits: 905 ] keV - 108 395217 [sigma: 480.584 | error: 0.0363379 | coeff: 0.0363379 | eff: 1 | fom: 37.8662 | r2int: 0.00131896 | r2eff: 0 | hits: 893 ] keV - 109 336465 [sigma: 445.589 | error: 0.0347368 | coeff: 0.0347368 | eff: 1 | fom: 41.4373 | r2int: 0.00120489 | r2eff: 0 | hits: 688 ] keV - 110 352425 [sigma: 453.825 | error: 0.0347924 | coeff: 0.0347924 | eff: 1 | fom: 41.3049 | r2int: 0.00120885 | r2eff: 0 | hits: 730 ] keV - 111 389030 [sigma: 465.451 | error: 0.0359729 | coeff: 0.0359729 | eff: 1 | fom: 38.6383 | r2int: 0.00129262 | r2eff: 0 | hits: 904 ] keV - 112 418035 [sigma: 485.54 | error: 0.0353442 | coeff: 0.0353442 | eff: 1 | fom: 40.0253 | r2int: 0.00124786 | r2eff: 0 | hits: 926 ] keV - 113 356689 [sigma: 464.512 | error: 0.0375186 | coeff: 0.0375186 | eff: 1 | fom: 35.5203 | r2int: 0.00140595 | r2eff: 0 | hits: 830 ] keV - 114 392187 [sigma: 488.005 | error: 0.033458 | coeff: 0.033458 | eff: 1 | fom: 44.6652 | r2int: 0.00111789 | r2eff: 0 | hits: 723 ] keV - 115 325449 [sigma: 446.803 | error: 0.0360366 | coeff: 0.0360366 | eff: 1 | fom: 38.502 | r2int: 0.00129675 | r2eff: 0 | hits: 689 ] keV - 116 398825 [sigma: 478.296 | error: 0.0360179 | coeff: 0.0360179 | eff: 1 | fom: 38.542 | r2int: 0.00129585 | r2eff: 0 | hits: 902 ] keV - 117 387271 [sigma: 476.416 | error: 0.0368646 | coeff: 0.0368646 | eff: 1 | fom: 36.7918 | r2int: 0.00135748 | r2eff: 0 | hits: 898 ] keV - 118 386212 [sigma: 467.803 | error: 0.0350009 | coeff: 0.0350009 | eff: 1 | fom: 40.8141 | r2int: 0.0012236 | r2eff: 0 | hits: 835 ] keV - 119 351384 [sigma: 477.283 | error: 0.03586 | coeff: 0.03586 | eff: 1 | fom: 38.8822 | r2int: 0.00128409 | r2eff: 0 | hits: 697 ] keV - 120 342498 [sigma: 440.653 | error: 0.0322931 | coeff: 0.0322931 | eff: 1 | fom: 47.9459 | r2int: 0.00104119 | r2eff: 0 | hits: 630 ] keV - 121 350874 [sigma: 465.067 | error: 0.0341803 | coeff: 0.0341803 | eff: 1 | fom: 42.7975 | r2int: 0.00116653 | r2eff: 0 | hits: 665 ] keV - 122 338602 [sigma: 477.562 | error: 0.0373155 | coeff: 0.0373155 | eff: 1 | fom: 35.9081 | r2int: 0.00139046 | r2eff: 0 | hits: 700 ] keV - 123 349420 [sigma: 458.791 | error: 0.0346893 | coeff: 0.0346893 | eff: 1 | fom: 41.5509 | r2int: 0.00120162 | r2eff: 0 | hits: 698 ] keV - 124 321166 [sigma: 456.506 | error: 0.034555 | coeff: 0.034555 | eff: 1 | fom: 41.8744 | r2int: 0.00119203 | r2eff: 0 | hits: 591 ] keV + 23 147.267 [sigma: 72.6422 | error: 0.854367 | coeff: 0.854367 | eff: 1 | fom: 0.097855 | r2int: 0.486629 | r2eff: 0 | hits: 3 ] keV + 24 2221.24 [sigma: 994 | error: 0.894994 | coeff: 0.894994 | eff: 1 | fom: 0.0891726 | r2int: 0.600761 | r2eff: 0 | hits: 4 ] keV + 25 41.5894 [sigma: 8.88981 | error: 0.427503 | coeff: 0.427503 | eff: 1 | fom: 0.390835 | r2int: 0.137069 | r2eff: 0 | hits: 4 ] keV + 26 81.119 [sigma: 14.3626 | error: 0.395909 | coeff: 0.395909 | eff: 1 | fom: 0.455703 | r2int: 0.125395 | r2eff: 0 | hits: 5 ] keV + 27 1249.18 [sigma: 343.166 | error: 0.672904 | coeff: 0.672904 | eff: 1 | fom: 0.157749 | r2int: 0.377334 | r2eff: 0 | hits: 6 ] keV + 28 1272.27 [sigma: 362.974 | error: 0.69883 | coeff: 0.69883 | eff: 1 | fom: 0.146261 | r2int: 0.406969 | r2eff: 0 | hits: 6 ] keV + 29 1914.56 [sigma: 261.822 | error: 0.432451 | coeff: 0.432451 | eff: 1 | fom: 0.381943 | r2int: 0.168312 | r2eff: 0 | hits: 10 ] keV + 30 3610.59 [sigma: 710.689 | error: 0.520775 | coeff: 0.520775 | eff: 1 | fom: 0.263374 | r2int: 0.232463 | r2eff: 0 | hits: 7 ] keV + 31 1179.7 [sigma: 93.1318 | error: 0.334936 | coeff: 0.334936 | eff: 1 | fom: 0.63672 | r2int: 0.10595 | r2eff: 0 | hits: 18 ] keV + 32 8239.69 [sigma: 806.607 | error: 0.415324 | coeff: 0.415324 | eff: 1 | fom: 0.414092 | r2int: 0.162911 | r2eff: 0 | hits: 18 ] keV + 33 4017.96 [sigma: 394.85 | error: 0.41693 | coeff: 0.41693 | eff: 1 | fom: 0.410909 | r2int: 0.164173 | r2eff: 0 | hits: 18 ] keV + 34 538.132 [sigma: 68.1102 | error: 0.456347 | coeff: 0.456347 | eff: 1 | fom: 0.34299 | r2int: 0.192233 | r2eff: 0 | hits: 13 ] keV + 35 1369.33 [sigma: 347.611 | error: 0.718009 | coeff: 0.718009 | eff: 1 | fom: 0.138552 | r2int: 0.451095 | r2eff: 0 | hits: 8 ] keV + 36 6603.43 [sigma: 656.883 | error: 0.422041 | coeff: 0.422041 | eff: 1 | fom: 0.401016 | r2int: 0.168223 | r2eff: 0 | hits: 18 ] keV + 37 3140.09 [sigma: 406.199 | error: 0.548823 | coeff: 0.548823 | eff: 1 | fom: 0.237141 | r2int: 0.284473 | r2eff: 0 | hits: 18 ] keV + 38 1953.43 [sigma: 198.11 | error: 0.405666 | coeff: 0.405666 | eff: 1 | fom: 0.434046 | r2int: 0.154279 | r2eff: 0 | hits: 16 ] keV + 39 1208.15 [sigma: 207.253 | error: 0.568952 | coeff: 0.568952 | eff: 1 | fom: 0.220659 | r2int: 0.294278 | r2eff: 0 | hits: 11 ] keV + 40 2001.91 [sigma: 615.317 | error: 0.869359 | coeff: 0.869359 | eff: 1 | fom: 0.0945091 | r2int: 0.661312 | r2eff: 0 | hits: 8 ] keV + 41 3901.57 [sigma: 677.254 | error: 0.69434 | coeff: 0.69434 | eff: 1 | fom: 0.148159 | r2int: 0.451977 | r2eff: 0 | hits: 16 ] keV + 42 781.178 [sigma: 85.0025 | error: 0.435253 | coeff: 0.435253 | eff: 1 | fom: 0.377041 | r2int: 0.177605 | r2eff: 0 | hits: 16 ] keV + 43 6339.94 [sigma: 541.734 | error: 0.391571 | coeff: 0.391571 | eff: 1 | fom: 0.465856 | r2int: 0.146026 | r2eff: 0 | hits: 21 ] keV + 44 406.602 [sigma: 87.569 | error: 0.481577 | coeff: 0.481577 | eff: 1 | fom: 0.307992 | r2int: 0.185533 | r2eff: 0 | hits: 5 ] keV + 45 2404.85 [sigma: 348.299 | error: 0.457999 | coeff: 0.457999 | eff: 1 | fom: 0.340521 | r2int: 0.188787 | r2eff: 0 | hits: 10 ] keV + 46 3183.23 [sigma: 474.23 | error: 0.494103 | coeff: 0.494103 | eff: 1 | fom: 0.292575 | r2int: 0.221943 | r2eff: 0 | hits: 11 ] keV + 47 4200.38 [sigma: 650.841 | error: 0.536756 | coeff: 0.536756 | eff: 1 | fom: 0.247923 | r2int: 0.264099 | r2eff: 0 | hits: 12 ] keV + 48 948.026 [sigma: 134.509 | error: 0.491498 | coeff: 0.491498 | eff: 1 | fom: 0.295685 | r2int: 0.221439 | r2eff: 0 | hits: 12 ] keV + 49 1393.61 [sigma: 350.448 | error: 0.5623 | coeff: 0.5623 | eff: 1 | fom: 0.22591 | r2int: 0.252945 | r2eff: 0 | hits: 5 ] keV + 50 1135.81 [sigma: 96.965 | error: 0.372121 | coeff: 0.372121 | eff: 1 | fom: 0.515827 | r2int: 0.131186 | r2eff: 0 | hits: 19 ] keV + 51 2940.75 [sigma: 360.438 | error: 0.548134 | coeff: 0.548134 | eff: 1 | fom: 0.237738 | r2int: 0.285429 | r2eff: 0 | hits: 20 ] keV + 52 5081.63 [sigma: 376.972 | error: 0.432559 | coeff: 0.432559 | eff: 1 | fom: 0.381751 | r2int: 0.181604 | r2eff: 0 | hits: 34 ] keV + 53 7691.85 [sigma: 382.721 | error: 0.330048 | coeff: 0.330048 | eff: 1 | fom: 0.655718 | r2int: 0.106456 | r2eff: 0 | hits: 44 ] keV + 54 3113.18 [sigma: 477.852 | error: 0.594476 | coeff: 0.594476 | eff: 1 | fom: 0.202117 | r2int: 0.329842 | r2eff: 0 | hits: 15 ] keV + 55 11038.9 [sigma: 564.739 | error: 0.30266 | coeff: 0.30266 | eff: 1 | fom: 0.779762 | r2int: 0.0889858 | r2eff: 0 | hits: 35 ] keV + 56 12591.7 [sigma: 505.577 | error: 0.300467 | coeff: 0.300467 | eff: 1 | fom: 0.791187 | r2int: 0.0886681 | r2eff: 0 | hits: 56 ] keV + 57 19534.5 [sigma: 600.776 | error: 0.259143 | coeff: 0.259143 | eff: 1 | fom: 1.06363 | r2int: 0.0662094 | r2eff: 0 | hits: 71 ] keV + 58 17079.8 [sigma: 710.734 | error: 0.297173 | coeff: 0.297173 | eff: 1 | fom: 0.808823 | r2int: 0.0865801 | r2eff: 0 | hits: 51 ] keV + 59 7468.12 [sigma: 471.073 | error: 0.383688 | coeff: 0.383688 | eff: 1 | fom: 0.485195 | r2int: 0.143237 | r2eff: 0 | hits: 37 ] keV + 60 2656.41 [sigma: 150.562 | error: 0.320623 | coeff: 0.320623 | eff: 1 | fom: 0.694836 | r2int: 0.0995868 | r2eff: 0 | hits: 32 ] keV + 61 20964.1 [sigma: 690.413 | error: 0.279447 | coeff: 0.279447 | eff: 1 | fom: 0.914689 | r2int: 0.077006 | r2eff: 0 | hits: 72 ] keV + 62 20152.2 [sigma: 633.932 | error: 0.261303 | coeff: 0.261303 | eff: 1 | fom: 1.04612 | r2int: 0.0672899 | r2eff: 0 | hits: 69 ] keV + 63 23653.5 [sigma: 787.407 | error: 0.257857 | coeff: 0.257857 | eff: 1 | fom: 1.07427 | r2int: 0.0653823 | r2eff: 0 | hits: 60 ] keV + 64 5120.41 [sigma: 323.992 | error: 0.410067 | coeff: 0.410067 | eff: 1 | fom: 0.424778 | r2int: 0.164151 | r2eff: 0 | hits: 42 ] keV + 65 5928.39 [sigma: 418.367 | error: 0.446324 | coeff: 0.446324 | eff: 1 | fom: 0.358568 | r2int: 0.194225 | r2eff: 0 | hits: 40 ] keV + 66 30515.9 [sigma: 805.915 | error: 0.219375 | coeff: 0.219375 | eff: 1 | fom: 1.48422 | r2int: 0.0474279 | r2eff: 0 | hits: 69 ] keV + 67 14352 [sigma: 532.005 | error: 0.298854 | coeff: 0.298854 | eff: 1 | fom: 0.799749 | r2int: 0.0879397 | r2eff: 0 | hits: 65 ] keV + 68 21742.1 [sigma: 773.949 | error: 0.266381 | coeff: 0.266381 | eff: 1 | fom: 1.00662 | r2int: 0.0696918 | r2eff: 0 | hits: 56 ] keV + 69 9961.83 [sigma: 446.613 | error: 0.268994 | coeff: 0.268994 | eff: 1 | fom: 0.987157 | r2int: 0.0703479 | r2eff: 0 | hits: 36 ] keV + 70 9190.99 [sigma: 656.633 | error: 0.342629 | coeff: 0.342629 | eff: 1 | fom: 0.608447 | r2int: 0.112291 | r2eff: 0 | hits: 23 ] keV + 71 4192.89 [sigma: 367.93 | error: 0.480632 | coeff: 0.480632 | eff: 1 | fom: 0.309205 | r2int: 0.223307 | r2eff: 0 | hits: 30 ] keV + 72 9173 [sigma: 409.509 | error: 0.309295 | coeff: 0.309295 | eff: 1 | fom: 0.746666 | r2int: 0.0936704 | r2eff: 0 | hits: 48 ] keV + 73 11806.9 [sigma: 499.676 | error: 0.270985 | coeff: 0.270985 | eff: 1 | fom: 0.972709 | r2int: 0.0716416 | r2eff: 0 | hits: 41 ] keV + 74 8520.73 [sigma: 633.47 | error: 0.371723 | coeff: 0.371723 | eff: 1 | fom: 0.516933 | r2int: 0.132651 | r2eff: 0 | hits: 25 ] keV + 75 22112.2 [sigma: 418.224 | error: 0.199269 | coeff: 0.199269 | eff: 1 | fom: 1.79884 | r2int: 0.0393503 | r2eff: 0 | hits: 111 ] keV + 76 24545.9 [sigma: 365.82 | error: 0.179462 | coeff: 0.179462 | eff: 1 | fom: 2.21783 | r2int: 0.0319845 | r2eff: 0 | hits: 145 ] keV + 77 28364.3 [sigma: 351.796 | error: 0.161236 | coeff: 0.161236 | eff: 1 | fom: 2.74755 | r2int: 0.0258433 | r2eff: 0 | hits: 169 ] keV + 78 33883.9 [sigma: 379.278 | error: 0.143346 | coeff: 0.143346 | eff: 1 | fom: 3.47617 | r2int: 0.0204228 | r2eff: 0 | hits: 164 ] keV + 79 29424.1 [sigma: 480.959 | error: 0.182751 | coeff: 0.182751 | eff: 1 | fom: 2.13871 | r2int: 0.0331308 | r2eff: 0 | hits: 125 ] keV + 80 27658.1 [sigma: 430.855 | error: 0.19643 | coeff: 0.19643 | eff: 1 | fom: 1.85122 | r2int: 0.038342 | r2eff: 0 | hits: 159 ] keV + 81 442246 [sigma: 1091.25 | error: 0.0412158 | coeff: 0.0412158 | eff: 1 | fom: 42.0478 | r2int: 0.00169266 | r2eff: 0 | hits: 279 ] keV + 82 343172 [sigma: 1157.14 | error: 0.0552003 | coeff: 0.0552003 | eff: 1 | fom: 23.4417 | r2int: 0.0030357 | r2eff: 0 | hits: 268 ] keV + 83 450217 [sigma: 1102.48 | error: 0.0412673 | coeff: 0.0412673 | eff: 1 | fom: 41.943 | r2int: 0.001697 | r2eff: 0 | hits: 284 ] keV + 84 29376.6 [sigma: 417.05 | error: 0.186728 | coeff: 0.186728 | eff: 1 | fom: 2.04858 | r2int: 0.0346658 | r2eff: 0 | hits: 173 ] keV + 85 34279 [sigma: 418.137 | error: 0.16044 | coeff: 0.16044 | eff: 1 | fom: 2.77488 | r2int: 0.0255923 | r2eff: 0 | hits: 173 ] keV + 86 357392 [sigma: 1163.36 | error: 0.0543715 | coeff: 0.0543715 | eff: 1 | fom: 24.1618 | r2int: 0.00294566 | r2eff: 0 | hits: 279 ] keV + 87 314486 [sigma: 1144.97 | error: 0.062744 | coeff: 0.062744 | eff: 1 | fom: 18.1437 | r2int: 0.00392356 | r2eff: 0 | hits: 297 ] keV + 88 300005 [sigma: 1136.63 | error: 0.0623698 | coeff: 0.0623698 | eff: 1 | fom: 18.3621 | r2int: 0.00387564 | r2eff: 0 | hits: 271 ] keV + 89 32378.9 [sigma: 364.429 | error: 0.15184 | coeff: 0.15184 | eff: 1 | fom: 3.09814 | r2int: 0.0229286 | r2eff: 0 | hits: 182 ] keV + 90 28740.9 [sigma: 342.728 | error: 0.161315 | coeff: 0.161315 | eff: 1 | fom: 2.74486 | r2int: 0.0258804 | r2eff: 0 | hits: 183 ] keV + 91 411491 [sigma: 1111.69 | error: 0.0456884 | coeff: 0.0456884 | eff: 1 | fom: 34.2185 | r2int: 0.00208013 | r2eff: 0 | hits: 286 ] keV + 92 367275 [sigma: 1143.26 | error: 0.052918 | coeff: 0.052918 | eff: 1 | fom: 25.5074 | r2int: 0.00279062 | r2eff: 0 | hits: 289 ] keV + 93 428724 [sigma: 1138.24 | error: 0.0442668 | coeff: 0.0442668 | eff: 1 | fom: 36.4515 | r2int: 0.0019525 | r2eff: 0 | hits: 278 ] keV + 94 34534.7 [sigma: 369.63 | error: 0.139961 | coeff: 0.139961 | eff: 1 | fom: 3.64632 | r2int: 0.0194747 | r2eff: 0 | hits: 171 ] keV + 95 23077 [sigma: 417.681 | error: 0.194095 | coeff: 0.194095 | eff: 1 | fom: 1.89603 | r2int: 0.0373452 | r2eff: 0 | hits: 115 ] keV + 96 30057 [sigma: 477.946 | error: 0.207328 | coeff: 0.207328 | eff: 1 | fom: 1.66172 | r2int: 0.0427319 | r2eff: 0 | hits: 170 ] keV + 97 30947.2 [sigma: 365.404 | error: 0.153041 | coeff: 0.153041 | eff: 1 | fom: 3.04971 | r2int: 0.023282 | r2eff: 0 | hits: 168 ] keV + 98 32135.5 [sigma: 418.898 | error: 0.161239 | coeff: 0.161239 | eff: 1 | fom: 2.74747 | r2int: 0.025828 | r2eff: 0 | hits: 153 ] keV + 99 23995.4 [sigma: 433.397 | error: 0.207513 | coeff: 0.207513 | eff: 1 | fom: 1.65876 | r2int: 0.0427353 | r2eff: 0 | hits: 132 ] keV + 100 344249 [sigma: 494.863 | error: 0.0343201 | coeff: 0.0343201 | eff: 1 | fom: 60.6421 | r2int: 0.00117581 | r2eff: 0 | hits: 570 ] keV + 101 330035 [sigma: 449.816 | error: 0.0361113 | coeff: 0.0361113 | eff: 1 | fom: 54.7754 | r2int: 0.00130217 | r2eff: 0 | hits: 702 ] keV + 102 357368 [sigma: 436.962 | error: 0.0337525 | coeff: 0.0337525 | eff: 1 | fom: 62.6988 | r2int: 0.00113774 | r2eff: 0 | hits: 762 ] keV + 103 347790 [sigma: 456.653 | error: 0.0349617 | coeff: 0.0349617 | eff: 1 | fom: 58.4368 | r2int: 0.0012206 | r2eff: 0 | hits: 709 ] keV + 104 313496 [sigma: 445.37 | error: 0.0341254 | coeff: 0.0341254 | eff: 1 | fom: 61.3362 | r2int: 0.00116252 | r2eff: 0 | hits: 577 ] keV + 105 328490 [sigma: 463.332 | error: 0.0363184 | coeff: 0.0363184 | eff: 1 | fom: 54.1525 | r2int: 0.00131704 | r2eff: 0 | hits: 663 ] keV + 106 355915 [sigma: 480.009 | error: 0.0391344 | coeff: 0.0391344 | eff: 1 | fom: 46.6395 | r2int: 0.00152968 | r2eff: 0 | hits: 842 ] keV + 107 376541 [sigma: 450.539 | error: 0.0359952 | coeff: 0.0359952 | eff: 1 | fom: 55.1293 | r2int: 0.00129422 | r2eff: 0 | hits: 905 ] keV + 108 395217 [sigma: 480.584 | error: 0.0363379 | coeff: 0.0363379 | eff: 1 | fom: 54.0945 | r2int: 0.00131896 | r2eff: 0 | hits: 893 ] keV + 109 336465 [sigma: 445.589 | error: 0.0347368 | coeff: 0.0347368 | eff: 1 | fom: 59.1962 | r2int: 0.00120489 | r2eff: 0 | hits: 688 ] keV + 110 352425 [sigma: 453.825 | error: 0.0347924 | coeff: 0.0347924 | eff: 1 | fom: 59.0071 | r2int: 0.00120885 | r2eff: 0 | hits: 730 ] keV + 111 389030 [sigma: 465.451 | error: 0.0359729 | coeff: 0.0359729 | eff: 1 | fom: 55.1976 | r2int: 0.00129262 | r2eff: 0 | hits: 904 ] keV + 112 418035 [sigma: 485.54 | error: 0.0353442 | coeff: 0.0353442 | eff: 1 | fom: 57.179 | r2int: 0.00124786 | r2eff: 0 | hits: 926 ] keV + 113 356689 [sigma: 464.512 | error: 0.0375186 | coeff: 0.0375186 | eff: 1 | fom: 50.7433 | r2int: 0.00140595 | r2eff: 0 | hits: 830 ] keV + 114 392187 [sigma: 488.005 | error: 0.033458 | coeff: 0.033458 | eff: 1 | fom: 63.8075 | r2int: 0.00111789 | r2eff: 0 | hits: 723 ] keV + 115 325449 [sigma: 446.803 | error: 0.0360366 | coeff: 0.0360366 | eff: 1 | fom: 55.0028 | r2int: 0.00129675 | r2eff: 0 | hits: 689 ] keV + 116 398825 [sigma: 478.296 | error: 0.0360179 | coeff: 0.0360179 | eff: 1 | fom: 55.06 | r2int: 0.00129585 | r2eff: 0 | hits: 902 ] keV + 117 387271 [sigma: 476.416 | error: 0.0368646 | coeff: 0.0368646 | eff: 1 | fom: 52.5597 | r2int: 0.00135748 | r2eff: 0 | hits: 898 ] keV + 118 386212 [sigma: 467.803 | error: 0.0350009 | coeff: 0.0350009 | eff: 1 | fom: 58.3059 | r2int: 0.0012236 | r2eff: 0 | hits: 835 ] keV + 119 351384 [sigma: 477.283 | error: 0.03586 | coeff: 0.03586 | eff: 1 | fom: 55.546 | r2int: 0.00128409 | r2eff: 0 | hits: 697 ] keV + 120 342498 [sigma: 440.653 | error: 0.0322931 | coeff: 0.0322931 | eff: 1 | fom: 68.4942 | r2int: 0.00104119 | r2eff: 0 | hits: 630 ] keV + 121 350874 [sigma: 465.067 | error: 0.0341803 | coeff: 0.0341803 | eff: 1 | fom: 61.1393 | r2int: 0.00116653 | r2eff: 0 | hits: 665 ] keV + 122 338602 [sigma: 477.562 | error: 0.0373155 | coeff: 0.0373155 | eff: 1 | fom: 51.2972 | r2int: 0.00139046 | r2eff: 0 | hits: 700 ] keV + 123 349420 [sigma: 458.791 | error: 0.0346893 | coeff: 0.0346893 | eff: 1 | fom: 59.3584 | r2int: 0.00120162 | r2eff: 0 | hits: 698 ] keV + 124 321166 [sigma: 456.506 | error: 0.034555 | coeff: 0.034555 | eff: 1 | fom: 59.8205 | r2int: 0.00119203 | r2eff: 0 | hits: 591 ] keV ============================================================ closed file mfd_tl_EnergyDeposit.out for output ============================================================ @@ -1427,131 +1427,131 @@ Run Summary 122 18545.000000 steps 123 20827.000000 steps 124 15270.000000 steps - 0 48 [sigma: 10.4403 | error: 0.376732 | coeff: 0.376732 | eff: 1 | fom: 0.352294 | r2int: 0.0946181 | r2eff: 0 | hits: 3 ] steps - 1 17 [sigma: 3.36155 | error: 0.442156 | coeff: 0.442156 | eff: 1 | fom: 0.255752 | r2int: 0.156401 | r2eff: 0 | hits: 5 ] steps - 2 25 [sigma: 8.94427 | error: 0.8 | coeff: 0.8 | eff: 1 | fom: 0.078125 | r2int: 0.512 | r2eff: 0 | hits: 5 ] steps - 3 52 [sigma: 3.8239 | error: 0.232543 | coeff: 0.232543 | eff: 1 | fom: 0.92462 | r2int: 0.0486686 | r2eff: 0 | hits: 10 ] steps - 4 15 [sigma: 1.32288 | error: 0.264575 | coeff: 0.264575 | eff: 1 | fom: 0.714286 | r2int: 0.0622222 | r2eff: 0 | hits: 9 ] steps - 5 8 [sigma: 1.34164 | error: 0.375 | coeff: 0.375 | eff: 1 | fom: 0.355556 | r2int: 0.1125 | r2eff: 0 | hits: 5 ] steps - 6 20 [sigma: 4.24264 | error: 0.6 | coeff: 0.6 | eff: 1 | fom: 0.138889 | r2int: 0.315 | r2eff: 0 | hits: 8 ] steps - 7 31 [sigma: 3.32081 | error: 0.321369 | coeff: 0.321369 | eff: 1 | fom: 0.484131 | r2int: 0.0918025 | r2eff: 0 | hits: 9 ] steps - 8 24 [sigma: 3.89138 | error: 0.458604 | coeff: 0.458604 | eff: 1 | fom: 0.237736 | r2int: 0.184028 | r2eff: 0 | hits: 8 ] steps - 9 67 [sigma: 7.3794 | error: 0.348294 | coeff: 0.348294 | eff: 1 | fom: 0.412171 | r2int: 0.109178 | r2eff: 0 | hits: 10 ] steps - 10 30 [sigma: 6.48074 | error: 0.52915 | coeff: 0.52915 | eff: 1 | fom: 0.178571 | r2int: 0.233333 | r2eff: 0 | hits: 6 ] steps - 11 42 [sigma: 4.219 | error: 0.224619 | coeff: 0.224619 | eff: 1 | fom: 0.991011 | r2int: 0.0403628 | r2eff: 0 | hits: 5 ] steps - 12 49 [sigma: 8.07465 | error: 0.368479 | coeff: 0.368479 | eff: 1 | fom: 0.368252 | r2int: 0.108621 | r2eff: 0 | hits: 5 ] steps - 13 13 [sigma: 2.26779 | error: 0.461538 | coeff: 0.461538 | eff: 1 | fom: 0.234722 | r2int: 0.182587 | r2eff: 0 | hits: 7 ] steps - 14 42 [sigma: 13.2816 | error: 0.774597 | coeff: 0.774597 | eff: 1 | fom: 0.0833333 | r2int: 0.5 | r2eff: 0 | hits: 6 ] steps - 15 6 [sigma: 1.73205 | error: 0.5 | coeff: 0.5 | eff: 1 | fom: 0.2 | r2int: 0.166667 | r2eff: 0 | hits: 3 ] steps - 16 46 [sigma: 15.0444 | error: 0.56647 | coeff: 0.56647 | eff: 1 | fom: 0.155817 | r2int: 0.213926 | r2eff: 0 | hits: 3 ] steps - 17 23 [sigma: 14.8492 | error: 0.913043 | coeff: 0.913043 | eff: 1 | fom: 0.0599773 | r2int: 0.416824 | r2eff: 0 | hits: 2 ] steps - 18 72 [sigma: 7.17712 | error: 0.315223 | coeff: 0.315223 | eff: 1 | fom: 0.503192 | r2int: 0.089429 | r2eff: 0 | hits: 10 ] steps - 19 37 [sigma: 8.10533 | error: 0.619604 | coeff: 0.619604 | eff: 1 | fom: 0.130239 | r2int: 0.33592 | r2eff: 0 | hits: 8 ] steps + 0 48 [sigma: 10.4403 | error: 0.376732 | coeff: 0.376732 | eff: 1 | fom: 0.503277 | r2int: 0.0946181 | r2eff: 0 | hits: 3 ] steps + 1 17 [sigma: 3.36155 | error: 0.442156 | coeff: 0.442156 | eff: 1 | fom: 0.36536 | r2int: 0.156401 | r2eff: 0 | hits: 5 ] steps + 2 25 [sigma: 8.94427 | error: 0.8 | coeff: 0.8 | eff: 1 | fom: 0.111607 | r2int: 0.512 | r2eff: 0 | hits: 5 ] steps + 3 52 [sigma: 3.8239 | error: 0.232543 | coeff: 0.232543 | eff: 1 | fom: 1.32089 | r2int: 0.0486686 | r2eff: 0 | hits: 10 ] steps + 4 15 [sigma: 1.32288 | error: 0.264575 | coeff: 0.264575 | eff: 1 | fom: 1.02041 | r2int: 0.0622222 | r2eff: 0 | hits: 9 ] steps + 5 8 [sigma: 1.34164 | error: 0.375 | coeff: 0.375 | eff: 1 | fom: 0.507937 | r2int: 0.1125 | r2eff: 0 | hits: 5 ] steps + 6 20 [sigma: 4.24264 | error: 0.6 | coeff: 0.6 | eff: 1 | fom: 0.198413 | r2int: 0.315 | r2eff: 0 | hits: 8 ] steps + 7 31 [sigma: 3.32081 | error: 0.321369 | coeff: 0.321369 | eff: 1 | fom: 0.691616 | r2int: 0.0918025 | r2eff: 0 | hits: 9 ] steps + 8 24 [sigma: 3.89138 | error: 0.458604 | coeff: 0.458604 | eff: 1 | fom: 0.339623 | r2int: 0.184028 | r2eff: 0 | hits: 8 ] steps + 9 67 [sigma: 7.3794 | error: 0.348294 | coeff: 0.348294 | eff: 1 | fom: 0.588816 | r2int: 0.109178 | r2eff: 0 | hits: 10 ] steps + 10 30 [sigma: 6.48074 | error: 0.52915 | coeff: 0.52915 | eff: 1 | fom: 0.255102 | r2int: 0.233333 | r2eff: 0 | hits: 6 ] steps + 11 42 [sigma: 4.219 | error: 0.224619 | coeff: 0.224619 | eff: 1 | fom: 1.41573 | r2int: 0.0403628 | r2eff: 0 | hits: 5 ] steps + 12 49 [sigma: 8.07465 | error: 0.368479 | coeff: 0.368479 | eff: 1 | fom: 0.526074 | r2int: 0.108621 | r2eff: 0 | hits: 5 ] steps + 13 13 [sigma: 2.26779 | error: 0.461538 | coeff: 0.461538 | eff: 1 | fom: 0.335317 | r2int: 0.182587 | r2eff: 0 | hits: 7 ] steps + 14 42 [sigma: 13.2816 | error: 0.774597 | coeff: 0.774597 | eff: 1 | fom: 0.119048 | r2int: 0.5 | r2eff: 0 | hits: 6 ] steps + 15 6 [sigma: 1.73205 | error: 0.5 | coeff: 0.5 | eff: 1 | fom: 0.285714 | r2int: 0.166667 | r2eff: 0 | hits: 3 ] steps + 16 46 [sigma: 15.0444 | error: 0.56647 | coeff: 0.56647 | eff: 1 | fom: 0.222596 | r2int: 0.213926 | r2eff: 0 | hits: 3 ] steps + 17 23 [sigma: 14.8492 | error: 0.913043 | coeff: 0.913043 | eff: 1 | fom: 0.0856819 | r2int: 0.416824 | r2eff: 0 | hits: 2 ] steps + 18 72 [sigma: 7.17712 | error: 0.315223 | coeff: 0.315223 | eff: 1 | fom: 0.718846 | r2int: 0.089429 | r2eff: 0 | hits: 10 ] steps + 19 37 [sigma: 8.10533 | error: 0.619604 | coeff: 0.619604 | eff: 1 | fom: 0.186056 | r2int: 0.33592 | r2eff: 0 | hits: 8 ] steps 20 3 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 3 ] steps - 21 43 [sigma: 5.17687 | error: 0.269206 | coeff: 0.269206 | eff: 1 | fom: 0.689925 | r2int: 0.0579773 | r2eff: 0 | hits: 5 ] steps - 22 12 [sigma: 5.19615 | error: 0.75 | coeff: 0.75 | eff: 1 | fom: 0.0888889 | r2int: 0.375 | r2eff: 0 | hits: 3 ] steps - 23 22 [sigma: 3.88158 | error: 0.432177 | coeff: 0.432177 | eff: 1 | fom: 0.267699 | r2int: 0.155647 | r2eff: 0 | hits: 6 ] steps - 24 79 [sigma: 20.511 | error: 0.580556 | coeff: 0.580556 | eff: 1 | fom: 0.148348 | r2int: 0.269636 | r2eff: 0 | hits: 5 ] steps - 25 94 [sigma: 20.7251 | error: 0.661438 | coeff: 0.661438 | eff: 1 | fom: 0.114286 | r2int: 0.388889 | r2eff: 0 | hits: 9 ] steps - 26 43 [sigma: 4.30011 | error: 0.331671 | coeff: 0.331671 | eff: 1 | fom: 0.454523 | r2int: 0.100005 | r2eff: 0 | hits: 11 ] steps - 27 146 [sigma: 18.2051 | error: 0.431946 | coeff: 0.431946 | eff: 1 | fom: 0.267985 | r2int: 0.17103 | r2eff: 0 | hits: 12 ] steps - 28 111 [sigma: 13.2387 | error: 0.477069 | coeff: 0.477069 | eff: 1 | fom: 0.219688 | r2int: 0.21337 | r2eff: 0 | hits: 16 ] steps - 29 152 [sigma: 10.1878 | error: 0.284362 | coeff: 0.284362 | eff: 1 | fom: 0.618338 | r2int: 0.0763697 | r2eff: 0 | hits: 18 ] steps - 30 147 [sigma: 15.0617 | error: 0.339823 | coeff: 0.339823 | eff: 1 | fom: 0.432977 | r2int: 0.104982 | r2eff: 0 | hits: 11 ] steps - 31 215 [sigma: 8.39462 | error: 0.183136 | coeff: 0.183136 | eff: 1 | fom: 1.49081 | r2int: 0.0320144 | r2eff: 0 | hits: 22 ] steps - 32 303 [sigma: 12.9357 | error: 0.221835 | coeff: 0.221835 | eff: 1 | fom: 1.01604 | r2int: 0.0473882 | r2eff: 0 | hits: 27 ] steps - 33 291 [sigma: 10.2957 | error: 0.180405 | coeff: 0.180405 | eff: 1 | fom: 1.53628 | r2int: 0.0312944 | r2eff: 0 | hits: 26 ] steps - 34 115 [sigma: 4.74311 | error: 0.17978 | coeff: 0.17978 | eff: 1 | fom: 1.54698 | r2int: 0.0306198 | r2eff: 0 | hits: 19 ] steps - 35 69 [sigma: 5.06062 | error: 0.274422 | coeff: 0.274422 | eff: 1 | fom: 0.663946 | r2int: 0.0699283 | r2eff: 0 | hits: 14 ] steps - 36 292 [sigma: 15.1461 | error: 0.24876 | coeff: 0.24876 | eff: 1 | fom: 0.807995 | r2int: 0.0591911 | r2eff: 0 | hits: 23 ] steps - 37 249 [sigma: 9.29571 | error: 0.193984 | coeff: 0.193984 | eff: 1 | fom: 1.32874 | r2int: 0.036236 | r2eff: 0 | hits: 27 ] steps - 38 173 [sigma: 6.61744 | error: 0.175288 | coeff: 0.175288 | eff: 1 | fom: 1.62728 | r2int: 0.0292629 | r2eff: 0 | hits: 21 ] steps - 39 161 [sigma: 8.79566 | error: 0.262003 | coeff: 0.262003 | eff: 1 | fom: 0.728378 | r2int: 0.065661 | r2eff: 0 | hits: 23 ] steps - 40 114 [sigma: 8.67298 | error: 0.313681 | coeff: 0.313681 | eff: 1 | fom: 0.508152 | r2int: 0.0926077 | r2eff: 0 | hits: 17 ] steps - 41 255 [sigma: 12.0865 | error: 0.227313 | coeff: 0.227313 | eff: 1 | fom: 0.96766 | r2int: 0.0494245 | r2eff: 0 | hits: 23 ] steps - 42 284 [sigma: 15.2094 | error: 0.251191 | coeff: 0.251191 | eff: 1 | fom: 0.792432 | r2int: 0.0602289 | r2eff: 0 | hits: 22 ] steps - 43 328 [sigma: 11.6355 | error: 0.197511 | coeff: 0.197511 | eff: 1 | fom: 1.2817 | r2int: 0.0377523 | r2eff: 0 | hits: 31 ] steps - 44 58 [sigma: 4.20912 | error: 0.290284 | coeff: 0.290284 | eff: 1 | fom: 0.593368 | r2int: 0.0789982 | r2eff: 0 | hits: 16 ] steps - 45 144 [sigma: 8.23812 | error: 0.228837 | coeff: 0.228837 | eff: 1 | fom: 0.954813 | r2int: 0.0490934 | r2eff: 0 | hits: 16 ] steps - 46 252 [sigma: 17.9904 | error: 0.29435 | coeff: 0.29435 | eff: 1 | fom: 0.577086 | r2int: 0.0815456 | r2eff: 0 | hits: 17 ] steps - 47 291 [sigma: 27.9058 | error: 0.406854 | coeff: 0.406854 | eff: 1 | fom: 0.30206 | r2int: 0.156334 | r2eff: 0 | hits: 18 ] steps - 48 116 [sigma: 5.775 | error: 0.23351 | coeff: 0.23351 | eff: 1 | fom: 0.916978 | r2int: 0.0520484 | r2eff: 0 | hits: 22 ] steps - 49 84 [sigma: 7.14143 | error: 0.340068 | coeff: 0.340068 | eff: 1 | fom: 0.432353 | r2int: 0.108418 | r2eff: 0 | hits: 16 ] steps - 50 554 [sigma: 36.0571 | error: 0.406456 | coeff: 0.406456 | eff: 1 | fom: 0.302652 | r2int: 0.16097 | r2eff: 0 | hits: 39 ] steps - 51 418 [sigma: 16.8924 | error: 0.232152 | coeff: 0.232152 | eff: 1 | fom: 0.927736 | r2int: 0.0522615 | r2eff: 0 | hits: 33 ] steps - 52 666 [sigma: 17.2529 | error: 0.181337 | coeff: 0.181337 | eff: 1 | fom: 1.52054 | r2int: 0.032212 | r2eff: 0 | hits: 49 ] steps - 53 1055 [sigma: 27.3206 | error: 0.210383 | coeff: 0.210383 | eff: 1 | fom: 1.12967 | r2int: 0.0435902 | r2eff: 0 | hits: 66 ] steps - 54 295 [sigma: 16.0247 | error: 0.292527 | coeff: 0.292527 | eff: 1 | fom: 0.584301 | r2int: 0.0826215 | r2eff: 0 | hits: 29 ] steps - 55 617 [sigma: 15.1391 | error: 0.169994 | coeff: 0.169994 | eff: 1 | fom: 1.73022 | r2int: 0.028296 | r2eff: 0 | hits: 48 ] steps - 56 854 [sigma: 13.0263 | error: 0.122976 | coeff: 0.122976 | eff: 1 | fom: 3.30622 | r2int: 0.0148903 | r2eff: 0 | hits: 65 ] steps - 57 1067 [sigma: 13.16 | error: 0.114377 | coeff: 0.114377 | eff: 1 | fom: 3.82199 | r2int: 0.0129301 | r2eff: 0 | hits: 86 ] steps - 58 611 [sigma: 8.03123 | error: 0.107592 | coeff: 0.107592 | eff: 1 | fom: 4.3193 | r2int: 0.0114032 | r2eff: 0 | hits: 67 ] steps - 59 761 [sigma: 27.1802 | error: 0.262461 | coeff: 0.262461 | eff: 1 | fom: 0.725837 | r2int: 0.0676103 | r2eff: 0 | hits: 54 ] steps - 60 448 [sigma: 8.48029 | error: 0.149049 | coeff: 0.149049 | eff: 1 | fom: 2.25067 | r2int: 0.0218573 | r2eff: 0 | hits: 62 ] steps - 61 1158 [sigma: 11.6877 | error: 0.0983743 | coeff: 0.0983743 | eff: 1 | fom: 5.16662 | r2int: 0.00957564 | r2eff: 0 | hits: 95 ] steps - 62 1253 [sigma: 13.0986 | error: 0.0986209 | coeff: 0.0986209 | eff: 1 | fom: 5.14082 | r2int: 0.00961679 | r2eff: 0 | hits: 89 ] steps - 63 1060 [sigma: 13.9977 | error: 0.120306 | coeff: 0.120306 | eff: 1 | fom: 3.45456 | r2int: 0.0142993 | r2eff: 0 | hits: 83 ] steps - 64 883 [sigma: 23.4171 | error: 0.217075 | coeff: 0.217075 | eff: 1 | fom: 1.06108 | r2int: 0.0464183 | r2eff: 0 | hits: 67 ] steps - 65 573 [sigma: 9.70835 | error: 0.133409 | coeff: 0.133409 | eff: 1 | fom: 2.80929 | r2int: 0.017511 | r2eff: 0 | hits: 62 ] steps - 66 1210 [sigma: 14.0795 | error: 0.104724 | coeff: 0.104724 | eff: 1 | fom: 4.55909 | r2int: 0.0108317 | r2eff: 0 | hits: 81 ] steps - 67 1045 [sigma: 13.4292 | error: 0.117077 | coeff: 0.117077 | eff: 1 | fom: 3.64776 | r2int: 0.0135419 | r2eff: 0 | hits: 83 ] steps - 68 746 [sigma: 8.5334 | error: 0.0997218 | coeff: 0.0997218 | eff: 1 | fom: 5.02794 | r2int: 0.00981359 | r2eff: 0 | hits: 76 ] steps - 69 925 [sigma: 25.3673 | error: 0.212426 | coeff: 0.212426 | eff: 1 | fom: 1.10803 | r2int: 0.0443729 | r2eff: 0 | hits: 60 ] steps - 70 474 [sigma: 16.0417 | error: 0.208624 | coeff: 0.208624 | eff: 1 | fom: 1.14879 | r2int: 0.0423787 | r2eff: 0 | hits: 38 ] steps - 71 548 [sigma: 18.2585 | error: 0.253746 | coeff: 0.253746 | eff: 1 | fom: 0.776552 | r2int: 0.063277 | r2eff: 0 | hits: 58 ] steps - 72 1120 [sigma: 25.7722 | error: 0.193893 | coeff: 0.193893 | eff: 1 | fom: 1.32998 | r2int: 0.037065 | r2eff: 0 | hits: 71 ] steps - 73 622 [sigma: 11.2127 | error: 0.143084 | coeff: 0.143084 | eff: 1 | fom: 2.44223 | r2int: 0.0201481 | r2eff: 0 | hits: 63 ] steps - 74 405 [sigma: 14.7652 | error: 0.239066 | coeff: 0.239066 | eff: 1 | fom: 0.874849 | r2int: 0.0558236 | r2eff: 0 | hits: 43 ] steps - 75 3731 [sigma: 36.3366 | error: 0.118881 | coeff: 0.118881 | eff: 1 | fom: 3.5379 | r2int: 0.0140378 | r2eff: 0 | hits: 149 ] steps - 76 4004 [sigma: 31.0995 | error: 0.105929 | coeff: 0.105929 | eff: 1 | fom: 4.45592 | r2int: 0.0111607 | r2eff: 0 | hits: 186 ] steps - 77 4638 [sigma: 27.3603 | error: 0.0872997 | coeff: 0.0872997 | eff: 1 | fom: 6.56062 | r2int: 0.00758643 | r2eff: 0 | hits: 219 ] steps - 78 5289 [sigma: 31.1854 | error: 0.0864564 | coeff: 0.0864564 | eff: 1 | fom: 6.68922 | r2int: 0.00743995 | r2eff: 0 | hits: 215 ] steps - 79 3861 [sigma: 30.4278 | error: 0.102147 | coeff: 0.102147 | eff: 1 | fom: 4.79203 | r2int: 0.0103719 | r2eff: 0 | hits: 168 ] steps - 80 4563 [sigma: 30.6034 | error: 0.094612 | coeff: 0.094612 | eff: 1 | fom: 5.5857 | r2int: 0.00890645 | r2eff: 0 | hits: 199 ] steps - 81 3792 [sigma: 11.5062 | error: 0.0547865 | coeff: 0.0547865 | eff: 1 | fom: 16.658 | r2int: 0.00299235 | r2eff: 0 | hits: 326 ] steps - 82 4137 [sigma: 12.9621 | error: 0.0558731 | coeff: 0.0558731 | eff: 1 | fom: 16.0164 | r2int: 0.00311199 | r2eff: 0 | hits: 318 ] steps - 83 4574 [sigma: 14.342 | error: 0.0568735 | coeff: 0.0568735 | eff: 1 | fom: 15.4579 | r2int: 0.00322477 | r2eff: 0 | hits: 329 ] steps - 84 5510 [sigma: 34.637 | error: 0.0936624 | coeff: 0.0936624 | eff: 1 | fom: 5.69953 | r2int: 0.00873313 | r2eff: 0 | hits: 222 ] steps - 85 4536 [sigma: 27.3302 | error: 0.0889607 | coeff: 0.0889607 | eff: 1 | fom: 6.31792 | r2int: 0.0078777 | r2eff: 0 | hits: 218 ] steps - 86 4353 [sigma: 12.463 | error: 0.0524812 | coeff: 0.0524812 | eff: 1 | fom: 18.1536 | r2int: 0.00274608 | r2eff: 0 | hits: 336 ] steps - 87 4542 [sigma: 12.7336 | error: 0.053488 | coeff: 0.053488 | eff: 1 | fom: 17.4766 | r2int: 0.0028531 | r2eff: 0 | hits: 364 ] steps - 88 3762 [sigma: 10.8159 | error: 0.0515907 | coeff: 0.0515907 | eff: 1 | fom: 18.7857 | r2int: 0.00265333 | r2eff: 0 | hits: 322 ] steps - 89 5315 [sigma: 30.43 | error: 0.087017 | coeff: 0.087017 | eff: 1 | fom: 6.60331 | r2int: 0.00753918 | r2eff: 0 | hits: 231 ] steps - 90 4934 [sigma: 34.3384 | error: 0.106461 | coeff: 0.106461 | eff: 1 | fom: 4.41156 | r2int: 0.0112854 | r2eff: 0 | hits: 234 ] steps - 91 4253 [sigma: 12.916 | error: 0.0555847 | coeff: 0.0555847 | eff: 1 | fom: 16.183 | r2int: 0.00308044 | r2eff: 0 | hits: 335 ] steps - 92 4632 [sigma: 12.7753 | error: 0.0500264 | coeff: 0.0500264 | eff: 1 | fom: 19.9789 | r2int: 0.00249503 | r2eff: 0 | hits: 329 ] steps - 93 4338 [sigma: 13.8844 | error: 0.0573441 | coeff: 0.0573441 | eff: 1 | fom: 15.2052 | r2int: 0.00327811 | r2eff: 0 | hits: 321 ] steps - 94 5269 [sigma: 37.0868 | error: 0.10721 | coeff: 0.10721 | eff: 1 | fom: 4.35012 | r2int: 0.0114444 | r2eff: 0 | hits: 232 ] steps - 95 3736 [sigma: 32.0222 | error: 0.105325 | coeff: 0.105325 | eff: 1 | fom: 4.50718 | r2int: 0.0110199 | r2eff: 0 | hits: 151 ] steps - 96 4537 [sigma: 30.826 | error: 0.0996248 | coeff: 0.0996248 | eff: 1 | fom: 5.03773 | r2int: 0.00987894 | r2eff: 0 | hits: 215 ] steps - 97 5604 [sigma: 36.8536 | error: 0.0977637 | coeff: 0.0977637 | eff: 1 | fom: 5.23136 | r2int: 0.00951449 | r2eff: 0 | hits: 221 ] steps - 98 4251 [sigma: 26.8457 | error: 0.0923826 | coeff: 0.0923826 | eff: 1 | fom: 5.85854 | r2int: 0.00849466 | r2eff: 0 | hits: 214 ] steps - 99 4952 [sigma: 43.6869 | error: 0.115364 | coeff: 0.115364 | eff: 1 | fom: 3.75693 | r2int: 0.0132309 | r2eff: 0 | hits: 171 ] steps - 100 16334 [sigma: 36.2289 | error: 0.0546909 | coeff: 0.0546909 | eff: 1 | fom: 16.7163 | r2int: 0.00298617 | r2eff: 0 | hits: 608 ] steps - 101 19930 [sigma: 32.2121 | error: 0.0450239 | coeff: 0.0450239 | eff: 1 | fom: 24.6652 | r2int: 0.00202454 | r2eff: 0 | hits: 776 ] steps - 102 21426 [sigma: 35.467 | error: 0.0475456 | coeff: 0.0475456 | eff: 1 | fom: 22.1182 | r2int: 0.00225785 | r2eff: 0 | hits: 825 ] steps - 103 19443 [sigma: 32.4056 | error: 0.0461888 | coeff: 0.0461888 | eff: 1 | fom: 23.4367 | r2int: 0.00213063 | r2eff: 0 | hits: 768 ] steps - 104 15272 [sigma: 35.53 | error: 0.0583015 | coeff: 0.0583015 | eff: 1 | fom: 14.7099 | r2int: 0.00339365 | r2eff: 0 | hits: 628 ] steps - 105 19313 [sigma: 34.7725 | error: 0.0484792 | coeff: 0.0484792 | eff: 1 | fom: 21.2745 | r2int: 0.00234699 | r2eff: 0 | hits: 725 ] steps - 106 25992 [sigma: 37.3058 | error: 0.0438642 | coeff: 0.0438642 | eff: 1 | fom: 25.9866 | r2int: 0.00192201 | r2eff: 0 | hits: 934 ] steps - 107 25903 [sigma: 32.7849 | error: 0.0401043 | coeff: 0.0401043 | eff: 1 | fom: 31.0876 | r2int: 0.00160675 | r2eff: 0 | hits: 1004 ] steps - 108 26542 [sigma: 35.3719 | error: 0.041506 | coeff: 0.041506 | eff: 1 | fom: 29.0235 | r2int: 0.00172097 | r2eff: 0 | hits: 970 ] steps - 109 19681 [sigma: 32.8088 | error: 0.0457143 | coeff: 0.0457143 | eff: 1 | fom: 23.9258 | r2int: 0.00208702 | r2eff: 0 | hits: 752 ] steps - 110 19745 [sigma: 30.819 | error: 0.0439816 | coeff: 0.0439816 | eff: 1 | fom: 25.848 | r2int: 0.00193195 | r2eff: 0 | hits: 794 ] steps - 111 27762 [sigma: 38.5938 | error: 0.0443113 | coeff: 0.0443113 | eff: 1 | fom: 25.4649 | r2int: 0.00196156 | r2eff: 0 | hits: 1016 ] steps - 112 29082 [sigma: 35.6232 | error: 0.0392931 | coeff: 0.0392931 | eff: 1 | fom: 32.3845 | r2int: 0.00154245 | r2eff: 0 | hits: 1029 ] steps - 113 25258 [sigma: 34.2002 | error: 0.041558 | coeff: 0.041558 | eff: 1 | fom: 28.9508 | r2int: 0.00172524 | r2eff: 0 | hits: 942 ] steps - 114 22602 [sigma: 36.9124 | error: 0.0463366 | coeff: 0.0463366 | eff: 1 | fom: 23.2875 | r2int: 0.00214441 | r2eff: 0 | hits: 805 ] steps - 115 21342 [sigma: 39.933 | error: 0.0513104 | coeff: 0.0513104 | eff: 1 | fom: 18.0871 | r2int: 0.00262926 | r2eff: 0 | hits: 752 ] steps - 116 26996 [sigma: 34.5851 | error: 0.0406137 | coeff: 0.0406137 | eff: 1 | fom: 28.8692 | r2int: 0.00164783 | r2eff: 0 | hits: 1005 ] steps - 117 28153 [sigma: 34.9113 | error: 0.038978 | coeff: 0.038978 | eff: 1 | fom: 31.343 | r2int: 0.00151775 | r2eff: 0 | hits: 988 ] steps - 118 26351 [sigma: 33.9766 | error: 0.0394687 | coeff: 0.0394687 | eff: 1 | fom: 30.5686 | r2int: 0.00155611 | r2eff: 0 | hits: 937 ] steps - 119 20561 [sigma: 35.0577 | error: 0.0470051 | coeff: 0.0470051 | eff: 1 | fom: 21.5521 | r2int: 0.00220658 | r2eff: 0 | hits: 760 ] steps - 120 16230 [sigma: 30.087 | error: 0.0475885 | coeff: 0.0475885 | eff: 1 | fom: 21.0269 | r2int: 0.00226123 | r2eff: 0 | hits: 659 ] steps - 121 20067 [sigma: 36.3953 | error: 0.048565 | coeff: 0.048565 | eff: 1 | fom: 20.1899 | r2int: 0.00235527 | r2eff: 0 | hits: 717 ] steps - 122 18545 [sigma: 29.5923 | error: 0.0441349 | coeff: 0.0441349 | eff: 1 | fom: 24.4465 | r2int: 0.00194534 | r2eff: 0 | hits: 765 ] steps - 123 20827 [sigma: 36.281 | error: 0.0480873 | coeff: 0.0480873 | eff: 1 | fom: 20.593 | r2int: 0.00230936 | r2eff: 0 | hits: 762 ] steps - 124 15270 [sigma: 30.9118 | error: 0.0509316 | coeff: 0.0509316 | eff: 1 | fom: 18.3572 | r2int: 0.00258993 | r2eff: 0 | hits: 633 ] steps + 21 43 [sigma: 5.17687 | error: 0.269206 | coeff: 0.269206 | eff: 1 | fom: 0.985608 | r2int: 0.0579773 | r2eff: 0 | hits: 5 ] steps + 22 12 [sigma: 5.19615 | error: 0.75 | coeff: 0.75 | eff: 1 | fom: 0.126984 | r2int: 0.375 | r2eff: 0 | hits: 3 ] steps + 23 22 [sigma: 3.88158 | error: 0.432177 | coeff: 0.432177 | eff: 1 | fom: 0.382427 | r2int: 0.155647 | r2eff: 0 | hits: 6 ] steps + 24 79 [sigma: 20.511 | error: 0.580556 | coeff: 0.580556 | eff: 1 | fom: 0.211926 | r2int: 0.269636 | r2eff: 0 | hits: 5 ] steps + 25 94 [sigma: 20.7251 | error: 0.661438 | coeff: 0.661438 | eff: 1 | fom: 0.163265 | r2int: 0.388889 | r2eff: 0 | hits: 9 ] steps + 26 43 [sigma: 4.30011 | error: 0.331671 | coeff: 0.331671 | eff: 1 | fom: 0.649319 | r2int: 0.100005 | r2eff: 0 | hits: 11 ] steps + 27 146 [sigma: 18.2051 | error: 0.431946 | coeff: 0.431946 | eff: 1 | fom: 0.382835 | r2int: 0.17103 | r2eff: 0 | hits: 12 ] steps + 28 111 [sigma: 13.2387 | error: 0.477069 | coeff: 0.477069 | eff: 1 | fom: 0.31384 | r2int: 0.21337 | r2eff: 0 | hits: 16 ] steps + 29 152 [sigma: 10.1878 | error: 0.284362 | coeff: 0.284362 | eff: 1 | fom: 0.883339 | r2int: 0.0763697 | r2eff: 0 | hits: 18 ] steps + 30 147 [sigma: 15.0617 | error: 0.339823 | coeff: 0.339823 | eff: 1 | fom: 0.618538 | r2int: 0.104982 | r2eff: 0 | hits: 11 ] steps + 31 215 [sigma: 8.39462 | error: 0.183136 | coeff: 0.183136 | eff: 1 | fom: 2.12973 | r2int: 0.0320144 | r2eff: 0 | hits: 22 ] steps + 32 303 [sigma: 12.9357 | error: 0.221835 | coeff: 0.221835 | eff: 1 | fom: 1.45148 | r2int: 0.0473882 | r2eff: 0 | hits: 27 ] steps + 33 291 [sigma: 10.2957 | error: 0.180405 | coeff: 0.180405 | eff: 1 | fom: 2.19469 | r2int: 0.0312944 | r2eff: 0 | hits: 26 ] steps + 34 115 [sigma: 4.74311 | error: 0.17978 | coeff: 0.17978 | eff: 1 | fom: 2.20998 | r2int: 0.0306198 | r2eff: 0 | hits: 19 ] steps + 35 69 [sigma: 5.06062 | error: 0.274422 | coeff: 0.274422 | eff: 1 | fom: 0.948494 | r2int: 0.0699283 | r2eff: 0 | hits: 14 ] steps + 36 292 [sigma: 15.1461 | error: 0.24876 | coeff: 0.24876 | eff: 1 | fom: 1.15428 | r2int: 0.0591911 | r2eff: 0 | hits: 23 ] steps + 37 249 [sigma: 9.29571 | error: 0.193984 | coeff: 0.193984 | eff: 1 | fom: 1.8982 | r2int: 0.036236 | r2eff: 0 | hits: 27 ] steps + 38 173 [sigma: 6.61744 | error: 0.175288 | coeff: 0.175288 | eff: 1 | fom: 2.32469 | r2int: 0.0292629 | r2eff: 0 | hits: 21 ] steps + 39 161 [sigma: 8.79566 | error: 0.262003 | coeff: 0.262003 | eff: 1 | fom: 1.04054 | r2int: 0.065661 | r2eff: 0 | hits: 23 ] steps + 40 114 [sigma: 8.67298 | error: 0.313681 | coeff: 0.313681 | eff: 1 | fom: 0.725932 | r2int: 0.0926077 | r2eff: 0 | hits: 17 ] steps + 41 255 [sigma: 12.0865 | error: 0.227313 | coeff: 0.227313 | eff: 1 | fom: 1.38237 | r2int: 0.0494245 | r2eff: 0 | hits: 23 ] steps + 42 284 [sigma: 15.2094 | error: 0.251191 | coeff: 0.251191 | eff: 1 | fom: 1.13205 | r2int: 0.0602289 | r2eff: 0 | hits: 22 ] steps + 43 328 [sigma: 11.6355 | error: 0.197511 | coeff: 0.197511 | eff: 1 | fom: 1.831 | r2int: 0.0377523 | r2eff: 0 | hits: 31 ] steps + 44 58 [sigma: 4.20912 | error: 0.290284 | coeff: 0.290284 | eff: 1 | fom: 0.847668 | r2int: 0.0789982 | r2eff: 0 | hits: 16 ] steps + 45 144 [sigma: 8.23812 | error: 0.228837 | coeff: 0.228837 | eff: 1 | fom: 1.36402 | r2int: 0.0490934 | r2eff: 0 | hits: 16 ] steps + 46 252 [sigma: 17.9904 | error: 0.29435 | coeff: 0.29435 | eff: 1 | fom: 0.824409 | r2int: 0.0815456 | r2eff: 0 | hits: 17 ] steps + 47 291 [sigma: 27.9058 | error: 0.406854 | coeff: 0.406854 | eff: 1 | fom: 0.431515 | r2int: 0.156334 | r2eff: 0 | hits: 18 ] steps + 48 116 [sigma: 5.775 | error: 0.23351 | coeff: 0.23351 | eff: 1 | fom: 1.30997 | r2int: 0.0520484 | r2eff: 0 | hits: 22 ] steps + 49 84 [sigma: 7.14143 | error: 0.340068 | coeff: 0.340068 | eff: 1 | fom: 0.617647 | r2int: 0.108418 | r2eff: 0 | hits: 16 ] steps + 50 554 [sigma: 36.0571 | error: 0.406456 | coeff: 0.406456 | eff: 1 | fom: 0.43236 | r2int: 0.16097 | r2eff: 0 | hits: 39 ] steps + 51 418 [sigma: 16.8924 | error: 0.232152 | coeff: 0.232152 | eff: 1 | fom: 1.32534 | r2int: 0.0522615 | r2eff: 0 | hits: 33 ] steps + 52 666 [sigma: 17.2529 | error: 0.181337 | coeff: 0.181337 | eff: 1 | fom: 2.1722 | r2int: 0.032212 | r2eff: 0 | hits: 49 ] steps + 53 1055 [sigma: 27.3206 | error: 0.210383 | coeff: 0.210383 | eff: 1 | fom: 1.61381 | r2int: 0.0435902 | r2eff: 0 | hits: 66 ] steps + 54 295 [sigma: 16.0247 | error: 0.292527 | coeff: 0.292527 | eff: 1 | fom: 0.834716 | r2int: 0.0826215 | r2eff: 0 | hits: 29 ] steps + 55 617 [sigma: 15.1391 | error: 0.169994 | coeff: 0.169994 | eff: 1 | fom: 2.47174 | r2int: 0.028296 | r2eff: 0 | hits: 48 ] steps + 56 854 [sigma: 13.0263 | error: 0.122976 | coeff: 0.122976 | eff: 1 | fom: 4.72318 | r2int: 0.0148903 | r2eff: 0 | hits: 65 ] steps + 57 1067 [sigma: 13.16 | error: 0.114377 | coeff: 0.114377 | eff: 1 | fom: 5.45998 | r2int: 0.0129301 | r2eff: 0 | hits: 86 ] steps + 58 611 [sigma: 8.03123 | error: 0.107592 | coeff: 0.107592 | eff: 1 | fom: 6.17043 | r2int: 0.0114032 | r2eff: 0 | hits: 67 ] steps + 59 761 [sigma: 27.1802 | error: 0.262461 | coeff: 0.262461 | eff: 1 | fom: 1.03691 | r2int: 0.0676103 | r2eff: 0 | hits: 54 ] steps + 60 448 [sigma: 8.48029 | error: 0.149049 | coeff: 0.149049 | eff: 1 | fom: 3.21525 | r2int: 0.0218573 | r2eff: 0 | hits: 62 ] steps + 61 1158 [sigma: 11.6877 | error: 0.0983743 | coeff: 0.0983743 | eff: 1 | fom: 7.38088 | r2int: 0.00957564 | r2eff: 0 | hits: 95 ] steps + 62 1253 [sigma: 13.0986 | error: 0.0986209 | coeff: 0.0986209 | eff: 1 | fom: 7.34403 | r2int: 0.00961679 | r2eff: 0 | hits: 89 ] steps + 63 1060 [sigma: 13.9977 | error: 0.120306 | coeff: 0.120306 | eff: 1 | fom: 4.93508 | r2int: 0.0142993 | r2eff: 0 | hits: 83 ] steps + 64 883 [sigma: 23.4171 | error: 0.217075 | coeff: 0.217075 | eff: 1 | fom: 1.51583 | r2int: 0.0464183 | r2eff: 0 | hits: 67 ] steps + 65 573 [sigma: 9.70835 | error: 0.133409 | coeff: 0.133409 | eff: 1 | fom: 4.01328 | r2int: 0.017511 | r2eff: 0 | hits: 62 ] steps + 66 1210 [sigma: 14.0795 | error: 0.104724 | coeff: 0.104724 | eff: 1 | fom: 6.51299 | r2int: 0.0108317 | r2eff: 0 | hits: 81 ] steps + 67 1045 [sigma: 13.4292 | error: 0.117077 | coeff: 0.117077 | eff: 1 | fom: 5.21109 | r2int: 0.0135419 | r2eff: 0 | hits: 83 ] steps + 68 746 [sigma: 8.5334 | error: 0.0997218 | coeff: 0.0997218 | eff: 1 | fom: 7.18276 | r2int: 0.00981359 | r2eff: 0 | hits: 76 ] steps + 69 925 [sigma: 25.3673 | error: 0.212426 | coeff: 0.212426 | eff: 1 | fom: 1.5829 | r2int: 0.0443729 | r2eff: 0 | hits: 60 ] steps + 70 474 [sigma: 16.0417 | error: 0.208624 | coeff: 0.208624 | eff: 1 | fom: 1.64113 | r2int: 0.0423787 | r2eff: 0 | hits: 38 ] steps + 71 548 [sigma: 18.2585 | error: 0.253746 | coeff: 0.253746 | eff: 1 | fom: 1.10936 | r2int: 0.063277 | r2eff: 0 | hits: 58 ] steps + 72 1120 [sigma: 25.7722 | error: 0.193893 | coeff: 0.193893 | eff: 1 | fom: 1.89997 | r2int: 0.037065 | r2eff: 0 | hits: 71 ] steps + 73 622 [sigma: 11.2127 | error: 0.143084 | coeff: 0.143084 | eff: 1 | fom: 3.4889 | r2int: 0.0201481 | r2eff: 0 | hits: 63 ] steps + 74 405 [sigma: 14.7652 | error: 0.239066 | coeff: 0.239066 | eff: 1 | fom: 1.24978 | r2int: 0.0558236 | r2eff: 0 | hits: 43 ] steps + 75 3731 [sigma: 36.3366 | error: 0.118881 | coeff: 0.118881 | eff: 1 | fom: 5.05414 | r2int: 0.0140378 | r2eff: 0 | hits: 149 ] steps + 76 4004 [sigma: 31.0995 | error: 0.105929 | coeff: 0.105929 | eff: 1 | fom: 6.36561 | r2int: 0.0111607 | r2eff: 0 | hits: 186 ] steps + 77 4638 [sigma: 27.3603 | error: 0.0872997 | coeff: 0.0872997 | eff: 1 | fom: 9.37231 | r2int: 0.00758643 | r2eff: 0 | hits: 219 ] steps + 78 5289 [sigma: 31.1854 | error: 0.0864564 | coeff: 0.0864564 | eff: 1 | fom: 9.55602 | r2int: 0.00743995 | r2eff: 0 | hits: 215 ] steps + 79 3861 [sigma: 30.4278 | error: 0.102147 | coeff: 0.102147 | eff: 1 | fom: 6.84576 | r2int: 0.0103719 | r2eff: 0 | hits: 168 ] steps + 80 4563 [sigma: 30.6034 | error: 0.094612 | coeff: 0.094612 | eff: 1 | fom: 7.97957 | r2int: 0.00890645 | r2eff: 0 | hits: 199 ] steps + 81 3792 [sigma: 11.5062 | error: 0.0547865 | coeff: 0.0547865 | eff: 1 | fom: 23.7972 | r2int: 0.00299235 | r2eff: 0 | hits: 326 ] steps + 82 4137 [sigma: 12.9621 | error: 0.0558731 | coeff: 0.0558731 | eff: 1 | fom: 22.8805 | r2int: 0.00311199 | r2eff: 0 | hits: 318 ] steps + 83 4574 [sigma: 14.342 | error: 0.0568735 | coeff: 0.0568735 | eff: 1 | fom: 22.0827 | r2int: 0.00322477 | r2eff: 0 | hits: 329 ] steps + 84 5510 [sigma: 34.637 | error: 0.0936624 | coeff: 0.0936624 | eff: 1 | fom: 8.14219 | r2int: 0.00873313 | r2eff: 0 | hits: 222 ] steps + 85 4536 [sigma: 27.3302 | error: 0.0889607 | coeff: 0.0889607 | eff: 1 | fom: 9.0256 | r2int: 0.0078777 | r2eff: 0 | hits: 218 ] steps + 86 4353 [sigma: 12.463 | error: 0.0524812 | coeff: 0.0524812 | eff: 1 | fom: 25.9337 | r2int: 0.00274608 | r2eff: 0 | hits: 336 ] steps + 87 4542 [sigma: 12.7336 | error: 0.053488 | coeff: 0.053488 | eff: 1 | fom: 24.9666 | r2int: 0.0028531 | r2eff: 0 | hits: 364 ] steps + 88 3762 [sigma: 10.8159 | error: 0.0515907 | coeff: 0.0515907 | eff: 1 | fom: 26.8367 | r2int: 0.00265333 | r2eff: 0 | hits: 322 ] steps + 89 5315 [sigma: 30.43 | error: 0.087017 | coeff: 0.087017 | eff: 1 | fom: 9.4333 | r2int: 0.00753918 | r2eff: 0 | hits: 231 ] steps + 90 4934 [sigma: 34.3384 | error: 0.106461 | coeff: 0.106461 | eff: 1 | fom: 6.30223 | r2int: 0.0112854 | r2eff: 0 | hits: 234 ] steps + 91 4253 [sigma: 12.916 | error: 0.0555847 | coeff: 0.0555847 | eff: 1 | fom: 23.1186 | r2int: 0.00308044 | r2eff: 0 | hits: 335 ] steps + 92 4632 [sigma: 12.7753 | error: 0.0500264 | coeff: 0.0500264 | eff: 1 | fom: 28.5413 | r2int: 0.00249503 | r2eff: 0 | hits: 329 ] steps + 93 4338 [sigma: 13.8844 | error: 0.0573441 | coeff: 0.0573441 | eff: 1 | fom: 21.7217 | r2int: 0.00327811 | r2eff: 0 | hits: 321 ] steps + 94 5269 [sigma: 37.0868 | error: 0.10721 | coeff: 0.10721 | eff: 1 | fom: 6.21445 | r2int: 0.0114444 | r2eff: 0 | hits: 232 ] steps + 95 3736 [sigma: 32.0222 | error: 0.105325 | coeff: 0.105325 | eff: 1 | fom: 6.43883 | r2int: 0.0110199 | r2eff: 0 | hits: 151 ] steps + 96 4537 [sigma: 30.826 | error: 0.0996248 | coeff: 0.0996248 | eff: 1 | fom: 7.19676 | r2int: 0.00987894 | r2eff: 0 | hits: 215 ] steps + 97 5604 [sigma: 36.8536 | error: 0.0977637 | coeff: 0.0977637 | eff: 1 | fom: 7.47338 | r2int: 0.00951449 | r2eff: 0 | hits: 221 ] steps + 98 4251 [sigma: 26.8457 | error: 0.0923826 | coeff: 0.0923826 | eff: 1 | fom: 8.36935 | r2int: 0.00849466 | r2eff: 0 | hits: 214 ] steps + 99 4952 [sigma: 43.6869 | error: 0.115364 | coeff: 0.115364 | eff: 1 | fom: 5.36704 | r2int: 0.0132309 | r2eff: 0 | hits: 171 ] steps + 100 16334 [sigma: 36.2289 | error: 0.0546909 | coeff: 0.0546909 | eff: 1 | fom: 23.8804 | r2int: 0.00298617 | r2eff: 0 | hits: 608 ] steps + 101 19930 [sigma: 32.2121 | error: 0.0450239 | coeff: 0.0450239 | eff: 1 | fom: 35.236 | r2int: 0.00202454 | r2eff: 0 | hits: 776 ] steps + 102 21426 [sigma: 35.467 | error: 0.0475456 | coeff: 0.0475456 | eff: 1 | fom: 31.5974 | r2int: 0.00225785 | r2eff: 0 | hits: 825 ] steps + 103 19443 [sigma: 32.4056 | error: 0.0461888 | coeff: 0.0461888 | eff: 1 | fom: 33.481 | r2int: 0.00213063 | r2eff: 0 | hits: 768 ] steps + 104 15272 [sigma: 35.53 | error: 0.0583015 | coeff: 0.0583015 | eff: 1 | fom: 21.0142 | r2int: 0.00339365 | r2eff: 0 | hits: 628 ] steps + 105 19313 [sigma: 34.7725 | error: 0.0484792 | coeff: 0.0484792 | eff: 1 | fom: 30.3921 | r2int: 0.00234699 | r2eff: 0 | hits: 725 ] steps + 106 25992 [sigma: 37.3058 | error: 0.0438642 | coeff: 0.0438642 | eff: 1 | fom: 37.1237 | r2int: 0.00192201 | r2eff: 0 | hits: 934 ] steps + 107 25903 [sigma: 32.7849 | error: 0.0401043 | coeff: 0.0401043 | eff: 1 | fom: 44.4109 | r2int: 0.00160675 | r2eff: 0 | hits: 1004 ] steps + 108 26542 [sigma: 35.3719 | error: 0.041506 | coeff: 0.041506 | eff: 1 | fom: 41.4621 | r2int: 0.00172097 | r2eff: 0 | hits: 970 ] steps + 109 19681 [sigma: 32.8088 | error: 0.0457143 | coeff: 0.0457143 | eff: 1 | fom: 34.1797 | r2int: 0.00208702 | r2eff: 0 | hits: 752 ] steps + 110 19745 [sigma: 30.819 | error: 0.0439816 | coeff: 0.0439816 | eff: 1 | fom: 36.9257 | r2int: 0.00193195 | r2eff: 0 | hits: 794 ] steps + 111 27762 [sigma: 38.5938 | error: 0.0443113 | coeff: 0.0443113 | eff: 1 | fom: 36.3784 | r2int: 0.00196156 | r2eff: 0 | hits: 1016 ] steps + 112 29082 [sigma: 35.6232 | error: 0.0392931 | coeff: 0.0392931 | eff: 1 | fom: 46.2636 | r2int: 0.00154245 | r2eff: 0 | hits: 1029 ] steps + 113 25258 [sigma: 34.2002 | error: 0.041558 | coeff: 0.041558 | eff: 1 | fom: 41.3582 | r2int: 0.00172524 | r2eff: 0 | hits: 942 ] steps + 114 22602 [sigma: 36.9124 | error: 0.0463366 | coeff: 0.0463366 | eff: 1 | fom: 33.2678 | r2int: 0.00214441 | r2eff: 0 | hits: 805 ] steps + 115 21342 [sigma: 39.933 | error: 0.0513104 | coeff: 0.0513104 | eff: 1 | fom: 27.1307 | r2int: 0.00262926 | r2eff: 0 | hits: 752 ] steps + 116 26996 [sigma: 34.5851 | error: 0.0406137 | coeff: 0.0406137 | eff: 1 | fom: 43.3039 | r2int: 0.00164783 | r2eff: 0 | hits: 1005 ] steps + 117 28153 [sigma: 34.9113 | error: 0.038978 | coeff: 0.038978 | eff: 1 | fom: 47.0145 | r2int: 0.00151775 | r2eff: 0 | hits: 988 ] steps + 118 26351 [sigma: 33.9766 | error: 0.0394687 | coeff: 0.0394687 | eff: 1 | fom: 45.8529 | r2int: 0.00155611 | r2eff: 0 | hits: 937 ] steps + 119 20561 [sigma: 35.0577 | error: 0.0470051 | coeff: 0.0470051 | eff: 1 | fom: 32.3282 | r2int: 0.00220658 | r2eff: 0 | hits: 760 ] steps + 120 16230 [sigma: 30.087 | error: 0.0475885 | coeff: 0.0475885 | eff: 1 | fom: 31.5404 | r2int: 0.00226123 | r2eff: 0 | hits: 659 ] steps + 121 20067 [sigma: 36.3953 | error: 0.048565 | coeff: 0.048565 | eff: 1 | fom: 30.2849 | r2int: 0.00235527 | r2eff: 0 | hits: 717 ] steps + 122 18545 [sigma: 29.5923 | error: 0.0441349 | coeff: 0.0441349 | eff: 1 | fom: 36.6697 | r2int: 0.00194534 | r2eff: 0 | hits: 765 ] steps + 123 20827 [sigma: 36.281 | error: 0.0480873 | coeff: 0.0480873 | eff: 1 | fom: 30.8895 | r2int: 0.00230936 | r2eff: 0 | hits: 762 ] steps + 124 15270 [sigma: 30.9118 | error: 0.0509316 | coeff: 0.0509316 | eff: 1 | fom: 25.7 | r2int: 0.00258993 | r2eff: 0 | hits: 633 ] steps ============================================================ closed file mfd_tl_NumberOfSteps.out for output ============================================================ diff --git a/examples/extended/parameterisations/Par01/examplePar01.out b/examples/extended/parameterisations/Par01/examplePar01.out index ae6c05022d0ace1a9836820430e35c4847498a39..b51e7eb009bf9e3492d63ba3bd5d622bf2da3a30 100644 --- a/examples/extended/parameterisations/Par01/examplePar01.out +++ b/examples/extended/parameterisations/Par01/examplePar01.out @@ -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 diff --git a/examples/extended/parameterisations/Par02/examplePar02.out b/examples/extended/parameterisations/Par02/examplePar02.out index 529518b20cd167e00977691719a4494a5dd01a45..b6ba9f8bc39bd44e909b846c789842abe6e55c5d 100644 --- a/examples/extended/parameterisations/Par02/examplePar02.out +++ b/examples/extended/parameterisations/Par02/examplePar02.out @@ -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 diff --git a/examples/extended/parameterisations/Par03/Par03.out b/examples/extended/parameterisations/Par03/Par03.out index 0aa274b518ee7eaa721c5530c58e4ed68c2d1f83..5f17febda7a7f06eb73ab5134012feed5f795122 100644 --- a/examples/extended/parameterisations/Par03/Par03.out +++ b/examples/extended/parameterisations/Par03/Par03.out @@ -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 diff --git a/examples/extended/parameterisations/Par04/examplePar04.out b/examples/extended/parameterisations/Par04/examplePar04.out index 03992e4d092158a79e5e488aa754b0fb0237f298..d4ac616de2c593a90ca275422cb865dd573255b5 100644 --- a/examples/extended/parameterisations/Par04/examplePar04.out +++ b/examples/extended/parameterisations/Par04/examplePar04.out @@ -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 diff --git a/examples/extended/parameterisations/gflash/gflash1/test.out b/examples/extended/parameterisations/gflash/gflash1/test.out index 897546d7bd575fd6d084094b938fcf28204ce0cb..520bdfad461541301a1f265e6e8fd00adb36067d 100644 --- a/examples/extended/parameterisations/gflash/gflash1/test.out +++ b/examples/extended/parameterisations/gflash/gflash1/test.out @@ -16,7 +16,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 @@ -860,9 +860,9 @@ Max 2J for sampling of angular correlations 10 ****************************************** -Internal Real Elapsed Time is: 0.00909082 +Internal Real Elapsed Time is: 0.0056569 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 0 ----- 12165 hits are stored in ExGflashHitsCollection @@ -875,7 +875,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00647951 +Internal Real Elapsed Time is: 0.00379183 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -890,9 +890,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00627197 +Internal Real Elapsed Time is: 0.00347966 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 2 ----- 11829 hits are stored in ExGflashHitsCollection @@ -905,7 +905,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00617934 +Internal Real Elapsed Time is: 0.00381001 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -920,7 +920,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00659359 +Internal Real Elapsed Time is: 0.00368722 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -935,9 +935,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.0060512 +Internal Real Elapsed Time is: 0.00370244 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 5 ----- 11953 hits are stored in ExGflashHitsCollection @@ -950,9 +950,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00615617 +Internal Real Elapsed Time is: 0.00373412 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 6 ----- 11893 hits are stored in ExGflashHitsCollection @@ -965,9 +965,9 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00634044 -Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal Real Elapsed Time is: 0.00380406 +Internal System Elapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 7 ----- 11946 hits are stored in ExGflashHitsCollection @@ -980,7 +980,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00602891 +Internal Real Elapsed Time is: 0.0036579 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -995,7 +995,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00621555 +Internal Real Elapsed Time is: 0.00358365 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -1008,10 +1008,10 @@ Internal GetUserElapsed Time: 0.01 number of event = 10 Graphics systems deleted. Visualization Manager deleting... -Internal Real Elapsed Time /event is: 0.0072675 +Internal Real Elapsed Time /event is: 0.00432309 ****************************************** -Total Real Elapsed Time is: 2.67013 -Total System Elapsed Time: 0.14 -Total GetUserElapsed Time: 2.37 +Total Real Elapsed Time is: 1.50034 +Total System Elapsed Time: 0.09 +Total GetUserElapsed Time: 1.31 ****************************************** diff --git a/examples/extended/parameterisations/gflash/gflash2/test.out b/examples/extended/parameterisations/gflash/gflash2/test.out index a225605a9b4fb8190d21e9d6740da696ff77a5dd..1e68f4679e6ec72be63b7ac4da4819298047a4f7 100644 --- a/examples/extended/parameterisations/gflash/gflash2/test.out +++ b/examples/extended/parameterisations/gflash/gflash2/test.out @@ -16,7 +16,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 @@ -862,7 +862,7 @@ Max 2J for sampling of angular correlations 10 ****************************************** -Internal Real Elapsed Time is: 0.00915987 +Internal Real Elapsed Time is: 0.00649272 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -877,9 +877,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00628868 +Internal Real Elapsed Time is: 0.0037377 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 1 ----- 11954 hits are stored in ExGflashHitsCollection @@ -892,7 +892,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00623154 +Internal Real Elapsed Time is: 0.00342772 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -907,7 +907,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00646423 +Internal Real Elapsed Time is: 0.00347269 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -922,7 +922,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00630324 +Internal Real Elapsed Time is: 0.00363357 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -937,9 +937,9 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.0063266 +Internal Real Elapsed Time is: 0.00346036 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 5 ----- 11958 hits are stored in ExGflashHitsCollection @@ -952,7 +952,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00643062 +Internal Real Elapsed Time is: 0.00385562 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -967,7 +967,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00643238 +Internal Real Elapsed Time is: 0.00348421 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -982,7 +982,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00627567 +Internal Real Elapsed Time is: 0.00348102 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -997,9 +997,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00626544 +Internal Real Elapsed Time is: 0.00349447 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 9 ----- 11967 hits are stored in ExGflashHitsCollection @@ -1010,10 +1010,10 @@ Internal GetUserElapsed Time: 0.01 number of event = 10 Graphics systems deleted. Visualization Manager deleting... -Internal Real Elapsed Time /event is: 0.00735314 +Internal Real Elapsed Time /event is: 0.00428223 ****************************************** -Total Real Elapsed Time is: 2.61936 -Total System Elapsed Time: 0.13 -Total GetUserElapsed Time: 2.33 +Total Real Elapsed Time is: 1.55633 +Total System Elapsed Time: 0.12 +Total GetUserElapsed Time: 1.34 ****************************************** diff --git a/examples/extended/parameterisations/gflash/gflash3/test.out b/examples/extended/parameterisations/gflash/gflash3/test.out index e1ed4132f6fd4afe4c01fa3fd4f0442022b19692..abed3cbd3c3660868fc4805277749baa17787643 100644 --- a/examples/extended/parameterisations/gflash/gflash3/test.out +++ b/examples/extended/parameterisations/gflash/gflash3/test.out @@ -16,7 +16,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 @@ -839,9 +839,9 @@ Max 2J for sampling of angular correlations 10 ****************************************** -Internal Real Elapsed Time is: 0.00917481 -Internal System Elapsed Time: 0.01 -Internal GetUserElapsed Time: 0 +Internal Real Elapsed Time is: 0.00557047 +Internal System Elapsed Time: 0 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 0 ----- 12125 hits are stored in ExGflashHitsCollection @@ -854,9 +854,9 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00671907 +Internal Real Elapsed Time is: 0.00360352 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 1 ----- 11954 hits are stored in ExGflashHitsCollection @@ -869,7 +869,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00609086 +Internal Real Elapsed Time is: 0.00347984 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -884,7 +884,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00632969 +Internal Real Elapsed Time is: 0.00352701 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -899,9 +899,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00619852 +Internal Real Elapsed Time is: 0.00362603 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 4 ----- 11988 hits are stored in ExGflashHitsCollection @@ -914,7 +914,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00631054 +Internal Real Elapsed Time is: 0.00355562 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -929,7 +929,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00646493 +Internal Real Elapsed Time is: 0.0036316 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -944,9 +944,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.0065038 +Internal Real Elapsed Time is: 0.0035182 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 7 ----- 11987 hits are stored in ExGflashHitsCollection @@ -959,7 +959,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.00643195 +Internal Real Elapsed Time is: 0.00346151 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0 ****************************************** @@ -974,7 +974,7 @@ Internal GetUserElapsed Time: 0 ****************************************** -Internal Real Elapsed Time is: 0.00628319 +Internal Real Elapsed Time is: 0.00354113 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -987,10 +987,10 @@ Internal GetUserElapsed Time: 0.01 number of event = 10 Graphics systems deleted. Visualization Manager deleting... -Internal Real Elapsed Time /event is: 0.00738971 +Internal Real Elapsed Time /event is: 0.00416833 ****************************************** -Total Real Elapsed Time is: 2.63587 -Total System Elapsed Time: 0.14 -Total GetUserElapsed Time: 2.35 +Total Real Elapsed Time is: 1.56107 +Total System Elapsed Time: 0.1 +Total GetUserElapsed Time: 1.33 ****************************************** diff --git a/examples/extended/parameterisations/gflash/gflasha/test.out b/examples/extended/parameterisations/gflash/gflasha/test.out index a0ea916ce4106317dda79e52909f437927fd919d..1aced12bd2be3f22ed86e49d2895f984212980e7 100644 --- a/examples/extended/parameterisations/gflash/gflasha/test.out +++ b/examples/extended/parameterisations/gflash/gflasha/test.out @@ -16,7 +16,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 @@ -860,9 +860,9 @@ Max 2J for sampling of angular correlations 10 ... open analysis file : gflash01.root - done ****************************************** -Run Real Elapsed Time is: 0.505167 -Run System Elapsed Time: 0.01 -Run GetUserElapsed Time: 0.5 +Run Real Elapsed Time is: 0.308874 +Run System Elapsed Time: 0 +Run GetUserElapsed Time: 0.31 ****************************************** number of event = 100 ... write file : gflash01.root - done @@ -873,9 +873,9 @@ number of event = 100 ... open analysis file : gflash00.root - done ****************************************** -Run Real Elapsed Time is: 25.9718 -Run System Elapsed Time: 0 -Run GetUserElapsed Time: 25.82 +Run Real Elapsed Time is: 15.9412 +Run System Elapsed Time: 0.01 +Run GetUserElapsed Time: 15.91 ****************************************** number of event = 100 ... write file : gflash00.root - done @@ -884,7 +884,7 @@ Graphics systems deleted. Visualization Manager deleting... ****************************************** -Total Real Elapsed Time is: 32.9833 -Total System Elapsed Time: 0.13 -Total GetUserElapsed Time: 28.64 +Total Real Elapsed Time is: 18.3026 +Total System Elapsed Time: 0.12 +Total GetUserElapsed Time: 17.49 ****************************************** diff --git a/examples/extended/persistency/P01/p01-write.out b/examples/extended/persistency/P01/p01-write.out index 6c66d1798b7797f1cf6c3188e4bcfe740067d907..4eb884eff943ffc0ebfd5d00dfe189cb8d7e491f 100644 --- a/examples/extended/persistency/P01/p01-write.out +++ b/examples/extended/persistency/P01/p01-write.out @@ -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 @@ -2282,7 +2282,7 @@ writing Event_1 Run terminated. Run Summary Number of events processed : 1 - User=0.440000s Real=223.033250s Sys=0.240000s + User=0.150000s Real=4.466915s Sys=0.190000s Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume This region is in the mass world. @@ -2688,13 +2688,13 @@ writing Event_4 Run terminated. Run Summary Number of events processed : 3 - User=0.010000s Real=0.010236s Sys=0.000000s + User=0.010000s Real=0.003265s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:1) -UserDetectorConstruction deleted 0x116b740 -UserPhysicsList deleted 0x116c870 +UserDetectorConstruction deleted 0x1cb6b30 +UserPhysicsList deleted 0x1cb7c60 UserActionInitialization deleted 0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 diff --git a/examples/extended/persistency/P03/batch.out b/examples/extended/persistency/P03/batch.out index 4cc51ba29dea6797a8ae617abb771a1404a9a274..357111f6ec23b715bb85fdf9efbd196ae7d94225 100644 --- a/examples/extended/persistency/P03/batch.out +++ b/examples/extended/persistency/P03/batch.out @@ -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 @@ -520,12 +520,12 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.000431s Sys=0.000000s + User=0.000000s Real=0.000355s Sys=0.000000s G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0xed68e0 -UserPhysicsList deleted 0xed73b8 -UserActionInitialization deleted 0xf471d0 +UserDetectorConstruction deleted 0x1570cb0 +UserPhysicsList deleted 0x1571788 +UserActionInitialization deleted 0x15e15a0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/persistency/gdml/G01/g01.out b/examples/extended/persistency/gdml/G01/g01.out index ba7ef9644a6678c05b4a82fcdaf11e27c611b74b..2c12742677b12116ee0522cbf81376aee25f425c 100644 --- a/examples/extended/persistency/gdml/G01/g01.out +++ b/examples/extended/persistency/gdml/G01/g01.out @@ -48,7 +48,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 @@ -1242,7 +1242,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.004551s Sys=0.000000s + User=0.000000s Real=0.002609s Sys=0.000000s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1609,7 +1609,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.003786s Sys=0.000000s + User=0.000000s Real=0.001981s Sys=0.000000s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 @@ -1649,7 +1649,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.001701s Sys=0.000000s + User=0.000000s Real=0.000952s Sys=0.000000s /gun/direction 0.3 -0.2 1 /run/beamOn 20 @@ -1688,7 +1688,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.001671s Sys=0.000000s + User=0.000000s Real=0.000883s Sys=0.000000s /gun/direction -0.3 0.2 0.6 /run/beamOn 20 @@ -1727,14 +1727,14 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.001676s Sys=0.000000s + User=0.000000s Real=0.000928s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:4) -UserDetectorConstruction deleted 0x25adf90 -UserPhysicsList deleted 0x25ae430 -UserActionInitialization deleted 0x273e2d0 +UserDetectorConstruction deleted 0x8bb660 +UserPhysicsList deleted 0x8bbb00 +UserActionInitialization deleted 0xa4b9a0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/persistency/gdml/G04/g04.out b/examples/extended/persistency/gdml/G04/g04.out index 1c8527d60cc9b305f6de9c31425cb1e9230deffb..6b7394a3a1da0a5ae8edbe82d15485a8bdc0ad5d 100644 --- a/examples/extended/persistency/gdml/G04/g04.out +++ b/examples/extended/persistency/gdml/G04/g04.out @@ -22,7 +22,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 @@ -1088,7 +1088,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.001205s Sys=0.000000s + User=0.000000s Real=0.001018s Sys=0.000000s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1340,7 +1340,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000822s Sys=0.000000s + User=0.000000s Real=0.000702s Sys=0.000000s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 @@ -1393,7 +1393,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000104s Sys=0.000000s + User=0.000000s Real=0.000133s Sys=0.000000s /gun/direction 0.3 -0.2 1 /run/beamOn 20 @@ -1445,7 +1445,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000107s Sys=0.000000s + User=0.000000s Real=0.000090s Sys=0.000000s /gun/direction -0.3 0.2 0.6 /run/beamOn 20 @@ -1497,14 +1497,14 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000103s Sys=0.000000s + User=0.000000s Real=0.000112s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:4) -UserDetectorConstruction deleted 0x19fc7c0 -UserPhysicsList deleted 0x19fcb40 -UserActionInitialization deleted 0x1b8c5e0 +UserDetectorConstruction deleted 0x1149e90 +UserPhysicsList deleted 0x114a210 +UserActionInitialization deleted 0x12d9cb0 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out index cda690aca69fca9698a0ba4e2e3e3eeabfb524f5..0c5c4c8d05e11a71003cbdaea8914db38a4b341b 100644 --- a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out +++ b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out @@ -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 diff --git a/examples/extended/physicslists/factory/factory-environment.out b/examples/extended/physicslists/factory/factory-environment.out index 9ace79525136ad517d2cb723be92fd151eb3cacb..5beb4128202e2bfa7e802547f733f497cba54bfe 100644 --- a/examples/extended/physicslists/factory/factory-environment.out +++ b/examples/extended/physicslists/factory/factory-environment.out @@ -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 diff --git a/examples/extended/physicslists/factory/factory.out b/examples/extended/physicslists/factory/factory.out index 040b8152f302e461935c73fb71b351299910c34f..597da6e1556e67315e1b81c58046717f00765fa2 100644 --- a/examples/extended/physicslists/factory/factory.out +++ b/examples/extended/physicslists/factory/factory.out @@ -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 diff --git a/examples/extended/physicslists/genericPL/genericPL.out b/examples/extended/physicslists/genericPL/genericPL.out index 8b73f982f2bfdb0c84ce7c4714de2ff112873274..c91fb052370b0d55acee64d213b3602625e4a572 100644 --- a/examples/extended/physicslists/genericPL/genericPL.out +++ b/examples/extended/physicslists/genericPL/genericPL.out @@ -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 diff --git a/examples/extended/polarisation/Pol01/pol01.out b/examples/extended/polarisation/Pol01/pol01.out index 73f34532913c2284e4617fc54e55b033bc91c352..467c6abab95df4f8c9c547023d3e432fef48fc27 100644 --- a/examples/extended/polarisation/Pol01/pol01.out +++ b/examples/extended/polarisation/Pol01/pol01.out @@ -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 @@ -221,7 +221,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.060000s Real=0.063117s Sys=0.000000s + User=0.030000s Real=0.033533s Sys=0.000000s The run consists of 10000 gamma of 10 MeV through 1.75 mm of G4_Fe (density: 7.874 g/cm3 ) diff --git a/examples/extended/radioactivedecay/Activation/Activation.out b/examples/extended/radioactivedecay/Activation/Activation.out index ede27103b8910245913d05c2a444dfa07ff002b1..029789918b63381e8fc3e6fc908db15ea63da545 100644 --- a/examples/extended/radioactivedecay/Activation/Activation.out +++ b/examples/extended/radioactivedecay/Activation/Activation.out @@ -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 @@ -182,7 +182,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.090000s Real=0.206521s Sys=0.000000s + User=0.060000s Real=0.052622s Sys=0.000000s The run is 1000 neutron of 25 meV through 1 cm of G4_Co (density: 8.9 g/cm3 ) diff --git a/examples/extended/radioactivedecay/rdecay01/rdecay01.out b/examples/extended/radioactivedecay/rdecay01/rdecay01.out index 887df51ed99e7714887e25cb0587c4b6aeaa079c..a28ec87a73d530068f58490302d00011dcb8a30f 100644 --- a/examples/extended/radioactivedecay/rdecay01/rdecay01.out +++ b/examples/extended/radioactivedecay/rdecay01/rdecay01.out @@ -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 @@ -116,7 +116,7 @@ Step# X Y Z KineE dEStep StepLeng T Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001262s Sys=0.000000s + User=0.000000s Real=0.000974s Sys=0.000000s ======================== run summary ====================== The run was 1 Co60 of 0 eV @@ -190,7 +190,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.860000s Real=0.865628s Sys=0.000000s + User=0.390000s Real=0.387319s Sys=0.000000s ======================== run summary ====================== The run was 100000 Co60 of 0 eV @@ -264,7 +264,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=2.720000s Real=2.724927s Sys=0.000000s + User=0.980000s Real=0.987309s Sys=0.000000s ======================== run summary ====================== The run was 100000 Co60 of 0 eV @@ -346,7 +346,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=1.470000s Real=1.524539s Sys=0.040000s + User=0.720000s Real=0.742043s Sys=0.020000s ======================== run summary ====================== The run was 100000 Ca47 of 0 eV diff --git a/examples/extended/radioactivedecay/rdecay02/rdecay02.out b/examples/extended/radioactivedecay/rdecay02/rdecay02.out index a54fadebd12315cb0604709c21d0f9323764add2..ae048109cc90a9b47ab161d06782915f91888fae 100644 --- a/examples/extended/radioactivedecay/rdecay02/rdecay02.out +++ b/examples/extended/radioactivedecay/rdecay02/rdecay02.out @@ -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 @@ -831,7 +831,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.620000s Real=0.721321s Sys=0.000000s + User=0.350000s Real=0.355993s Sys=0.000000s The run is 10000 Ne24 of 0 eV through : Target : Length = 1 cm Radius = 5 mm Material = G4_CESIUM_IODIDE diff --git a/examples/extended/runAndEvent/RE01/sample.out b/examples/extended/runAndEvent/RE01/sample.out index 6af3fa034eb851252f68d1f6e9cbd769017902cf..77380a290355a89c0f69bd19c54c70cbc8464d86 100644 --- a/examples/extended/runAndEvent/RE01/sample.out +++ b/examples/extended/runAndEvent/RE01/sample.out @@ -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 diff --git a/examples/extended/runAndEvent/RE02/run.out b/examples/extended/runAndEvent/RE02/run.out index c99496d95570eb153552f99236c1ee1de58d99b5..d61e39adc1735842f8a6cb31d1bf3d27eae6ba9f 100644 --- a/examples/extended/runAndEvent/RE02/run.out +++ b/examples/extended/runAndEvent/RE02/run.out @@ -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 @@ -1373,7 +1373,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001903s Sys=0.000000s + User=0.000000s Real=0.001490s Sys=0.000000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 10 PrimitiveScorer RUN PhantomSD,protonEDep @@ -1604,9 +1604,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x15c6c50 -UserPhysicsList deleted 0x15c6cc0 -UserActionInitialization deleted 0x17d7d70 +UserDetectorConstruction deleted 0x190b020 +UserPhysicsList deleted 0x190b090 +UserActionInitialization deleted 0x1b1bd70 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/runAndEvent/RE02/run3.out b/examples/extended/runAndEvent/RE02/run3.out index 819e286a761bd207121c5ba81661c611436d6cd6..065e1fdbd98761fa8986482fac01396b249df7e0 100644 --- a/examples/extended/runAndEvent/RE02/run3.out +++ b/examples/extended/runAndEvent/RE02/run3.out @@ -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 @@ -1053,7 +1053,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=7.990000s Real=8.128986s Sys=0.040000s + User=5.180000s Real=5.213054s Sys=0.030000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 50804 PrimitiveScorer RUN PhantomSD,protonEDep @@ -1284,9 +1284,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x1165c50 -UserPhysicsList deleted 0x1165cc0 -UserActionInitialization deleted 0x1376d70 +UserDetectorConstruction deleted 0x2706020 +UserPhysicsList deleted 0x2706090 +UserActionInitialization deleted 0x2916d70 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/runAndEvent/RE02/run4.out b/examples/extended/runAndEvent/RE02/run4.out index 507b2932a1cf419b2a2376afc1a2e06ac4784a7d..c1b616674150e8b35560cfa3e686c27fd130a25c 100644 --- a/examples/extended/runAndEvent/RE02/run4.out +++ b/examples/extended/runAndEvent/RE02/run4.out @@ -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 @@ -1055,7 +1055,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=0.100000s Real=0.100813s Sys=0.000000s + User=0.060000s Real=0.057423s Sys=0.000000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 81 PrimitiveScorer RUN PhantomSD,protonEDep @@ -1286,9 +1286,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x1d4bc50 -UserPhysicsList deleted 0x1d4bcc0 -UserActionInitialization deleted 0x1f5cd70 +UserDetectorConstruction deleted 0x1290020 +UserPhysicsList deleted 0x1290090 +UserActionInitialization deleted 0x14a0d70 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/runAndEvent/RE03/run.out b/examples/extended/runAndEvent/RE03/run.out index 5b39c0d19c4406dce2e25c249d8394b406c6f873..a7dc991223f8b66425352e152b2fafc1a6d5eaaf 100644 --- a/examples/extended/runAndEvent/RE03/run.out +++ b/examples/extended/runAndEvent/RE03/run.out @@ -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 @@ -888,7 +888,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 2000 - User=3.980000s Real=3.995001s Sys=0.000000s + User=2.540000s Real=2.541976s Sys=0.000000s /control/doifInteractive /vis/enable # ######################################## @@ -909,9 +909,9 @@ Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. Deleting G4Run (id:0) -UserDetectorConstruction deleted 0x2708ab0 -UserPhysicsList deleted 0x2704e00 -UserActionInitialization deleted 0x28c3b90 +UserDetectorConstruction deleted 0x1b32e90 +UserPhysicsList deleted 0x1b2f1e0 +UserActionInitialization deleted 0x1cedf70 UserWorkerInitialization deleted 0 UserWorkerThreadInitialization deleted 0 UserRunAction deleted. diff --git a/examples/extended/runAndEvent/RE04/exampleRE04.out b/examples/extended/runAndEvent/RE04/exampleRE04.out index 9f8cbbd3856e7230224d8c12680e2b2ca99b908f..8318266d0fb3948f4257b28c623c967dd1c0913e 100644 --- a/examples/extended/runAndEvent/RE04/exampleRE04.out +++ b/examples/extended/runAndEvent/RE04/exampleRE04.out @@ -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 diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.out b/examples/extended/runAndEvent/RE05/exampleRE05.out index 08c203965b46c2ae3c3370b7424ee551a2bbf9e4..1e0c671c262d46ca55ad17b0c85cce4828d338e7 100644 --- a/examples/extended/runAndEvent/RE05/exampleRE05.out +++ b/examples/extended/runAndEvent/RE05/exampleRE05.out @@ -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 diff --git a/examples/extended/runAndEvent/RE06/exampleRE06.out b/examples/extended/runAndEvent/RE06/exampleRE06.out index 7acf8bf7236f65603dcf528bcfaa2268cbb83df7..59ae4f0f7ad1f9809d8fc4b28f800c27f709c553 100644 --- a/examples/extended/runAndEvent/RE06/exampleRE06.out +++ b/examples/extended/runAndEvent/RE06/exampleRE06.out @@ -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 @@ -994,7 +994,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.820000s Real=1.089794s Sys=0.260000s + User=0.540000s Real=0.995063s Sys=0.460000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -1277,7 +1277,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=1.670000s Real=2.157904s Sys=0.480000s + User=1.120000s Real=2.014252s Sys=0.900000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -1591,7 +1591,7 @@ Index : 12 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.190000s Real=0.243882s Sys=0.050000s + User=0.120000s Real=0.224280s Sys=0.100000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -1934,7 +1934,7 @@ Index : 12 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.320000s Real=0.418699s Sys=0.090000s + User=0.210000s Real=0.387092s Sys=0.170000s ############################################################ Run Summary - Number of events : 10 ############################################################ diff --git a/examples/extended/runAndEvent/RE07/processes.out b/examples/extended/runAndEvent/RE07/processes.out index 192ecfc48e31b82bda7ae44de0f0b7c6d7427289..a811a6d153000b3bb61e304e11853f98af5d7bb5 100644 --- a/examples/extended/runAndEvent/RE07/processes.out +++ b/examples/extended/runAndEvent/RE07/processes.out @@ -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 diff --git a/examples/extended/runAndEvent/RE07/specialized.out b/examples/extended/runAndEvent/RE07/specialized.out index f76cce392eedcca85cd459dea10ff84ab7f14cae..3aa8f8606701d590b73326504952ec20b7ba3e6c 100644 --- a/examples/extended/runAndEvent/RE07/specialized.out +++ b/examples/extended/runAndEvent/RE07/specialized.out @@ -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 diff --git a/examples/extended/runAndEvent/RE07/tracking.out b/examples/extended/runAndEvent/RE07/tracking.out index ac2a58e3dae1c9a1b1f692c3cb95b4954b57a6db..6de7e3fa3c6cf829cbbb58956f10d5e206eccb56 100644 --- a/examples/extended/runAndEvent/RE07/tracking.out +++ b/examples/extended/runAndEvent/RE07/tracking.out @@ -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 diff --git a/examples/extended/visualization/movies/movies.out b/examples/extended/visualization/movies/movies.out index f915fc7c2ca4d8ec6674a880036c89317d86f534..5e0e68eb3170e16b3b73644fad4b78359b2c682c 100644 --- a/examples/extended/visualization/movies/movies.out +++ b/examples/extended/visualization/movies/movies.out @@ -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 diff --git a/examples/extended/visualization/userVisAction/userVisAction.out b/examples/extended/visualization/userVisAction/userVisAction.out index 87704be218f2a7ed4f2bd806475ffe389405f711..396042fa1c189fbf81c6bae35f4907717d43f442 100644 --- a/examples/extended/visualization/userVisAction/userVisAction.out +++ b/examples/extended/visualization/userVisAction/userVisAction.out @@ -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 diff --git a/packaging/rpm/geant4.spec b/packaging/rpm/geant4.spec index e4e5d8d3c6cc6fcef4979352ed59a57b544abff4..9bef8f8bbfee318d4404efbc930176a78c8ab28e 100644 --- a/packaging/rpm/geant4.spec +++ b/packaging/rpm/geant4.spec @@ -1,4 +1,4 @@ -%global geant4_version 11.3.1 +%global geant4_version 11.3.2 %global NEUTRONHPDATA G4NDL.4.7.1 %global LEDATA G4EMLOW.8.6.1 @@ -264,6 +264,9 @@ tar xzf %{SOURCE15} -C %{buildroot}/%{_datadir}/%{name}/data %endif %changelog +* Fri Apr 25 2025 Gabriele Cosmo <Gabriele.Cosmo@cern.ch> - 11.3.2 +- Update to version 11.3.2 + * Fri Mar 21 2025 Gabriele Cosmo <Gabriele.Cosmo@cern.ch> - 11.3.1 - Update to version 11.3.1 diff --git a/source/externals/g4tools/History b/source/externals/g4tools/History index a0c32e52fbc91fa22ff792ca1578634a39aa489a..1c7a0594d46b3f30aa09346a0cac12e41729f4ef 100644 --- a/source/externals/g4tools/History +++ b/source/externals/g4tools/History @@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-07 Gabriele Cosmo (g4tools-V11-02-06) +- Fixed compilation errors on Windows in glarea header, triggered when enabling + GL WIN32 support, as reported in problem report #2599. + ## 2024-10-24 Guy Barrand (g4tools-V11-02-05) - wroot/file: in compress_buffer(): to fix bugzilla-2625: arrange to have a greater output buffer size when using deflate(), and check at end, that in case of some diff --git a/source/externals/g4tools/include/toolx/Windows/glarea b/source/externals/g4tools/include/toolx/Windows/glarea index 2bb31d7f7241f6135928a71090d2f6ee195c6002..71b1242e3423b4f7667da18c0d38061fdeca0be7 100644 --- a/source/externals/g4tools/include/toolx/Windows/glarea +++ b/source/externals/g4tools/include/toolx/Windows/glarea @@ -50,8 +50,8 @@ class glarea { wc.hIcon = LoadIcon(NULL,IDI_APPLICATION); wc.hCursor = LoadCursor(NULL,IDC_ARROW); wc.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); - wc.lpszMenuName = s_class().c_str(); - wc.lpszClassName = s_class().c_str(); + wc.lpszMenuName = (PTSTR)s_class().c_str(); + wc.lpszClassName = (PTSTR)s_class().c_str(); ::RegisterClass(&wc); s_done = true; } @@ -79,7 +79,7 @@ public: ::GetClientRect(m_parent,&rect); //printf("debug : glarea : ca : %d %d\n",rect.right-rect.left,rect.bottom-rect.top); //toolx::log_file::get().writef("debug : glarea : ca : %d %d\n",rect.right-rect.left,rect.bottom-rect.top); - m_hwnd = ::CreateWindow(s_class().c_str(), + m_hwnd = ::CreateWindow((PTSTR)s_class().c_str(), NULL, WS_CHILD | WS_VISIBLE, 0,0, @@ -135,7 +135,7 @@ protected: register_class(); RECT rect; ::GetClientRect(m_parent,&rect); - m_hwnd = ::CreateWindow(s_class().c_str(), + m_hwnd = ::CreateWindow((PTSTR)s_class().c_str(), NULL, WS_CHILD | WS_VISIBLE, 0,0, diff --git a/source/externals/zlib/History b/source/externals/zlib/History index ca2ecf13faf81627ae6427ec163297fa74260e0d..195b151efe4ce892a7acb4a8a73e637c555e9869 100644 --- a/source/externals/zlib/History +++ b/source/externals/zlib/History @@ -1,8 +1,14 @@ # Category zlib History 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! +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-04-01 Gabriele Cosmo (zlib-V11-02-00) +- Fix in zutil.h to remove redundant block on macOS and allow for porting + on macOS-15.4 and clang-17.0.0. ## 2023-06-15 Ben Morgan (zlib-V11-01-00) - Import zlib 1.2.13 sources, retaining prior Geant4 patches. diff --git a/source/externals/zlib/include/zutil.h b/source/externals/zlib/include/zutil.h index 0bc7f4ecd1c0e53b147dd3f2f231d119adfbb17c..17a3f3d5890c9ecb1f07985da0e388d6e465cc40 100644 --- a/source/externals/zlib/include/zutil.h +++ b/source/externals/zlib/include/zutil.h @@ -137,19 +137,6 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ # endif #endif -#if defined(MACOS) || defined(TARGET_OS_MAC) -# define OS_CODE 7 -# ifndef Z_SOLO -# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os -# include <unix.h> /* for fdopen */ -# else -# ifndef fdopen -# define fdopen(fd,mode) NULL /* No fdopen() */ -# endif -# endif -# endif -#endif - #ifdef __acorn # define OS_CODE 13 #endif diff --git a/source/geometry/management/History b/source/geometry/management/History index 070a68b8c5531244813dfe12d4f7456ae5293bb8..12a9eed17729bd6bc69c3493d65745ebe64d4883 100644 --- a/source/geometry/management/History +++ b/source/geometry/management/History @@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-03-29 Gabriele Cosmo (geommng-V11-02-08) +- In G4GeometryManager, removed redundant declaration of method + ChooseSequentialOptimisation(). + ## 2025-03-05 Gabriele Cosmo (geommng-V11-02-07) - Applied clang-tidy to G4GeometryManager and some code cleanup. Moved additional checks/warnings under verbosity level. diff --git a/source/geometry/management/include/G4GeometryManager.hh b/source/geometry/management/include/G4GeometryManager.hh index 8a5d1d3eb82383656661ab99e1618a6660807f75..0c0c574203444312ced598f1b2c552cca728e061 100644 --- a/source/geometry/management/include/G4GeometryManager.hh +++ b/source/geometry/management/include/G4GeometryManager.hh @@ -94,9 +94,6 @@ class G4GeometryManager // Detailed method for user to request parallel Optimisation // (if verbosity is required). Calling this is enough to ask for it. // It will be used if Geant4 is built with MT/tasks. - - void ChooseSequentialOptimisation(G4bool verbose = false); - // Simple way to avoid parallel optimisation. G4bool IsParallelOptimisationConfigured(); // Check whether parallel optimisation was requested. diff --git a/source/geometry/management/src/G4GeometryManager.cc b/source/geometry/management/src/G4GeometryManager.cc index b8fa5a6abd967d0360eeb82d8482679ce42fee2d..f2f21ddfae81c8ea2d886aa27963d30af14a7c78 100644 --- a/source/geometry/management/src/G4GeometryManager.cc +++ b/source/geometry/management/src/G4GeometryManager.cc @@ -195,15 +195,6 @@ G4GeometryManager* G4GeometryManager::GetInstanceIfExist() return fgInstance; } -// *************************************************************************** -// Simplest user method to request parallel optimisation. -// *************************************************************************** -// -void G4GeometryManager::OptimiseInParallel( G4bool val ) -{ - RequestParallelOptimisation(val); -} - // *************************************************************************** // Report about Voxel(isation) of a logical volume. // *************************************************************************** @@ -476,6 +467,15 @@ void G4GeometryManager::RequestParallelOptimisation(G4bool flag, G4bool verbose) } } +// *************************************************************************** +// Simplest user method to request parallel optimisation. +// *************************************************************************** +// +void G4GeometryManager::OptimiseInParallel( G4bool val ) +{ + RequestParallelOptimisation(val); +} + // *************************************************************************** // Setup up state to enable parallel optimisation by workers. // *************************************************************************** diff --git a/source/global/History b/source/global/History index aa43e193cb80c37f4a6a632277eca1ee973fb5ee..c25a187b0fd25a36647b66fcfc2868fa015ad316 100644 --- a/source/global/History +++ b/source/global/History @@ -6,6 +6,13 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-09 Gabriele Cosmo (global-V11-02-28) +- Updated tag IDs for geant4-11-03-patch-02. + +## 2025-04-06 Alvaro Tolosa-Delgado +- Add Scintillation, Cherenkov, Transition Radiation and Synchrotron Radiation + processes to G4PhysicsModelCatalog::Initialize() + ## 2025-03-21 Gabriele Cosmo (global-V11-02-27) - Updated tag IDs for geant4-11-03-patch-01. diff --git a/source/global/management/include/G4Version.hh b/source/global/management/include/G4Version.hh index a6849f208984dfe21eb85b8534a899487454df19..25845f105c79315c7ed72ff60f4ee3e60dc3cb5a 100644 --- a/source/global/management/include/G4Version.hh +++ b/source/global/management/include/G4Version.hh @@ -43,7 +43,7 @@ /// |--> patch number (single digit) /// #ifndef G4VERSION_NUMBER - #define G4VERSION_NUMBER 1131 + #define G4VERSION_NUMBER 1132 #endif /// @def G4VERSION_REFERENCE_TAG @@ -59,7 +59,7 @@ #endif #ifndef G4VERSION_TAG - #define G4VERSION_TAG "$Name: geant4-11-03-patch-01 $" + #define G4VERSION_TAG "$Name: geant4-11-03-patch-02 $" #endif // as variables @@ -68,10 +68,10 @@ #include "G4Types.hh" #ifdef G4MULTITHREADED -static const G4String G4Version = "$Name: geant4-11-03-patch-01 [MT]$"; +static const G4String G4Version = "$Name: geant4-11-03-patch-02 [MT]$"; #else -static const G4String G4Version = "$Name: geant4-11-03-patch-01 $"; +static const G4String G4Version = "$Name: geant4-11-03-patch-02 $"; #endif -static const G4String G4Date = "(21-March-2025)"; +static const G4String G4Date = "(25-April-2025)"; #endif diff --git a/source/global/management/src/G4PhysicsModelCatalog.cc b/source/global/management/src/G4PhysicsModelCatalog.cc index dd120ae12732af46f99c3f7152d00ad6a9a72134..685645ad22d43e990240eb2664ea37e3976d1b0f 100644 --- a/source/global/management/src/G4PhysicsModelCatalog.cc +++ b/source/global/management/src/G4PhysicsModelCatalog.cc @@ -602,6 +602,14 @@ void G4PhysicsModelCatalog::Initialize() { // Class: G4NuDEXNeutronCapture InsertModel( 25300, "model_nuDEX_neutronCapture" ); + // Optical processes + InsertModel( 12020, "model_Cerenkov" ); + InsertModel( 12030, "model_Scintillation" ); + InsertModel( 12040, "model_SynRad" ); + InsertModel( 12050, "model_SynchrotronRadiation" ); + InsertModel( 12060, "model_XTRenergyLoss" ); + InsertModel( 12070, "model_XrayTR" ); + // ... SanityCheck(); diff --git a/source/parameterisations/channeling/History b/source/parameterisations/channeling/History index 05b482d7b7e7ba933228c57c9718268e7ec9a37b..8668b7f6162476e01233ff19532ea59ddcb4bc10 100644 --- a/source/parameterisations/channeling/History +++ b/source/parameterisations/channeling/History @@ -6,6 +6,11 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-06 Dmitri Konstantinov (fastsimchanneling-V11-02-05) +- In G4VChannelingFastSimCrystalData::IonizationLosses(), fixed bug + in the electron ionization loss correction formula. + Issue was spotted by PVS-Studio static analysis. + ## 2024-11-11 Gabriele Cosmo (fastsimchanneling-V11-02-04) - Fixed compilation warnings on macOS/XCode for implicit type conversions in G4CoherentPairProduction. diff --git a/source/parameterisations/channeling/src/G4VChannelingFastSimCrystalData.cc b/source/parameterisations/channeling/src/G4VChannelingFastSimCrystalData.cc index 1338d6e8a02ab2a8faa203571050c01cbbd6b7b4..a7bb0bfc809ed760c16ec5478a004b3dffcd9214 100644 --- a/source/parameterisations/channeling/src/G4VChannelingFastSimCrystalData.cc +++ b/source/parameterisations/channeling/src/G4VChannelingFastSimCrystalData.cc @@ -530,7 +530,7 @@ G4double G4VChannelingFastSimCrystalData::IonizationLosses(G4double dz, { loge+=(-G4Log(2.) + 1 -(2*fGamma - 1)/fGamma/fGamma*G4Log(2.) + - 1/8*((fGamma - 1)/fGamma)*((fGamma - 1)/fGamma)); + 1./8.*((fGamma - 1)/fGamma)*((fGamma - 1)/fGamma)); } else if(fParticleName=="e+") { diff --git a/source/physics_lists/lists/History b/source/physics_lists/lists/History index deba6a90ef581ea2076d692c3c14cee259969090..754ef8c38988011f7867d36ebcab81199dd9ec59 100644 --- a/source/physics_lists/lists/History +++ b/source/physics_lists/lists/History @@ -6,6 +6,18 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2024-04-23 Alberto Ribon (phys-list-V11-02-04) +- FTFP_BERT_ATL : removed the special FTF tune for ATLAS (introduced in + phys-lists-V11-01-05 to overcome the problem of too optimistic (i.e. narrow) + pion shower energy resolution). + In this way, FTFP_BERT_ATL will use the default FTF parameters, as all other + reference physics lists. + In order to enable the special FTF tune for ATLAS, one can either use the + following C++ call in user code: + G4FTFTunings::Instance()->SetTuneApplicabilityState( 4, 1 ); + or the UI command (before run-initialization): + /process/had/models/ftf/selectTuneByIndex 4 + ## 2024-11-04 Vladimir Ivantchenko (phys-list-V11-02-03) - G4PhysListFactory - use std::size_t diff --git a/source/physics_lists/lists/src/FTFP_BERT_ATL.cc b/source/physics_lists/lists/src/FTFP_BERT_ATL.cc index 9a3f746b8e9a14550b1ba9196510fb0d48649c1c..67def0e967508bd12b38e9fe29d107868fe6d566 100644 --- a/source/physics_lists/lists/src/FTFP_BERT_ATL.cc +++ b/source/physics_lists/lists/src/FTFP_BERT_ATL.cc @@ -65,11 +65,6 @@ FTFP_BERT_ATL::FTFP_BERT_ATL(G4int ver) defaultCutValue = 0.7*CLHEP::mm; SetVerboseLevel(ver); - // Use the 4th tunes of Fritiof (FTF) string model, meant to to overcome - // the problem of too optimistic (i.e. narrow) pion shower energy resolutions - // in ATLAS calorimeters with respect to test-beam data. - G4FTFTunings::Instance()->SetTuneApplicabilityState( 4, 1 ); - // EM Physics RegisterPhysics( new G4EmStandardPhysics(ver)); diff --git a/source/processes/decay/History b/source/processes/decay/History index ce7ddca3c52e318e37c0738e91941d12d24cd0b9..efe028c3697cb9be1e1881c9cb2316ce377781af 100644 --- a/source/processes/decay/History +++ b/source/processes/decay/History @@ -1,9 +1,13 @@ # Category decay History 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! +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-04-03 Alvaro Tolosa-Delgado (decay-V11-02-00) +- Remove approximation in calculation of G4Decay path length, fix issue #2645 ## 2021-12-10 Ben Morgan (decay-V11-00-00) - Change to new Markdown History format diff --git a/source/processes/decay/include/G4Decay.hh b/source/processes/decay/include/G4Decay.hh index 71b8ef701e79e826bd7b5a200c94e68245516cab..7db643024221abcc94a8e2ff3d11fee0cac8fe90 100644 --- a/source/processes/decay/include/G4Decay.hh +++ b/source/processes/decay/include/G4Decay.hh @@ -166,8 +166,6 @@ class G4Decay : public G4VRestDiscreteProcess // 2: More protected: - // HighestValue. - const G4double HighestValue; // Remainder of life time at rest G4double fRemainderLifeTime; diff --git a/source/processes/decay/src/G4Decay.cc b/source/processes/decay/src/G4Decay.cc index 62c0d3167caac3810c433fe38569c4a21a0db9a8..e78938483c4966a76ddf952ba9be19d975376d8b 100644 --- a/source/processes/decay/src/G4Decay.cc +++ b/source/processes/decay/src/G4Decay.cc @@ -62,7 +62,6 @@ G4Decay::G4Decay(const G4String& processName) :G4VRestDiscreteProcess(processName, fDecay), verboseLevel(1), - HighestValue(20.0), fRemainderLifeTime(-1.0), pExtDecayer(nullptr) { @@ -151,10 +150,7 @@ G4double G4Decay::GetMeanFreePath(const G4Track& aTrack,G4double, G4ForceConditi //calculate the mean free path // by using normalized kinetic energy (= Ekin/mass) G4double rKineticEnergy = aParticle->GetKineticEnergy()/aMass; - if ( rKineticEnergy > HighestValue) { - // gamma >> 1 - pathlength = ( rKineticEnergy + 1.0)* aCtau; - } else if ( rKineticEnergy < DBL_MIN ) { + if ( rKineticEnergy < DBL_MIN ) { // too slow particle #ifdef G4VERBOSE if (GetVerboseLevel()>1) { diff --git a/source/processes/electromagnetic/utils/History b/source/processes/electromagnetic/utils/History index a8200d4f27478ee9f77a0807d6d03a0b304cf2fa..427b675ebe4790e89d15ea1cb78de02cdb159566 100644 --- a/source/processes/electromagnetic/utils/History +++ b/source/processes/electromagnetic/utils/History @@ -6,6 +6,13 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-04 G.Cosmo (emutils-V11-02-21) +- Fix in G4EmTableType header to make self-consistent. + Reported in [GitHub PR#85](https://github.com/Geant4/geant4/pull/85). + +## 2025-03-27 V.Ivanchenko +- G4VAtomDeexcitation - fixed problem #2650 - allowed to simulate PIXE + ## 2024-10-31 V.Ivanchenko (emutils-V11-02-20) - G4EmCalculator - fixed Coverity warning diff --git a/source/processes/electromagnetic/utils/include/G4EmTableType.hh b/source/processes/electromagnetic/utils/include/G4EmTableType.hh index c8604ccab4297cf10f2ae0de044c320424eb075c..20113f4893da2feadfc611b529c4974983a3d172 100644 --- a/source/processes/electromagnetic/utils/include/G4EmTableType.hh +++ b/source/processes/electromagnetic/utils/include/G4EmTableType.hh @@ -39,10 +39,11 @@ // 06.04.21 Removed two types (V.Ivanchenko) // //--------------------------------------------------------------- - #ifndef G4EmTableType_h #define G4EmTableType_h 1 +#include "G4Types.hh" + enum G4EmTableType { fTotal = 0, @@ -60,7 +61,8 @@ enum G4CrossSectionType fEmTwoPeaks }; -struct G4TwoPeaksXS { +struct G4TwoPeaksXS +{ G4double e1peak; G4double e1deep; G4double e2peak; diff --git a/source/processes/electromagnetic/utils/src/G4VAtomDeexcitation.cc b/source/processes/electromagnetic/utils/src/G4VAtomDeexcitation.cc index b7ed1ba4d2878eeacdb908facb4600492a9831f8..c3bcd255676c6c4d15f3575b71a3d5e332bec3d8 100644 --- a/source/processes/electromagnetic/utils/src/G4VAtomDeexcitation.cc +++ b/source/processes/electromagnetic/utils/src/G4VAtomDeexcitation.cc @@ -262,9 +262,9 @@ G4VAtomDeexcitation::AlongStepDeexcitation(std::vector<G4Track*>& tracks, G4double& eLossMax, G4int coupleIndex) { + if (!activePIXEMedia[coupleIndex] || eLossMax <= 0.0) { return; } G4double truelength = step.GetStepLength(); - if(!flagPIXE && !activePIXEMedia[coupleIndex]) { return; } - if(eLossMax <= 0.0 || truelength <= 0.0) { return; } + if (truelength <= 0.0) { return; } // step parameters const G4StepPoint* preStep = step.GetPreStepPoint(); diff --git a/source/processes/hadronic/models/cascade/History b/source/processes/hadronic/models/cascade/History index 43cba455958458b777caca5830ea20d92c65cf34..e4f3a0204fd1f1d93e47308781212c1fca8f97de 100644 --- a/source/processes/hadronic/models/cascade/History +++ b/source/processes/hadronic/models/cascade/History @@ -6,6 +6,23 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-22 Alberto Ribon (hadr-casc-V11-02-05) +- G4CascadeFinalStateAlgorithm, G4NucleiModel : introduced the possibility to + retrieve either the behavior of these classes as in Geant4 version 11.3 + (default) or as in 11.2 according to the value of boolean flags in + G4HadronicParameters. + In the case that the behavior of the class G4CascadeFinalStateAlgorithm + is chosen as in Geant4 version 11.2, the change introduced in + hadr-casc-V11-02-02 is skipped; similarly, but independently, if the + behavior of the class G4NucleiModel is chosen as in Geant4 version 11.2, + the change introduced in hadr-casc-V11-02-00 is skipped. + ( Note that the changes introduced in the two above classes in + hadr-casc-V11-02-02 and hadr-casc-V11-02-00 can be considered as real + improvements of the Bertini model, some degradation of thin-target data - + in particular for the pion production in HARP data - are observed. + This is likely due to the fact that a complete retuning of the parameters + of the Bertini model would have been necessary after these changes. ) + ## 2024-08-21 Gabriele Cosmo (hadr-casc-V11-02-04) - Fixed reported Coverity defect in G4NucleiModel for use of std::move(). diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeFinalStateAlgorithm.cc b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeFinalStateAlgorithm.cc index b5172edbdf5c5a0a99f8985e5a4373ebee1acfce..1f9090ff1615d52e860ced304c32fd01ea9e6f34 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeFinalStateAlgorithm.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeFinalStateAlgorithm.cc @@ -53,6 +53,7 @@ #include "G4TwoBodyAngularDist.hh" #include "G4VMultiBodyMomDst.hh" #include "G4VTwoBodyAngDst.hh" +#include "G4HadronicParameters.hh" #include "Randomize.hh" #include <vector> #include <numeric> @@ -60,7 +61,6 @@ using namespace G4InuclSpecialFunctions; - // Cut-offs and iteration limits for generation const G4double G4CascadeFinalStateAlgorithm::maxCosTheta = 0.9999; @@ -420,14 +420,43 @@ GenerateCosTheta(G4int ptype, G4double pmod) const { } // Throw multi-body distribution + if ( G4HadronicParameters::Instance()->IsBertiniAngularEmissionsAs11_2() ) { + + G4double p0 = ptype<3 ? 0.36 : 0.25; // Nucleon vs. everything else + G4double alf = 1.0 / p0 / (p0 - (pmod+p0)*G4Exp(-pmod / p0)); + G4double sinth = 2.0; + G4int itry1 = -1; /* Loop checking 08.06.2015 MHK */ + while (std::fabs(sinth) > maxCosTheta && ++itry1 < itry_max) { + G4double s1 = pmod * G4UniformRand(); + G4double s2 = alf * oneOverE * p0 * G4UniformRand(); + G4double salf = s1 * alf * G4Exp(-s1 / p0); + if (GetVerboseLevel() > 3) { + G4cout << " s1 * alf * G4Exp(-s1 / p0) " << salf + << " s2 " << s2 << G4endl; + } + if (salf > s2) sinth = s1 / pmod; + } + if (GetVerboseLevel() > 3) G4cout << " itry1 " << itry1 << " sinth " << sinth << G4endl; + if (itry1 == itry_max) { + if (GetVerboseLevel() > 2) G4cout << " high energy angles generation: itry1 " << itry1 << G4endl; + sinth = 0.5 * G4UniformRand(); + } + // Convert generated sin(theta) to cos(theta) with random sign + G4double costh = std::sqrt(1.0 - sinth * sinth); + if (G4UniformRand() > 0.5) costh = -costh; + return costh; + + } else { + + // Sample costheta directly from exp(-a*pmod*(1 - costheta) ) + // Previous method sampled from a*sintheta*exp(-a*sintheta), + // converted to costheta and (incorrectly) reflected around 180 degrees + // + G4double p0 = ptype < 3 ? 0.36 : 0.25; // 0.36 for nucleon, 0.25 for all others + G4double alf = 3.*pmod/p0; + return G4Log(G4UniformRand()*(G4Exp(2.*alf) - 1.) + 1.)/alf - 1.; - // Sample costheta directly from exp(-a*pmod*(1 - costheta) ) - // Previous method sampled from a*sintheta*exp(-a*sintheta), - // converted to costheta and (incorrectly) reflected around 180 degrees - // - G4double p0 = ptype < 3 ? 0.36 : 0.25; // 0.36 for nucleon, 0.25 for all others - G4double alf = 3.*pmod/p0; - return G4Log(G4UniformRand()*(G4Exp(2.*alf) - 1.) + 1.)/alf - 1.; + } } diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4NucleiModel.cc b/source/processes/hadronic/models/cascade/cascade/src/G4NucleiModel.cc index 5e77b7f7426522958ca171f2265c7e3d19aae241..2c7b9a8388ed1240c5b7727e7db53856ae38a6a9 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4NucleiModel.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4NucleiModel.cc @@ -183,6 +183,7 @@ #include "G4PhysicalConstants.hh" #include "G4Proton.hh" #include "G4SystemOfUnits.hh" +#include "G4HadronicParameters.hh" #include <vector> #include <algorithm> #include <functional> @@ -379,7 +380,7 @@ void G4NucleiModel::generateModel(G4int a, G4int z) { zone_potentials.push_back(std::move(kp)); zone_potentials.push_back(std::move(hp)); - setDinucleonDensityScale(); + if ( ! G4HadronicParameters::Instance()->IsBertiniNucleiModelAs11_2() ) setDinucleonDensityScale(); nuclei_radius = zone_radii.back(); nuclei_volume = std::accumulate(zone_volumes.begin(),zone_volumes.end(),0.); @@ -1439,8 +1440,8 @@ void G4NucleiModel::setDinucleonDensityScale() { G4double G4NucleiModel::getCurrentDensity(G4int ip, G4int izone) const { // const G4double pn_spec = 1.0; // Scale factor for pn vs. pp/nn - const G4double combinatoric_factor = 0.5; - + const G4double combinatoric_factor = + ( G4HadronicParameters::Instance()->IsBertiniNucleiModelAs11_2() ? 1.0 : 0.5 ); G4double dens = 0.; if (ip < 100) dens = getDensity(ip,izone); diff --git a/source/processes/hadronic/util/History b/source/processes/hadronic/util/History index 04e6bef4949ca77e6f7f424110e6f0cc31b11e78..56f0bd569da1dba42922c3096b2ba57f50874a07 100644 --- a/source/processes/hadronic/util/History +++ b/source/processes/hadronic/util/History @@ -7,6 +7,10 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-22 Alberto Ribon (hadr-util-V11-02-07) +- G4HadronicDeveloperParameters : introduced Getter/Setter for selecting the + Bertini model behavior as Geant4 version 11.3 (default) or 11.2. + ## 2025-03-05 Vladimir Ivanchenko (hadr-util-V11-02-06) - G4HadronicDeveloperParameters - added limitation of warning printout on change of parameters (NA64 request). diff --git a/source/processes/hadronic/util/include/G4HadronicParameters.hh b/source/processes/hadronic/util/include/G4HadronicParameters.hh index 2c9d057cfae95c68abcfd59a9ec90697a7ae8f14..2c50e0d393f2012339200b2f42949b164b63c81e 100644 --- a/source/processes/hadronic/util/include/G4HadronicParameters.hh +++ b/source/processes/hadronic/util/include/G4HadronicParameters.hh @@ -181,6 +181,29 @@ class G4HadronicParameters { // Getter/Setter for the time threshold of radioactive decays // (i.e. radioactive decays that happen later than this value are ignored). + inline G4bool IsBertiniAs11_2() const; + void SetBertiniAs11_2( G4bool val ); + inline G4bool IsBertiniAngularEmissionsAs11_2() const; + void SetBertiniAngularEmissionsAs11_2( G4bool val ); + inline G4bool IsBertiniNucleiModelAs11_2() const; + void SetBertiniNucleiModelAs11_2( G4bool val ); + // Getter/Setter for the Bertini model behavior with respect to the + // Geant4 version 11.2. + // The first two methods "*BertiniAs11_2" refer to the overall behavior + // of the Bertini model - the one which should matter the most for the + // majority of applications. + // The methods "*BertiniAngularEmissionsAs11_2" refer to the angular + // distributions of the >= 4-body final state emissions. + // The last two methods "*BertiniNucleiModelAs11_2" refer to the + // modelling of nuclei. + // The overall behavior of Bertini with respect to the version Geant4 + // version 11.2 depends on both the angular distributios of the + // >= 4-body final state emissions, and the modelling of nuclei. + // "True" in these methods means that the corresponding behavior of + // the Geant4 version 11.2 is retrieved; + // "False" means that the corresponding behavior of the Geant4 version + // 11.3 is retrieved. + private: G4HadronicParameters(); @@ -226,6 +249,8 @@ class G4HadronicParameters { G4bool fNeutronGeneral = false; G4bool fChargeExchange = false; G4bool fBinaryDebug = false; + G4bool fBertiniAngularEmissionsAs11_2 = false; // Keep the new G4 11.3 behavior + G4bool fBertiniNucleiModelAs11_2 = false; // Keep the new G4 11.3 behavior G4String fTypeTablePT = ""; G4String fDirPARTICLEXS = ""; @@ -258,7 +283,6 @@ inline G4double G4HadronicParameters::GetMinEnergyINCLXX_Pbar() const { inline G4double G4HadronicParameters::GetMaxEnergyINCLXX_Pbar() const { return fMaxEnergyINCLXX_Pbar; } - inline G4double G4HadronicParameters::EnergyThresholdForHeavyHadrons() const { return fEnergyThresholdForHeavyHadrons; @@ -360,13 +384,11 @@ inline const G4String& G4HadronicParameters::GetDirPARTICLEXS() const { return fDirPARTICLEXS; } -inline const G4String& G4HadronicParameters::GetPhysListDocDir() const -{ +inline const G4String& G4HadronicParameters::GetPhysListDocDir() const { return fPhysListDocDir; } -inline const G4String& G4HadronicParameters::GetPhysListName() const -{ +inline const G4String& G4HadronicParameters::GetPhysListName() const { return fPhysListName; } @@ -378,4 +400,16 @@ inline G4double G4HadronicParameters::GetTimeThresholdForRadioactiveDecay() cons return fTimeThresholdForRadioactiveDecays; } +inline G4bool G4HadronicParameters::IsBertiniAs11_2() const { + return ( fBertiniAngularEmissionsAs11_2 && fBertiniNucleiModelAs11_2 ); +} + +inline G4bool G4HadronicParameters::IsBertiniAngularEmissionsAs11_2() const { + return fBertiniAngularEmissionsAs11_2; +} + +inline G4bool G4HadronicParameters::IsBertiniNucleiModelAs11_2() const { + return fBertiniNucleiModelAs11_2; +} + #endif diff --git a/source/processes/hadronic/util/src/G4HadronicParameters.cc b/source/processes/hadronic/util/src/G4HadronicParameters.cc index b61b8a021878c9a6c374c871d31e5b11e219c0a3..1f5931a9601a73873d5cb20815367b130ae1081a 100644 --- a/source/processes/hadronic/util/src/G4HadronicParameters.cc +++ b/source/processes/hadronic/util/src/G4HadronicParameters.cc @@ -46,11 +46,11 @@ G4HadronicParameters* G4HadronicParameters::sInstance = nullptr; -namespace -{ +namespace { G4Mutex paramMutex = G4MUTEX_INITIALIZER; } + G4HadronicParameters* G4HadronicParameters::Instance() { if ( sInstance == nullptr ) { G4AutoLock l(¶mMutex); @@ -140,12 +140,14 @@ void G4HadronicParameters::SetMinEnergyTransitionQGS_FTF( const G4double val ) { } } + void G4HadronicParameters::SetMaxEnergyTransitionQGS_FTF( const G4double val ) { if ( ! IsLocked() && val > fMinEnergyTransitionQGS_FTF ) { fMaxEnergyTransitionQGS_FTF = val; } } + void G4HadronicParameters::SetMinEnergyINCLXX_Pbar( const G4double val ) { if ( ! IsLocked() && val >= 0.0 ) { fMinEnergyINCLXX_Pbar = val; @@ -159,6 +161,7 @@ void G4HadronicParameters::SetMaxEnergyINCLXX_Pbar( const G4double val ) { } } + void G4HadronicParameters::SetEnableBCParticles( G4bool val ) { if ( ! IsLocked() ) fEnableBC = val; } @@ -291,3 +294,21 @@ void G4HadronicParameters::SetTypeTablePT( const G4String& typeTablePT ) { void G4HadronicParameters::SetEnableCoherentChargeExchange( G4bool val ) { if ( ! IsLocked() ) fChargeExchange = val; } + + +void G4HadronicParameters::SetBertiniAs11_2( G4bool val ) { + if ( ! IsLocked() ) { + fBertiniAngularEmissionsAs11_2 = val; + fBertiniNucleiModelAs11_2 = val; + } +} + + +void G4HadronicParameters::SetBertiniAngularEmissionsAs11_2( G4bool val ) { + if ( ! IsLocked() ) fBertiniAngularEmissionsAs11_2 = val; +} + + +void G4HadronicParameters::SetBertiniNucleiModelAs11_2( G4bool val ) { + if ( ! IsLocked() ) fBertiniNucleiModelAs11_2 = val; +} diff --git a/source/visualization/OpenGL/History b/source/visualization/OpenGL/History index a0d16988b4047412af38ad02d2552c1c0cd30b95..a71aa57c4742cf0c53fe222c3232cffa1406d289 100644 --- a/source/visualization/OpenGL/History +++ b/source/visualization/OpenGL/History @@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-07 Gabriele Cosmo (opengl-V11-02-10) +- Fixed compilation errors on Windows in G4OpenGLWin32Viewer, triggered when + enabling GL WIN32 support, as reported in problem report #2599. + ## 2024-09-13 John Allison (opengl-V11-02-09) - G4OpenGLStoredQtSceneHandler.cc: - G4OpenGLStoredQtSceneHandler::ClearStore(): diff --git a/source/visualization/OpenGL/src/G4OpenGLWin32Viewer.cc b/source/visualization/OpenGL/src/G4OpenGLWin32Viewer.cc index ed5685d3559665356d74b9f905d11977dfe3c25d..a8a7766d364cbe95cc642929a28dcf62eaa72621 100644 --- a/source/visualization/OpenGL/src/G4OpenGLWin32Viewer.cc +++ b/source/visualization/OpenGL/src/G4OpenGLWin32Viewer.cc @@ -108,8 +108,8 @@ void G4OpenGLWin32Viewer::CreateMainWindow ( wc.hIcon = LoadIcon (NULL, IDI_APPLICATION); wc.hCursor = LoadCursor(NULL,IDC_CROSS); wc.hbrBackground = NULL; - wc.lpszMenuName = className; - wc.lpszClassName = className; + wc.lpszMenuName = (PTSTR)className; + wc.lpszClassName = (PTSTR)className; ::RegisterClass(&wc); done = true; } @@ -120,7 +120,7 @@ void G4OpenGLWin32Viewer::CreateMainWindow ( G4int y_res=GetSystemMetrics(SM_CYSCREEN); //FIXME : NOT tested ! - fWindow = ::CreateWindowEx(0, className,fName.c_str(), + fWindow = ::CreateWindowEx(0, (PTSTR)className, (PTSTR)fName.c_str(), WS_OVERLAPPEDWINDOW, //WS_CHILD | WS_VISIBLE, // 0,0, diff --git a/source/visualization/RayTracer/History b/source/visualization/RayTracer/History index 883bba737998743cf5eb0c6a9081412daa24f500..a0bf7b47d79e7cb33836aa3f45fb8b7541385d28 100644 --- a/source/visualization/RayTracer/History +++ b/source/visualization/RayTracer/History @@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages! ------------------------------------------------------------------------------- +## 2025-04-12 John Allison (raytracer-V11-02-00) +- G4RayTracerXViewer.cc: + - Use G4TheMTRayTracer. + ## 2023-03-22 Ben Morgan (raytracer-V11-01-01) - Export public compile definitions to indicate availablity of specific drivers. Moves to "use on link" model. diff --git a/source/visualization/RayTracer/src/G4RayTracerXViewer.cc b/source/visualization/RayTracer/src/G4RayTracerXViewer.cc index e2a884a904034984fd9ef20b352a88c71f02ca61..e63b2b897d6403a9f121d791dada1477ca6c6a5e 100644 --- a/source/visualization/RayTracer/src/G4RayTracerXViewer.cc +++ b/source/visualization/RayTracer/src/G4RayTracerXViewer.cc @@ -29,7 +29,7 @@ #include "G4VSceneHandler.hh" #include "G4Scene.hh" -#include "G4TheRayTracer.hh" +#include "G4TheMTRayTracer.hh" #include "G4RTJpegMaker.hh" #include "G4RTXScanner.hh" #include "G4UImanager.hh" @@ -40,7 +40,7 @@ G4RayTracerXViewer::G4RayTracerXViewer (G4VSceneHandler& sceneHandler, const G4String& name): G4RayTracerViewer(sceneHandler, name, - new G4TheRayTracer(new G4RTJpegMaker, new G4RTXScanner)) + G4TheMTRayTracer::Instance(new G4RTJpegMaker, new G4RTXScanner)) {} G4RayTracerXViewer::~G4RayTracerXViewer() {}