Import Geant4 11.1.1 source tree
This commit is contained in:
@@ -77,3 +77,5 @@
|
|||||||
# Testing
|
# Testing
|
||||||
/tests/ @gunterfolger @whokion
|
/tests/ @gunterfolger @whokion
|
||||||
|
|
||||||
|
# Other
|
||||||
|
/source/error_propagation @arceciemat
|
||||||
|
|||||||
+6
-7
@@ -3,9 +3,9 @@
|
|||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# - Enforce an out-of-source builds before anything else
|
# - Enforce an out-of-source builds before anything else
|
||||||
#
|
#
|
||||||
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
message(STATUS "Geant4 requires an out-of-source build.")
|
message(STATUS "Geant4 requires an out-of-source build.")
|
||||||
message(STATUS "Please remove these files from ${CMAKE_BINARY_DIR} first:")
|
message(STATUS "Please remove these files from ${CMAKE_CURRENT_BINARY_DIR} first:")
|
||||||
message(STATUS "CMakeCache.txt")
|
message(STATUS "CMakeCache.txt")
|
||||||
message(STATUS "CMakeFiles")
|
message(STATUS "CMakeFiles")
|
||||||
message(STATUS "Once these files are removed, create a separate directory")
|
message(STATUS "Once these files are removed, create a separate directory")
|
||||||
@@ -19,8 +19,7 @@ endif()
|
|||||||
cmake_minimum_required(VERSION 3.16...3.24)
|
cmake_minimum_required(VERSION 3.16...3.24)
|
||||||
|
|
||||||
# - Make overrides for default flags, so they appear in interfaces
|
# - Make overrides for default flags, so they appear in interfaces
|
||||||
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
|
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/G4MakeRules_cxx.cmake)
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Modules/G4MakeRules_cxx.cmake)
|
|
||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# - Project definition and basic configuration
|
# - Project definition and basic configuration
|
||||||
@@ -32,7 +31,7 @@ project(Geant4
|
|||||||
HOMEPAGE_URL "https://geant4.cern.ch")
|
HOMEPAGE_URL "https://geant4.cern.ch")
|
||||||
set(${PROJECT_NAME}_VERSION_MAJOR 11)
|
set(${PROJECT_NAME}_VERSION_MAJOR 11)
|
||||||
set(${PROJECT_NAME}_VERSION_MINOR 1)
|
set(${PROJECT_NAME}_VERSION_MINOR 1)
|
||||||
set(${PROJECT_NAME}_VERSION_PATCH 0)
|
set(${PROJECT_NAME}_VERSION_PATCH 1)
|
||||||
set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}")
|
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
|
# - Prepend our own CMake Modules to the search path
|
||||||
@@ -40,8 +39,8 @@ set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_
|
|||||||
# the base path will be used, so watch for incompatibilities!!
|
# the base path will be used, so watch for incompatibilities!!
|
||||||
#
|
#
|
||||||
set(CMAKE_MODULE_PATH
|
set(CMAKE_MODULE_PATH
|
||||||
${PROJECT_SOURCE_DIR}/cmake/Modules
|
${PROJECT_SOURCE_DIR}/cmake/Modules
|
||||||
${CMAKE_MODULE_PATH})
|
${CMAKE_MODULE_PATH})
|
||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# - Include CMake category main module
|
# - Include CMake category main module
|
||||||
|
|||||||
@@ -0,0 +1,161 @@
|
|||||||
|
|
||||||
|
Geant4 11.1 - patch-01 Release Notes
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|
10 February 2023
|
||||||
|
|
||||||
|
List of fixes included in this public patch since the public release 11.1.0:
|
||||||
|
|
||||||
|
o Configuration
|
||||||
|
-------------
|
||||||
|
+ CMake:
|
||||||
|
o Fixed configuration/use of TGS visualisation driver in geant4-config
|
||||||
|
Addresses problem report #2525.
|
||||||
|
o Use PROJECT_ or Geant4_ scoped _SOURCE/BINARY_DIR variables in place of
|
||||||
|
CMAKE_ scope version to ease use of Geant4 as a CMake subproject.
|
||||||
|
Based on GitHub PR#52 (https://github.com/Geant4/geant4/pull/52).
|
||||||
|
o Removed no longer required G4VecGeomShim module.
|
||||||
|
VecGeom supports/supplies full imported targets since 1.1.18
|
||||||
|
Use of VECGEOM_LIBRARIES variable is required to allow build against
|
||||||
|
CUDA-enabled VecGeom.
|
||||||
|
|
||||||
|
o Geometry:
|
||||||
|
--------
|
||||||
|
+ magneticfield:
|
||||||
|
o Reduced printout for setting any valid value for epsilon_min/_max in
|
||||||
|
G4FieldManager.
|
||||||
|
+ management:
|
||||||
|
o G4LogicalVolume: use std::shared_ptr for handling visualization attributes.
|
||||||
|
Ignore calls to SetVisAttributes() from worker threads.
|
||||||
|
+ solids/Boolean:
|
||||||
|
o Fixed hang-out in G4MultiUnion, caused by oveflow of 'size-1' when 'size'
|
||||||
|
value is zero.
|
||||||
|
+ solids/specific:
|
||||||
|
o G4QuadrangularFacet: fixed references to triangles in the warning message
|
||||||
|
in the check for collinear vertices.
|
||||||
|
|
||||||
|
o Global:
|
||||||
|
------
|
||||||
|
+ G4DataVector: simplified and corrected inline methods implementation.
|
||||||
|
+ Updated date and version for 11.1.1.
|
||||||
|
|
||||||
|
o Materials:
|
||||||
|
---------
|
||||||
|
+ G4Material: allow recursive search for based material.
|
||||||
|
Addressing problem report #2520.
|
||||||
|
|
||||||
|
o Particles:
|
||||||
|
---------
|
||||||
|
+ G4AntiNeutron: set the "PDG stable" flag to "false", as for G4Neutron.
|
||||||
|
+ G4(Anti)OmegacZero: updated mean life time.
|
||||||
|
|
||||||
|
o Physics Lists:
|
||||||
|
-------------
|
||||||
|
+ builders
|
||||||
|
o Updated table of processes.
|
||||||
|
+ constructors/decay
|
||||||
|
o G4RadioactiveDecayPhysics: assigned RadioactiveDecay process to G4Triton
|
||||||
|
(which is the only light ion that decays). Note: before, triton did not
|
||||||
|
have beta decay, i.e. it was wrongly treated as stable even when radioactive
|
||||||
|
decay physics was enabled; anti_triton did not, and still does not, have
|
||||||
|
beta decay (because RadioactiveDecay, in its current implementation, does
|
||||||
|
not handle any kind of anti-ions): in practice, this is an acceptable
|
||||||
|
approximation because of its relatively long lifetime and the fact
|
||||||
|
that annihilation and nuclear capture are more likely to happen before
|
||||||
|
decay.
|
||||||
|
+ constructors/electromagnetic
|
||||||
|
o G4GammaGeneralProcess: in all cases select the sub-process.
|
||||||
|
Addressing problem report #2521.
|
||||||
|
+ util
|
||||||
|
o G4HadProcesses: avoid double instantiation of capture cross-section.
|
||||||
|
|
||||||
|
o Processes - Electromagnetic:
|
||||||
|
---------------------------
|
||||||
|
+ standard
|
||||||
|
o G4UrbanMscModel: added flag for multiple-scattering positron correction.
|
||||||
|
o Fixed compilation warning in G4GoudsmithSoundersonMscModel.
|
||||||
|
+ utils
|
||||||
|
o G4EmParameters, G4EmParametersMessenger: added parameter, UI command
|
||||||
|
and Get/Set methods for positron correction in multiple-scattering.
|
||||||
|
|
||||||
|
o Processes - Hadronic:
|
||||||
|
--------------------
|
||||||
|
+ management
|
||||||
|
o G4HadronicProcess: moved some class members to protected.
|
||||||
|
+ models/lend
|
||||||
|
o Fixed potential uninitialised variables.
|
||||||
|
+ models/particle_hp
|
||||||
|
o Minor cleanup in G4ParticleHPDeExGammas header for data initialisation.
|
||||||
|
+ models/parton_string/qgsm
|
||||||
|
o Fixed potential uninitialised variables in G4QGSMSplitableHadron.
|
||||||
|
+ processes
|
||||||
|
o G4NeutronGeneralProcess: optimized code: initialisation methods are
|
||||||
|
moved to source; avoid double instantiation of capture cross-section;
|
||||||
|
reduced number of calls to cross-section, added cross-section data store
|
||||||
|
pointer. Added setter method for setting minimum energy limit.
|
||||||
|
o G4HadronElasticProcess: removed obsolete try/catch diagnostics not
|
||||||
|
applicable for hadron elastic models; added forgotten integral approach
|
||||||
|
for charged particles.
|
||||||
|
|
||||||
|
o Processes - Transportation:
|
||||||
|
--------------------------
|
||||||
|
+ Fixed inadvertent creation of G4TransportationParameters in
|
||||||
|
G4Transportation constructor, determining a change of default looper
|
||||||
|
parameters, responsible for observed warnings at run-time.
|
||||||
|
+ Fixed compilation warning about unused variable with G4VERBOSE unset.
|
||||||
|
|
||||||
|
o Run:
|
||||||
|
---
|
||||||
|
+ G4PhysicsListHelper: added forgotten process of muon pair production by
|
||||||
|
muons and added general process. Addressing problem report #2523.
|
||||||
|
+ Reduced printout in destruction of run-manager (master and workers),
|
||||||
|
to be coherent with verbose level greater than 1.
|
||||||
|
|
||||||
|
o Visualization:
|
||||||
|
-------------
|
||||||
|
+ modeling
|
||||||
|
o Fixed transform in G4TextModel; the rotation part of the transform was
|
||||||
|
being ignored. This impacted the implementation of
|
||||||
|
"/vis/scene/add/localAxes".
|
||||||
|
o G4AxesModel: Tidied.
|
||||||
|
|
||||||
|
o Examples:
|
||||||
|
--------
|
||||||
|
+ extended/eventgenerator/exgps
|
||||||
|
+ extended/exoticphysics
|
||||||
|
+ extended/geometry/vecGeomNavigation
|
||||||
|
o Use PROJECT_ or Geant4_ scoped _SOURCE/BINARY_DIR variables in place of
|
||||||
|
CMAKE_ scope version to ease use of Geant4 as a CMake subproject.
|
||||||
|
Based on GitHub PR#52 (https://github.com/Geant4/geant4/pull/52).
|
||||||
|
+ extended/hadronic/Hadr10
|
||||||
|
o In DetectorMessenger, define "/mydet/update" command also for PreInit
|
||||||
|
state and call "/run/initialize" after geometry update in hadr10.in script,
|
||||||
|
to avoid run-time warning messages in output for reinitialisation of
|
||||||
|
geometry.
|
||||||
|
o In SteppingAction, protecting the argument of acos to be within range.
|
||||||
|
+ extended/medical
|
||||||
|
o Use PROJECT_ or Geant4_ scoped _SOURCE/BINARY_DIR variables in place of
|
||||||
|
CMAKE_ scope version to ease use of Geant4 as a CMake subproject.
|
||||||
|
Based on GitHub PR#52 (https://github.com/Geant4/geant4/pull/52).
|
||||||
|
+ extended/medical/dna/moleculardna
|
||||||
|
o Fixed materials definition and corrected mistake in PhysicsList.
|
||||||
|
o Updated imput macros.
|
||||||
|
+ extended/parallel/MPI
|
||||||
|
o Use PROJECT_ or Geant4_ scoped _SOURCE/BINARY_DIR variables in place of
|
||||||
|
CMAKE_ scope version to ease use of Geant4 as a CMake subproject.
|
||||||
|
Based on GitHub PR#52 (https://github.com/Geant4/geant4/pull/52).
|
||||||
|
|
||||||
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Technical Notes
|
||||||
|
---------------
|
||||||
|
|
||||||
|
o This patch should be applied on top of release 11.1 series.
|
||||||
|
o Technical notes distributed for release 11.1 are also applicable and
|
||||||
|
valid for this patch.
|
||||||
|
|
||||||
|
The code and rebuilt binary libraries for release 11.1.1 are available
|
||||||
|
through the Geant4 "Download" Web page.
|
||||||
|
|
||||||
|
Please refer to the Geant4 User Documentation for further information about
|
||||||
|
using Geant4.
|
||||||
@@ -6,6 +6,20 @@ It must **not** be used as a substitute for writing good git commit messages!
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
## 2023-02-06 Ben Morgan (cmake-V11-00-53)
|
||||||
|
- Remove no longer required G4VecGeomShim module.
|
||||||
|
- VecGeom supports/supplies full imported targets since 1.1.18
|
||||||
|
- Use of VECGEOM_LIBRARIES variable required to allow build against CUDA-enabled VecGeom
|
||||||
|
|
||||||
|
## 2023-01-18 Ben Morgan (cmake-V11-00-52)
|
||||||
|
- Fix configuration/use of G4ToolsSG in geant4-config
|
||||||
|
- Addresses issue reported on [Geant4 Forum](https://geant4-forum.web.cern.ch/t/missing-g4toolssg-in-geant4-config-in-pre-compiled-geant4-11-1-for-linux/9738)
|
||||||
|
|
||||||
|
## 2023-01-09 Ben Morgan (cmake-V11-00-51)
|
||||||
|
- Use PROJECT_ or Geant4_ scoped _SOURCE/BINARY_DIR variables in place of CMAKE_
|
||||||
|
scope version to ease use of Geant4 as a CMake subproject.
|
||||||
|
- Fixes [GitHub PR #52](https://github.com/Geant4/geant4/pull/52)
|
||||||
|
|
||||||
## 2022-12-05 Ben Morgan (cmake-V11-00-50)
|
## 2022-12-05 Ben Morgan (cmake-V11-00-50)
|
||||||
- Revert VecGeom minimum version to 1.2.0 due to issues with 1.2.1 reported by
|
- Revert VecGeom minimum version to 1.2.0 due to issues with 1.2.1 reported by
|
||||||
CMS but not yet triaged in VecGeom itself.
|
CMS but not yet triaged in VecGeom itself.
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ endif()
|
|||||||
#Note that the second suggested path is G4 specific...
|
#Note that the second suggested path is G4 specific...
|
||||||
find_path(STATTEST_APP_DIR
|
find_path(STATTEST_APP_DIR
|
||||||
NAMES StatTestVersion.py
|
NAMES StatTestVersion.py
|
||||||
PATHS ${STATTEST_ROOT_DIR} ${CMAKE_SOURCE_DIR}/verification/StatTest
|
PATHS ${STATTEST_ROOT_DIR} ${PROJECT_SOURCE_DIR}/verification/StatTest
|
||||||
NO_DEFAULT_PATH
|
NO_DEFAULT_PATH
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -103,10 +103,10 @@ if(GEANT4_ENABLE_TESTING)
|
|||||||
if(EXISTS ${PROJECT_SOURCE_DIR}/tests)
|
if(EXISTS ${PROJECT_SOURCE_DIR}/tests)
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
endif()
|
endif()
|
||||||
if(EXISTS ${CMAKE_SOURCE_DIR}/benchmarks)
|
if(EXISTS ${PROJECT_SOURCE_DIR}/benchmarks)
|
||||||
add_subdirectory(benchmarks)
|
add_subdirectory(benchmarks)
|
||||||
endif()
|
endif()
|
||||||
if(EXISTS ${CMAKE_SOURCE_DIR}/verification)
|
if(EXISTS ${PROJECT_SOURCE_DIR}/verification)
|
||||||
add_subdirectory(verification)
|
add_subdirectory(verification)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
@@ -249,7 +249,7 @@ function(geant4_add_unit_tests)
|
|||||||
if(IS_ABSOLUTE ${incdir})
|
if(IS_ABSOLUTE ${incdir})
|
||||||
include_directories(${incdir})
|
include_directories(${incdir})
|
||||||
else()
|
else()
|
||||||
include_directories(${CMAKE_SOURCE_DIR}/source/${incdir})
|
include_directories(${PROJECT_SOURCE_DIR}/source/${incdir})
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ include(InstallRequiredSystemLibraries)
|
|||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# Copy/Generate common resource files into formats CPack generators like
|
# Copy/Generate common resource files into formats CPack generators like
|
||||||
file(WRITE ${CMAKE_BINARY_DIR}/README.txt "
|
file(WRITE ${PROJECT_BINARY_DIR}/README.txt "
|
||||||
Geant4
|
Geant4
|
||||||
======
|
======
|
||||||
A toolkit for the simulation of the passage of particles through matter.
|
A toolkit for the simulation of the passage of particles through matter.
|
||||||
@@ -155,7 +155,7 @@ configure_file(
|
|||||||
CMakeCPackOptions.cmake
|
CMakeCPackOptions.cmake
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
set(CPACK_PROJECT_CONFIG_FILE ${CMAKE_BINARY_DIR}/CMakeCPackOptions.cmake)
|
set(CPACK_PROJECT_CONFIG_FILE ${PROJECT_BINARY_DIR}/CMakeCPackOptions.cmake)
|
||||||
include(CPack)
|
include(CPack)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ if(GEANT4_ENABLE_TESTING)
|
|||||||
|
|
||||||
# - Geant4_DIR is needed to locate GeantConfig.cmake file required
|
# - Geant4_DIR is needed to locate GeantConfig.cmake file required
|
||||||
# by tests and examples
|
# by tests and examples
|
||||||
set(Geant4_DIR ${CMAKE_BINARY_DIR} CACHE PATH "Current build directory")
|
set(Geant4_DIR ${PROJECT_BINARY_DIR} CACHE PATH "Current build directory")
|
||||||
|
|
||||||
# - Add datasets to testing environment
|
# - Add datasets to testing environment
|
||||||
geant4_get_datasetnames(_dslist)
|
geant4_get_datasetnames(_dslist)
|
||||||
@@ -53,7 +53,7 @@ endif()
|
|||||||
# Add Unit Tests if required
|
# Add Unit Tests if required
|
||||||
#
|
#
|
||||||
if(GEANT4_BUILD_TESTS)
|
if(GEANT4_BUILD_TESTS)
|
||||||
file(GLOB_RECURSE files RELATIVE ${CMAKE_SOURCE_DIR} source/CMakeLists.txt)
|
file(GLOB_RECURSE files RELATIVE ${PROJECT_SOURCE_DIR} source/CMakeLists.txt)
|
||||||
foreach( file ${files} )
|
foreach( file ${files} )
|
||||||
get_filename_component(path ${file} PATH)
|
get_filename_component(path ${file} PATH)
|
||||||
if(path MATCHES "/test$")
|
if(path MATCHES "/test$")
|
||||||
|
|||||||
@@ -187,12 +187,6 @@ configure_file(
|
|||||||
COPYONLY
|
COPYONLY
|
||||||
)
|
)
|
||||||
|
|
||||||
configure_file(
|
|
||||||
${PROJECT_SOURCE_DIR}/cmake/Modules/G4VecGeomShim.cmake
|
|
||||||
${PROJECT_BINARY_DIR}/G4VecGeomShim.cmake
|
|
||||||
COPYONLY
|
|
||||||
)
|
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
${PROJECT_SOURCE_DIR}/cmake/Modules/G4X11Shim.cmake
|
${PROJECT_SOURCE_DIR}/cmake/Modules/G4X11Shim.cmake
|
||||||
${PROJECT_BINARY_DIR}/G4X11Shim.cmake
|
${PROJECT_BINARY_DIR}/G4X11Shim.cmake
|
||||||
@@ -274,7 +268,6 @@ install(FILES
|
|||||||
${PROJECT_BINARY_DIR}/G4EXPATShim.cmake
|
${PROJECT_BINARY_DIR}/G4EXPATShim.cmake
|
||||||
${PROJECT_BINARY_DIR}/G4FreetypeShim.cmake
|
${PROJECT_BINARY_DIR}/G4FreetypeShim.cmake
|
||||||
${PROJECT_BINARY_DIR}/G4HDF5Shim.cmake
|
${PROJECT_BINARY_DIR}/G4HDF5Shim.cmake
|
||||||
${PROJECT_BINARY_DIR}/G4VecGeomShim.cmake
|
|
||||||
${PROJECT_BINARY_DIR}/G4MotifShim.cmake
|
${PROJECT_BINARY_DIR}/G4MotifShim.cmake
|
||||||
${PROJECT_BINARY_DIR}/G4X11Shim.cmake
|
${PROJECT_BINARY_DIR}/G4X11Shim.cmake
|
||||||
${PROJECT_SOURCE_DIR}/cmake/Templates/UseGeant4.cmake
|
${PROJECT_SOURCE_DIR}/cmake/Templates/UseGeant4.cmake
|
||||||
|
|||||||
@@ -694,7 +694,7 @@ macro(_g4tc_configure_build_tree_scripts SCRIPT_NAME)
|
|||||||
|
|
||||||
# Configure the file - goes straight into the binary dir
|
# Configure the file - goes straight into the binary dir
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4make-skeleton.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4make-skeleton.in
|
||||||
${PROJECT_BINARY_DIR}/${SCRIPT_NAME}${GEANT4_TC_SHELL_EXTENSION}
|
${PROJECT_BINARY_DIR}/${SCRIPT_NAME}${GEANT4_TC_SHELL_EXTENSION}
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -715,7 +715,7 @@ macro(_g4tc_configure_install_tree_scripts CONFIGURE_DESTINATION SCRIPT_NAME INS
|
|||||||
|
|
||||||
# Configure the file
|
# Configure the file
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4make-skeleton.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4make-skeleton.in
|
||||||
${CONFIGURE_DESTINATION}/${SCRIPT_NAME}${GEANT4_TC_SHELL_EXTENSION}
|
${CONFIGURE_DESTINATION}/${SCRIPT_NAME}${GEANT4_TC_SHELL_EXTENSION}
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -835,7 +835,7 @@ set(TOOLS_FONT_PATH "\"`cd \$geant4make_root/../fonts > /dev/null ; pwd`\"")
|
|||||||
|
|
||||||
# - Configure the shell scripts for the INSTALL TREE
|
# - Configure the shell scripts for the INSTALL TREE
|
||||||
_g4tc_configure_install_tree_scripts(
|
_g4tc_configure_install_tree_scripts(
|
||||||
${CMAKE_BINARY_DIR}/InstallTreeFiles
|
${PROJECT_BINARY_DIR}/InstallTreeFiles
|
||||||
geant4make
|
geant4make
|
||||||
${CMAKE_INSTALL_DATADIR}/geant4make
|
${CMAKE_INSTALL_DATADIR}/geant4make
|
||||||
)
|
)
|
||||||
@@ -1010,7 +1010,7 @@ foreach(_shell IN LISTS shells_list)
|
|||||||
|
|
||||||
# Configure the file
|
# Configure the file
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4-env-skeleton.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-env-skeleton.in
|
||||||
${PROJECT_BINARY_DIR}/InstallTreeFiles/${_scriptfullname}
|
${PROJECT_BINARY_DIR}/InstallTreeFiles/${_scriptfullname}
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -1099,7 +1099,7 @@ rem Uncomment the line and edit the path to the dataset if installed in not stan
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4-bat-skeleton.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-bat-skeleton.in
|
||||||
${PROJECT_BINARY_DIR}/InstallTreeFiles/${_scriptfullname}
|
${PROJECT_BINARY_DIR}/InstallTreeFiles/${_scriptfullname}
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ function(get_system_include_dirs _dirs)
|
|||||||
# Only for GCC, Clang and Intel
|
# Only for GCC, Clang and Intel
|
||||||
if("${CMAKE_CXX_COMPILER_ID}" MATCHES GNU OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Clang OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Intel)
|
if("${CMAKE_CXX_COMPILER_ID}" MATCHES GNU OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Clang OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Intel)
|
||||||
# Proceed
|
# Proceed
|
||||||
file(WRITE "${CMAKE_BINARY_DIR}/CMakeFiles/g4dummy" "\n")
|
file(WRITE "${PROJECT_BINARY_DIR}/CMakeFiles/g4dummy" "\n")
|
||||||
|
|
||||||
# Save locale, them to "C" english locale so we can parse in English
|
# Save locale, them to "C" english locale so we can parse in English
|
||||||
set(_orig_lc_all $ENV{LC_ALL})
|
set(_orig_lc_all $ENV{LC_ALL})
|
||||||
@@ -72,12 +72,12 @@ function(get_system_include_dirs _dirs)
|
|||||||
set(ENV{LANG} C)
|
set(ENV{LANG} C)
|
||||||
|
|
||||||
execute_process(COMMAND ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1} -v -E -x c++ -dD g4dummy
|
execute_process(COMMAND ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1} -v -E -x c++ -dD g4dummy
|
||||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/CMakeFiles
|
||||||
ERROR_VARIABLE _cxxOutput
|
ERROR_VARIABLE _cxxOutput
|
||||||
OUTPUT_VARIABLE _cxxStdout
|
OUTPUT_VARIABLE _cxxStdout
|
||||||
)
|
)
|
||||||
|
|
||||||
file(REMOVE "${CMAKE_BINARY_DIR}/CMakeFiles/g4dummy")
|
file(REMOVE "${PROJECT_BINARY_DIR}/CMakeFiles/g4dummy")
|
||||||
|
|
||||||
# Parse and extract search dirs
|
# Parse and extract search dirs
|
||||||
set(_resultIncludeDirs )
|
set(_resultIncludeDirs )
|
||||||
@@ -349,7 +349,7 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS)
|
|||||||
|
|
||||||
# Configure the build tree script
|
# Configure the build tree script
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4-config.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-config.in
|
||||||
${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/geant4-config
|
${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/geant4-config
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -390,7 +390,7 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS)
|
|||||||
|
|
||||||
# Configure the install tree script
|
# Configure the install tree script
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4-config.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-config.in
|
||||||
${PROJECT_BINARY_DIR}/InstallTreeFiles/geant4-config
|
${PROJECT_BINARY_DIR}/InstallTreeFiles/geant4-config
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -409,7 +409,7 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS)
|
|||||||
if(WIN32)
|
if(WIN32)
|
||||||
# No configuration just a copy
|
# No configuration just a copy
|
||||||
configure_file(
|
configure_file(
|
||||||
${CMAKE_SOURCE_DIR}/cmake/Templates/geant4-config-cmd.in
|
${PROJECT_SOURCE_DIR}/cmake/Templates/geant4-config-cmd.in
|
||||||
${PROJECT_BINARY_DIR}/InstallTreeFiles/geant4-config.cmd
|
${PROJECT_BINARY_DIR}/InstallTreeFiles/geant4-config.cmd
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -296,11 +296,6 @@ endif()
|
|||||||
# - Geant4 USolids/VecGom setup
|
# - Geant4 USolids/VecGom setup
|
||||||
if(GEANT4_USE_ALL_USOLIDS OR GEANT4_USE_PARTIAL_USOLIDS)
|
if(GEANT4_USE_ALL_USOLIDS OR GEANT4_USE_PARTIAL_USOLIDS)
|
||||||
find_package(VecGeom 1.2.0 REQUIRED)
|
find_package(VecGeom 1.2.0 REQUIRED)
|
||||||
# Shim until VecGeom supports config mode properly
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/G4VecGeomShim.cmake")
|
|
||||||
# Backward Compatibility
|
|
||||||
set(VECGEOM_LIBRARIES VecGeom::vecgeom)
|
|
||||||
|
|
||||||
geant4_save_package_variables(VecGeom VecGeom_DIR)
|
geant4_save_package_variables(VecGeom VecGeom_DIR)
|
||||||
|
|
||||||
# If VecCore_DIR is set, means updated VecGeom install used, so
|
# If VecCore_DIR is set, means updated VecGeom install used, so
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
# Create imported target to help use VecGeom (a mess because the VecGeomConfig is...)
|
|
||||||
if(VecGeom_FOUND)
|
|
||||||
if(NOT TARGET VecGeom::vecgeom)
|
|
||||||
add_library(VecGeom::vecgeom UNKNOWN IMPORTED)
|
|
||||||
# VecGeom's config file is awful, so the following is neccessary...
|
|
||||||
foreach(__vglib ${VECGEOM_LIBRARIES})
|
|
||||||
if(__vglib MATCHES ".*libvecgeom\.(a|so|dylib|lib|dll)$")
|
|
||||||
set(VECGEOM_LIBRARY "${__vglib}")
|
|
||||||
endif()
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
string(REGEX REPLACE "^\-D|;-D" ";" VECGEOM_COMPILE_DEFINITIONS "${VECGEOM_DEFINITIONS}")
|
|
||||||
set_target_properties(VecGeom::vecgeom PROPERTIES
|
|
||||||
INTERFACE_COMPILE_DEFINITIONS "${VECGEOM_COMPILE_DEFINITIONS}"
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${VECGEOM_INCLUDE_DIRS}"
|
|
||||||
INTERFACE_LINK_LIBRARIES "${VECGEOM_LIBRARIES}"
|
|
||||||
IMPORTED_LOCATION "${VECGEOM_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
@@ -333,7 +333,6 @@ endif()
|
|||||||
set(Geant4_usolids_FOUND @GEANT4_USE_USOLIDS_EITHER@)
|
set(Geant4_usolids_FOUND @GEANT4_USE_USOLIDS_EITHER@)
|
||||||
if(Geant4_usolids_FOUND)
|
if(Geant4_usolids_FOUND)
|
||||||
find_dependency(VecGeom @VecGeom_VERSION@)
|
find_dependency(VecGeom @VecGeom_VERSION@)
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/G4VecGeomShim.cmake")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# - Freetype
|
# - Freetype
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
function(geant4_add_test test)
|
function(geant4_add_test test)
|
||||||
if(NOT CMAKE_PROJECT_NAME STREQUAL Geant4)
|
if(NOT CMAKE_PROJECT_NAME STREQUAL Geant4)
|
||||||
message(WARNING "function GEANT4_ADD_TEST is only for internal Geant4 usage")
|
message(WARNING "geant4_add_test is only for internal Geant4 usage, test '${test}' is disabled")
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -116,9 +116,11 @@ function(geant4_add_test test)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
#- Locate the test driver
|
#- Locate the test driver
|
||||||
set(_driver ${CMAKE_SOURCE_DIR}/cmake/Modules/G4TestDriver.cmake)
|
# This is one of the few cases where we require ..._SOURCE_DIR to be scoped to Geant4
|
||||||
|
# because we may have called geant4_add_test after a project() call, as in the integration tests
|
||||||
|
set(_driver ${Geant4_SOURCE_DIR}/cmake/Modules/G4TestDriver.cmake)
|
||||||
if(NOT EXISTS ${_driver})
|
if(NOT EXISTS ${_driver})
|
||||||
message(FATAL_ERROR "GEANT4_ADD_TEST: G4TestDriver.cmake not found!")
|
message(FATAL_ERROR "geant4_add_test: G4TestDriver.cmake not found!")
|
||||||
endif()
|
endif()
|
||||||
set(_command ${_command} -P ${_driver})
|
set(_command ${_command} -P ${_driver})
|
||||||
|
|
||||||
@@ -147,6 +149,8 @@ function(geant4_add_test test)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Build part of the test
|
# Build part of the test
|
||||||
|
# Again, note that we scope Geant4_DIR to Geant4_BINARY_DIR so we don't accidentally pickup
|
||||||
|
# local or higher scopes
|
||||||
add_test(NAME ${__build_test_name} COMMAND ${CMAKE_CTEST_COMMAND}
|
add_test(NAME ${__build_test_name} COMMAND ${CMAKE_CTEST_COMMAND}
|
||||||
--build-and-test ${ARG_SOURCE_DIR} ${ARG_BINARY_DIR}
|
--build-and-test ${ARG_SOURCE_DIR} ${ARG_BINARY_DIR}
|
||||||
--build-generator ${CMAKE_GENERATOR}
|
--build-generator ${CMAKE_GENERATOR}
|
||||||
@@ -157,7 +161,7 @@ function(geant4_add_test test)
|
|||||||
--build-noclean
|
--build-noclean
|
||||||
--build-options
|
--build-options
|
||||||
--no-warn-unused-cli
|
--no-warn-unused-cli
|
||||||
-DGeant4_DIR=${CMAKE_BINARY_DIR}
|
-DGeant4_DIR=${Geant4_BINARY_DIR}
|
||||||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
||||||
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
|
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
|
||||||
-DCMAKE_C_FLAGS_DEBUG=${CMAKE_C_FLAGS_DEBUG}
|
-DCMAKE_C_FLAGS_DEBUG=${CMAKE_C_FLAGS_DEBUG}
|
||||||
@@ -172,7 +176,7 @@ function(geant4_add_test test)
|
|||||||
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=${CMAKE_CXX_FLAGS_RELWITHDEBINFO}
|
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=${CMAKE_CXX_FLAGS_RELWITHDEBINFO}
|
||||||
-DCMAKE_DISABLE_FIND_PACKAGE_ROOT=$<BOOL:${CMAKE_DISABLE_FIND_PACKAGE_ROOT}>
|
-DCMAKE_DISABLE_FIND_PACKAGE_ROOT=$<BOOL:${CMAKE_DISABLE_FIND_PACKAGE_ROOT}>
|
||||||
)
|
)
|
||||||
set_property(TEST ${__build_test_name} PROPERTY ENVIRONMENT Geant4_DIR=${CMAKE_BINARY_DIR})
|
set_property(TEST ${__build_test_name} PROPERTY ENVIRONMENT Geant4_DIR=${Geant4_BINARY_DIR})
|
||||||
|
|
||||||
# Build part of the test should have additional regex, and *must* have same labels
|
# Build part of the test should have additional regex, and *must* have same labels
|
||||||
if(ARG_FAILREGEX)
|
if(ARG_FAILREGEX)
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ vis_libs="-lG4Tree \
|
|||||||
-lG4visHepRep \
|
-lG4visHepRep \
|
||||||
-lG4RayTracer \
|
-lG4RayTracer \
|
||||||
-lG4VRML \
|
-lG4VRML \
|
||||||
|
-lG4ToolsSG \
|
||||||
-lG4vis_management \
|
-lG4vis_management \
|
||||||
-lG4modeling"
|
-lG4modeling"
|
||||||
|
|
||||||
@@ -214,7 +215,7 @@ feature_list="${feature_list} qt[${have_qt}]"
|
|||||||
|
|
||||||
if test "x${have_qt}" = "xyes" ; then
|
if test "x${have_qt}" = "xyes" ; then
|
||||||
vis_cflags="${vis_cflags} \
|
vis_cflags="${vis_cflags} \
|
||||||
-DG4UI_USE_QT -DG4VIS_USE_OPENGLQT @G4_QT_CFLAGS@"
|
-DG4UI_USE_QT -DG4VIS_USE_OPENGLQT -DG4VIS_USE_TOOLSSG_QT_GLES @G4_QT_CFLAGS@"
|
||||||
geant4_uses_opengl="yes"
|
geant4_uses_opengl="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -232,7 +233,7 @@ have_motif="@G4_BUILTWITH_MOTIF@"
|
|||||||
feature_list="${feature_list} motif[${have_motif}]"
|
feature_list="${feature_list} motif[${have_motif}]"
|
||||||
|
|
||||||
if test "x${have_motif}" = "xyes" ; then
|
if test "x${have_motif}" = "xyes" ; then
|
||||||
vis_cflags="${vis_cflags} -DG4UI_USE_XM -DG4VIS_USE_OPENGLXM"
|
vis_cflags="${vis_cflags} -DG4UI_USE_XM -DG4VIS_USE_OPENGLXM -DG4VIS_USE_TOOLSSG_XT_GLES"
|
||||||
geant4_uses_x11="yes"
|
geant4_uses_x11="yes"
|
||||||
geant4_uses_opengl="yes"
|
geant4_uses_opengl="yes"
|
||||||
fi
|
fi
|
||||||
@@ -251,7 +252,7 @@ have_openglx11="@G4_BUILTWITH_OPENGLX11@"
|
|||||||
feature_list="${feature_list} opengl-x11[${have_openglx11}]"
|
feature_list="${feature_list} opengl-x11[${have_openglx11}]"
|
||||||
|
|
||||||
if test "x${have_openglx11}" = "xyes" ; then
|
if test "x${have_openglx11}" = "xyes" ; then
|
||||||
vis_cflags="${vis_cflags} -DG4VIS_USE_OPENGLX"
|
vis_cflags="${vis_cflags} -DG4VIS_USE_OPENGLX -DG4VIS_USE_TOOLSSG_X11_GLES"
|
||||||
geant4_uses_opengl="yes"
|
geant4_uses_opengl="yes"
|
||||||
geant4_uses_x11="yes"
|
geant4_uses_x11="yes"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -911,4 +911,4 @@ Correlated gamma emission flag 0
|
|||||||
Max 2J for sampling of angular correlations 10
|
Max 2J for sampling of angular correlations 10
|
||||||
=======================================================================
|
=======================================================================
|
||||||
writing Event: 0
|
writing Event: 0
|
||||||
TimeTotal> 4.795 3.010
|
TimeTotal> 3.396 2.570
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1046,416 +1046,462 @@ Index : 9 used in the geometry : Yes
|
|||||||
==================================================================
|
==================================================================
|
||||||
|
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
Event 798
|
Event 1641
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: -10.1679 1.25646 -15 cm
|
|
||||||
right: -8.613 -4.64206 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 128.523 deg
|
|
||||||
-- mass of the output particle: 529.12 MeV
|
|
||||||
-- mass of the nucleus output particle: 972.086 MeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta 94.2321 -9.5743 280.8637 MeV -- 606.4845 MeV
|
|
||||||
(SCM) : eta 94.2321 -9.5743 19.4994 MeV -- 537.8841 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron -94.2321 9.5743 449.1363 MeV -- 1.0750 GeV
|
|
||||||
(SCM) : neutron -94.2321 9.5743 -19.4994 MeV -- 976.8846 MeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
4 [ 0.4000, 0.2000)
|
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 361.13 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 0 eV
|
|
||||||
cal (l) : 378.72 MeV
|
|
||||||
0 0 0 0.2582 1.315 0.1687
|
|
||||||
0 0 0.1643 2.079 269.7 66.6
|
|
||||||
0 0 0.7908 0.3713 8.649 26.3
|
|
||||||
0 0 0 0.5435 1.808 0
|
|
||||||
cal (r) : 227.765 MeV
|
|
||||||
0 0 0 0 0.7467 0
|
|
||||||
0 0 0 0.4516 2.803 0.3002
|
|
||||||
0 0 0 2.316 96.68 2.01
|
|
||||||
0 0 0 2.723 119.7 0
|
|
||||||
Event 2429
|
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: 2.53077 -2.92951 -15 cm
|
|
||||||
right: 9.17663 5.14441 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 123.821 deg
|
|
||||||
-- mass of the output particle: 487.995 MeV
|
|
||||||
-- mass of the nucleus output particle: 1.00378 GeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta 123.0979 2.7146 254.7507 MeV -- 564.0903 MeV
|
|
||||||
(SCM) : eta 123.0979 2.7146 10.9430 MeV -- 503.4081 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron -123.0979 -2.7146 475.2493 MeV -- 1.1174 GeV
|
|
||||||
(SCM) : neutron -123.0979 -2.7146 -10.9430 MeV -- 1.0114 GeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
5 [ 0.2000, 0.0000)
|
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 412.538 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 200.984 keV
|
|
||||||
cal (l) : 337.328 MeV
|
|
||||||
0 0 1.664 0 0 0
|
|
||||||
0 0 1.335 5.006 0 0
|
|
||||||
0.3258 17.37 293.3 7.904 0.6692 0
|
|
||||||
0 1.216 6.709 1.437 0.4377 0
|
|
||||||
cal (r) : 226.762 MeV
|
|
||||||
1.773 110.5 0.409 0 0 0
|
|
||||||
1.751 107.5 2.816 0 0 0
|
|
||||||
1.18 0.5061 0.3509 0 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
Event 2989
|
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: 4.73237 -5.79626 -15 cm
|
|
||||||
right: 3.95309 -1.39881 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 130.332 deg
|
|
||||||
-- mass of the output particle: 549.034 MeV
|
|
||||||
-- mass of the nucleus output particle: 933.965 MeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta -145.9732 -31.0394 273.9420 MeV -- 631.4701 MeV
|
|
||||||
(SCM) : eta -145.9732 -31.0394 -0.2252 MeV -- 568.9554 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron 145.9732 31.0394 456.0580 MeV -- 1.0500 GeV
|
|
||||||
(SCM) : neutron 145.9732 31.0394 0.2252 MeV -- 945.8133 MeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
6 [ 0.0000, -0.2000)
|
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 435.726 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 0 eV
|
|
||||||
cal (l) : 225.239 MeV
|
|
||||||
0 0 0 0 0 0
|
|
||||||
0.04669 3.147 0 0 0 0
|
|
||||||
2.868 5.926 28.13 11.22 0 0
|
|
||||||
0.2522 11.43 162.2 0 0 0
|
|
||||||
cal (r) : 406.231 MeV
|
|
||||||
0 0.7268 2.331 0.9906 0 0
|
|
||||||
0 5.883 28.76 2.167 0.5668 0
|
|
||||||
0 13.39 338 0.4482 0 0
|
|
||||||
0.5153 8.4 4.043 0 0 0
|
|
||||||
Event 3993
|
|
||||||
--- Track Points
|
--- Track Points
|
||||||
monitor : pi- [1,bp] 750.8 MeV : -3.399 -2.658 -1.25 mm [-0.006491, 0.002246, 1]
|
monitor : pi- [1,bp] 727.6 MeV : 5.296 -6.367 -1.25 mm [0.001029, -0.008203, 1]
|
||||||
target : pi- [1,bp] 750.3 MeV : 2.816 4.132 -0.2097 cm [-0.6465, -0.7629, 0.001647]
|
target : pi- [1,bp] 726.9 MeV : 3.581 3.489 -0.8475 cm [-0.6434, -0.7655, -0.007469]
|
||||||
: eta [5,op] 361.7 MeV : -8.795 -2.324 -2.001 mm [-0.9151, -0.4004, -0.04796]
|
: eta [4,op] 160.6 MeV : 1.958 1.556 -0.8668 cm [-0.254, -0.9658, -0.0515]
|
||||||
: neutron [6,np] 453.4 MeV : -8.795 -2.324 -2.001 mm [-0.3365, -0.9409, 0.03861]
|
: neutron [5,np] 585.2 MeV : 1.958 1.556 -0.8668 cm [-0.7279, -0.6857, 0.004403]
|
||||||
: pi0 [9,opdp] 140.6 MeV : -8.795 -2.324 -2.001 mm [-0.5583, -0.5776, -0.5956]
|
: pi0 [8,opdp] 140.3 MeV : 1.958 1.556 -0.8668 cm [-0.8193, 0.4065, -0.4044]
|
||||||
: pi0 [7,opdp] 271.4 MeV : -8.795 -2.324 -2.001 mm [-0.792, -0.4427, 0.4204]
|
: pi0 [6,opdp] 104.5 MeV : 1.958 1.556 -0.8668 cm [0.05322, -0.7196, 0.6923]
|
||||||
vc (l) : tp is not valid
|
vc (l) : tp is not valid
|
||||||
vc (r) : tp is not valid
|
vc (r) : tp is not valid
|
||||||
cal (l) : tp is not valid
|
cal (l) : tp is not valid
|
||||||
cal (r) : tp is not valid
|
cal (r) : tp is not valid
|
||||||
---
|
---
|
||||||
angle between the eta decay products : 63.4167 deg
|
angle between the eta decay products : 128.034 deg
|
||||||
--- Triggered angular ranges:
|
--- Triggered angular ranges:
|
||||||
4 [ 0.4000, 0.2000)
|
|
||||||
--- Production model data:
|
|
||||||
Incident particle (LAB) : pi- -3.1081 0.1627 748.5312 MeV -- 761.4385 MeV
|
|
||||||
(SCM) : pi- -1.9110 0.1000 460.2367 MeV -- 480.9380 MeV
|
|
||||||
Nucleus particle (LAB) : proton -0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 1.9110 -0.1000 -460.2367 MeV -- 1.0451 GeV
|
|
||||||
Output particle (LAB) : eta -160.4322 -17.3442 323.6746 MeV -- 656.4734 MeV
|
|
||||||
(SCM) : eta -159.2484 -17.4062 38.5819 MeV -- 572.1052 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron 157.3241 17.5070 424.8566 MeV -- 1.0432 GeV
|
|
||||||
(SCM) : neutron 159.2484 17.4062 -38.5819 MeV -- 953.9049 MeV
|
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: 9 -3 -15 cm
|
|
||||||
right: 1.83444 2.71963 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 136.83 deg
|
|
||||||
-- mass of the output particle: 114.438 MeV
|
|
||||||
-- mass of the nucleus output particle: 1.39368 GeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta -37.4803 1.8676 51.7973 MeV -- 131.1003 MeV
|
|
||||||
(SCM) : eta -37.4803 1.8676 -5.6816 MeV -- 120.5679 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron 37.4803 -1.8676 678.2027 MeV -- 1.5504 GeV
|
|
||||||
(SCM) : neutron 37.4803 -1.8676 5.6816 MeV -- 1.3942 GeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
6 [ 0.0000, -0.2000)
|
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 435.025 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 0 eV
|
|
||||||
cal (l) : 42.9592 MeV
|
|
||||||
0 0 0 0 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
0 42.96 0 0 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
cal (r) : 88.1411 MeV
|
|
||||||
1.664 0 0 0 0 0
|
|
||||||
0.2828 0.5689 14.71 67.87 0.12 0
|
|
||||||
0 2.727 0 0.1908 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
Event 5924
|
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: 9.56489 -1.39421 -15 cm
|
|
||||||
right: 9.19168 5.19126 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 130.305 deg
|
|
||||||
-- mass of the output particle: 135.243 MeV
|
|
||||||
-- mass of the nucleus output particle: 1.36168 GeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta 66.6886 1.6501 58.1750 MeV -- 161.6325 MeV
|
|
||||||
(SCM) : eta 66.6886 1.6501 -13.3160 MeV -- 151.3871 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron -66.6886 -1.6501 671.8250 MeV -- 1.5199 GeV
|
|
||||||
(SCM) : neutron -66.6886 -1.6501 13.3160 MeV -- 1.3634 GeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
6 [ 0.0000, -0.2000)
|
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 408.157 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 0 eV
|
|
||||||
cal (l) : 112.09 MeV
|
|
||||||
0 0 0 0 0 0
|
|
||||||
9.786 11.22 2.156 0 0 0
|
|
||||||
4.78 80.36 1.809 0 0 0
|
|
||||||
0.608 0 1.375 0 0 0
|
|
||||||
cal (r) : 49.5421 MeV
|
|
||||||
1.146 4.007 0.5435 0 0 0
|
|
||||||
0 43.85 0 0 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
0 0 0 0 0 0
|
|
||||||
Event 5956
|
|
||||||
--- Reconstructed data:
|
|
||||||
-- entry points:
|
|
||||||
left: 9.70422 -3.5218 -15 cm
|
|
||||||
right: -11.4703 1.74504 -15 cm
|
|
||||||
target: 0 0 0 fm
|
|
||||||
-- the angle: 149.993 deg
|
|
||||||
-- mass of the output particle: 529.794 MeV
|
|
||||||
-- mass of the nucleus output particle: 962.425 MeV
|
|
||||||
-- production model data:
|
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
|
||||||
Output particle (LAB) : eta 63.6017 -11.0495 143.7746 MeV -- 552.7388 MeV
|
|
||||||
(SCM) : eta 63.6017 -11.0495 -106.7774 MeV -- 544.2889 MeV
|
|
||||||
Nucleus output particle (LAB) : neutron -63.6017 11.0495 586.2254 MeV -- 1.1288 GeV
|
|
||||||
(SCM) : neutron -63.6017 11.0495 106.7774 MeV -- 970.4797 MeV
|
|
||||||
-- triggered angular ranges:
|
|
||||||
10 [-0.8000, -1.0000)
|
10 [-0.8000, -1.0000)
|
||||||
--- Energy Deposit
|
|
||||||
monitor : 394.652 keV
|
|
||||||
vc (l) : 0 eV
|
|
||||||
vc (r) : 0 eV
|
|
||||||
cal (l) : 310.561 MeV
|
|
||||||
0 6.519 0 0 0 0
|
|
||||||
9.283 1.784 0.7205 0 0 0
|
|
||||||
2.568 212.9 1.043 0 0 0
|
|
||||||
16.48 53.98 5.275 0 0 0
|
|
||||||
cal (r) : 242.178 MeV
|
|
||||||
0 0 0 0 1.178 1.03
|
|
||||||
0 0 0 0 144.3 79.75
|
|
||||||
0 0 0 0.1925 6.587 8.343
|
|
||||||
0 0 0 0.374 0 0.4226
|
|
||||||
Event 7017
|
|
||||||
--- Track Points
|
|
||||||
monitor : pi- [1,bp] 733.2 MeV : 1.523 0.2231 -0.125 cm [-0.006194, 0.01865, 0.9998]
|
|
||||||
target : pi- [1,bp] 732.6 MeV : 4.127 2.823 0.7481 cm [-0.6475, -0.7618, 0.01883]
|
|
||||||
: eta [4,op] 273.8 MeV : 0.3046 -1.675 0.8593 cm [-0.9414, -0.3357, 0.0318]
|
|
||||||
: neutron [5,np] 512.3 MeV : 0.3046 -1.675 0.8593 cm [-0.4228, -0.9061, 0.01331]
|
|
||||||
: gamma [7,opdp] 227.9 MeV : 0.3046 -1.675 0.8593 cm [0.4907, -0.8675, 0.08189]
|
|
||||||
: gamma [6,opdp] 384.6 MeV : 0.3046 -1.675 0.8593 cm [-0.9611, 0.275, -0.02589]
|
|
||||||
vc (l) : gamma [7,opdp] 227.9 MeV : 4.059 5.566 -0.25 cm [0.07814, 0.08189, 0.9936]
|
|
||||||
vc (r) : gamma [6,opdp] 384.6 MeV : 5.329 -6.812 -2.5 mm [-0.01691, -0.02589, 0.9995]
|
|
||||||
cal (l) : gamma [7,opdp] 227.9 MeV : 4.158 5.669 -15 cm [0.07814, 0.08189, 0.9936]
|
|
||||||
cal (r) : gamma [6,opdp] 384.6 MeV : 0.5117 -0.7136 -15 cm [-0.01691, -0.02589, 0.9995]
|
|
||||||
---
|
|
||||||
angle between the eta decay products : 135.424 deg
|
|
||||||
--- Triggered angular ranges:
|
|
||||||
7 [-0.2000, -0.4000)
|
|
||||||
--- Production model data:
|
--- Production model data:
|
||||||
Incident particle (LAB) : pi- -5.9206 15.5259 730.9847 MeV -- 744.3753 MeV
|
Incident particle (LAB) : pi- 0.0471 -5.6929 726.2610 MeV -- 739.5724 MeV
|
||||||
(SCM) : pi- -3.6656 9.6124 452.5704 MeV -- 473.7147 MeV
|
(SCM) : pi- 0.0292 -3.5315 450.5307 MeV -- 471.6675 MeV
|
||||||
Nucleus particle (LAB) : proton -0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
(SCM) : proton 3.6656 -9.6124 -452.5704 MeV -- 1.0418 GeV
|
(SCM) : proton -0.0292 3.5315 -450.5307 MeV -- 1.0408 GeV
|
||||||
Output particle (LAB) : eta -138.3710 8.7070 236.1125 MeV -- 612.4738 MeV
|
Output particle (LAB) : eta 68.4548 -8.2697 145.0305 MeV -- 570.9125 MeV
|
||||||
(SCM) : eta -136.1902 2.9882 -33.1361 MeV -- 565.5152 MeV
|
(SCM) : eta 68.4381 -6.2452 -113.2444 MeV -- 563.6487 MeV
|
||||||
Nucleus output particle (LAB) : neutron 132.4504 6.8189 494.8722 MeV -- 1.0702 GeV
|
Nucleus output particle (LAB) : neutron -68.4077 2.5768 581.2305 MeV -- 1.1069 GeV
|
||||||
(SCM) : neutron 136.1902 -2.9882 33.1361 MeV -- 949.9672 MeV
|
(SCM) : neutron -68.4381 6.2452 113.2444 MeV -- 948.8573 MeV
|
||||||
--- Reconstructed data:
|
--- Reconstructed data:
|
||||||
-- entry points:
|
-- entry points:
|
||||||
left: 4.71103 6.54986 -15 cm
|
left: -0.376863 -2.92734 -15 cm
|
||||||
right: -0.329119 -0.306664 -15 cm
|
right: -10.5606 4.59602 -15 cm
|
||||||
target: 0 0 0 fm
|
target: 0 0 0 fm
|
||||||
-- the angle: 134.514 deg
|
-- the angle: 139.676 deg
|
||||||
-- mass of the output particle: 507.72 MeV
|
-- mass of the output particle: 265.264 MeV
|
||||||
-- mass of the nucleus output particle: 962.224 MeV
|
-- mass of the nucleus output particle: 1.23882 GeV
|
||||||
-- production model data:
|
-- production model data:
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
Output particle (LAB) : eta -171.4950 19.1106 230.2017 MeV -- 583.5650 MeV
|
Output particle (LAB) : eta 65.1062 -1.0276 107.4153 MeV -- 293.5011 MeV
|
||||||
(SCM) : eta -171.4950 19.1106 -25.6934 MeV -- 536.8570 MeV
|
(SCM) : eta 65.1062 -1.0276 -22.2064 MeV -- 274.0400 MeV
|
||||||
Nucleus output particle (LAB) : neutron 171.4950 -19.1106 499.7983 MeV -- 1.0979 GeV
|
Nucleus output particle (LAB) : neutron -65.1062 1.0276 622.5847 MeV -- 1.3880 GeV
|
||||||
(SCM) : neutron 171.4950 -19.1106 25.6934 MeV -- 977.9117 MeV
|
(SCM) : neutron -65.1062 1.0276 22.2064 MeV -- 1.2407 GeV
|
||||||
-- triggered angular ranges:
|
-- triggered angular ranges:
|
||||||
6 [ 0.0000, -0.2000)
|
7 [-0.2000, -0.4000)
|
||||||
--- Energy Deposit
|
--- Energy Deposit
|
||||||
monitor : 439.85 keV
|
monitor : 588.608 keV
|
||||||
vc (l) : 0 eV
|
vc (l) : 0 eV
|
||||||
vc (r) : 0 eV
|
vc (r) : 0 eV
|
||||||
cal (l) : 194.994 MeV
|
cal (l) : 186.41 MeV
|
||||||
0.3838 21.27 117.5 0 0 0
|
0 0 0.684 0 0 0
|
||||||
0 4.991 50.42 0 0 0
|
0 0 0.5856 1.142 1.296 0
|
||||||
0 0 0 0.4269 0 0
|
0 0 145.3 29.59 1.404 0
|
||||||
|
0 0 3.243 1.18 2.003 0
|
||||||
|
cal (r) : 107.091 MeV
|
||||||
|
0 0 0 0 28.89 2.781
|
||||||
|
0 0 0 0 66.86 6.9
|
||||||
|
0 0 0 0 0.9879 0.671
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
cal (r) : 388.571 MeV
|
Event 3328
|
||||||
1.124 0.6301 0 1.817 2.379 0
|
|
||||||
0 0 9.691 34.91 2.508 0.2849
|
|
||||||
0 0.4146 243.6 90.07 0.2577 0.3332
|
|
||||||
0 0 0.2893 0.2172 0 0
|
|
||||||
Event 11869
|
|
||||||
--- Reconstructed data:
|
--- Reconstructed data:
|
||||||
-- entry points:
|
-- entry points:
|
||||||
left: -11.3368 0.949074 -15 cm
|
left: -7.78374 3.37035 -15 cm
|
||||||
right: 9.65803 -3.2602 -15 cm
|
right: -0.742273 1.11963 -15 cm
|
||||||
target: 0 0 0 fm
|
target: 0 0 0 fm
|
||||||
-- the angle: 110.174 deg
|
-- the angle: 123.181 deg
|
||||||
-- mass of the output particle: 205.313 MeV
|
-- mass of the output particle: 281.914 MeV
|
||||||
-- mass of the nucleus output particle: 1.27494 GeV
|
-- mass of the nucleus output particle: 1.22988 GeV
|
||||||
-- production model data:
|
-- production model data:
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
Output particle (LAB) : eta 104.6313 -0.8665 162.9122 MeV -- 282.2094 MeV
|
Output particle (LAB) : eta -33.0283 11.4748 150.5434 MeV -- 321.4989 MeV
|
||||||
(SCM) : eta 104.6313 -0.8665 44.8406 MeV -- 234.7603 MeV
|
(SCM) : eta -33.0283 11.4748 12.1760 MeV -- 284.3351 MeV
|
||||||
Nucleus output particle (LAB) : neutron -104.6313 0.8665 567.0878 MeV -- 1.3993 GeV
|
Nucleus output particle (LAB) : neutron 33.0283 -11.4748 579.4566 MeV -- 1.3600 GeV
|
||||||
(SCM) : neutron -104.6313 0.8665 -44.8406 MeV -- 1.2800 GeV
|
(SCM) : neutron 33.0283 -11.4748 -12.1760 MeV -- 1.2304 GeV
|
||||||
-- triggered angular ranges:
|
-- triggered angular ranges:
|
||||||
4 [ 0.4000, 0.2000)
|
4 [ 0.4000, 0.2000)
|
||||||
--- Energy Deposit
|
--- Energy Deposit
|
||||||
monitor : 382.425 keV
|
monitor : 394.595 keV
|
||||||
vc (l) : 0 eV
|
vc (l) : 0 eV
|
||||||
vc (r) : 0 eV
|
vc (r) : 0 eV
|
||||||
cal (l) : 206.21 MeV
|
cal (l) : 148.173 MeV
|
||||||
0 0 0 0 0 0.2006
|
0 0 0 7.685 0.3886 0
|
||||||
0 0 0.1975 0 123.7 60.78
|
0 0 0 2.188 134 1.496
|
||||||
0 0 0 0.7977 9.268 8.649
|
0 0 0 0.9898 1.382 0
|
||||||
0 0 0 0 0 2.636
|
|
||||||
cal (r) : 75.9994 MeV
|
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
0.6584 0.3541 0 0.9066 0 0
|
cal (r) : 173.326 MeV
|
||||||
2.061 65.84 0.6499 0 0 0
|
0 0 0 0.2579 0 0
|
||||||
4.803 0.7233 0 0 0 0
|
0 0 121.7 29.04 1.852 0
|
||||||
Event 12029
|
0 0.5265 10.85 5.139 2.226 1.718
|
||||||
|
0 0 0 0 0 0
|
||||||
|
Event 9787
|
||||||
|
--- Track Points
|
||||||
|
monitor : pi- [1,bp] 726.9 MeV : -3.135 -6.11 -1.25 mm [0.01113, 0.00867, 0.9999]
|
||||||
|
target : pi- [1,bp] 726.3 MeV : 3.2 3.842 -0.4164 cm [-0.6342, -0.7731, 0.00694]
|
||||||
|
: eta [6,op] 308.1 MeV : 3.932 4.199 -3.856 mm [-0.2546, -0.9629, -0.08983]
|
||||||
|
: neutron [7,np] 465 MeV : 3.932 4.199 -3.856 mm [-0.8191, -0.5691, 0.07163]
|
||||||
|
: gamma [9,opdp] 394.8 MeV : 3.932 4.199 -3.856 mm [0.3663, -0.9278, -0.07045]
|
||||||
|
: gamma [8,opdp] 233.7 MeV : 3.932 4.199 -3.856 mm [-0.9545, 0.2982, 0.0006084]
|
||||||
|
vc (l) : gamma [9,opdp] 394.8 MeV : -3.026 -4.558 -0.25 cm [-0.06012, -0.07045, 0.9957]
|
||||||
|
vc (r) : gamma [8,opdp] 233.7 MeV : -2.931 -0.3497 -0.25 cm [-0.04102, 0.0006084, 0.9992]
|
||||||
|
cal (l) : gamma [9,opdp] 394.8 MeV : -3.102 -4.646 -15 cm [-0.06012, -0.07045, 0.9957]
|
||||||
|
cal (r) : gamma [8,opdp] 233.7 MeV : -2.982 -0.3489 -15 cm [-0.04102, 0.0006084, 0.9992]
|
||||||
|
---
|
||||||
|
angle between the eta decay products : 128.784 deg
|
||||||
|
--- Triggered angular ranges:
|
||||||
|
5 [ 0.2000, 0.0000)
|
||||||
|
--- Production model data:
|
||||||
|
Incident particle (LAB) : pi- 8.9130 5.6356 725.2334 MeV -- 738.6166 MeV
|
||||||
|
(SCM) : pi- 5.5313 3.4973 450.0697 MeV -- 471.2594 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton -5.5313 -3.4973 -450.0697 MeV -- 1.0407 GeV
|
||||||
|
Output particle (LAB) : eta 130.5997 -27.6759 277.6574 MeV -- 628.5449 MeV
|
||||||
|
(SCM) : eta 127.2685 -29.7822 6.5998 MeV -- 563.2766 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron -121.6868 33.3114 447.5760 MeV -- 1.0483 GeV
|
||||||
|
(SCM) : neutron -127.2685 29.7822 -6.5998 MeV -- 948.6363 MeV
|
||||||
--- Reconstructed data:
|
--- Reconstructed data:
|
||||||
-- entry points:
|
-- entry points:
|
||||||
left: 5.88138 3.28708 -15 cm
|
left: -3.87387 -4.292 -15 cm
|
||||||
right: -9.39562 -1.46741 -15 cm
|
right: -3.6728 -0.92534 -15 cm
|
||||||
target: 0 0 0 fm
|
target: 0 0 0 fm
|
||||||
-- the angle: 144.486 deg
|
-- the angle: 129.6 deg
|
||||||
-- mass of the output particle: 560.64 MeV
|
-- mass of the output particle: 510.46 MeV
|
||||||
-- mass of the nucleus output particle: 919.188 MeV
|
-- mass of the nucleus output particle: 984.741 MeV
|
||||||
-- production model data:
|
-- production model data:
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
Output particle (LAB) : eta 132.6654 14.8982 188.5831 MeV -- 606.3848 MeV
|
Output particle (LAB) : eta 111.4910 -29.1259 253.7676 MeV -- 581.5895 MeV
|
||||||
(SCM) : eta 132.6654 14.8982 -82.8902 MeV -- 582.2454 MeV
|
(SCM) : eta 111.4910 -29.1259 1.4184 MeV -- 523.3072 MeV
|
||||||
Nucleus output particle (LAB) : neutron -132.6654 -14.8982 541.4169 MeV -- 1.0751 GeV
|
Nucleus output particle (LAB) : neutron -111.4910 29.1259 476.2324 MeV -- 1.0999 GeV
|
||||||
(SCM) : neutron -132.6654 -14.8982 82.8902 MeV -- 932.5233 MeV
|
(SCM) : neutron -111.4910 29.1259 -1.4184 MeV -- 991.4615 MeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
5 [ 0.2000, 0.0000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 534.518 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 361.469 MeV
|
||||||
|
0 0 0.58 0 0 0
|
||||||
|
0 0 0.9209 2.937 3.475 0
|
||||||
|
0 0 1.377 265.1 8.45 0.5234
|
||||||
|
0 0 8.387 55.39 13.37 0.9396
|
||||||
|
cal (r) : 220.12 MeV
|
||||||
|
0 0 0.705 1.161 0.1538 0
|
||||||
|
0 0.0312 1.433 17.06 3.468 0
|
||||||
|
0 0.0285 2.425 187.8 1.144 3.196
|
||||||
|
0 0 0 1.013 0.5098 0
|
||||||
|
Event 9965
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: -8.91535 -0.931329 -15 cm
|
||||||
|
right: -10.4522 3.53586 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 131.407 deg
|
||||||
|
-- mass of the output particle: 515.675 MeV
|
||||||
|
-- mass of the nucleus output particle: 962.117 MeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta -153.1243 17.0718 216.7404 MeV -- 580.2034 MeV
|
||||||
|
(SCM) : eta -153.1243 17.0718 -39.0163 MeV -- 539.6127 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron 153.1243 -17.0718 513.2596 MeV -- 1.1013 GeV
|
||||||
|
(SCM) : neutron 153.1243 -17.0718 39.0163 MeV -- 975.1560 MeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
7 [-0.2000, -0.4000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 364.811 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 225.836 MeV
|
||||||
|
0 0 0 0.4293 1.218 0.2184
|
||||||
|
0 0 0 6.695 21.83 1.509
|
||||||
|
0 0 0.4522 0.3711 187.1 2.749
|
||||||
|
0 0 0 0.04044 0.6289 2.629
|
||||||
|
cal (r) : 354.368 MeV
|
||||||
|
0 0 0 0.2555 12.36 23.69
|
||||||
|
0 0 0 1.508 285.8 22.27
|
||||||
|
0 0 0 0.1879 5.721 2.133
|
||||||
|
0 0 0 0 0.4396 0
|
||||||
|
Event 16147
|
||||||
|
--- Track Points
|
||||||
|
monitor : pi- [1,bp] 731.9 MeV : -6.418 3.792 -1.25 mm [0.001548, 0.004626, 1]
|
||||||
|
target : pi- [1,bp] 731.4 MeV : 2.768 4.164 0.5134 cm [-0.6407, -0.7678, 0.005045]
|
||||||
|
: eta [5,op] 415.8 MeV : 0.5381 1.492 0.5309 cm [-0.521, -0.8535, -0.002551]
|
||||||
|
: neutron [6,np] 325.1 MeV : 0.5381 1.492 0.5309 cm [-0.774, -0.6331, 0.01319]
|
||||||
|
: pi0 [9,opdp] 253.2 MeV : 0.5381 1.492 0.5309 cm [0.1439, -0.9877, -0.06047]
|
||||||
|
: pi0 [7,opdp] 174.8 MeV : 0.5381 1.492 0.5309 cm [-0.7719, -0.6357, 0.004266]
|
||||||
|
vc (l) : tp is not valid
|
||||||
|
vc (r) : tp is not valid
|
||||||
|
cal (l) : tp is not valid
|
||||||
|
cal (r) : tp is not valid
|
||||||
|
---
|
||||||
|
angle between the eta decay products : 58.8985 deg
|
||||||
|
--- Triggered angular ranges:
|
||||||
|
1 [ 1.0000, 0.8000)
|
||||||
|
--- Production model data:
|
||||||
|
Incident particle (LAB) : pi- 1.7135 3.2281 730.4812 MeV -- 743.7042 MeV
|
||||||
|
(SCM) : pi- 1.0611 1.9991 452.3827 MeV -- 473.4290 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton -1.0611 -1.9991 -452.3827 MeV -- 1.0416 GeV
|
||||||
|
Output particle (LAB) : eta 62.1664 -1.0607 411.0891 MeV -- 687.7593 MeV
|
||||||
|
(SCM) : eta 61.4948 -2.3258 124.7923 MeV -- 565.2547 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron -60.4529 4.2887 319.3921 MeV -- 994.2169 MeV
|
||||||
|
(SCM) : neutron -61.4948 2.3258 -124.7923 MeV -- 949.8122 MeV
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: -0.310058 -3.34993 -15 cm
|
||||||
|
right: -9.59452 -3.67649 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 138.278 deg
|
||||||
|
-- mass of the output particle: 206.172 MeV
|
||||||
|
-- mass of the nucleus output particle: 1.27759 GeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta 105.9976 -14.3454 97.5030 MeV -- 251.9032 MeV
|
||||||
|
(SCM) : eta 105.9976 -14.3454 -13.1628 MeV -- 232.6406 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron -105.9976 14.3454 632.4970 MeV -- 1.4296 GeV
|
||||||
|
(SCM) : neutron -105.9976 14.3454 13.1628 MeV -- 1.2821 GeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
6 [ 0.0000, -0.2000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 359.503 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 186.728 MeV
|
||||||
|
0 0 0.1679 0 0 0
|
||||||
|
0 0 1.079 0.7247 0 0
|
||||||
|
0 0 39.5 138.5 0 0
|
||||||
|
0 1.605 0.5086 4.656 0 0
|
||||||
|
cal (r) : 65.1753 MeV
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 0 0 1.006 0
|
||||||
|
0 0 0 1.488 55.44 3.358
|
||||||
|
0 0 0 0 3.27 0.614
|
||||||
|
Event 17919
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: 8.40536 2.98093 -15 cm
|
||||||
|
right: -6.97079 3.11952 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 144.149 deg
|
||||||
|
-- mass of the output particle: 143.193 MeV
|
||||||
|
-- mass of the nucleus output particle: 1.34087 GeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta -89.1324 9.0604 54.9867 MeV -- 177.6361 MeV
|
||||||
|
(SCM) : eta -89.1324 9.0604 -24.5677 MeV -- 170.6886 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron 89.1324 -9.0604 675.0133 MeV -- 1.5039 GeV
|
||||||
|
(SCM) : neutron 89.1324 -9.0604 24.5677 MeV -- 1.3441 GeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
7 [-0.2000, -0.4000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 397.496 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 41.636 MeV
|
||||||
|
0 0.09364 0.1798 0 0 0
|
||||||
|
0 40.64 0.1553 0 0 0
|
||||||
|
0 0.5719 0 0 0 0
|
||||||
|
0 0 0 0 0 0
|
||||||
|
cal (r) : 136 MeV
|
||||||
|
0 1.012 0 8.749 6.042 1.757
|
||||||
|
0 0 0 14.46 89.9 1.616
|
||||||
|
0 0 0 0 11.19 0
|
||||||
|
0 0 0.6465 0.288 0.3434 0
|
||||||
|
Event 18296
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: 3.31093 2.98898 -15 cm
|
||||||
|
right: -10.4384 4.37234 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 142.404 deg
|
||||||
|
-- mass of the output particle: 261.254 MeV
|
||||||
|
-- mass of the nucleus output particle: 1.23969 GeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta -63.8778 17.8392 85.9277 MeV -- 282.9063 MeV
|
||||||
|
(SCM) : eta -63.8778 17.8392 -40.9532 MeV -- 272.6345 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron 63.8778 -17.8392 644.0723 MeV -- 1.3986 GeV
|
||||||
|
(SCM) : neutron 63.8778 -17.8392 40.9532 MeV -- 1.2421 GeV
|
||||||
-- triggered angular ranges:
|
-- triggered angular ranges:
|
||||||
8 [-0.4000, -0.6000)
|
8 [-0.4000, -0.6000)
|
||||||
--- Energy Deposit
|
--- Energy Deposit
|
||||||
monitor : 394.343 keV
|
monitor : 598.858 keV
|
||||||
vc (l) : 0 eV
|
vc (l) : 0 eV
|
||||||
vc (r) : 0 eV
|
vc (r) : 0 eV
|
||||||
cal (l) : 375.909 MeV
|
cal (l) : 110.332 MeV
|
||||||
1.195 46.67 5.232 0 0.4769 0
|
0.2515 1.422 1.498 0.9109 0 0
|
||||||
1.174 146.9 162.1 0.3446 0 0
|
0 10.21 85.72 1.237 0 0
|
||||||
0 6.088 2.901 1.315 0 0
|
0 0 7.856 0 1.229 0
|
||||||
0.6038 0 0 0 0 0.9061
|
0 0 0 0 0 0
|
||||||
cal (r) : 230.476 MeV
|
cal (r) : 172.574 MeV
|
||||||
0 0 0 0 1.701 3.459
|
0 0 0 0 40.98 4.353
|
||||||
0 0 0 1.772 3.452 1.629
|
0 0 0 0.5754 99.09 26.23
|
||||||
0 0 0 4.701 206.1 3.071
|
0 0 0 0 0 0.4878
|
||||||
0 0 0 0.2394 3.274 1.056
|
0 0 0 0.8598 0 0
|
||||||
Event 14081
|
Event 21366
|
||||||
|
--- Track Points
|
||||||
|
monitor : pi- [1,bp] 731 MeV : -7.494 6.98 -1.25 mm [0.004493, -0.01001, 0.9999]
|
||||||
|
target : pi- [1,bp] 730.5 MeV : 2.712 4.201 0.3652 cm [-0.6383, -0.7697, -0.01238]
|
||||||
|
: eta [4,op] 324.3 MeV : 0.174 1.14 0.316 cm [-0.9016, -0.4308, -0.03866]
|
||||||
|
: neutron [5,np] 456.2 MeV : 0.174 1.14 0.316 cm [-0.3791, -0.9253, 0.003903]
|
||||||
|
: gamma [7,opdp] 406.6 MeV : 0.174 1.14 0.316 cm [-0.9875, 0.1544, -0.0321]
|
||||||
|
: gamma [6,opdp] 230 MeV : 0.174 1.14 0.316 cm [0.4744, -0.8803, 0.002244]
|
||||||
|
vc (l) : gamma [6,opdp] 230 MeV : 4.105 0.4502 -0.25 cm [0.05795, 0.002244, 0.9983]
|
||||||
|
vc (r) : gamma [7,opdp] 406.6 MeV : 5.13 -1.578 -0.25 cm [0.1064, -0.0321, 0.9938]
|
||||||
|
cal (l) : gamma [6,opdp] 230 MeV : 4.178 0.453 -15 cm [0.05795, 0.002244, 0.9983]
|
||||||
|
cal (r) : gamma [7,opdp] 406.6 MeV : 5.264 -1.618 -15 cm [0.1064, -0.0321, 0.9938]
|
||||||
|
---
|
||||||
|
angle between the eta decay products : 127.194 deg
|
||||||
|
--- Triggered angular ranges:
|
||||||
|
5 [ 0.2000, 0.0000)
|
||||||
|
--- Production model data:
|
||||||
|
Incident particle (LAB) : pi- 4.6979 -10.7566 729.5018 MeV -- 742.8260 MeV
|
||||||
|
(SCM) : pi- 2.9104 -6.6639 451.9384 MeV -- 473.0550 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton -2.9104 6.6639 -451.9384 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta -134.1591 -12.5372 294.9517 MeV -- 636.6358 MeV
|
||||||
|
(SCM) : eta -135.9255 -8.4927 20.6599 MeV -- 564.9137 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron 138.8570 1.7806 434.5501 MeV -- 1.0445 GeV
|
||||||
|
(SCM) : neutron 135.9255 8.4927 -20.6599 MeV -- 949.6093 MeV
|
||||||
--- Reconstructed data:
|
--- Reconstructed data:
|
||||||
-- entry points:
|
-- entry points:
|
||||||
left: 1.76674 -4.72587 -15 cm
|
left: 4.94971 1.10712 -15 cm
|
||||||
right: 1.7346 -3.91783 -15 cm
|
right: 6.54506 -2.51826 -15 cm
|
||||||
target: 0 0 0 fm
|
target: 0 0 0 fm
|
||||||
-- the angle: 129.401 deg
|
-- the angle: 128.499 deg
|
||||||
-- mass of the output particle: 155.598 MeV
|
-- mass of the output particle: 550.735 MeV
|
||||||
-- mass of the nucleus output particle: 1.35839 GeV
|
-- mass of the nucleus output particle: 950.211 MeV
|
||||||
-- production model data:
|
-- production model data:
|
||||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
Output particle (LAB) : eta 7.6278 -12.4081 72.3577 MeV -- 172.2165 MeV
|
Output particle (LAB) : eta -97.0917 -11.4325 282.7088 MeV -- 626.7307 MeV
|
||||||
(SCM) : eta 7.6278 -12.4081 -2.6730 MeV -- 156.3011 MeV
|
(SCM) : eta -97.0917 -11.4325 11.7906 MeV -- 559.4695 MeV
|
||||||
Nucleus output particle (LAB) : neutron -7.6278 12.4081 657.6423 MeV -- 1.5093 GeV
|
Nucleus output particle (LAB) : neutron 97.0917 11.4325 447.2912 MeV -- 1.0548 GeV
|
||||||
(SCM) : neutron -7.6278 12.4081 2.6730 MeV -- 1.3585 GeV
|
(SCM) : neutron 97.0917 11.4325 -11.7906 MeV -- 955.2992 MeV
|
||||||
-- triggered angular ranges:
|
-- triggered angular ranges:
|
||||||
6 [ 0.0000, -0.2000)
|
5 [ 0.2000, 0.0000)
|
||||||
--- Energy Deposit
|
--- Energy Deposit
|
||||||
monitor : 708.214 keV
|
monitor : 411.133 keV
|
||||||
vc (l) : 0 eV
|
vc (l) : 0 eV
|
||||||
vc (r) : 0 eV
|
vc (r) : 0 eV
|
||||||
cal (l) : 89.1994 MeV
|
cal (l) : 244.603 MeV
|
||||||
0 0 0 0 0 0
|
3.085 0.7086 2.981 0 0 0
|
||||||
0 0.2924 0 0 0 0
|
0 72.94 77.82 1.009 0 0
|
||||||
0 0 73.42 2.438 0 0
|
0 5.119 77.07 2.293 0 0
|
||||||
0 0 8.142 4.904 0 0
|
0 0 1.182 0.3942 0 0
|
||||||
cal (r) : 83.0171 MeV
|
cal (r) : 382.128 MeV
|
||||||
|
0.6585 0 0.2104 0 0 0
|
||||||
|
0 16.61 6.177 0.4858 0 0
|
||||||
|
0.3016 180 160.1 3.054 0 0
|
||||||
|
8.783 3.39 2.319 0 0 0
|
||||||
|
Event 22324
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: 4.44379 1.20777 -15 cm
|
||||||
|
right: 3.23816 2.72501 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 131.016 deg
|
||||||
|
-- mass of the output particle: 250.125 MeV
|
||||||
|
-- mass of the nucleus output particle: 1.26435 GeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta -2.4134 9.1271 114.0641 MeV -- 275.0682 MeV
|
||||||
|
(SCM) : eta -2.4134 9.1271 -5.9425 MeV -- 250.3741 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron 2.4134 -9.1271 615.9359 MeV -- 1.4064 GeV
|
||||||
|
(SCM) : neutron 2.4134 -9.1271 5.9425 MeV -- 1.2644 GeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
8 [-0.4000, -0.6000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 412.732 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 132.15 MeV
|
||||||
|
0 0.9157 0.3385 0 0 0
|
||||||
|
0 9.244 104.9 1.408 0 0
|
||||||
|
0 10.95 1.704 0.9678 0 0.08009
|
||||||
|
0 1.666 0 0 0 0
|
||||||
|
cal (r) : 142.918 MeV
|
||||||
|
0 4.429 16.1 0.5233 0 0
|
||||||
|
0 0.8044 112.5 3.318 0 0
|
||||||
|
0 0.4607 1.393 1.082 0 0
|
||||||
|
1.141 0.3462 0 0 0.8124 0
|
||||||
|
Event 22431
|
||||||
|
--- Reconstructed data:
|
||||||
|
-- entry points:
|
||||||
|
left: -8.34188 0.360498 -15 cm
|
||||||
|
right: -7.64626 -4.3102 -15 cm
|
||||||
|
target: 0 0 0 fm
|
||||||
|
-- the angle: 129.259 deg
|
||||||
|
-- mass of the output particle: 263.057 MeV
|
||||||
|
-- mass of the nucleus output particle: 1.23714 GeV
|
||||||
|
-- production model data:
|
||||||
|
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||||
|
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||||
|
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||||
|
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||||
|
Output particle (LAB) : eta 79.3200 -5.9568 144.4376 MeV -- 310.4646 MeV
|
||||||
|
(SCM) : eta 79.3200 -5.9568 10.7158 MeV -- 275.0288 MeV
|
||||||
|
Nucleus output particle (LAB) : neutron -79.3200 5.9568 585.5624 MeV -- 1.3710 GeV
|
||||||
|
(SCM) : neutron -79.3200 5.9568 -10.7158 MeV -- 1.2397 GeV
|
||||||
|
-- triggered angular ranges:
|
||||||
|
5 [ 0.2000, 0.0000)
|
||||||
|
--- Energy Deposit
|
||||||
|
monitor : 397.302 keV
|
||||||
|
vc (l) : 0 eV
|
||||||
|
vc (r) : 0 eV
|
||||||
|
cal (l) : 209.151 MeV
|
||||||
|
0 0 0 1.117 0.4932 0
|
||||||
|
0 0 0 4.496 103.5 0.3334
|
||||||
|
0 0 0 2.122 96.15 0.4045
|
||||||
|
0 0 0 0 0.3357 0.162
|
||||||
|
cal (r) : 101.314 MeV
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
0 0.2615 79.28 1.154 0.3255 0
|
0 0 0 5.303 89.99 0
|
||||||
0 0 0.8978 1.102 0 0
|
0 0 0 1.21 4.811 0
|
||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 14082, effectively: 10
|
Number of events processed : 22432, effectively: 10
|
||||||
User=11.770000s Real=11.900029s Sys=0.010000s
|
User=15.640000s Real=15.761706s Sys=0.000000s
|
||||||
|
|
||||||
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
|
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
|
||||||
1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 402 ) | 0.00000000 ( 0 / 402 / 509 )
|
1 [ 1.0000, 0.8000) | 0.00160772 ( 1 / 622 ) | 0.00000000 ( 0 / 622 / 760 )
|
||||||
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 361 ) | 0.00000000 ( 0 / 361 / 440 )
|
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 613 ) | 0.00000000 ( 0 / 613 / 772 )
|
||||||
3 [ 0.6000, 0.4000) | 0.00000000 ( 0 / 392 ) | 0.00000000 ( 0 / 392 / 487 )
|
3 [ 0.6000, 0.4000) | 0.00000000 ( 0 / 624 ) | 0.00000000 ( 0 / 624 / 781 )
|
||||||
4 [ 0.4000, 0.2000) | 0.00261097 ( 1 / 383 ) | 0.00000000 ( 0 / 383 / 481 )
|
4 [ 0.4000, 0.2000) | 0.00000000 ( 0 / 590 ) | 0.00000000 ( 0 / 590 / 729 )
|
||||||
5 [ 0.2000, 0.0000) | 0.00000000 ( 0 / 423 ) | 0.00000000 ( 0 / 423 / 520 )
|
5 [ 0.2000, 0.0000) | 0.00315956 ( 2 / 633 ) | 0.00315956 ( 2 / 633 / 766 )
|
||||||
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 401 ) | 0.00498753 ( 2 / 401 / 497 )
|
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 614 ) | 0.00162866 ( 1 / 614 / 755 )
|
||||||
7 [-0.2000, -0.4000) | 0.00257732 ( 1 / 388 ) | 0.00000000 ( 0 / 388 / 481 )
|
7 [-0.2000, -0.4000) | 0.00000000 ( 0 / 609 ) | 0.00164204 ( 1 / 609 / 755 )
|
||||||
8 [-0.4000, -0.6000) | 0.00000000 ( 0 / 369 ) | 0.00000000 ( 0 / 369 / 475 )
|
8 [-0.4000, -0.6000) | 0.00000000 ( 0 / 643 ) | 0.00000000 ( 0 / 643 / 808 )
|
||||||
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 424 ) | 0.00000000 ( 0 / 424 / 524 )
|
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 580 ) | 0.00000000 ( 0 / 580 / 746 )
|
||||||
10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 387 ) | 0.00000000 ( 0 / 387 / 483 )
|
10 [-0.8000, -1.0000) | 0.00160772 ( 1 / 622 ) | 0.00000000 ( 0 / 622 / 748 )
|
||||||
---
|
---
|
||||||
False hits (edt | rec): 8 | 8
|
False hits (edt | rec): 6 | 6
|
||||||
|
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 17; of which, static: 3
|
Number of memory pools allocated: 17; of which, static: 3
|
||||||
Dynamic pools deleted: 14 / Total memory freed: 0.86 MB
|
Dynamic pools deleted: 14 / Total memory freed: 0.68 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -672,6 +672,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
====================================================================
|
====================================================================
|
||||||
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
||||||
@@ -692,6 +709,8 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
|
|
||||||
Process: RadioactiveDecay
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
Hadronic Processes for He3
|
Hadronic Processes for He3
|
||||||
|
|
||||||
@@ -1127,7 +1146,7 @@ Reading AM_organs.dat
|
|||||||
Reading OrganMasses.dat
|
Reading OrganMasses.dat
|
||||||
NOrganIDs: 142
|
NOrganIDs: 142
|
||||||
Writing output to ICRP110.out
|
Writing output to ICRP110.out
|
||||||
Total energy deposited over all Organs within the Phantom is 1.44781e-09 J
|
Total energy deposited over all Organs within the Phantom is 1.44979e-09 J
|
||||||
Total absorbed dose over all phantom organs is 3.23137e-09 Gy
|
Total absorbed dose over all phantom organs is 2.97061e-09 Gy
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
|
|||||||
@@ -2,27 +2,31 @@
|
|||||||
--------------------------------
|
--------------------------------
|
||||||
OrganID Edep (J) Dose (Gy)
|
OrganID Edep (J) Dose (Gy)
|
||||||
--------------------------------
|
--------------------------------
|
||||||
6 | 1.20078e-14 2.35446e-12
|
4 | 2.46319e-13 8.67014e-12
|
||||||
26 | 3.28199e-10 5.83102e-10
|
5 | 1.93467e-13 6.29572e-12
|
||||||
27 | 2.78845e-10 6.182e-10
|
26 | 3.4962e-10 6.2116e-10
|
||||||
39 | 1.85489e-12 2.4368e-11
|
27 | 2.65428e-10 5.88455e-10
|
||||||
40 | 1.45248e-13 1.96547e-12
|
39 | 1.08487e-12 1.42521e-11
|
||||||
47 | 1.76321e-12 1.71318e-11
|
40 | 1.66859e-14 2.2579e-13
|
||||||
48 | 3.82399e-12 5.19917e-11
|
47 | 2.03891e-12 1.98106e-11
|
||||||
61 | 5.16747e-10 3.56377e-10
|
48 | 1.08394e-13 1.47374e-12
|
||||||
106 | 6.89064e-11 5.65822e-11
|
61 | 5.54681e-10 3.82539e-10
|
||||||
116 | 1.53542e-10 1.46438e-10
|
67 | 1.38242e-20 1.89633e-18
|
||||||
120 | 2.54787e-11 5.9964e-10
|
106 | 5.88639e-11 4.83359e-11
|
||||||
121 | 2.67672e-11 6.29965e-10
|
116 | 1.41146e-10 1.34616e-10
|
||||||
122 | 4.17127e-11 1.43175e-10
|
120 | 2.21312e-11 5.20858e-10
|
||||||
126 | 1.35803e-20 3.70845e-19
|
121 | 2.17541e-11 5.11982e-10
|
||||||
141 | 1.25856e-14 8.15657e-14
|
122 | 3.24611e-11 1.1142e-10
|
||||||
|
126 | 1.87478e-14 5.11956e-13
|
||||||
|
128 | 7.37468e-20 1.47376e-18
|
||||||
|
133 | 1.03754e-19 2.45398e-18
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
-------------------------------ORGAN INFO-----------------------------------
|
-------------------------------ORGAN INFO-----------------------------------
|
||||||
-----------------(of organs where edep/dose was recorded)-------------------
|
-----------------(of organs where edep/dose was recorded)-------------------
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
ID Organ Name Material ID Density (g/cm^3)
|
ID Organ Name Material ID Density (g/cm^3)
|
||||||
6 Oral mucosa, lips and cheeks 29 1.050
|
4 Posterior nasal passage down to larynx (ET2) 45 1.030
|
||||||
|
5 Oral mucosa, tongue 29 1.050
|
||||||
26 Cranium, cortical 2 1.920
|
26 Cranium, cortical 2 1.920
|
||||||
27 Cranium, spongiosa 8 1.157
|
27 Cranium, spongiosa 8 1.157
|
||||||
39 Mandible, cortical 2 1.920
|
39 Mandible, cortical 2 1.920
|
||||||
@@ -30,16 +34,18 @@ ID Organ Name Material ID Density (g/cm^3)
|
|||||||
47 Cervical spine, cortical 2 1.920
|
47 Cervical spine, cortical 2 1.920
|
||||||
48 Cervical spine, spongiosa 17 1.050
|
48 Cervical spine, spongiosa 17 1.050
|
||||||
61 Brain 32 1.050
|
61 Brain 32 1.050
|
||||||
|
67 Eye bulb, left 34 1.050
|
||||||
106 Muscle, head 29 1.050
|
106 Muscle, head 29 1.050
|
||||||
116 Residual tissue, head 49 0.950
|
116 Residual tissue, head 49 0.950
|
||||||
120 Salivary glands, left 45 1.030
|
120 Salivary glands, left 45 1.030
|
||||||
121 Salivary glands, right 45 1.030
|
121 Salivary glands, right 45 1.030
|
||||||
122 Skin, head 27 1.090
|
122 Skin, head 27 1.090
|
||||||
126 Spinal cord 45 1.030
|
126 Spinal cord 45 1.030
|
||||||
141 Phantom Top/Bottom Skin Layer
|
128 Teeth 1 2.750
|
||||||
|
133 Tongue (inner part) 29 1.050
|
||||||
|
|
||||||
Total Edep over all organs = 1.44781e-09 J
|
Total Edep over all organs = 1.44979e-09 J
|
||||||
Total dose absorbed over all organs = 3.23137e-09 Gy
|
Total dose absorbed over all organs = 2.97061e-09 Gy
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
----------------ORGAN ENERGY DEPOSITIONS AND ABSORBED DOSE------------------
|
----------------ORGAN ENERGY DEPOSITIONS AND ABSORBED DOSE------------------
|
||||||
@@ -48,13 +54,13 @@ Total dose absorbed over all organs = 3.23137e-09 Gy
|
|||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
OrganID Edep (J) Dose (Gy)
|
OrganID Edep (J) Dose (Gy)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
0 | 9.95132e-11 0
|
0 | 1.58008e-11 0
|
||||||
1 | 0 0
|
1 | 0 0
|
||||||
2 | 0 0
|
2 | 0 0
|
||||||
3 | 0 0
|
3 | 0 0
|
||||||
4 | 0 0
|
4 | 2.46319e-13 8.67014e-12
|
||||||
5 | 0 0
|
5 | 1.93467e-13 6.29572e-12
|
||||||
6 | 1.20078e-14 2.35446e-12
|
6 | 0 0
|
||||||
7 | 0 0
|
7 | 0 0
|
||||||
8 | 0 0
|
8 | 0 0
|
||||||
9 | 0 0
|
9 | 0 0
|
||||||
@@ -74,8 +80,8 @@ OrganID Edep (J) Dose (Gy)
|
|||||||
23 | 0 0
|
23 | 0 0
|
||||||
24 | 0 0
|
24 | 0 0
|
||||||
25 | 0 0
|
25 | 0 0
|
||||||
26 | 3.28199e-10 5.83102e-10
|
26 | 3.4962e-10 6.2116e-10
|
||||||
27 | 2.78845e-10 6.182e-10
|
27 | 2.65428e-10 5.88455e-10
|
||||||
28 | 0 0
|
28 | 0 0
|
||||||
29 | 0 0
|
29 | 0 0
|
||||||
30 | 0 0
|
30 | 0 0
|
||||||
@@ -87,16 +93,16 @@ OrganID Edep (J) Dose (Gy)
|
|||||||
36 | 0 0
|
36 | 0 0
|
||||||
37 | 0 0
|
37 | 0 0
|
||||||
38 | 0 0
|
38 | 0 0
|
||||||
39 | 1.85489e-12 2.4368e-11
|
39 | 1.08487e-12 1.42521e-11
|
||||||
40 | 1.45248e-13 1.96547e-12
|
40 | 1.66859e-14 2.2579e-13
|
||||||
41 | 0 0
|
41 | 0 0
|
||||||
42 | 0 0
|
42 | 0 0
|
||||||
43 | 0 0
|
43 | 0 0
|
||||||
44 | 0 0
|
44 | 0 0
|
||||||
45 | 0 0
|
45 | 0 0
|
||||||
46 | 0 0
|
46 | 0 0
|
||||||
47 | 1.76321e-12 1.71318e-11
|
47 | 2.03891e-12 1.98106e-11
|
||||||
48 | 3.82399e-12 5.19917e-11
|
48 | 1.08394e-13 1.47374e-12
|
||||||
49 | 0 0
|
49 | 0 0
|
||||||
50 | 0 0
|
50 | 0 0
|
||||||
51 | 0 0
|
51 | 0 0
|
||||||
@@ -109,13 +115,13 @@ OrganID Edep (J) Dose (Gy)
|
|||||||
58 | 0 0
|
58 | 0 0
|
||||||
59 | 0 0
|
59 | 0 0
|
||||||
60 | 0 0
|
60 | 0 0
|
||||||
61 | 5.16747e-10 3.56377e-10
|
61 | 5.54681e-10 3.82539e-10
|
||||||
62 | 0 0
|
62 | 0 0
|
||||||
63 | 0 0
|
63 | 0 0
|
||||||
64 | 0 0
|
64 | 0 0
|
||||||
65 | 0 0
|
65 | 0 0
|
||||||
66 | 0 0
|
66 | 0 0
|
||||||
67 | 0 0
|
67 | 1.38242e-20 1.89633e-18
|
||||||
68 | 0 0
|
68 | 0 0
|
||||||
69 | 0 0
|
69 | 0 0
|
||||||
70 | 0 0
|
70 | 0 0
|
||||||
@@ -154,7 +160,7 @@ OrganID Edep (J) Dose (Gy)
|
|||||||
103 | 0 0
|
103 | 0 0
|
||||||
104 | 0 0
|
104 | 0 0
|
||||||
105 | 0 0
|
105 | 0 0
|
||||||
106 | 6.89064e-11 5.65822e-11
|
106 | 5.88639e-11 4.83359e-11
|
||||||
107 | 0 0
|
107 | 0 0
|
||||||
108 | 0 0
|
108 | 0 0
|
||||||
109 | 0 0
|
109 | 0 0
|
||||||
@@ -164,31 +170,31 @@ OrganID Edep (J) Dose (Gy)
|
|||||||
113 | 0 0
|
113 | 0 0
|
||||||
114 | 0 0
|
114 | 0 0
|
||||||
115 | 0 0
|
115 | 0 0
|
||||||
116 | 1.53542e-10 1.46438e-10
|
116 | 1.41146e-10 1.34616e-10
|
||||||
117 | 0 0
|
117 | 0 0
|
||||||
118 | 0 0
|
118 | 0 0
|
||||||
119 | 0 0
|
119 | 0 0
|
||||||
120 | 2.54787e-11 5.9964e-10
|
120 | 2.21312e-11 5.20858e-10
|
||||||
121 | 2.67672e-11 6.29965e-10
|
121 | 2.17541e-11 5.11982e-10
|
||||||
122 | 4.17127e-11 1.43175e-10
|
122 | 3.24611e-11 1.1142e-10
|
||||||
123 | 0 0
|
123 | 0 0
|
||||||
124 | 0 0
|
124 | 0 0
|
||||||
125 | 0 0
|
125 | 0 0
|
||||||
126 | 1.35803e-20 3.70845e-19
|
126 | 1.87478e-14 5.11956e-13
|
||||||
127 | 0 0
|
127 | 0 0
|
||||||
128 | 0 0
|
128 | 7.37468e-20 1.47376e-18
|
||||||
129 | 0 0
|
129 | 0 0
|
||||||
130 | 0 0
|
130 | 0 0
|
||||||
131 | 0 0
|
131 | 0 0
|
||||||
132 | 0 0
|
132 | 0 0
|
||||||
133 | 0 0
|
133 | 1.03754e-19 2.45398e-18
|
||||||
134 | 0 0
|
134 | 0 0
|
||||||
135 | 0 0
|
135 | 0 0
|
||||||
136 | 0 0
|
136 | 0 0
|
||||||
137 | 0 0
|
137 | 0 0
|
||||||
138 | 0 0
|
138 | 0 0
|
||||||
139 | 0 0
|
139 | 0 0
|
||||||
140 | 2.95924e-14 1.47962e-10
|
140 | 2.54687e-14 1.27343e-10
|
||||||
141 | 1.25856e-14 8.15657e-14
|
141 | 0 0
|
||||||
Total energy depositied over all organs = 1.44781e-09 J
|
Total energy depositied over all organs = 1.44979e-09 J
|
||||||
Total absorbed dose over all organs = 3.23137e-09 Gy
|
Total absorbed dose over all organs = 2.97061e-09 Gy
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -808,6 +808,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin=0.000000 eV Emax=100.000000 TeV
|
eCoulombScattering : Emin=0.000000 eV Emax=100.000000 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1.00000 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000.00000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 31709791983.76459 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
====================================================================
|
====================================================================
|
||||||
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
||||||
@@ -828,6 +845,8 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
|
|
||||||
Process: RadioactiveDecay
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
Hadronic Processes for He3
|
Hadronic Processes for He3
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -523,17 +523,17 @@ Start closing geometry.
|
|||||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||||
|
|
||||||
Total memory consumed for geometry optimisation: 1 kByte
|
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:
|
Voxelisation: top CPU users:
|
||||||
Percent Total CPU System CPU Memory Volume
|
Percent Total CPU System CPU Memory Volume
|
||||||
------- ---------- ---------- -------- ----------
|
------- ---------- ---------- -------- ----------
|
||||||
100.00 0.01 0.00 2k World
|
0.00 0.00 0.00 2k World
|
||||||
|
|
||||||
Voxelisation: top memory users:
|
Voxelisation: top memory users:
|
||||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||||
------- -------- ------ ------ -------- ---------- ----------
|
------- -------- ------ ------ -------- ---------- ----------
|
||||||
100.00 1k 5 13 86 0.01 World
|
100.00 1k 5 13 86 0.00 World
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
... set ntuple merging row mode : row-wise - done
|
... set ntuple merging row mode : row-wise - done
|
||||||
... create file : SolidTargetCyclotron.root - done
|
... create file : SolidTargetCyclotron.root - done
|
||||||
@@ -566,7 +566,7 @@ Warning: Bad energy non-conservation detected, will re-sample the interaction
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=25.030000s Real=25.298618s Sys=0.020000s
|
User=21.540000s Real=21.679623s Sys=0.000000s
|
||||||
... write file : SolidTargetCyclotron.root - done
|
... write file : SolidTargetCyclotron.root - done
|
||||||
... close file : SolidTargetCyclotron.root - done
|
... close file : SolidTargetCyclotron.root - done
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -698,8 +698,8 @@ See commands in /vis/modeling/trajectories/ for other options.
|
|||||||
ooo Run 0 starts (global).
|
ooo Run 0 starts (global).
|
||||||
|
|
||||||
--------- Ranlux engine status ---------
|
--------- Ranlux engine status ---------
|
||||||
Initial seed = 1670383125
|
Initial seed = 1675954153
|
||||||
float_seed_table[] = 0.746163 0.00748038 0.41983 0.219389 0.81318 0.764368 0.497432 0.317486 0.882405 0.753217 0.405238 0.26732 0.606928 0.709374 0.95846 0.954352 0.470991 0.422925 0.0195919 0.0804862 0.716612 0.517728 0.385332 0.689845
|
float_seed_table[] = 0.761317 0.335457 0.16484 0.940522 0.191998 0.677339 0.0888215 0.198296 0.781668 0.662463 0.785561 0.571518 0.904525 0.730503 0.488499 0.814167 0.242004 0.761398 0.666196 0.267885 0.297711 0.799835 0.63321 0.331813
|
||||||
i_lag = 23, j_lag = 9
|
i_lag = 23, j_lag = 9
|
||||||
carry = 0, count24 = 0
|
carry = 0, count24 = 0
|
||||||
luxury = 3 nskip = 199
|
luxury = 3 nskip = 199
|
||||||
@@ -710,7 +710,7 @@ mu- Mono Plane
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=2.370000s Real=2.397843s Sys=0.000000s
|
User=2.260000s Real=2.265151s Sys=0.000000s
|
||||||
### Run 0 (global) ended.
|
### Run 0 (global) ended.
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
@@ -727,12 +727,12 @@ G4SDManager deleted.
|
|||||||
EventManager deleted.
|
EventManager deleted.
|
||||||
Units table cleared.
|
Units table cleared.
|
||||||
TransportationManager deleted.
|
TransportationManager deleted.
|
||||||
Total navigation history collections cleaned: 10
|
Total navigation history collections cleaned: 11
|
||||||
G4RNGHelper object is deleted.
|
G4RNGHelper object is deleted.
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
|
Pool ID '20G4NavigationLevelRep', size : 0.0144 MB
|
||||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||||
Pool ID '17G4DynamicParticle', size : 0.025 MB
|
Pool ID '17G4DynamicParticle', size : 0.026 MB
|
||||||
Pool ID '16G4SmartVoxelNode', size : 0.00192 MB
|
Pool ID '16G4SmartVoxelNode', size : 0.00192 MB
|
||||||
Pool ID '17G4SmartVoxelProxy', size : 0.000961 MB
|
Pool ID '17G4SmartVoxelProxy', size : 0.000961 MB
|
||||||
Pool ID '7G4Event', size : 0.000961 MB
|
Pool ID '7G4Event', size : 0.000961 MB
|
||||||
@@ -740,12 +740,12 @@ Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
|||||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||||
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
||||||
Pool ID '7G4Track', size : 0.049 MB
|
Pool ID '7G4Track', size : 0.0509 MB
|
||||||
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
||||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||||
Pool ID '15UltraOpticalHit', size : 0.00673 MB
|
Pool ID '15UltraOpticalHit', size : 0.00385 MB
|
||||||
Number of memory pools allocated: 14 of which, static: 0
|
Number of memory pools allocated: 14 of which, static: 0
|
||||||
Dynamic pools deleted: 14 / Total memory freed: 0.1 MB
|
Dynamic pools deleted: 14 / Total memory freed: 0.11 MB
|
||||||
============================================================
|
============================================================
|
||||||
G4Allocator objects are deleted.
|
G4Allocator objects are deleted.
|
||||||
UImanager deleted.
|
UImanager deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -187,7 +187,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=7.520000s Real=7.589100s Sys=0.000000s
|
User=6.830000s Real=6.864384s Sys=0.000000s
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
---> The calorimeter is 9 Modules
|
---> The calorimeter is 9 Modules
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -747,6 +747,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
========= Table of registered couples ============================
|
========= Table of registered couples ============================
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -78,8 +78,6 @@ HcalTB96 is registered to the default region.
|
|||||||
* Magnetic Field is off *
|
* Magnetic Field is off *
|
||||||
* *
|
* *
|
||||||
***************************
|
***************************
|
||||||
G4FieldManager/SetEpsMin : eps_min = 1e-05
|
|
||||||
G4FieldManager/SetEpsMax : eps_max = 0.01 ( Note: unchanged eps_min= 1e-05 )
|
|
||||||
*******************************************************
|
*******************************************************
|
||||||
* *
|
* *
|
||||||
* Constructing a CCaloSD with name HadronCalorimeter
|
* Constructing a CCaloSD with name HadronCalorimeter
|
||||||
@@ -1010,16 +1008,16 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Voxelisation: top CPU users:
|
Voxelisation: top CPU users:
|
||||||
Percent Total CPU System CPU Memory Volume
|
Percent Total CPU System CPU Memory Volume
|
||||||
------- ---------- ---------- -------- ----------
|
------- ---------- ---------- -------- ----------
|
||||||
100.00 0.01 0.00 8k CrystalMatrix
|
100.00 0.01 0.00 1k CrystalMatrixLayer
|
||||||
0.00 0.00 0.00 0k HcalTB96
|
0.00 0.00 0.00 0k HcalTB96
|
||||||
0.00 0.00 0.00 0k HadronCalorimeter
|
0.00 0.00 0.00 0k HadronCalorimeter
|
||||||
0.00 0.00 0.00 3k HadronCalorimeterBox0 0.00 0.00 0.00 2k HadronCalorimeterBox1 0.00 0.00 0.00 1k HadronCalorimeterScntLayer2 0.00 0.00 0.00 0k HadronCalorimeterScntLayer1 0.00 0.00 0.00 0k HadronCalorimeterScntLayer0 0.00 0.00 0.00 1k CrystalMatrixLayer
|
0.00 0.00 0.00 3k HadronCalorimeterBox0 0.00 0.00 0.00 2k HadronCalorimeterBox1 0.00 0.00 0.00 1k HadronCalorimeterScntLayer2 0.00 0.00 0.00 0k HadronCalorimeterScntLayer1 0.00 0.00 0.00 0k HadronCalorimeterScntLayer0 0.00 0.00 0.00 8k CrystalMatrix
|
||||||
|
|
||||||
Voxelisation: top memory users:
|
Voxelisation: top memory users:
|
||||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||||
------- -------- ------ ------ -------- ---------- ----------
|
------- -------- ------ ------ -------- ---------- ----------
|
||||||
49.44 7k 12 112 196 0.01 CrystalMatrix
|
49.44 7k 12 112 196 0.00 CrystalMatrix
|
||||||
20.31 3k 6 44 83 0.00 HadronCalorimeterBox0 14.44 2k 5 30 60 0.00 HadronCalorimeterBox1 4.81 0k 1 12 14 0.00 CrystalMatrixLayer
|
20.31 3k 6 44 83 0.00 HadronCalorimeterBox0 14.44 2k 5 30 60 0.00 HadronCalorimeterBox1 4.81 0k 1 12 14 0.01 CrystalMatrixLayer
|
||||||
3.70 0k 2 7 13 0.00 HadronCalorimeterScntLayer2 2.08 0k 1 4 8 0.00 HadronCalorimeter
|
3.70 0k 2 7 13 0.00 HadronCalorimeterScntLayer2 2.08 0k 1 4 8 0.00 HadronCalorimeter
|
||||||
1.98 0k 1 4 6 0.00 HadronCalorimeterScntLayer0 1.67 0k 1 3 6 0.00 HadronCalorimeterScntLayer1 1.57 0k 1 3 4 0.00 HcalTB96
|
1.98 0k 1 4 6 0.00 HadronCalorimeterScntLayer0 1.67 0k 1 3 6 0.00 HadronCalorimeterScntLayer1 1.57 0k 1 3 4 0.00 HcalTB96
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
@@ -1086,7 +1084,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 20
|
Number of events processed : 20
|
||||||
User=17.640000s Real=17.826814s Sys=0.000000s
|
User=15.730000s Real=15.856976s Sys=0.000000s
|
||||||
### Run 0 end.
|
### Run 0 end.
|
||||||
... write file : ccal.root - done
|
... write file : ccal.root - done
|
||||||
... close file : ccal.root - done
|
... close file : ccal.root - done
|
||||||
@@ -1104,12 +1102,12 @@ G4SDManager deleted.
|
|||||||
EventManager deleted.
|
EventManager deleted.
|
||||||
Units table cleared.
|
Units table cleared.
|
||||||
TransportationManager deleted.
|
TransportationManager deleted.
|
||||||
Total navigation history collections cleaned: 49
|
Total navigation history collections cleaned: 50
|
||||||
G4RNGHelper object is deleted.
|
G4RNGHelper object is deleted.
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Pool ID '20G4NavigationLevelRep', size : 0.0731 MB
|
Pool ID '20G4NavigationLevelRep', size : 0.074 MB
|
||||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||||
Pool ID '17G4DynamicParticle', size : 0.0385 MB
|
Pool ID '17G4DynamicParticle', size : 0.0308 MB
|
||||||
Pool ID '16G4SmartVoxelNode', size : 0.00769 MB
|
Pool ID '16G4SmartVoxelNode', size : 0.00769 MB
|
||||||
Pool ID '17G4SmartVoxelProxy', size : 0.00385 MB
|
Pool ID '17G4SmartVoxelProxy', size : 0.00385 MB
|
||||||
Pool ID '7G4Event', size : 0.000961 MB
|
Pool ID '7G4Event', size : 0.000961 MB
|
||||||
@@ -1117,13 +1115,13 @@ Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
|||||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||||
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
||||||
Pool ID '7G4Track', size : 0.0759 MB
|
Pool ID '7G4Track', size : 0.0606 MB
|
||||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||||
Pool ID '17G4ReactionProduct', size : 0.0144 MB
|
Pool ID '17G4ReactionProduct', size : 0.0144 MB
|
||||||
Pool ID '10G4Fragment', size : 0.00673 MB
|
Pool ID '10G4Fragment', size : 0.00577 MB
|
||||||
Number of memory pools allocated: 15 of which, static: 0
|
Number of memory pools allocated: 15 of which, static: 0
|
||||||
Dynamic pools deleted: 15 / Total memory freed: 0.23 MB
|
Dynamic pools deleted: 15 / Total memory freed: 0.21 MB
|
||||||
============================================================
|
============================================================
|
||||||
G4Allocator objects are deleted.
|
G4Allocator objects are deleted.
|
||||||
UImanager deleted.
|
UImanager deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -745,6 +745,23 @@ hPairProd: for pi- XStype:1 SubType=4
|
|||||||
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
|
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi
|
hPairProd : Emin= 0 eV Emax= 100 TeV ModifiedMephi
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <world_physicalV> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <world_physicalV> world volume
|
||||||
This region is in the mass world.
|
This region is in the mass world.
|
||||||
@@ -800,14 +817,14 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Voxelisation: top CPU users:
|
Voxelisation: top CPU users:
|
||||||
Percent Total CPU System CPU Memory Volume
|
Percent Total CPU System CPU Memory Volume
|
||||||
------- ---------- ---------- -------- ----------
|
------- ---------- ---------- -------- ----------
|
||||||
100.00 0.01 0.00 69k world_logicalV
|
100.00 0.01 0.00 406k airBox_logicalV
|
||||||
0.00 0.00 0.00 406k airBox_logicalV
|
0.00 0.00 0.00 69k world_logicalV
|
||||||
|
|
||||||
Voxelisation: top memory users:
|
Voxelisation: top memory users:
|
||||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||||
------- -------- ------ ------ -------- ---------- ----------
|
------- -------- ------ ------ -------- ---------- ----------
|
||||||
85.51 406k 931 5788 8898 0.00 airBox_logicalV
|
85.51 406k 931 5788 8898 0.01 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.
|
### Run 0 starts.
|
||||||
### Begin of Run 0 start.
|
### Begin of Run 0 start.
|
||||||
|
|
||||||
@@ -849,7 +866,7 @@ N=17 V[N]={87900885656017340, 2136126672992718976, 110623987125446578, 176001763
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000000
|
Number of events processed : 1000000
|
||||||
User=129.500000s Real=132.656662s Sys=1.910000s
|
User=118.890000s Real=121.403226s Sys=1.570000s
|
||||||
|
|
||||||
### End of Run (1000000 events)
|
### End of Run (1000000 events)
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -702,6 +702,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
========= Table of registered couples ============================
|
========= Table of registered couples ============================
|
||||||
|
|
||||||
@@ -799,15 +816,13 @@ See commands in /vis/modeling/trajectories/ for other options.
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 500000
|
Number of events processed : 500000
|
||||||
User=1142.920000s Real=1160.667092s Sys=6.720000s
|
User=993.180000s Real=1005.590606s Sys=4.880000s
|
||||||
|
|
||||||
--------------------End of Global Run-----------------------
|
--------------------End of Global Run-----------------------
|
||||||
The run was 500000 events /score/dumpQuantityToFile boxMesh_1 dose dose.out
|
The run was 500000 events /score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 12 of which, static: 0
|
Number of memory pools allocated: 12 of which, static: 0
|
||||||
Dynamic pools deleted: 12 / Total memory freed: 0.13 MB
|
Dynamic pools deleted: 12 / Total memory freed: 0.13 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -524,9 +524,9 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=4.110000s Real=4.134929s Sys=0.010000s
|
User=4.670000s Real=4.701061s Sys=0.000000s
|
||||||
--- Run 0 (master) end. Total number of events: 1000.
|
--- Run 0 (master) end. Total number of events: 1000.
|
||||||
User=4.110000s Real=4.135287s Sys=0.010000s
|
User=4.670000s Real=4.701356s Sys=0.000000s
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
UserDetectorConstruction deleted.
|
UserDetectorConstruction deleted.
|
||||||
UserPhysicsList deleted.
|
UserPhysicsList deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -13863,7 +13863,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=1.380000s Real=1.455372s Sys=0.070000s
|
User=1.270000s Real=1.307364s Sys=0.030000s
|
||||||
|
|
||||||
--------------------End of Global Run-----------------------
|
--------------------End of Global Run-----------------------
|
||||||
The run consists of 10 proton of 50 MeV
|
The run consists of 10 proton of 50 MeV
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -222,21 +222,19 @@ Index : 3 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100000
|
Number of events processed : 100000
|
||||||
User=161.840000s Real=163.192297s Sys=0.020000s
|
User=145.570000s Real=146.574036s Sys=0.000000s
|
||||||
/control/doifBatch /score/dumpAllQuantitiesToFile Probes Probes.csv
|
/control/doifBatch /score/dumpAllQuantitiesToFile Probes Probes.csv
|
||||||
/score/dumpAllQuantitiesToFile Probes Probes.csv
|
/score/dumpAllQuantitiesToFile Probes Probes.csv
|
||||||
# Mesh or volume name: Probes -- # Primitive scorer name: dose
|
# Mesh or volume name: Probes -- # Primitive scorer name: dose
|
||||||
bin 0,0,0 : statistical error 29.2289(%)
|
bin 0,0,0 : statistical error 34.1905(%)
|
||||||
to reduce the statistical error below 10%, increase number of events approximately 8.54327 times.
|
to reduce the statistical error below 10%, increase number of events approximately 11.6899 times.
|
||||||
# Mesh or volume name: Probes -- # Primitive scorer name: protonFlux
|
# Mesh or volume name: Probes -- # Primitive scorer name: protonFlux
|
||||||
bin 0,0,0 : statistical error 34.2919(%)
|
bin 0,0,0 : statistical error 35.6974(%)
|
||||||
to reduce the statistical error below 10%, increase number of events approximately 11.7593 times.
|
to reduce the statistical error below 10%, increase number of events approximately 12.743 times.
|
||||||
# Mesh or volume name: Probes -- # Primitive scorer name: volFlx
|
# Mesh or volume name: Probes -- # Primitive scorer name: volFlx
|
||||||
bin 0,0,0 : statistical error 34.4695(%)
|
bin 0,0,0 : statistical error 30.0909(%)
|
||||||
to reduce the statistical error below 10%, increase number of events approximately 11.8814 times.
|
to reduce the statistical error below 10%, increase number of events approximately 9.0546 times.
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 12 of which, static: 0
|
Number of memory pools allocated: 12 of which, static: 0
|
||||||
Dynamic pools deleted: 12 / Total memory freed: 1.8 MB
|
Dynamic pools deleted: 12 / Total memory freed: 1.4 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -688,14 +688,12 @@ Run 0 starts ...
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 500
|
Number of events processed : 500
|
||||||
User=4.750000s Real=4.846305s Sys=0.060000s
|
User=4.970000s Real=5.042739s Sys=0.040000s
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
The simulation took: 8.21789 s to run (real time)
|
The simulation took: 7.97053 s to run (real time)
|
||||||
Dose is being written to Dose.out
|
Dose is being written to Dose.out
|
||||||
i j k Dose(Gy)G4 kernel has come to Quit state.
|
i j k Dose(Gy)================== Deleting memory pools ===================
|
||||||
================== Deleting memory pools ===================
|
|
||||||
Number of memory pools allocated: 14 of which, static: 0
|
Number of memory pools allocated: 14 of which, static: 0
|
||||||
Dynamic pools deleted: 14 / Total memory freed: 0.41 MB
|
Dynamic pools deleted: 14 / Total memory freed: 0.44 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -590,13 +590,11 @@ Run 0 starts ...
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 2000
|
Number of events processed : 2000
|
||||||
User=10.830000s Real=11.288670s Sys=0.320000s
|
User=9.340000s Real=9.629150s Sys=0.200000s
|
||||||
/score/dumpQuantityToFile boxMesh_1 dose dose.out
|
/score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 12 of which, static: 0
|
Number of memory pools allocated: 12 of which, static: 0
|
||||||
Dynamic pools deleted: 12 / Total memory freed: 0.2 MB
|
Dynamic pools deleted: 12 / Total memory freed: 0.2 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1055,8 +1055,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Voxelisation: top CPU users:
|
Voxelisation: top CPU users:
|
||||||
Percent Total CPU System CPU Memory Volume
|
Percent Total CPU System CPU Memory Volume
|
||||||
------- ---------- ---------- -------- ----------
|
------- ---------- ---------- -------- ----------
|
||||||
50.00 0.18 0.00 152k EmModuleLogical
|
52.78 0.19 0.00 238k HadModuleLogical
|
||||||
50.00 0.18 0.00 238k HadModuleLogical
|
47.22 0.17 0.00 152k EmModuleLogical
|
||||||
0.00 0.00 0.00 4k Mother
|
0.00 0.00 0.00 4k Mother
|
||||||
0.00 0.00 0.00 0k CryostatLogical
|
0.00 0.00 0.00 0k CryostatLogical
|
||||||
0.00 0.00 0.00 0k LArgLogical
|
0.00 0.00 0.00 0k LArgLogical
|
||||||
@@ -1067,8 +1067,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Voxelisation: top memory users:
|
Voxelisation: top memory users:
|
||||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||||
------- -------- ------ ------ -------- ---------- ----------
|
------- -------- ------ ------ -------- ---------- ----------
|
||||||
60.17 238k 1385 2370 3792 0.18 HadModuleLogical
|
60.17 238k 1385 2370 3792 0.19 HadModuleLogical
|
||||||
38.50 152k 1129 1152 2426 0.18 EmModuleLogical
|
38.50 152k 1129 1152 2426 0.17 EmModuleLogical
|
||||||
0.93 3k 8 42 146 0.00 Mother
|
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 SolidWLogical
|
||||||
0.12 0k 1 7 8 0.00 CuPlateLogical
|
0.12 0k 1 7 8 0.00 CuPlateLogical
|
||||||
@@ -1181,257 +1181,257 @@ HadEdep is=7.92109 MeV
|
|||||||
Edep in FCAL1 FCAl2 : 19779.2 7.92109
|
Edep in FCAL1 FCAl2 : 19779.2 7.92109
|
||||||
**** Primary : 6
|
**** Primary : 6
|
||||||
Vertex : (1.94335,14.9228,32740)
|
Vertex : (1.94335,14.9228,32740)
|
||||||
Number of F1 Tiles with Positive energy : 45
|
Number of F1 Tiles with Positive energy : 40
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
2.80826 1.83647 1.71984
|
2.80826 1.83647 1.71984
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 159.833
|
0 56.4375
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
1090.34
|
591.166
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0.0818945 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 69
|
N Tracks out of world 24
|
||||||
N Secondaries 216
|
N Secondaries 216
|
||||||
EmEdep is=17701.2 MeV
|
EmEdep is=18665.4 MeV
|
||||||
HadEdep is=0 MeV
|
HadEdep is=2.03402 MeV
|
||||||
Edep in FCAL1 FCAl2 : 17701.2 0
|
Edep in FCAL1 FCAl2 : 18665.4 2.03402
|
||||||
**** Primary : 7
|
**** Primary : 7
|
||||||
Vertex : (-10.9878,-6.7949,32740)
|
Vertex : (-10.9878,-6.7949,32740)
|
||||||
Number of F1 Tiles with Positive energy : 61
|
Number of F1 Tiles with Positive energy : 42
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.79021 1.75445 1.55282
|
1.5804 1.96594 1.88546
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 137.208
|
0 0
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
6170.49
|
8.46772
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 205
|
N Tracks out of world 5
|
||||||
N Secondaries 170
|
N Secondaries 128
|
||||||
EmEdep is=11418.6 MeV
|
EmEdep is=19800.9 MeV
|
||||||
HadEdep is=0.14103 MeV
|
HadEdep is=0 MeV
|
||||||
Edep in FCAL1 FCAl2 : 11418.6 0.14103
|
Edep in FCAL1 FCAl2 : 19800.9 0
|
||||||
**** Primary : 8
|
**** Primary : 8
|
||||||
Vertex : (10.9757,-1.49585,32740)
|
Vertex : (10.9757,-1.49585,32740)
|
||||||
Number of F1 Tiles with Positive energy : 46
|
Number of F1 Tiles with Positive energy : 44
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.66969 1.82282 1.58729
|
1.57833 1.6999 1.67647
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 0
|
0 0
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
4.41214
|
3.29726
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0 0 0 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
0 0 0 0 0 0
|
|
||||||
N Tracks out of world 3
|
|
||||||
N Secondaries 99
|
|
||||||
EmEdep is=19818.8 MeV
|
|
||||||
HadEdep is=1.29863 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 19818.8 1.29863
|
|
||||||
**** Primary : 9
|
|
||||||
Vertex : (-27.7734,3.36444,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 61
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
2.5081 1.60845 1.79854
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 69.3322
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
5845.91
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0 0 0 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
0 0 0 0 0 0
|
|
||||||
N Tracks out of world 164
|
|
||||||
N Secondaries 166
|
|
||||||
EmEdep is=11579.5 MeV
|
|
||||||
HadEdep is=0 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 11579.5 0
|
|
||||||
**** Primary : 10
|
|
||||||
Vertex : (-22.5474,4.1006,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 40
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
1.75589 1.67904 1.51143
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 0
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
13.3248
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0 0 0 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
0 0 0 0 0 0
|
|
||||||
N Tracks out of world 4
|
|
||||||
N Secondaries 111
|
|
||||||
EmEdep is=19822.3 MeV
|
|
||||||
HadEdep is=3.66692 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 19822.3 3.66692
|
|
||||||
|
|
||||||
---> Begin of event: 11
|
|
||||||
**** Primary : 11
|
|
||||||
Vertex : (-6.31939,21.5056,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 48
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
1.73086 1.74676 1.64577
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 46.9507
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
515.799
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0 0 0 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
0 0 0 0 0 0
|
|
||||||
N Tracks out of world 27
|
|
||||||
N Secondaries 245
|
|
||||||
EmEdep is=19151.2 MeV
|
|
||||||
HadEdep is=54.9963 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 19151.2 54.9963
|
|
||||||
**** Primary : 12
|
|
||||||
Vertex : (17.1015,6.30557,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 50
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
1.60439 2.24266 1.67181
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 0
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
4.21625
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0 0 0 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
0 0 0 0 0 0
|
|
||||||
N Tracks out of world 0
|
|
||||||
N Secondaries 183
|
|
||||||
EmEdep is=19872.2 MeV
|
|
||||||
HadEdep is=4.45916 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 19872.2 4.45916
|
|
||||||
**** Primary : 13
|
|
||||||
Vertex : (-24.9484,11.8659,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 30
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
1.75939 1.62432 1.98285
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 209.072
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
17403.3
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
|
||||||
0.00187116 0.682743 0.156793 0 0 0 0
|
|
||||||
Visible Energy in Tail Catcher Absorber
|
|
||||||
2.29358 0.0813334 0 0 0 0
|
|
||||||
N Tracks out of world 274
|
|
||||||
N Secondaries 200
|
|
||||||
EmEdep is=973.02 MeV
|
|
||||||
HadEdep is=2.00844 MeV
|
|
||||||
Edep in FCAL1 FCAl2 : 973.02 2.00844
|
|
||||||
**** Primary : 14
|
|
||||||
Vertex : (-0.133696,18.3151,32740)
|
|
||||||
Number of F1 Tiles with Positive energy : 48
|
|
||||||
Number of F2 tiles with Positive energy : 0
|
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
|
||||||
1.51304 1.81255 1.65281
|
|
||||||
Visible Energy in Hole Counter (MeV)
|
|
||||||
0 0
|
|
||||||
Visible Energy in Upstream Dead Materials
|
|
||||||
8.29222
|
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 2
|
N Tracks out of world 2
|
||||||
N Secondaries 223
|
N Secondaries 298
|
||||||
EmEdep is=19847.2 MeV
|
EmEdep is=19874.7 MeV
|
||||||
HadEdep is=7.58569 MeV
|
HadEdep is=0 MeV
|
||||||
Edep in FCAL1 FCAl2 : 19847.2 7.58569
|
Edep in FCAL1 FCAl2 : 19874.7 0
|
||||||
**** Primary : 15
|
**** Primary : 9
|
||||||
Vertex : (17.3196,17.6617,32740)
|
Vertex : (-27.7734,3.36444,32740)
|
||||||
Number of F1 Tiles with Positive energy : 54
|
Number of F1 Tiles with Positive energy : 59
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.73765 5.27209 6.52798
|
1.93688 2.49148 1.68114
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 0
|
0 69.3636
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
8.33915
|
7002.76
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 3
|
N Tracks out of world 191
|
||||||
N Secondaries 129
|
N Secondaries 152
|
||||||
EmEdep is=19573.5 MeV
|
EmEdep is=10752.3 MeV
|
||||||
HadEdep is=2.6827 MeV
|
HadEdep is=0.652787 MeV
|
||||||
Edep in FCAL1 FCAl2 : 19573.5 2.6827
|
Edep in FCAL1 FCAl2 : 10752.3 0.652787
|
||||||
**** Primary : 16
|
**** Primary : 10
|
||||||
Vertex : (-20.8489,10.8988,32740)
|
Vertex : (-22.5474,4.1006,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 51
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
1.67064 2.37068 4.58452
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 0
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
4.37874
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0.0548004 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0.00228468 0 0 0 0 0
|
||||||
|
N Tracks out of world 7
|
||||||
|
N Secondaries 268
|
||||||
|
EmEdep is=19709.1 MeV
|
||||||
|
HadEdep is=2.32481 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 19709.1 2.32481
|
||||||
|
|
||||||
|
---> Begin of event: 11
|
||||||
|
**** Primary : 11
|
||||||
|
Vertex : (-6.31939,21.5056,32740)
|
||||||
Number of F1 Tiles with Positive energy : 76
|
Number of F1 Tiles with Positive energy : 76
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.64254 3.61526 1.61566
|
1.81065 1.66862 1.8954
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 144.32
|
0 96.6734
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
5158.51
|
6898.98
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 146
|
N Tracks out of world 169
|
||||||
N Secondaries 320
|
N Secondaries 72
|
||||||
EmEdep is=12194.3 MeV
|
EmEdep is=10591.5 MeV
|
||||||
HadEdep is=2.11647 MeV
|
HadEdep is=1.08337 MeV
|
||||||
Edep in FCAL1 FCAl2 : 12194.3 2.11647
|
Edep in FCAL1 FCAl2 : 10591.5 1.08337
|
||||||
**** Primary : 17
|
**** Primary : 12
|
||||||
Vertex : (-9.96316,-9.33478,32740)
|
Vertex : (17.1015,6.30557,32740)
|
||||||
Number of F1 Tiles with Positive energy : 50
|
Number of F1 Tiles with Positive energy : 53
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.50221 1.79379 1.57658
|
1.63468 1.58395 1.68024
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 0
|
0 0
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
3.98611
|
7.32858
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0 0 0 0 0 0
|
||||||
|
N Tracks out of world 5
|
||||||
|
N Secondaries 210
|
||||||
|
EmEdep is=19821.1 MeV
|
||||||
|
HadEdep is=0.715842 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 19821.1 0.715842
|
||||||
|
**** Primary : 13
|
||||||
|
Vertex : (-24.9484,11.8659,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 6
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
1.57473 2.597 2.02058
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 41.2781
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
19234.2
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0 0 0 0 0 0
|
||||||
|
N Tracks out of world 156
|
||||||
|
N Secondaries 270
|
||||||
|
EmEdep is=154.305 MeV
|
||||||
|
HadEdep is=0.74704 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 154.305 0.74704
|
||||||
|
**** Primary : 14
|
||||||
|
Vertex : (-0.133696,18.3151,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 46
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
2.28961 3.49663 2.25446
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 0
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
21.9865
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 3
|
N Tracks out of world 3
|
||||||
N Secondaries 163
|
N Secondaries 202
|
||||||
EmEdep is=19751 MeV
|
EmEdep is=19696.6 MeV
|
||||||
HadEdep is=0.943901 MeV
|
HadEdep is=15.3392 MeV
|
||||||
Edep in FCAL1 FCAl2 : 19751 0.943901
|
Edep in FCAL1 FCAl2 : 19696.6 15.3392
|
||||||
**** Primary : 18
|
**** Primary : 15
|
||||||
Vertex : (-9.96316,-9.33478,32740)
|
Vertex : (17.3196,17.6617,32740)
|
||||||
Number of F1 Tiles with Positive energy : 41
|
Number of F1 Tiles with Positive energy : 48
|
||||||
Number of F2 tiles with Positive energy : 0
|
Number of F2 tiles with Positive energy : 0
|
||||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
1.92687 1.62445 2.00189
|
2.78029 2.20745 1.84498
|
||||||
Visible Energy in Hole Counter (MeV)
|
Visible Energy in Hole Counter (MeV)
|
||||||
0 0
|
0 0
|
||||||
Visible Energy in Upstream Dead Materials
|
Visible Energy in Upstream Dead Materials
|
||||||
8.74192
|
4.84631
|
||||||
Visible Energy in Tail Catcher Scintillator
|
Visible Energy in Tail Catcher Scintillator
|
||||||
0 0 0 0 0 0 0
|
0 0 0 0 0 0 0
|
||||||
Visible Energy in Tail Catcher Absorber
|
Visible Energy in Tail Catcher Absorber
|
||||||
0 0 0 0 0 0
|
0 0 0 0 0 0
|
||||||
N Tracks out of world 4
|
N Tracks out of world 2
|
||||||
N Secondaries 329
|
N Secondaries 196
|
||||||
EmEdep is=19767.9 MeV
|
EmEdep is=19832.6 MeV
|
||||||
HadEdep is=11.3075 MeV
|
HadEdep is=0 MeV
|
||||||
Edep in FCAL1 FCAl2 : 19767.9 11.3075
|
Edep in FCAL1 FCAl2 : 19832.6 0
|
||||||
|
**** Primary : 16
|
||||||
|
Vertex : (-20.8489,10.8988,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 49
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
1.90825 1.84779 1.53285
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 42.9954
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
765.322
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0 0 0 0 0 0
|
||||||
|
N Tracks out of world 37
|
||||||
|
N Secondaries 165
|
||||||
|
EmEdep is=18342.9 MeV
|
||||||
|
HadEdep is=4.41746 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 18342.9 4.41746
|
||||||
|
**** Primary : 17
|
||||||
|
Vertex : (-9.96316,-9.33478,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 40
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
1.64259 1.91545 1.68632
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 13.568
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
124.717
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0 0 0 0 0 0
|
||||||
|
N Tracks out of world 5
|
||||||
|
N Secondaries 222
|
||||||
|
EmEdep is=19688.5 MeV
|
||||||
|
HadEdep is=0 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 19688.5 0
|
||||||
|
**** Primary : 18
|
||||||
|
Vertex : (-9.96316,-9.33478,32740)
|
||||||
|
Number of F1 Tiles with Positive energy : 63
|
||||||
|
Number of F2 tiles with Positive energy : 0
|
||||||
|
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||||
|
1.58896 2.0655 2.17158
|
||||||
|
Visible Energy in Hole Counter (MeV)
|
||||||
|
0 122.447
|
||||||
|
Visible Energy in Upstream Dead Materials
|
||||||
|
3752.91
|
||||||
|
Visible Energy in Tail Catcher Scintillator
|
||||||
|
0 0 0 0 0 0 0
|
||||||
|
Visible Energy in Tail Catcher Absorber
|
||||||
|
0 0 0 0 0 0
|
||||||
|
N Tracks out of world 140
|
||||||
|
N Secondaries 234
|
||||||
|
EmEdep is=14452.3 MeV
|
||||||
|
HadEdep is=0 MeV
|
||||||
|
Edep in FCAL1 FCAl2 : 14452.3 0
|
||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 18
|
Number of events processed : 18
|
||||||
User=10.840000s Real=10.966381s Sys=0.010000s
|
User=8.620000s Real=8.696852s Sys=0.000000s
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 0 entries: Number of Out Of World
|
0 with 0 entries: Number of Out Of World
|
||||||
1 with 0 entries: Number of Secondaries
|
1 with 0 entries: Number of Secondaries
|
||||||
@@ -1454,25 +1454,25 @@ G4SDManager deleted.
|
|||||||
EventManager deleted.
|
EventManager deleted.
|
||||||
Units table cleared.
|
Units table cleared.
|
||||||
TransportationManager deleted.
|
TransportationManager deleted.
|
||||||
Total navigation history collections cleaned: 46
|
Total navigation history collections cleaned: 44
|
||||||
G4RNGHelper object is deleted.
|
G4RNGHelper object is deleted.
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Pool ID '20G4NavigationLevelRep', size : 0.0634 MB
|
Pool ID '20G4NavigationLevelRep', size : 0.0615 MB
|
||||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||||
Pool ID '17G4DynamicParticle', size : 0.1 MB
|
Pool ID '17G4DynamicParticle', size : 0.103 MB
|
||||||
Pool ID '16G4SmartVoxelNode', size : 0.112 MB
|
Pool ID '16G4SmartVoxelNode', size : 0.112 MB
|
||||||
Pool ID '17G4SmartVoxelProxy', size : 0.0942 MB
|
Pool ID '17G4SmartVoxelProxy', size : 0.0942 MB
|
||||||
Pool ID '7G4Event', size : 0.000961 MB
|
Pool ID '7G4Event', size : 0.000961 MB
|
||||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||||
Pool ID '7G4Track', size : 0.2 MB
|
Pool ID '7G4Track', size : 0.206 MB
|
||||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||||
Pool ID '10G4Fragment', size : 0.00192 MB
|
Pool ID '10G4Fragment', size : 0.00192 MB
|
||||||
Pool ID '17G4ReactionProduct', size : 0.00192 MB
|
Pool ID '17G4ReactionProduct', size : 0.00192 MB
|
||||||
Number of memory pools allocated: 14 of which, static: 0
|
Number of memory pools allocated: 14 of which, static: 0
|
||||||
Dynamic pools deleted: 14 / Total memory freed: 0.58 MB
|
Dynamic pools deleted: 14 / Total memory freed: 0.59 MB
|
||||||
============================================================
|
============================================================
|
||||||
G4Allocator objects are deleted.
|
G4Allocator objects are deleted.
|
||||||
UImanager deleted.
|
UImanager deleted.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -973,10 +973,10 @@ Launched 50000 random primary particles
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=18.270000s Real=18.437294s Sys=0.000000s
|
User=20.220000s Real=20.373480s Sys=0.000000s
|
||||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||||
Number of entries 144
|
Number of entries 144
|
||||||
loop elapsed time [s] : 18.3
|
loop elapsed time [s] : 20.26
|
||||||
|
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||||
@@ -1200,10 +1200,10 @@ Launched 50000 random primary particles
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=17.640000s Real=17.773664s Sys=0.000000s
|
User=20.020000s Real=20.174759s Sys=0.000000s
|
||||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||||
Number of entries 181
|
Number of entries 181
|
||||||
loop elapsed time [s] : 17.68
|
loop elapsed time [s] : 20.07
|
||||||
|
|
||||||
################ END NEW GEOMETRY ########################
|
################ END NEW GEOMETRY ########################
|
||||||
/run/geometryModified
|
/run/geometryModified
|
||||||
@@ -1497,10 +1497,10 @@ Launched 50000 random primary particles
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=17.290000s Real=17.412110s Sys=0.000000s
|
User=19.830000s Real=19.973044s Sys=0.000000s
|
||||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||||
Number of entries 166
|
Number of entries 166
|
||||||
loop elapsed time [s] : 17.34
|
loop elapsed time [s] : 19.87
|
||||||
|
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||||
@@ -1724,13 +1724,13 @@ Launched 50000 random primary particles
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=17.080000s Real=17.203649s Sys=0.000000s
|
User=18.160000s Real=18.307058s Sys=0.000000s
|
||||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||||
Number of entries 154
|
Number of entries 154
|
||||||
loop elapsed time [s] : 17.11
|
loop elapsed time [s] : 18.19
|
||||||
|
|
||||||
################ END NEW GEOMETRY ########################
|
################ END NEW GEOMETRY ########################
|
||||||
loop elapsed time [s] : 73.92
|
loop elapsed time [s] : 81.61
|
||||||
|
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
UserDetectorConstruction deleted.
|
UserDetectorConstruction deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -804,7 +804,7 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
##### Create analysis manager 0x1bbc000
|
##### Create analysis manager 0x215b530
|
||||||
Using analysis manager
|
Using analysis manager
|
||||||
All Ntuples have been created
|
All Ntuples have been created
|
||||||
-> Event # 1 generated
|
-> Event # 1 generated
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -338,7 +338,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||||
See commands in /vis/modeling/trajectories/ for other options.
|
See commands in /vis/modeling/trajectories/ for other options.
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
##### Create analysis manager 0x1562090
|
##### Create analysis manager 0x24d1090
|
||||||
Using analysis manager
|
Using analysis manager
|
||||||
... set ntuple merging row mode : row-wise - done
|
... set ntuple merging row mode : row-wise - done
|
||||||
... create file : microelectronics.root - done
|
... create file : microelectronics.root - done
|
||||||
@@ -360,7 +360,7 @@ Elastic Cumulated Diff Cross : /cvmfs/geant4.cern.ch/share/data/G4EMLOW8.2/micro
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.330000s Real=0.386700s Sys=0.050000s
|
User=0.320000s Real=0.355081s Sys=0.010000s
|
||||||
... write file : microelectronics.root - done
|
... write file : microelectronics.root - done
|
||||||
... close file : microelectronics.root - done
|
... close file : microelectronics.root - done
|
||||||
... clear all data - done
|
... clear all data - done
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -43,8 +43,6 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
G2 (T/m) = 16.4947
|
G2 (T/m) = 16.4947
|
||||||
G3 (T/m) = 9.86677
|
G3 (T/m) = 9.86677
|
||||||
G4 (T/m) = -6.24449
|
G4 (T/m) = -6.24449
|
||||||
G4FieldManager/SetEpsMin : eps_min = 1e-09
|
|
||||||
G4FieldManager/SetEpsMax : eps_max = 1e-08 ( Note: unchanged eps_min= 1e-09 )
|
|
||||||
PhysicsList::SetCuts:CutLength : 1 um
|
PhysicsList::SetCuts:CutLength : 1 um
|
||||||
|
|
||||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
||||||
@@ -100,8 +98,6 @@ G4Material WARNING: duplicate name of material Vacuum
|
|||||||
G2 (T/m) = 16.4953
|
G2 (T/m) = 16.4953
|
||||||
G3 (T/m) = 9.86726
|
G3 (T/m) = 9.86726
|
||||||
G4 (T/m) = -6.2448
|
G4 (T/m) = -6.2448
|
||||||
G4FieldManager/SetEpsMin : eps_min = 1e-09
|
|
||||||
G4FieldManager/SetEpsMax : eps_max = 1e-08 ( Note: unchanged eps_min= 1e-09 )
|
|
||||||
=======================================================================
|
=======================================================================
|
||||||
====== Electromagnetic Physics Parameters ========
|
====== Electromagnetic Physics Parameters ========
|
||||||
=======================================================================
|
=======================================================================
|
||||||
@@ -297,7 +293,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
|
|
||||||
==================================================================
|
==================================================================
|
||||||
|
|
||||||
##### Create analysis manager 0x1a66b70
|
##### Create analysis manager 0xc5eb70
|
||||||
Using analysis manager
|
Using analysis manager
|
||||||
Ntuple-1 created
|
Ntuple-1 created
|
||||||
Ntuple-2 created
|
Ntuple-2 created
|
||||||
@@ -398,36 +394,6 @@ Ntuple-3 created
|
|||||||
-> Event= 92: X0(mm)= -1.0300005046796 X0(mm) = 0.87888459437965 Z0(m) = -8.87 THETA(mrad)= -0.047884850770414 PHI(mrad)= 0.048436406562422 E0(MeV)= 2.999929222433
|
-> Event= 92: X0(mm)= -1.0300005046796 X0(mm) = 0.87888459437965 Z0(m) = -8.87 THETA(mrad)= -0.047884850770414 PHI(mrad)= 0.048436406562422 E0(MeV)= 2.999929222433
|
||||||
=>IMAGE : X(microns)=-77.919382876133 Y(microns)=17.23898773902 THETA(mrad)=-16.345747254735 PHI(mrad)=28.782706961023
|
=>IMAGE : X(microns)=-77.919382876133 Y(microns)=17.23898773902 THETA(mrad)=-16.345747254735 PHI(mrad)=28.782706961023
|
||||||
|
|
||||||
|
|
||||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
|
||||||
*** G4Exception : Transport-001-ExcessSteps
|
|
||||||
issued by : G4Transportation::AlongStepDoIt
|
|
||||||
Transportation is killing track that is looping or stuck.
|
|
||||||
Track is proton and has 2.99993 MeV energy ( pre-Step = 2.99993 )
|
|
||||||
momentum = (-1.22735,2.16099,75.0488) mag= 75.0899
|
|
||||||
position = (-0.0779194,0.017239,250) is in volume 'World', its material is 'Vacuum' with density = 1e-25 g/cm^3
|
|
||||||
Total number of Steps by this track: 9122
|
|
||||||
Length of this step = 2553.49 mm
|
|
||||||
Number of propagation trials = 1 ( vs maximum = 10 for 'important' particles )
|
|
||||||
( Number of *calls* of Transport/AlongStepDoIt = 291906 )
|
|
||||||
=============== Recommendations / advice ====================
|
|
||||||
Recommendations to address this issue (Transport-001-ExcessSteps)
|
|
||||||
This warning is controlled by the SetThresholdWarningEnergy method of G4Transportation.
|
|
||||||
Current value of 'warning' threshold= 1 MeV
|
|
||||||
- If 'unimportant' particles (with energy low enough not to matter in your application, then increase its value.
|
|
||||||
- If particles of high-enough energy to be important are being killed, you can
|
|
||||||
a) Increase the trial steps using the method SetThresholdTrials(). Particles above the 'important' threshold
|
|
||||||
will be given this many 'chances'. The default value was 10, and the current value is 10
|
|
||||||
b) Increase the energy which you consider 'important' (above this they are killed only after extra trials), using the method SetThresholdImportantEnergy()
|
|
||||||
Note: this can incur a potentially high cost in extra simulation time if more tracks require very large number of integration steps .
|
|
||||||
c) investigate alternative integration methods
|
|
||||||
e.g. Helical methods for uniform or almost uniform fields or else higher order RK methods such as DormandPrince78
|
|
||||||
This information is provided 5 times. Current count: 1 / 5
|
|
||||||
=============================================================
|
|
||||||
|
|
||||||
*** This is just a warning message. ***
|
|
||||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
|
||||||
|
|
||||||
-> Event= 93: X0(mm)= 0.0078293329538488 X0(mm) = 0.0079533854502721 Z0(m) = -8.87 THETA(mrad)= -0.046118251874054 PHI(mrad)= 0.015762780425847 E0(MeV)= 3.0000343013789
|
-> Event= 93: X0(mm)= 0.0078293329538488 X0(mm) = 0.0079533854502721 Z0(m) = -8.87 THETA(mrad)= -0.046118251874054 PHI(mrad)= 0.015762780425847 E0(MeV)= 3.0000343013789
|
||||||
=>IMAGE : X(microns)=-0.57227779547528 Y(microns)=0.11587277392348 THETA(mrad)=-2.8887463925854 PHI(mrad)=1.8145096573758
|
=>IMAGE : X(microns)=-0.57227779547528 Y(microns)=0.11587277392348 THETA(mrad)=-2.8887463925854 PHI(mrad)=1.8145096573758
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -635,6 +635,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
|
|
||||||
====================================================================
|
====================================================================
|
||||||
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
HADRONIC PROCESSES SUMMARY (verbose level 1)
|
||||||
@@ -650,6 +667,8 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
|
|
||||||
Process: RadioactiveDecay
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
|
Process: RadioactiveDecay
|
||||||
|
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
Hadronic Processes for He3
|
Hadronic Processes for He3
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -2973,7 +2973,7 @@ Created histos
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.000000s Real=0.003263s Sys=0.000000s
|
User=0.000000s Real=0.003036s Sys=0.000000s
|
||||||
Going to save histograms
|
Going to save histograms
|
||||||
... write file : xrayfluo.root - done
|
... write file : xrayfluo.root - done
|
||||||
... close file : xrayfluo.root - done
|
... close file : xrayfluo.root - done
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -453,14 +453,12 @@ Opening output file xraytel ... done
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=0.010000s Real=0.013164s Sys=0.000000s
|
User=0.010000s Real=0.012608s Sys=0.000000s
|
||||||
##########################################
|
##########################################
|
||||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 14 of which, static: 0
|
Number of memory pools allocated: 14 of which, static: 0
|
||||||
Dynamic pools deleted: 14 / Total memory freed: 0.023 MB
|
Dynamic pools deleted: 14 / Total memory freed: 0.023 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -828,8 +828,6 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
Model: nRadCapture: 0 eV ---> 100 TeV
|
Model: nRadCapture: 0 eV ---> 100 TeV
|
||||||
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
||||||
|
|
||||||
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
|
||||||
|
|
||||||
|
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
Hadronic Processes for pi+
|
Hadronic Processes for pi+
|
||||||
@@ -965,7 +963,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
|||||||
|
|
||||||
--------------------End of Global Run-----------------------
|
--------------------End of Global Run-----------------------
|
||||||
The run consists of 1000 proton of 210 MeV
|
The run consists of 1000 proton of 210 MeV
|
||||||
Cumulated dose per run, in scoring volume : 4.74875 nanoGy rms = 146.023 picoGy
|
Cumulated dose per run, in scoring volume : 5.04835 nanoGy rms = 145.945 picoGy
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -693,6 +693,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||||
See commands in /vis/modeling/trajectories/ for other options.
|
See commands in /vis/modeling/trajectories/ for other options.
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -693,6 +693,23 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||||
|
======================================================================
|
||||||
|
====== Radioactive Decay Physics Parameters =======
|
||||||
|
======================================================================
|
||||||
|
min MeanLife (from G4NuclideTable) 1 ns
|
||||||
|
Max life time (from G4DeexPrecoParameters) 1000 ps
|
||||||
|
Internal e- conversion flag 1
|
||||||
|
Stored internal conversion coefficients 1
|
||||||
|
Enabled atomic relaxation mode 1
|
||||||
|
Enable correlated gamma emission 0
|
||||||
|
Max 2J for sampling of angular correlations 10
|
||||||
|
Atomic de-excitation enabled 1
|
||||||
|
Auger electron emission enabled 1
|
||||||
|
Check EM cuts disabled for atomic de-excitation 1
|
||||||
|
Use Bearden atomic level energies 0
|
||||||
|
Use ANSTO fluorescence model 0
|
||||||
|
Threshold for very long decay time at rest 3.171e+10 y
|
||||||
|
======================================================================
|
||||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||||
See commands in /vis/modeling/trajectories/ for other options.
|
See commands in /vis/modeling/trajectories/ for other options.
|
||||||
### Run 0 starts.
|
### Run 0 starts.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1113,4 +1113,4 @@ List them with "/analysis/list".
|
|||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
### deleting chargedFilter 0x29dbec0
|
### deleting chargedFilter 0x2a213e0
|
||||||
|
|||||||
+154
-170
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1143,8 +1143,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 69 entries: Drift Chamber 1 X vs Y
|
0 with 82 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 26 entries: Drift Chamber 2 X vs Y
|
1 with 20 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 1 starts.
|
### Run 1 starts.
|
||||||
@@ -1154,35 +1154,25 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
... open analysis file : B5.root - done
|
... open analysis file : B5.root - done
|
||||||
--> Event 0 starts.
|
--> Event 0 starts.
|
||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,100000)
|
>>> Event 0 >>> Simulation truth : pi+ (-0,0,100000)
|
||||||
Hodoscope 1 has 1 hits.
|
Hodoscope 1 has 1 hits.
|
||||||
Hodoscope[7] 4.98678808037 (nsec)
|
Hodoscope[7] 4.9867880803669 (nsec)
|
||||||
Hodoscope 2 has 3 hits.
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope[10] 42.694497782029 (nsec)
|
Hodoscope[10] 42.694110718141 (nsec)
|
||||||
Hodoscope[12] 163.3149429663 (nsec)
|
|
||||||
Hodoscope[22] 637.87003152573 (nsec)
|
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.6709548381816 (nsec) --- local (x,y) 0.014894199832824, 0.013472351482037
|
Layer[0] : time 6.6709548378151 (nsec) --- local (x,y) -0.00062837640804223, -0.0086929581175807
|
||||||
Layer[1] : time 8.338776939498 (nsec) --- local (x,y) 0.024694969212443, 0.025568933617367
|
Layer[1] : time 8.3387769387815 (nsec) --- local (x,y) 0.0066287811075416, -0.017996469613649
|
||||||
Layer[2] : time 10.006599040679 (nsec) --- local (x,y) 0.030948346863415, 0.038293551246823
|
Layer[2] : time 10.006599039457 (nsec) --- local (x,y) 0.01085974835846, -0.023469029905973
|
||||||
Layer[3] : time 11.674421142161 (nsec) --- local (x,y) 0.035563708762211, 0.054689857668158
|
Layer[3] : time 11.674421140109 (nsec) --- local (x,y) 0.014298205414218, -0.029043951433552
|
||||||
Layer[4] : time 13.342243243865 (nsec) --- local (x,y) 0.04121371312553, 0.072635351311393
|
Layer[4] : time 13.34224324075 (nsec) --- local (x,y) 0.0155136098841, -0.034917504125281
|
||||||
Drift Chamber 2 has 13 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.367171978925 (nsec) --- local (x,y) -82.627128755056, 0.37861786104169
|
Layer[0] : time 34.366792705921 (nsec) --- local (x,y) -82.665404511622, -0.10911880194211
|
||||||
Layer[1] : time 36.035907615534 (nsec) --- local (x,y) -99.1784104034, 0.41062208520941
|
Layer[1] : time 36.035526819804 (nsec) --- local (x,y) -99.20291296778, -0.11333239498443
|
||||||
Layer[2] : time 37.704643396416 (nsec) --- local (x,y) -115.73100361403, 0.44029994069447
|
Layer[2] : time 37.704261101361 (nsec) --- local (x,y) -115.7419421425, -0.11659268888906
|
||||||
Layer[3] : time 39.373379212584 (nsec) --- local (x,y) -132.28391605469, 0.4702303326989
|
Layer[3] : time 39.37299540997 (nsec) --- local (x,y) -132.28121671349, -0.11910821227179
|
||||||
Layer[3] : time 39.469745795164 (nsec) --- local (x,y) -140.47244026579, -22.634930178229
|
Layer[4] : time 41.04172991389 (nsec) --- local (x,y) -148.82226222515, -0.12174676086695
|
||||||
Layer[3] : time 39.471955341543 (nsec) --- local (x,y) -140.27254976308, -22.050388246948
|
EM Calorimeter has 52 hits. Total Edep is 545.40888314504 (MeV)
|
||||||
Layer[3] : time 39.472768843243 (nsec) --- local (x,y) -140.28156910961, -22.054390092533
|
Hadron Calorimeter has 13 hits. Total Edep is 3876.0433510524 (MeV)
|
||||||
Layer[3] : time 39.473594370476 (nsec) --- local (x,y) -140.28706563788, -22.064029211745
|
|
||||||
Layer[3] : time 39.474510112167 (nsec) --- local (x,y) -140.29620250448, -22.081503859448
|
|
||||||
Layer[3] : time 39.475733015836 (nsec) --- local (x,y) -140.29819325465, -22.116204348481
|
|
||||||
Layer[3] : time 39.477006082014 (nsec) --- local (x,y) -140.2558809921, -22.118345013201
|
|
||||||
Layer[4] : time 41.042115233533 (nsec) --- local (x,y) -148.83868011974, 0.50207417250738
|
|
||||||
Layer[4] : time 69.448371829629 (nsec) --- local (x,y) -629.797672962, 272.25995641105
|
|
||||||
EM Calorimeter has 70 hits. Total Edep is 22842.93635341 (MeV)
|
|
||||||
Hadron Calorimeter has 17 hits. Total Edep is 2954.2365187477 (MeV)
|
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1192,7 +1182,7 @@ There are 2 h1 histograms
|
|||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 25 entries: Drift Chamber 1 X vs Y
|
0 with 25 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 48 entries: Drift Chamber 2 X vs Y
|
1 with 25 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 2 starts.
|
### Run 2 starts.
|
||||||
@@ -1203,44 +1193,23 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
--> Event 0 starts.
|
--> Event 0 starts.
|
||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : e+ (-0,0,100000)
|
>>> Event 0 >>> Simulation truth : e+ (-0,0,100000)
|
||||||
Hodoscope 1 has 1 hits.
|
Hodoscope 1 has 2 hits.
|
||||||
Hodoscope[7] 4.9867832234043 (nsec)
|
Hodoscope[7] 4.9867832233927 (nsec)
|
||||||
Hodoscope 2 has 1 hits.
|
Hodoscope[6] 5.2632141907765 (nsec)
|
||||||
Hodoscope[8] 43.190696388341 (nsec)
|
Hodoscope 2 has 0 hits.
|
||||||
Drift Chamber 1 has 6 hits.
|
Drift Chamber 1 has 8 hits.
|
||||||
Layer[0] : time 6.6709483401196 (nsec) --- local (x,y) 0.0016154198787196, 0.0093846377149814
|
Layer[0] : time 6.6709483402318 (nsec) --- local (x,y) 0.010678730860813, -0.0050210392823713
|
||||||
Layer[0] : time 8.1886268289788 (nsec) --- local (x,y) 4.7535937532564, 150.63659282206
|
Layer[1] : time 8.3387688163887 (nsec) --- local (x,y) 0.009774876394651, -0.0058469233273336
|
||||||
Layer[1] : time 8.3387688161443 (nsec) --- local (x,y) 0.0027254029041876, 0.010755021298588
|
Layer[1] : time 8.5661511398753 (nsec) --- local (x,y) 224.08551582078, -17.539712307242
|
||||||
Layer[2] : time 10.006589292168 (nsec) --- local (x,y) 0.0042401180767799, 0.011463107217922
|
Layer[2] : time 10.006589292793 (nsec) --- local (x,y) 0.0096098836102241, -0.011865057638275
|
||||||
Layer[3] : time 11.674409768191 (nsec) --- local (x,y) 0.0041411531295479, 0.011639900418066
|
Layer[2] : time 10.543997243963 (nsec) --- local (x,y) 490.12550131107, -143.83510050153
|
||||||
Layer[4] : time 13.342230244213 (nsec) --- local (x,y) 0.0043025248277636, 0.010222223309773
|
Layer[3] : time 11.674409769426 (nsec) --- local (x,y) 0.017447204676682, -0.022268609550485
|
||||||
Drift Chamber 2 has 5 hits.
|
Layer[3] : time 13.006684218877 (nsec) --- local (x,y) 998.86565701834, -226.79161960015
|
||||||
Layer[0] : time 34.847321503363 (nsec) --- local (x,y) -176.04097528602, 0.0035808605853596
|
Layer[4] : time 13.342230246521 (nsec) --- local (x,y) 0.02758805475771, -0.036524613574284
|
||||||
Layer[1] : time 36.519273316522 (nsec) --- local (x,y) -211.2557114237, 0.011671722726596
|
Drift Chamber 2 has 1 hits.
|
||||||
Layer[2] : time 38.191225436586 (nsec) --- local (x,y) -246.47175737072, 0.01880335470067
|
Layer[0] : time 35.534542462101 (nsec) --- local (x,y) -1316.511066254, -0.057703393771264
|
||||||
Layer[3] : time 39.863177317524 (nsec) --- local (x,y) -281.68678327134, 0.024152793919158
|
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||||
Layer[4] : time 41.535129652476 (nsec) --- local (x,y) -316.90374562916, 0.033482148578163
|
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||||
EM Calorimeter has 45 hits. Total Edep is 89130.952075927 (MeV)
|
|
||||||
Hadron Calorimeter has 7 hits. Total Edep is 51.712072716656 (MeV)
|
|
||||||
|
|
||||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
|
||||||
*** G4Exception : GeomNav1002
|
|
||||||
issued by : G4Navigator::ComputeStep()
|
|
||||||
Stuck Track: potential geometry or navigation problem.
|
|
||||||
Track stuck, not moving for 10 steps.
|
|
||||||
Current phys volume: 'worldPhysical'
|
|
||||||
- at position : (256.8447378427963,106.7280836472216,-966.4526789462923)
|
|
||||||
in direction: (0.830955475515521,0.4683372009728602,0.3002886343098609)
|
|
||||||
(local position: (256.8447378427963,106.7280836472216,-966.4526789462923))
|
|
||||||
(local direction: (0.830955475515521,0.4683372009728602,0.3002886343098609)).
|
|
||||||
Previous phys volume: 'magneticPhysical'
|
|
||||||
|
|
||||||
Likely geometry overlap - else navigation problem !
|
|
||||||
*** Trying to get *unstuck* using a push - expanding step to 1e-07 (mm) ... Potential overlap in geometry !
|
|
||||||
|
|
||||||
*** This is just a warning message. ***
|
|
||||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
|
||||||
|
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1249,8 +1218,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 26 entries: Drift Chamber 1 X vs Y
|
0 with 30 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 24 entries: Drift Chamber 2 X vs Y
|
1 with 18 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 3 starts.
|
### Run 3 starts.
|
||||||
@@ -1262,23 +1231,23 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
|
>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
|
||||||
Hodoscope 1 has 1 hits.
|
Hodoscope 1 has 1 hits.
|
||||||
Hodoscope[7] 5.0086867864829 (nsec)
|
Hodoscope[7] 5.0086870712918 (nsec)
|
||||||
Hodoscope 2 has 1 hits.
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope[9] 43.371389318768 (nsec)
|
Hodoscope[9] 43.374529586406 (nsec)
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.7002531375698 (nsec) --- local (x,y) -0.1460554297821, 0.17151155476643
|
Layer[0] : time 6.7002538809061 (nsec) --- local (x,y) -0.16484804788969, -0.26295953856084
|
||||||
Layer[1] : time 8.3754034028492 (nsec) --- local (x,y) -0.28862089071368, 0.32341623461762
|
Layer[1] : time 8.3754043254453 (nsec) --- local (x,y) -0.1857144579956, -0.44844918453078
|
||||||
Layer[2] : time 10.050553853491 (nsec) --- local (x,y) -0.44579623285736, 0.50012817124628
|
Layer[2] : time 10.050554899294 (nsec) --- local (x,y) -0.22145341118302, -0.63532012861296
|
||||||
Layer[3] : time 11.725704498744 (nsec) --- local (x,y) -0.61574364717187, 0.6866593363354
|
Layer[3] : time 11.725705609727 (nsec) --- local (x,y) -0.26703752855836, -0.83437278637271
|
||||||
Layer[4] : time 13.400855241618 (nsec) --- local (x,y) -0.77343138472636, 0.86017035241204
|
Layer[4] : time 13.40085649139 (nsec) --- local (x,y) -0.30707951137357, -1.0374070388647
|
||||||
Drift Chamber 2 has 5 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.997397284964 (nsec) --- local (x,y) -150.9084812523, 3.8512765012741
|
Layer[0] : time 35.000516404957 (nsec) --- local (x,y) -148.93233389615, -3.6513738556155
|
||||||
Layer[1] : time 36.675486321426 (nsec) --- local (x,y) -180.52596590137, 4.0611790087952
|
Layer[1] : time 36.678611073346 (nsec) --- local (x,y) -178.5773723237, -3.8777179638026
|
||||||
Layer[2] : time 38.353577072367 (nsec) --- local (x,y) -210.15168395531, 4.2638601079926
|
Layer[2] : time 38.356702748326 (nsec) --- local (x,y) -208.20686350946, -4.0913719610841
|
||||||
Layer[3] : time 40.031656924164 (nsec) --- local (x,y) -239.72202110482, 4.3961608210453
|
Layer[3] : time 40.034792727432 (nsec) --- local (x,y) -237.82718041721, -4.2886345908172
|
||||||
Layer[4] : time 41.709744143014 (nsec) --- local (x,y) -269.32899825636, 4.4948146896374
|
Layer[4] : time 41.712885851254 (nsec) --- local (x,y) -267.46265245166, -4.488109025262
|
||||||
EM Calorimeter has 48 hits. Total Edep is 3850.2074376522 (MeV)
|
EM Calorimeter has 33 hits. Total Edep is 7069.185580901 (MeV)
|
||||||
Hadron Calorimeter has 9 hits. Total Edep is 152.75896692419 (MeV)
|
Hadron Calorimeter has 11 hits. Total Edep is 27.409880353463 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1288,7 +1257,7 @@ There are 2 h1 histograms
|
|||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 26 entries: Drift Chamber 1 X vs Y
|
0 with 26 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 25 entries: Drift Chamber 2 X vs Y
|
1 with 26 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 4 starts.
|
### Run 4 starts.
|
||||||
@@ -1298,25 +1267,28 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
... open analysis file : B5.root - done
|
... open analysis file : B5.root - done
|
||||||
--> Event 0 starts.
|
--> Event 0 starts.
|
||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,10000)
|
>>> Event 0 >>> Simulation truth : pi+ (-0,0,10000)
|
||||||
Hodoscope 1 has 1 hits.
|
Hodoscope 1 has 1 hits.
|
||||||
Hodoscope[7] 4.9872689261197 (nsec)
|
Hodoscope[7] 4.9872689389247 (nsec)
|
||||||
Hodoscope 2 has 1 hits.
|
Hodoscope 2 has 4 hits.
|
||||||
Hodoscope[10] 42.701463030466 (nsec)
|
Hodoscope[10] 42.696273033672 (nsec)
|
||||||
|
Hodoscope[19] 909.78954843494 (nsec)
|
||||||
|
Hodoscope[2] 455.21148013311 (nsec)
|
||||||
|
Hodoscope[7] 578.66437644855 (nsec)
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.6715981924411 (nsec) --- local (x,y) 0.081228001280494, -0.07615722168592
|
Layer[0] : time 6.6715981732241 (nsec) --- local (x,y) -0.14847089103861, 0.02576516685931
|
||||||
Layer[1] : time 8.3395812213161 (nsec) --- local (x,y) 0.20192904962018, -0.10407023528524
|
Layer[1] : time 8.3395811825701 (nsec) --- local (x,y) -0.22540461338196, 0.08039312105778
|
||||||
Layer[2] : time 10.007564271394 (nsec) --- local (x,y) 0.34239921098865, -0.12789664764659
|
Layer[2] : time 10.007564196276 (nsec) --- local (x,y) -0.30575138068517, 0.13248200006015
|
||||||
Layer[3] : time 11.675547329794 (nsec) --- local (x,y) 0.49096755955065, -0.1362320415514
|
Layer[3] : time 11.675547211668 (nsec) --- local (x,y) -0.37398092765537, 0.19702993016322
|
||||||
Layer[4] : time 13.343530390021 (nsec) --- local (x,y) 0.63848130830785, -0.13845728825786
|
Layer[4] : time 13.34353023219 (nsec) --- local (x,y) -0.41066354588709, 0.28672005340338
|
||||||
Drift Chamber 2 has 5 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.373972904508 (nsec) --- local (x,y) -83.030086889928, 0.39616541498863
|
Layer[0] : time 34.368167688082 (nsec) --- local (x,y) -83.130759912988, 2.55919937371
|
||||||
Layer[1] : time 36.042907957522 (nsec) --- local (x,y) -99.925655104618, 0.42968502332957
|
Layer[1] : time 36.037063823659 (nsec) --- local (x,y) -99.675962727821, 2.7732483078104
|
||||||
Layer[2] : time 37.711647595029 (nsec) --- local (x,y) -115.26336228278, 0.16103561631177
|
Layer[2] : time 37.705957815706 (nsec) --- local (x,y) -116.20166748584, 2.9894019208745
|
||||||
Layer[3] : time 39.380370710545 (nsec) --- local (x,y) -130.47056865692, -0.13429693832064
|
Layer[3] : time 39.374851270229 (nsec) --- local (x,y) -132.72276745235, 3.1812862131176
|
||||||
Layer[4] : time 41.04909308024 (nsec) --- local (x,y) -145.66967780939, -0.46375492018868
|
Layer[4] : time 41.043742453025 (nsec) --- local (x,y) -149.22289979538, 3.3966154214211
|
||||||
EM Calorimeter has 2 hits. Total Edep is 182.55179581951 (MeV)
|
EM Calorimeter has 34 hits. Total Edep is 3899.4640801331 (MeV)
|
||||||
Hadron Calorimeter has 2 hits. Total Edep is 42.255980433698 (MeV)
|
Hadron Calorimeter has 9 hits. Total Edep is 177.13639671609 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1325,8 +1297,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 25 entries: Drift Chamber 1 X vs Y
|
0 with 27 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 25 entries: Drift Chamber 2 X vs Y
|
1 with 31 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 5 starts.
|
### Run 5 starts.
|
||||||
@@ -1336,26 +1308,25 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
... open analysis file : B5.root - done
|
... open analysis file : B5.root - done
|
||||||
--> Event 0 starts.
|
--> 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 1 has 1 hits.
|
||||||
Hodoscope[7] 4.9867832546962 (nsec)
|
Hodoscope[7] 4.9867832593975 (nsec)
|
||||||
Hodoscope 2 has 2 hits.
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope[9] 43.184072799747 (nsec)
|
Hodoscope[9] 43.185698455985 (nsec)
|
||||||
Hodoscope[7] 56.112378099769 (nsec)
|
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.6709484527152 (nsec) --- local (x,y) -0.14765628338004, -0.078146027248105
|
Layer[0] : time 6.6709483841024 (nsec) --- local (x,y) 0.12109158368515, -0.030024893672443
|
||||||
Layer[1] : time 8.3387690283714 (nsec) --- local (x,y) -0.21514720729188, -0.23506928793186
|
Layer[1] : time 8.3387688764306 (nsec) --- local (x,y) 0.16290632355066, 0.019526523727379
|
||||||
Layer[2] : time 10.006589602551 (nsec) --- local (x,y) -0.28428861520892, -0.38993719447868
|
Layer[2] : time 10.006589363645 (nsec) --- local (x,y) 0.19986268489212, 0.050557936217244
|
||||||
Layer[3] : time 11.674410136718 (nsec) --- local (x,y) -0.36065300790436, -0.49417843342758
|
Layer[3] : time 11.674409842227 (nsec) --- local (x,y) 0.20288504328649, 0.060279283839643
|
||||||
Layer[4] : time 13.342230663082 (nsec) --- local (x,y) -0.42520696712251, -0.59546442547437
|
Layer[4] : time 13.342230321493 (nsec) --- local (x,y) 0.18617910705712, 0.05440200079527
|
||||||
Drift Chamber 2 has 5 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.846758149734 (nsec) --- local (x,y) -148.87452278712, -1.3718070080457
|
Layer[0] : time 34.848137143566 (nsec) --- local (x,y) -149.29236155801, 0.60933166930809
|
||||||
Layer[1] : time 36.517484088699 (nsec) --- local (x,y) -178.40060446262, -1.4369854622858
|
Layer[1] : time 36.51892612322 (nsec) --- local (x,y) -179.13704024963, 0.75565264042248
|
||||||
Layer[2] : time 38.188214270747 (nsec) --- local (x,y) -207.9483021509, -1.4743608097198
|
Layer[2] : time 38.189714363832 (nsec) --- local (x,y) -208.97801246045, 0.89966000874461
|
||||||
Layer[3] : time 39.858951365121 (nsec) --- local (x,y) -237.53112866997, -1.4901416245997
|
Layer[3] : time 39.860499186656 (nsec) --- local (x,y) -238.80177751553, 1.0443344124525
|
||||||
Layer[4] : time 41.52969663966 (nsec) --- local (x,y) -267.1554367809, -1.522807501765
|
Layer[4] : time 41.531287270457 (nsec) --- local (x,y) -268.64195059966, 1.1903995678694
|
||||||
EM Calorimeter has 17 hits. Total Edep is 9398.4966655565 (MeV)
|
EM Calorimeter has 23 hits. Total Edep is 8680.1776847081 (MeV)
|
||||||
Hadron Calorimeter has 1 hits. Total Edep is 0.83564937448599 (MeV)
|
Hadron Calorimeter has 4 hits. Total Edep is 3.7910125249593 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1364,8 +1335,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 26 entries: Drift Chamber 1 X vs Y
|
0 with 25 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 25 entries: Drift Chamber 2 X vs Y
|
1 with 22 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 6 starts.
|
### Run 6 starts.
|
||||||
@@ -1375,19 +1346,33 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
... open analysis file : B5.root - done
|
... open analysis file : B5.root - done
|
||||||
--> Event 0 starts.
|
--> Event 0 starts.
|
||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : proton (-0,0,1000)
|
>>> Event 0 >>> Simulation truth : proton (0,0,1000)
|
||||||
Hodoscope 1 has 2 hits.
|
Hodoscope 1 has 1 hits.
|
||||||
Hodoscope[7] 6.8394461683353 (nsec)
|
Hodoscope[7] 6.8390348174019 (nsec)
|
||||||
Hodoscope[8] 7.5323142076831 (nsec)
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope 2 has 0 hits.
|
Hodoscope[10] 59.545398441345 (nsec)
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 10.086912283212 (nsec) --- local (x,y) -80.990234069463, 53.885112985004
|
Layer[0] : time 9.1539486018903 (nsec) --- local (x,y) 1.8255724989412, -1.693017174818
|
||||||
Layer[1] : time 13.31431314404 (nsec) --- local (x,y) -159.97040180169, 107.4837889282
|
Layer[1] : time 11.446763403055 (nsec) --- local (x,y) 4.5547728618992, -4.0505749805086
|
||||||
Layer[2] : time 16.543362938017 (nsec) --- local (x,y) -239.0187564561, 160.59799682208
|
Layer[2] : time 13.739909800377 (nsec) --- local (x,y) 9.7284948606286, -7.7685523018113
|
||||||
Layer[3] : time 19.773711548972 (nsec) --- local (x,y) -317.45929587251, 213.15011137527
|
Layer[3] : time 16.033372117258 (nsec) --- local (x,y) 15.003944386868, -11.816718211684
|
||||||
Layer[4] : time 23.004892916952 (nsec) --- local (x,y) -395.47005386515, 264.66629208904
|
Layer[4] : time 18.32708758539 (nsec) --- local (x,y) 20.42265440669, -16.041804913734
|
||||||
Drift Chamber 2 has 0 hits.
|
Drift Chamber 2 has 14 hits.
|
||||||
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
Layer[0] : time 48.064922455291 (nsec) --- local (x,y) -83.406487306373, -70.642826840603
|
||||||
|
Layer[0] : time 48.065827890715 (nsec) --- local (x,y) -83.417772638248, -70.644279047123
|
||||||
|
Layer[0] : time 48.065827890715 (nsec) --- local (x,y) -83.417772638248, -70.644279047123
|
||||||
|
Layer[0] : time 48.066513876179 (nsec) --- local (x,y) -83.439443693492, -70.644570837347
|
||||||
|
Layer[0] : time 48.07053719083 (nsec) --- local (x,y) -83.537545203598, -70.696962213709
|
||||||
|
Layer[0] : time 48.071016421653 (nsec) --- local (x,y) -83.54852257502, -70.696270960579
|
||||||
|
Layer[0] : time 48.071495652476 (nsec) --- local (x,y) -83.559683412371, -70.694452406644
|
||||||
|
Layer[0] : time 48.074966538685 (nsec) --- local (x,y) -83.610124376749, -70.712609701593
|
||||||
|
Layer[1] : time 50.365173226682 (nsec) --- local (x,y) -111.48233853526, -73.850362367233
|
||||||
|
Layer[2] : time 52.665524086505 (nsec) --- local (x,y) -139.30205862547, -77.021008495026
|
||||||
|
Layer[2] : time 52.809786642519 (nsec) --- local (x,y) -137.91379678892, -52.459710383025
|
||||||
|
Layer[2] : time 52.898542556635 (nsec) --- local (x,y) -149.52638968365, -49.797546192769
|
||||||
|
Layer[3] : time 54.966190368191 (nsec) --- local (x,y) -167.02678020073, -80.304291694436
|
||||||
|
Layer[4] : time 57.267048267804 (nsec) --- local (x,y) -194.80540844504, -83.83672925346
|
||||||
|
EM Calorimeter has 6 hits. Total Edep is 391.08027639095 (MeV)
|
||||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
@@ -1397,8 +1382,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 28 entries: Drift Chamber 1 X vs Y
|
0 with 25 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 21 entries: Drift Chamber 2 X vs Y
|
1 with 34 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 7 starts.
|
### Run 7 starts.
|
||||||
@@ -1410,23 +1395,23 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,1000)
|
>>> Event 0 >>> Simulation truth : pi+ (-0,0,1000)
|
||||||
Hodoscope 1 has 1 hits.
|
Hodoscope 1 has 1 hits.
|
||||||
Hodoscope[7] 5.0351308887812 (nsec)
|
Hodoscope[7] 5.0351301227941 (nsec)
|
||||||
Hodoscope 2 has 1 hits.
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope[10] 43.12543168625 (nsec)
|
Hodoscope[10] 43.116150239337 (nsec)
|
||||||
Drift Chamber 1 has 5 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.7356851726432 (nsec) --- local (x,y) 0.89854899204058, -0.23695587313731
|
Layer[0] : time 6.7356960491498 (nsec) --- local (x,y) 0.15815399485635, -0.84624043906253
|
||||||
Layer[1] : time 8.4197403901916 (nsec) --- local (x,y) 1.0487794201795, -0.71770868799393
|
Layer[1] : time 8.4197631079028 (nsec) --- local (x,y) 0.65049663250492, -1.8121792575489
|
||||||
Layer[2] : time 10.103800726262 (nsec) --- local (x,y) 1.0293317268778, -1.3051027739321
|
Layer[2] : time 10.103830586214 (nsec) --- local (x,y) 0.95939032281055, -2.667995479941
|
||||||
Layer[3] : time 11.787863966064 (nsec) --- local (x,y) 0.8391333248813, -1.7518558288069
|
Layer[3] : time 11.787903350319 (nsec) --- local (x,y) 1.2202140235843, -3.6227549230696
|
||||||
Layer[4] : time 13.471929718095 (nsec) --- local (x,y) 1.0117735572913, -2.0923887860158
|
Layer[4] : time 13.471979675183 (nsec) --- local (x,y) 1.4090499221374, -4.6121387379392
|
||||||
Drift Chamber 2 has 5 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.715772263077 (nsec) --- local (x,y) -87.20109227483, -5.0492259938799
|
Layer[0] : time 34.706114006192 (nsec) --- local (x,y) -91.890328630861, -12.987565110615
|
||||||
Layer[1] : time 36.401000587527 (nsec) --- local (x,y) -105.4761382953, -5.1063230011713
|
Layer[1] : time 36.391438781242 (nsec) --- local (x,y) -110.82047399675, -13.811444451445
|
||||||
Layer[2] : time 38.086241243955 (nsec) --- local (x,y) -123.82380011979, -4.665960825673
|
Layer[2] : time 38.07674101933 (nsec) --- local (x,y) -129.54650893877, -14.820787142037
|
||||||
Layer[3] : time 39.771465006687 (nsec) --- local (x,y) -142.00989746853, -4.2061534478478
|
Layer[3] : time 39.762027367096 (nsec) --- local (x,y) -148.11329463378, -16.022526644137
|
||||||
Layer[4] : time 41.456678084557 (nsec) --- local (x,y) -160.08510913084, -3.7772169735911
|
Layer[4] : time 41.447330456579 (nsec) --- local (x,y) -166.798918758, -17.079398294527
|
||||||
EM Calorimeter has 24 hits. Total Edep is 198.26940998496 (MeV)
|
EM Calorimeter has 2 hits. Total Edep is 182.3768661003 (MeV)
|
||||||
Hadron Calorimeter has 8 hits. Total Edep is 25.015150415126 (MeV)
|
Hadron Calorimeter has 1 hits. Total Edep is 23.867892814319 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
... close file : B5.root - done
|
... close file : B5.root - done
|
||||||
@@ -1436,7 +1421,7 @@ There are 2 h1 histograms
|
|||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 25 entries: Drift Chamber 1 X vs Y
|
0 with 25 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 31 entries: Drift Chamber 2 X vs Y
|
1 with 25 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
### Run 8 starts.
|
### Run 8 starts.
|
||||||
@@ -1446,25 +1431,24 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
... open analysis file : B5.root - done
|
... open analysis file : B5.root - done
|
||||||
--> Event 0 starts.
|
--> 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 1 has 1 hits.
|
||||||
Hodoscope[7] 4.9867850409513 (nsec)
|
Hodoscope[7] 4.9867840981183 (nsec)
|
||||||
Hodoscope 2 has 1 hits.
|
Hodoscope 2 has 1 hits.
|
||||||
Hodoscope[0] 43.396047753028 (nsec)
|
Hodoscope[9] 43.191258354866 (nsec)
|
||||||
Drift Chamber 1 has 6 hits.
|
Drift Chamber 1 has 5 hits.
|
||||||
Layer[0] : time 6.6709784647384 (nsec) --- local (x,y) -3.8108973393543, 0.017741450873075
|
Layer[0] : time 6.6709520623725 (nsec) --- local (x,y) -0.065257400123346, -0.64714027121235
|
||||||
Layer[0] : time 6.7592518099866 (nsec) --- local (x,y) 16.616635850825, -4.8294789678438
|
Layer[1] : time 8.3387760436361 (nsec) --- local (x,y) 0.071106318260297, -1.6298981366016
|
||||||
Layer[1] : time 8.338830370782 (nsec) --- local (x,y) -6.8170572773981, -0.49723324351644
|
Layer[2] : time 10.006602450396 (nsec) --- local (x,y) 0.12431568322904, -2.9294492033695
|
||||||
Layer[2] : time 10.006682257875 (nsec) --- local (x,y) -9.8409641292456, -0.89175767088477
|
Layer[3] : time 11.674429507133 (nsec) --- local (x,y) 0.12150001533806, -4.3086252279214
|
||||||
Layer[3] : time 11.674538477886 (nsec) --- local (x,y) -13.089104594349, -1.0663867743299
|
Layer[4] : time 13.342259173761 (nsec) --- local (x,y) 0.27525998678856, -5.9394847098483
|
||||||
Layer[4] : time 13.342397259649 (nsec) --- local (x,y) -16.458609560389, -1.1893641017606
|
|
||||||
Drift Chamber 2 has 5 hits.
|
Drift Chamber 2 has 5 hits.
|
||||||
Layer[0] : time 34.850825452701 (nsec) --- local (x,y) -615.07931170748, 9.3470369342005
|
Layer[0] : time 34.852673646719 (nsec) --- local (x,y) -151.66416805733, -25.393270019144
|
||||||
Layer[1] : time 36.563042875257 (nsec) --- local (x,y) -731.17940005856, 12.065732967429
|
Layer[1] : time 36.523691650078 (nsec) --- local (x,y) -182.63284399022, -26.011099013763
|
||||||
Layer[2] : time 38.275428226059 (nsec) --- local (x,y) -847.50558184478, 14.673756188588
|
Layer[2] : time 38.194688460653 (nsec) --- local (x,y) -213.49147899547, -26.918948769142
|
||||||
Layer[3] : time 39.987715161054 (nsec) --- local (x,y) -963.70290618917, 17.217507962996
|
Layer[3] : time 39.865668679488 (nsec) --- local (x,y) -244.26976935623, -27.805917230426
|
||||||
Layer[4] : time 41.700177233954 (nsec) --- local (x,y) -1080.1076738769, 20.692490354153
|
Layer[4] : time 41.536645246137 (nsec) --- local (x,y) -275.03865419765, -28.327998813239
|
||||||
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
EM Calorimeter has 9 hits. Total Edep is 942.77326917084 (MeV)
|
||||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||||
... write file : B5.root - done
|
... write file : B5.root - done
|
||||||
... write file : B5ntuple.root - done
|
... write file : B5ntuple.root - done
|
||||||
@@ -1474,8 +1458,8 @@ There are 2 h1 histograms
|
|||||||
0 with 5 entries: Drift Chamber 1 # Hits
|
0 with 5 entries: Drift Chamber 1 # Hits
|
||||||
1 with 5 entries: Drift Chamber 2 # Hits
|
1 with 5 entries: Drift Chamber 2 # Hits
|
||||||
There are 2 h2 histograms
|
There are 2 h2 histograms
|
||||||
0 with 26 entries: Drift Chamber 1 X vs Y
|
0 with 28 entries: Drift Chamber 1 X vs Y
|
||||||
1 with 16 entries: Drift Chamber 2 X vs Y
|
1 with 25 entries: Drift Chamber 2 X vs Y
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
View them with "/vis/plot" or "/vis/reviewPlots".
|
View them with "/vis/plot" or "/vis/reviewPlots".
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1066,20 +1066,20 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
--------------------End of Run------------------------------
|
--------------------End of Run------------------------------
|
||||||
|
|
||||||
mean Energy in Absorber : 188.96 MeV +- 48.8659 MeV
|
mean Energy in Absorber : 187.631 MeV +- 47.785 MeV
|
||||||
mean Energy in Gap : 46.7177 MeV +- 12.7612 MeV
|
mean Energy in Gap : 46.3222 MeV +- 12.6821 MeV
|
||||||
|
|
||||||
mean trackLength in Absorber : 46.7149 cm +- 12.1118 cm
|
mean trackLength in Absorber : 46.3801 cm +- 11.8848 cm
|
||||||
mean trackLength in Gap : 23.7187 cm +- 6.51829 cm
|
mean trackLength in Gap : 23.543 cm +- 6.47285 cm
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 188.96 MeV rms = 48.8659 MeV
|
EAbs: mean = 187.631 MeV rms = 47.785 MeV
|
||||||
EGap: mean = 46.7177 MeV rms = 12.7612 MeV
|
EGap: mean = 46.3222 MeV rms = 12.6821 MeV
|
||||||
LAbs: mean = 46.7149 cm rms = 12.1118 cm
|
LAbs: mean = 46.3801 cm rms = 11.8848 cm
|
||||||
LGap: mean = 23.7187 cm rms = 6.51829 cm
|
LGap: mean = 23.543 cm rms = 6.47285 cm
|
||||||
... create file : ./histo/AnaEx01_h1_EAbs.csv - done
|
... create file : ./histo/AnaEx01_h1_EAbs.csv - done
|
||||||
... create file : ./histo/AnaEx01_h1_EGap.csv - done
|
... create file : ./histo/AnaEx01_h1_EGap.csv - done
|
||||||
... create file : ./histo/AnaEx01_h1_LAbs.csv - done
|
... create file : ./histo/AnaEx01_h1_LAbs.csv - done
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1050,20 +1050,20 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
--------------------End of Run------------------------------
|
--------------------End of Run------------------------------
|
||||||
|
|
||||||
mean Energy in Absorber : 188.96 MeV +- 48.8659 MeV
|
mean Energy in Absorber : 187.631 MeV +- 47.785 MeV
|
||||||
mean Energy in Gap : 46.7177 MeV +- 12.7612 MeV
|
mean Energy in Gap : 46.3222 MeV +- 12.6821 MeV
|
||||||
|
|
||||||
mean trackLength in Absorber : 46.7149 cm +- 12.1118 cm
|
mean trackLength in Absorber : 46.3801 cm +- 11.8848 cm
|
||||||
mean trackLength in Gap : 23.7187 cm +- 6.51829 cm
|
mean trackLength in Gap : 23.543 cm +- 6.47285 cm
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 188.96 MeV rms = 48.8659 MeV
|
EAbs: mean = 187.631 MeV rms = 47.785 MeV
|
||||||
EGap: mean = 46.7177 MeV rms = 12.7612 MeV
|
EGap: mean = 46.3222 MeV rms = 12.6821 MeV
|
||||||
LAbs: mean = 46.7149 cm rms = 12.1118 cm
|
LAbs: mean = 46.3801 cm rms = 11.8848 cm
|
||||||
LGap: mean = 23.7187 cm rms = 6.51829 cm
|
LGap: mean = 23.543 cm rms = 6.47285 cm
|
||||||
... write file : AnaEx01.hdf5 - done
|
... write file : AnaEx01.hdf5 - done
|
||||||
... close file : AnaEx01.hdf5 - done
|
... close file : AnaEx01.hdf5 - done
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1053,20 +1053,20 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
--------------------End of Run------------------------------
|
--------------------End of Run------------------------------
|
||||||
|
|
||||||
mean Energy in Absorber : 188.96 MeV +- 48.8659 MeV
|
mean Energy in Absorber : 187.631 MeV +- 47.785 MeV
|
||||||
mean Energy in Gap : 46.7177 MeV +- 12.7612 MeV
|
mean Energy in Gap : 46.3222 MeV +- 12.6821 MeV
|
||||||
|
|
||||||
mean trackLength in Absorber : 46.7149 cm +- 12.1118 cm
|
mean trackLength in Absorber : 46.3801 cm +- 11.8848 cm
|
||||||
mean trackLength in Gap : 23.7187 cm +- 6.51829 cm
|
mean trackLength in Gap : 23.543 cm +- 6.47285 cm
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 188.96 MeV rms = 48.8659 MeV
|
EAbs: mean = 187.631 MeV rms = 47.785 MeV
|
||||||
EGap: mean = 46.7177 MeV rms = 12.7612 MeV
|
EGap: mean = 46.3222 MeV rms = 12.6821 MeV
|
||||||
LAbs: mean = 46.7149 cm rms = 12.1118 cm
|
LAbs: mean = 46.3801 cm rms = 11.8848 cm
|
||||||
LGap: mean = 23.7187 cm rms = 6.51829 cm
|
LGap: mean = 23.543 cm rms = 6.47285 cm
|
||||||
... write file : AnaEx01.root - done
|
... write file : AnaEx01.root - done
|
||||||
... close file : AnaEx01.root - done
|
... close file : AnaEx01.root - done
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1058,20 +1058,20 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
--------------------End of Run------------------------------
|
--------------------End of Run------------------------------
|
||||||
|
|
||||||
mean Energy in Absorber : 188.96 MeV +- 48.8659 MeV
|
mean Energy in Absorber : 187.631 MeV +- 47.785 MeV
|
||||||
mean Energy in Gap : 46.7177 MeV +- 12.7612 MeV
|
mean Energy in Gap : 46.3222 MeV +- 12.6821 MeV
|
||||||
|
|
||||||
mean trackLength in Absorber : 46.7149 cm +- 12.1118 cm
|
mean trackLength in Absorber : 46.3801 cm +- 11.8848 cm
|
||||||
mean trackLength in Gap : 23.7187 cm +- 6.51829 cm
|
mean trackLength in Gap : 23.543 cm +- 6.47285 cm
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 188.96 MeV rms = 48.8659 MeV
|
EAbs: mean = 187.631 MeV rms = 47.785 MeV
|
||||||
EGap: mean = 46.7177 MeV rms = 12.7612 MeV
|
EGap: mean = 46.3222 MeV rms = 12.6821 MeV
|
||||||
LAbs: mean = 46.7149 cm rms = 12.1118 cm
|
LAbs: mean = 46.3801 cm rms = 11.8848 cm
|
||||||
LGap: mean = 23.7187 cm rms = 6.51829 cm
|
LGap: mean = 23.543 cm rms = 6.47285 cm
|
||||||
... write file : AnaEx01.xml - done
|
... write file : AnaEx01.xml - done
|
||||||
... write file : AnaEx01_nt_Ntuple1.xml - done
|
... write file : AnaEx01_nt_Ntuple1.xml - done
|
||||||
... write file : AnaEx01_nt_Ntuple2.xml - done
|
... write file : AnaEx01_nt_Ntuple2.xml - done
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1036,20 +1036,20 @@ LGap: mean = 26.1088 cm rms = 0 fm
|
|||||||
|
|
||||||
--------------------End of Run------------------------------
|
--------------------End of Run------------------------------
|
||||||
|
|
||||||
mean Energy in Absorber : 188.96 MeV +- 48.8659 MeV
|
mean Energy in Absorber : 187.631 MeV +- 47.785 MeV
|
||||||
mean Energy in Gap : 46.7177 MeV +- 12.7612 MeV
|
mean Energy in Gap : 46.3222 MeV +- 12.6821 MeV
|
||||||
|
|
||||||
mean trackLength in Absorber : 46.7149 cm +- 12.1118 cm
|
mean trackLength in Absorber : 46.3801 cm +- 11.8848 cm
|
||||||
mean trackLength in Gap : 23.7187 cm +- 6.51829 cm
|
mean trackLength in Gap : 23.543 cm +- 6.47285 cm
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 188.96 MeV rms = 48.8659 MeV
|
EAbs: mean = 187.631 MeV rms = 47.785 MeV
|
||||||
EGap: mean = 46.7177 MeV rms = 12.7612 MeV
|
EGap: mean = 46.3222 MeV rms = 12.6821 MeV
|
||||||
LAbs: mean = 46.7149 cm rms = 12.1118 cm
|
LAbs: mean = 46.3801 cm rms = 11.8848 cm
|
||||||
LGap: mean = 23.7187 cm rms = 6.51829 cm
|
LGap: mean = 23.543 cm rms = 6.47285 cm
|
||||||
|
|
||||||
----> Histograms and ntuples are saved
|
----> Histograms and ntuples are saved
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1098,10 +1098,10 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 199.356 MeV rms = 50.7758 MeV
|
EAbs: mean = 217.841 MeV rms = 48.9819 MeV
|
||||||
EGap: mean = 19.0703 MeV rms = 8.10234 MeV
|
EGap: mean = 19.6955 MeV rms = 10.0698 MeV
|
||||||
LAbs: mean = 8.63977 cm rms = 2.54192 cm
|
LAbs: mean = 9.0012 cm rms = 2.28215 cm
|
||||||
LGap: mean = 4.44924 cm rms = 1.40914 cm
|
LGap: mean = 4.59033 cm rms = 1.30923 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 40 entries: Edep in absorber (MeV)
|
0 with 40 entries: Edep in absorber (MeV)
|
||||||
1 with 40 entries: Edep in gap (MeV)
|
1 with 40 entries: Edep in gap (MeV)
|
||||||
@@ -1127,13 +1127,13 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 192.132 MeV rms = 64.2554 MeV
|
EAbs: mean = 189.975 MeV rms = 56.6818 MeV
|
||||||
EGap: mean = 17.8005 MeV rms = 12.5426 MeV
|
EGap: mean = 17.0704 MeV rms = 11.9265 MeV
|
||||||
LAbs: mean = 8.82292 cm rms = 2.51538 cm
|
LAbs: mean = 8.89565 cm rms = 2.51711 cm
|
||||||
LGap: mean = 4.4112 cm rms = 1.63167 cm
|
LGap: mean = 4.48712 cm rms = 1.60457 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 50 entries: Edep in absorber (MeV)
|
0 with 50 entries: Edep in absorber (MeV)
|
||||||
1 with 50 entries: Edep in gap (MeV)
|
1 with 49 entries: Edep in gap (MeV)
|
||||||
2 with 50 entries: trackL in absorber (mm)
|
2 with 50 entries: trackL in absorber (mm)
|
||||||
3 with 50 entries: trackL in gap (mm)
|
3 with 50 entries: trackL in gap (mm)
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1030,10 +1030,10 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 199.356 MeV rms = 50.7758 MeV
|
EAbs: mean = 217.841 MeV rms = 48.9819 MeV
|
||||||
EGap: mean = 19.0703 MeV rms = 8.10234 MeV
|
EGap: mean = 19.6955 MeV rms = 10.0698 MeV
|
||||||
LAbs: mean = 8.63977 cm rms = 2.54192 cm
|
LAbs: mean = 9.0012 cm rms = 2.28215 cm
|
||||||
LGap: mean = 4.44924 cm rms = 1.40914 cm
|
LGap: mean = 4.59033 cm rms = 1.30923 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 40 entries: Edep in absorber (MeV)
|
0 with 40 entries: Edep in absorber (MeV)
|
||||||
1 with 40 entries: Edep in gap (MeV)
|
1 with 40 entries: Edep in gap (MeV)
|
||||||
@@ -1048,13 +1048,13 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 192.132 MeV rms = 64.2554 MeV
|
EAbs: mean = 189.975 MeV rms = 56.6818 MeV
|
||||||
EGap: mean = 17.8005 MeV rms = 12.5426 MeV
|
EGap: mean = 17.0704 MeV rms = 11.9265 MeV
|
||||||
LAbs: mean = 8.82292 cm rms = 2.51538 cm
|
LAbs: mean = 8.89565 cm rms = 2.51711 cm
|
||||||
LGap: mean = 4.4112 cm rms = 1.63167 cm
|
LGap: mean = 4.48712 cm rms = 1.60457 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 50 entries: Edep in absorber (MeV)
|
0 with 50 entries: Edep in absorber (MeV)
|
||||||
1 with 50 entries: Edep in gap (MeV)
|
1 with 49 entries: Edep in gap (MeV)
|
||||||
2 with 50 entries: trackL in absorber (mm)
|
2 with 50 entries: trackL in absorber (mm)
|
||||||
3 with 50 entries: trackL in gap (mm)
|
3 with 50 entries: trackL in gap (mm)
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1033,10 +1033,10 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 199.356 MeV rms = 50.7758 MeV
|
EAbs: mean = 217.841 MeV rms = 48.9819 MeV
|
||||||
EGap: mean = 19.0703 MeV rms = 8.10234 MeV
|
EGap: mean = 19.6955 MeV rms = 10.0698 MeV
|
||||||
LAbs: mean = 8.63977 cm rms = 2.54192 cm
|
LAbs: mean = 9.0012 cm rms = 2.28215 cm
|
||||||
LGap: mean = 4.44924 cm rms = 1.40914 cm
|
LGap: mean = 4.59033 cm rms = 1.30923 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 40 entries: Edep in absorber (MeV)
|
0 with 40 entries: Edep in absorber (MeV)
|
||||||
1 with 40 entries: Edep in gap (MeV)
|
1 with 40 entries: Edep in gap (MeV)
|
||||||
@@ -1051,13 +1051,13 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 192.132 MeV rms = 64.2554 MeV
|
EAbs: mean = 189.975 MeV rms = 56.6818 MeV
|
||||||
EGap: mean = 17.8005 MeV rms = 12.5426 MeV
|
EGap: mean = 17.0704 MeV rms = 11.9265 MeV
|
||||||
LAbs: mean = 8.82292 cm rms = 2.51538 cm
|
LAbs: mean = 8.89565 cm rms = 2.51711 cm
|
||||||
LGap: mean = 4.4112 cm rms = 1.63167 cm
|
LGap: mean = 4.48712 cm rms = 1.60457 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 50 entries: Edep in absorber (MeV)
|
0 with 50 entries: Edep in absorber (MeV)
|
||||||
1 with 50 entries: Edep in gap (MeV)
|
1 with 49 entries: Edep in gap (MeV)
|
||||||
2 with 50 entries: trackL in absorber (mm)
|
2 with 50 entries: trackL in absorber (mm)
|
||||||
3 with 50 entries: trackL in gap (mm)
|
3 with 50 entries: trackL in gap (mm)
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1042,10 +1042,10 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 199.356 MeV rms = 50.7758 MeV
|
EAbs: mean = 217.841 MeV rms = 48.9819 MeV
|
||||||
EGap: mean = 19.0703 MeV rms = 8.10234 MeV
|
EGap: mean = 19.6955 MeV rms = 10.0698 MeV
|
||||||
LAbs: mean = 8.63977 cm rms = 2.54192 cm
|
LAbs: mean = 9.0012 cm rms = 2.28215 cm
|
||||||
LGap: mean = 4.44924 cm rms = 1.40914 cm
|
LGap: mean = 4.59033 cm rms = 1.30923 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 40 entries: Edep in absorber (MeV)
|
0 with 40 entries: Edep in absorber (MeV)
|
||||||
1 with 40 entries: Edep in gap (MeV)
|
1 with 40 entries: Edep in gap (MeV)
|
||||||
@@ -1062,13 +1062,13 @@ View them with "/vis/plot" or "/vis/reviewPlots".
|
|||||||
|
|
||||||
----> print histograms statistic
|
----> print histograms statistic
|
||||||
|
|
||||||
EAbs: mean = 192.132 MeV rms = 64.2554 MeV
|
EAbs: mean = 189.975 MeV rms = 56.6818 MeV
|
||||||
EGap: mean = 17.8005 MeV rms = 12.5426 MeV
|
EGap: mean = 17.0704 MeV rms = 11.9265 MeV
|
||||||
LAbs: mean = 8.82292 cm rms = 2.51538 cm
|
LAbs: mean = 8.89565 cm rms = 2.51711 cm
|
||||||
LGap: mean = 4.4112 cm rms = 1.63167 cm
|
LGap: mean = 4.48712 cm rms = 1.60457 cm
|
||||||
There are 4 h1 histograms
|
There are 4 h1 histograms
|
||||||
0 with 50 entries: Edep in absorber (MeV)
|
0 with 50 entries: Edep in absorber (MeV)
|
||||||
1 with 50 entries: Edep in gap (MeV)
|
1 with 49 entries: Edep in gap (MeV)
|
||||||
2 with 50 entries: trackL in absorber (mm)
|
2 with 50 entries: trackL in absorber (mm)
|
||||||
3 with 50 entries: trackL in gap (mm)
|
3 with 50 entries: trackL in gap (mm)
|
||||||
List them with "/analysis/list".
|
List them with "/analysis/list".
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -828,8 +828,6 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
|||||||
Model: nRadCapture: 0 eV ---> 100 TeV
|
Model: nRadCapture: 0 eV ---> 100 TeV
|
||||||
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
||||||
|
|
||||||
Cr_sctns: G4NeutronCaptureXS: 0 eV ---> 100 TeV
|
|
||||||
|
|
||||||
|
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
Hadronic Processes for pi+
|
Hadronic Processes for pi+
|
||||||
@@ -964,13 +962,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY
|
|||||||
R = 0.0871604
|
R = 0.0871604
|
||||||
SHIFT = 1.78107e-13
|
SHIFT = 1.78107e-13
|
||||||
VOV = 0.00865677
|
VOV = 0.00865677
|
||||||
FOM = 3290.8
|
FOM = 4387.73
|
||||||
THE LARGEST SCORE = 5.43178e-13 and it happened at 566th event
|
THE LARGEST SCORE = 5.43178e-13 and it happened at 566th event
|
||||||
Affected Mean = 4.64875e-14 and its ratio to original is 1.0108
|
Affected Mean = 4.64875e-14 and its ratio to original is 1.0108
|
||||||
Affected VAR = 1.62996e-26 and its ratio to original is 1.01437
|
Affected VAR = 1.62996e-26 and its ratio to original is 1.01437
|
||||||
Affected R = 0.086803 and its ratio to original is 0.9959
|
Affected R = 0.086803 and its ratio to original is 0.9959
|
||||||
Affected SHIFT = 1.78431e-13 and its ratio to original is 1.00182
|
Affected SHIFT = 1.78431e-13 and its ratio to original is 1.00182
|
||||||
Affected FOM = 3290.8 and its ratio to original is 1
|
Affected FOM = 4387.73 and its ratio to original is 1
|
||||||
MEAN distribution is not RANDOM
|
MEAN distribution is not RANDOM
|
||||||
r follows 1/std::sqrt(N)
|
r follows 1/std::sqrt(N)
|
||||||
r is monotonically decrease
|
r is monotonically decrease
|
||||||
@@ -984,22 +982,22 @@ This result passes 5 / 8 Convergence Test.
|
|||||||
|
|
||||||
G4ConvergenceTester Output History of DOSE_TALLY
|
G4ConvergenceTester Output History of DOSE_TALLY
|
||||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||||
1 62 6.0424e-14 2.12694e-26 1.4584e-13 0.304087 0.085229 270.361 1.58047e-13 0.253968 0.046627 0.0443743
|
1 62 6.0424e-14 2.12694e-26 1.4584e-13 0.304087 0.085229 360.481 1.58047e-13 0.253968 0.046627 0.0443743
|
||||||
2 124 4.34522e-14 1.48629e-26 1.21913e-13 0.250949 0.0715801 396.982 1.72666e-13 0.2 0.032 0.0304714
|
2 124 4.34522e-14 1.48629e-26 1.21913e-13 0.250949 0.0715801 529.309 1.72666e-13 0.2 0.032 0.0304714
|
||||||
3 187 4.30264e-14 1.42936e-26 1.19556e-13 0.202655 0.0493 608.732 1.71213e-13 0.191489 0.0224586 0.0183919
|
3 187 4.30264e-14 1.42936e-26 1.19556e-13 0.202655 0.0493 811.642 1.71213e-13 0.191489 0.0224586 0.0183919
|
||||||
4 249 3.87796e-14 1.29331e-26 1.13724e-13 0.185471 0.0425375 726.751 1.75121e-13 0.18 0.0182222 0.0160398
|
4 249 3.87796e-14 1.29331e-26 1.13724e-13 0.185471 0.0425375 969.002 1.75121e-13 0.18 0.0182222 0.0160398
|
||||||
5 312 4.56897e-14 1.50775e-26 1.22791e-13 0.151906 0.0276474 1083.4 1.70399e-13 0.201278 0.0126781 0.0103236
|
5 312 4.56897e-14 1.50775e-26 1.22791e-13 0.151906 0.0276474 1444.54 1.70399e-13 0.201278 0.0126781 0.0103236
|
||||||
6 374 4.42641e-14 1.49653e-26 1.22333e-13 0.142717 0.0239222 1227.41 1.73651e-13 0.189333 0.0114178 0.00889589
|
6 374 4.42641e-14 1.49653e-26 1.22333e-13 0.142717 0.0239222 1636.55 1.73651e-13 0.189333 0.0114178 0.00889589
|
||||||
7 437 4.66551e-14 1.62359e-26 1.2742e-13 0.130498 0.019391 1468.03 1.76608e-13 0.189498 0.00976509 0.00722566
|
7 437 4.66551e-14 1.62359e-26 1.2742e-13 0.130498 0.019391 1957.37 1.76608e-13 0.189498 0.00976509 0.00722566
|
||||||
8 499 4.4408e-14 1.54392e-26 1.24254e-13 0.125131 0.0183329 1596.64 1.79065e-13 0.188 0.0086383 0.00698825
|
8 499 4.4408e-14 1.54392e-26 1.24254e-13 0.125131 0.0183329 2128.86 1.79065e-13 0.188 0.0086383 0.00698825
|
||||||
9 562 4.52784e-14 1.55386e-26 1.24654e-13 0.116027 0.0157509 1857.03 1.76339e-13 0.186501 0.00774761 0.0056908
|
9 562 4.52784e-14 1.55386e-26 1.24654e-13 0.116027 0.0157509 2476.05 1.76339e-13 0.186501 0.00774761 0.0056908
|
||||||
10 624 4.44384e-14 1.55239e-26 1.24595e-13 0.112151 0.0146302 1987.63 1.79489e-13 0.184 0.00709565 0.00546203
|
10 624 4.44384e-14 1.55239e-26 1.24595e-13 0.112151 0.0146302 2650.17 1.79489e-13 0.184 0.00709565 0.00546203
|
||||||
11 687 4.50037e-14 1.5803e-26 1.2571e-13 0.106495 0.013151 2204.37 1.80261e-13 0.184593 0.00642053 0.00490412
|
11 687 4.50037e-14 1.5803e-26 1.2571e-13 0.106495 0.013151 2939.15 1.80261e-13 0.184593 0.00642053 0.00490412
|
||||||
12 749 4.56328e-14 1.59111e-26 1.26139e-13 0.100935 0.0118922 2453.89 1.79403e-13 0.186667 0.00580952 0.00436478
|
12 749 4.56328e-14 1.59111e-26 1.26139e-13 0.100935 0.0118922 3271.86 1.79403e-13 0.186667 0.00580952 0.00436478
|
||||||
13 812 4.54608e-14 1.57597e-26 1.25538e-13 0.0968483 0.0109613 2665.36 1.78444e-13 0.186962 0.00534894 0.00401913
|
13 812 4.54608e-14 1.57597e-26 1.25538e-13 0.0968483 0.0109613 3553.81 1.78444e-13 0.186962 0.00534894 0.00401913
|
||||||
14 874 4.62163e-14 1.60542e-26 1.26705e-13 0.0926819 0.00992813 2910.38 1.77974e-13 0.187429 0.0049547 0.00362541
|
14 874 4.62163e-14 1.60542e-26 1.26705e-13 0.0926819 0.00992813 3880.51 1.77974e-13 0.187429 0.0049547 0.00362541
|
||||||
15 937 4.637e-14 1.62631e-26 1.27527e-13 0.0897973 0.00916043 3100.37 1.78559e-13 0.186567 0.00464819 0.00340676
|
15 937 4.637e-14 1.62631e-26 1.27527e-13 0.0897973 0.00916043 4133.83 1.78559e-13 0.186567 0.00464819 0.00340676
|
||||||
16 999 4.59908e-14 1.60687e-26 1.26762e-13 0.0871604 0.00865677 3290.8 1.78107e-13 0.187 0.00434759 0.00324175
|
16 999 4.59908e-14 1.60687e-26 1.26762e-13 0.0871604 0.00865677 4387.73 1.78107e-13 0.187 0.00434759 0.00324175
|
||||||
|
|
||||||
--------------------End of Global Run-----------------------
|
--------------------End of Global Run-----------------------
|
||||||
The run consists of 1000 gamma of 6 MeV
|
The run consists of 1000 gamma of 6 MeV
|
||||||
@@ -1029,24 +1027,24 @@ i/16 till_ith mean var sd r vov
|
|||||||
---> Begin of event: 900
|
---> Begin of event: 900
|
||||||
|
|
||||||
G4ConvergenceTester Output Result of DOSE_TALLY
|
G4ConvergenceTester Output Result of DOSE_TALLY
|
||||||
EFFICIENCY = 0.613
|
EFFICIENCY = 0.614
|
||||||
MEAN = 5.03e-12
|
MEAN = 4.91863e-12
|
||||||
VAR = 2.16051e-23
|
VAR = 2.14524e-23
|
||||||
SD = 4.64813e-12
|
SD = 4.63168e-12
|
||||||
R = 0.029222
|
R = 0.0297779
|
||||||
SHIFT = 1.12337e-14
|
SHIFT = 1.07833e-13
|
||||||
VOV = 0.000152853
|
VOV = 0.000162105
|
||||||
FOM = 4504.09
|
FOM = 4510.99
|
||||||
THE LARGEST SCORE = 1.09115e-11 and it happened at 970th event
|
THE LARGEST SCORE = 1.07332e-11 and it happened at 846th event
|
||||||
Affected Mean = 5.03588e-12 and its ratio to original is 1.00117
|
Affected Mean = 4.92444e-12 and its ratio to original is 1.00118
|
||||||
Affected VAR = 2.1618e-23 and its ratio to original is 1.0006
|
Affected VAR = 2.14648e-23 and its ratio to original is 1.00057
|
||||||
Affected R = 0.029182 and its ratio to original is 0.998633
|
Affected R = 0.0297364 and its ratio to original is 0.998608
|
||||||
Affected SHIFT = 7.11202e-15 and its ratio to original is 0.633098
|
Affected SHIFT = 1.03534e-13 and its ratio to original is 0.96013
|
||||||
Affected FOM = 4504.09 and its ratio to original is 1
|
Affected FOM = 4510.99 and its ratio to original is 1
|
||||||
MEAN distribution is RANDOM
|
MEAN distribution is RANDOM
|
||||||
r follows 1/std::sqrt(N)
|
r follows 1/std::sqrt(N)
|
||||||
r is monotonically decrease
|
r is monotonically decrease
|
||||||
r is less than 0.1. r = 0.029222
|
r is less than 0.1. r = 0.0297779
|
||||||
VOV follows 1/std::sqrt(N)
|
VOV follows 1/std::sqrt(N)
|
||||||
VOV is monotonically decrease
|
VOV is monotonically decrease
|
||||||
FOM distribution is not RANDOM
|
FOM distribution is not RANDOM
|
||||||
@@ -1056,26 +1054,26 @@ This result passes 6 / 8 Convergence Test.
|
|||||||
|
|
||||||
G4ConvergenceTester Output History of DOSE_TALLY
|
G4ConvergenceTester Output History of DOSE_TALLY
|
||||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||||
1 62 5.17325e-12 1.91457e-23 4.37558e-12 0.106562 0.00460568 338.706 -9.94916e-14 0.666667 0.00793651 0.00323868
|
1 62 4.38263e-12 2.21208e-23 4.70328e-12 0.135206 0.00334294 218.811 6.59571e-13 0.571429 0.0119048 0.00608568
|
||||||
2 124 5.21664e-12 2.11758e-23 4.60171e-12 0.0788994 0.00139208 617.845 -1.28923e-13 0.656 0.00419512 0.00198019
|
2 124 4.33595e-12 2.11358e-23 4.59737e-12 0.0948353 0.00192038 444.754 6.5045e-13 0.552 0.00649275 0.00242903
|
||||||
3 187 5.63365e-12 2.06542e-23 4.54469e-12 0.058835 0.00129701 1111.11 -4.982e-13 0.702128 0.00225661 0.00118653
|
3 187 4.61116e-12 2.11147e-23 4.59507e-12 0.072678 0.00104212 757.276 3.91328e-13 0.590426 0.00368986 0.00156414
|
||||||
4 249 5.44228e-12 2.05638e-23 4.53473e-12 0.0526988 0.00090394 1384.92 -3.59016e-13 0.684 0.00184795 0.000918103
|
4 249 4.69291e-12 2.13192e-23 4.61727e-12 0.0622261 0.000720901 1033.03 3.23699e-13 0.596 0.00271141 0.00114519
|
||||||
5 312 5.36346e-12 2.04973e-23 4.5274e-12 0.0477124 0.000706708 1689.52 -3.13672e-13 0.667732 0.0015898 0.0006794
|
5 312 4.82305e-12 2.12567e-23 4.6105e-12 0.0540324 0.000532754 1370.1 1.73894e-13 0.607029 0.00206827 0.000841898
|
||||||
6 374 5.28963e-12 2.07052e-23 4.55029e-12 0.044422 0.000543349 1949.08 -2.47357e-13 0.653333 0.00141497 0.000553086
|
6 374 4.76504e-12 2.12256e-23 4.60713e-12 0.0499285 0.00045558 1604.59 2.37738e-13 0.6 0.00177778 0.000708427
|
||||||
7 437 5.38497e-12 2.10041e-23 4.58302e-12 0.040666 0.000449805 2325.75 -3.23752e-13 0.657534 0.00118912 0.000460831
|
7 437 4.73191e-12 2.13758e-23 4.6234e-12 0.0466861 0.000383653 1835.2 2.73418e-13 0.59589 0.00154831 0.000626305
|
||||||
8 499 5.35824e-12 2.11797e-23 4.60214e-12 0.0384108 0.000373434 2606.88 -3.01996e-13 0.648 0.00108642 0.000386017
|
8 499 4.78901e-12 2.13179e-23 4.61713e-12 0.0431162 0.000334904 2151.68 2.24491e-13 0.604 0.00131126 0.000544033
|
||||||
9 562 5.25664e-12 2.13136e-23 4.61666e-12 0.0370139 0.00030316 2807.35 -1.95838e-13 0.642984 0.000986232 0.000381367
|
9 562 4.92343e-12 2.11972e-23 4.60404e-12 0.039411 0.000301432 2575.29 9.3764e-14 0.618117 0.00109736 0.000453101
|
||||||
10 624 5.15986e-12 2.13723e-23 4.62302e-12 0.0358383 0.000263087 2994.55 -1.08052e-13 0.632 0.000931646 0.000350686
|
10 624 4.97897e-12 2.12733e-23 4.6123e-12 0.0370542 0.000267654 2913.29 5.49607e-14 0.624 0.000964103 0.000406717
|
||||||
11 687 5.14883e-12 2.14194e-23 4.62812e-12 0.034269 0.000233601 3275.1 -1.06822e-13 0.627907 0.000861326 0.000311329
|
11 687 4.97543e-12 2.1355e-23 4.62115e-12 0.0354099 0.000238356 3190.14 5.32588e-14 0.617733 0.000899453 0.000352588
|
||||||
12 749 5.18583e-12 2.13857e-23 4.62447e-12 0.0325621 0.000218672 3627.44 -1.31044e-13 0.633333 0.00077193 0.00028695
|
12 749 5.0258e-12 2.13455e-23 4.62012e-12 0.0335673 0.0002202 3549.98 1.1139e-14 0.624 0.000803419 0.000321845
|
||||||
13 812 5.11885e-12 2.15172e-23 4.63866e-12 0.0317815 0.000192976 3807.82 -6.7404e-14 0.626076 0.000734624 0.000274199
|
13 812 5.06002e-12 2.12467e-23 4.60941e-12 0.0319483 0.000209359 3918.9 -1.56164e-14 0.630996 0.000719305 0.000300133
|
||||||
14 874 5.11608e-12 2.1523e-23 4.63929e-12 0.0306556 0.00017978 4092.66 -6.72313e-14 0.625143 0.000685296 0.000253397
|
14 874 5.04729e-12 2.1274e-23 4.61238e-12 0.0308932 0.000192804 4191.16 -1.07897e-14 0.629714 0.000672025 0.000281274
|
||||||
15 937 5.08077e-12 2.16073e-23 4.64836e-12 0.0298723 0.000162726 4310.12 -3.59028e-14 0.618337 0.00065804 0.000233363
|
15 937 4.9954e-12 2.14039e-23 4.62643e-12 0.0302395 0.000173017 4374.32 3.79467e-14 0.622601 0.000646231 0.000267222
|
||||||
16 999 5.03e-12 2.16051e-23 4.64813e-12 0.029222 0.000152853 4504.09 1.12337e-14 0.613 0.000631321 0.000221749
|
16 999 4.91863e-12 2.14524e-23 4.63168e-12 0.0297779 0.000162105 4510.99 1.07833e-13 0.614 0.000628664 0.000257172
|
||||||
|
|
||||||
--------------------End of Global Run-----------------------
|
--------------------End of Global Run-----------------------
|
||||||
The run consists of 1000 proton of 210 MeV
|
The run consists of 1000 proton of 210 MeV
|
||||||
Dose in scoring volume : 5.03 nanoGy +- 146.913 picoGy
|
Dose in scoring volume : 4.91863 nanoGy +- 146.393 picoGy
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -647,7 +647,7 @@ Max 2J for sampling of angular correlations 10
|
|||||||
*** G4Exception : GeomBias1001
|
*** G4Exception : GeomBias1001
|
||||||
issued by : G4ImportanceAlgorithm::Warning()
|
issued by : G4ImportanceAlgorithm::Warning()
|
||||||
Calculate() - ipre_over_ipost ! in [0.25, 4].
|
Calculate() - ipre_over_ipost ! in [0.25, 4].
|
||||||
ipre_over_ipost = 16384.
|
ipre_over_ipost = 64.
|
||||||
*** This is just a warning message. ***
|
*** This is just a warning message. ***
|
||||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||||
|
|
||||||
@@ -667,24 +667,24 @@ ipre_over_ipost = 16384.
|
|||||||
=============================================================
|
=============================================================
|
||||||
=============================================================
|
=============================================================
|
||||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||||
cell_00 | 56 | 152 | 0 | 0 | 0.000766839 | 0.921708 | 1 | 9721.32 | 9721.32 | 608478 | 8960.22 | 466.605 |
|
cell_00 | 48 | 144 | 0 | 0 | 0.00400059 | 1.95992 | 1 | 9423.67 | 9423.67 | 170955 | 18469.6 | 683.921 |
|
||||||
cell_01 | 173 | 208 | 547 | 547 | 0.00484826 | 3.14426 | 1 | 31991.4 | 31991.4 | 624732 | 100589 | 3028.86 |
|
cell_01 | 146 | 187 | 389 | 389 | 0.00459231 | 4.15214 | 1 | 24206.9 | 24206.9 | 608498 | 100510 | 2794.41 |
|
||||||
cell_02 | 203 | 317 | 1035 | 517.5 | 0.0012227 | 2.27579 | 0.5 | 59356.7 | 29678.4 | 1.82216e+06 | 67541.7 | 2227.96 |
|
cell_02 | 183 | 273 | 923 | 461.5 | 0.000686926 | 2.51431 | 0.5 | 51219.7 | 25609.9 | 2.89504e+06 | 64391 | 1988.68 |
|
||||||
cell_03 | 269 | 397 | 1533 | 383.25 | 0.000422849 | 1.52657 | 0.25 | 79601.5 | 19900.4 | 2.55338e+06 | 30379.3 | 1079.7 |
|
cell_03 | 324 | 439 | 1539 | 384.75 | 0.000407614 | 2.04634 | 0.25 | 84172.4 | 21043.1 | 3.45545e+06 | 43061.4 | 1408.49 |
|
||||||
cell_04 | 344 | 486 | 1938 | 242.25 | 0.000262606 | 1.33691 | 0.125 | 94870.3 | 11858.8 | 2.16811e+06 | 15854.1 | 569.359 |
|
cell_04 | 506 | 701 | 2852 | 356.5 | 0.000298237 | 1.54609 | 0.125 | 142527 | 17815.9 | 3.22255e+06 | 27545 | 961.084 |
|
||||||
cell_05 | 461 | 672 | 2860 | 178.75 | 0.000242149 | 1.05964 | 0.0625 | 137935 | 8620.96 | 1.4589e+06 | 9135.12 | 353.272 |
|
cell_05 | 727 | 992 | 4181 | 261.312 | 0.00022306 | 1.26762 | 0.0625 | 206706 | 12919.2 | 2.70982e+06 | 16376.5 | 604.452 |
|
||||||
cell_06 | 646 | 860 | 3868 | 120.875 | 0.000189489 | 0.84777 | 0.03125 | 188515 | 5891.11 | 1.10092e+06 | 4994.3 | 208.613 |
|
cell_06 | 915 | 1275 | 5541 | 173.156 | 0.00020849 | 1.08966 | 0.03125 | 264235 | 8257.35 | 1.68094e+06 | 8997.71 | 350.46 |
|
||||||
cell_07 | 829 | 1156 | 5386 | 84.1562 | 0.000123391 | 0.722229 | 0.015625 | 249949 | 3905.46 | 975923 | 2820.64 | 120.42 |
|
cell_07 | 1174 | 1619 | 7221 | 112.828 | 0.000181412 | 0.843659 | 0.015625 | 341632 | 5338 | 1.04824e+06 | 4503.46 | 190.164 |
|
||||||
cell_08 | 1011 | 1402 | 6547 | 51.1484 | 0.000118855 | 0.676321 | 0.0078125 | 287631 | 2247.12 | 551115 | 1519.77 | 65.5026 |
|
cell_08 | 1412 | 1948 | 9025 | 70.5078 | 0.000140726 | 0.698734 | 0.0078125 | 417823 | 3264.24 | 720644 | 2280.84 | 101.413 |
|
||||||
cell_09 | 1185 | 1606 | 7377 | 28.8164 | 9.36548e-05 | 0.554573 | 0.00390625 | 322678 | 1260.46 | 333828 | 699.017 | 31.2646 |
|
cell_09 | 1772 | 2438 | 11054 | 43.1797 | 0.000109624 | 0.610036 | 0.00390625 | 497278 | 1942.49 | 492102 | 1184.99 | 53.9461 |
|
||||||
cell_10 | 1310 | 1826 | 8380 | 16.3672 | 9.57533e-05 | 0.548476 | 0.00195312 | 367771 | 718.303 | 187793 | 393.972 | 17.9818 |
|
cell_10 | 2150 | 2922 | 13650 | 26.6602 | 9.69769e-05 | 0.568169 | 0.00195312 | 608403 | 1188.29 | 319562 | 675.149 | 30.9901 |
|
||||||
cell_11 | 1445 | 1988 | 9104 | 8.89062 | 0.000101425 | 0.54072 | 0.000976562 | 406881 | 397.345 | 98212 | 214.853 | 9.96117 |
|
cell_11 | 2487 | 3407 | 15614 | 15.248 | 8.11331e-05 | 0.514019 | 0.000976562 | 699856 | 683.453 | 206013 | 351.308 | 16.7144 |
|
||||||
cell_12 | 1627 | 2243 | 10552 | 5.15234 | 8.72255e-05 | 0.503437 | 0.000488281 | 472548 | 230.737 | 63328.8 | 116.161 | 5.52389 |
|
cell_12 | 2832 | 3904 | 18463 | 9.01514 | 7.63921e-05 | 0.476324 | 0.000488281 | 809387 | 395.209 | 120334 | 188.247 | 9.19259 |
|
||||||
cell_13 | 1873 | 2544 | 11757 | 2.87036 | 8.14767e-05 | 0.471355 | 0.000244141 | 518180 | 126.509 | 35277.9 | 59.6305 | 2.87433 |
|
cell_13 | 3142 | 4371 | 20302 | 4.95654 | 7.57635e-05 | 0.43614 | 0.000244141 | 888356 | 216.884 | 63024.4 | 94.5916 | 4.77495 |
|
||||||
cell_14 | 2193 | 2998 | 13526 | 1.65112 | 7.61515e-05 | 0.453906 | 0.00012207 | 607180 | 74.1187 | 22186.7 | 33.6429 | 1.68955 |
|
cell_14 | 3562 | 4806 | 22349 | 2.72815 | 7.0335e-05 | 0.422465 | 0.00012207 | 971171 | 118.551 | 36370.1 | 50.0837 | 2.55809 |
|
||||||
cell_15 | 2387 | 3315 | 15362 | 0.937622 | 6.70198e-05 | 0.433793 | 6.10352e-05 | 670488 | 40.9233 | 13201.5 | 17.7523 | 0.884762 |
|
cell_15 | 3918 | 5315 | 24861 | 1.5174 | 6.58693e-05 | 0.400322 | 6.10352e-05 | 1.09189e+06 | 66.6437 | 20938.1 | 26.679 | 1.37918 |
|
||||||
cell_16 | 2436 | 3443 | 16053 | 0.489899 | 6.45592e-05 | 0.42613 | 3.05176e-05 | 689631 | 21.0459 | 6833.21 | 8.96827 | 0.441147 |
|
cell_16 | 4099 | 5651 | 26912 | 0.821289 | 6.80894e-05 | 0.394316 | 3.05176e-05 | 1.17377e+06 | 35.8206 | 10983.1 | 14.1246 | 0.747833 |
|
||||||
cell_17 | 2352 | 3443 | 15435 | 0.235519 | 7.18192e-05 | 0.418871 | 1.52588e-05 | 682960 | 10.4211 | 3071.43 | 4.36512 | 0.220588 |
|
cell_17 | 4100 | 5912 | 27045 | 0.412674 | 6.72991e-05 | 0.408536 | 1.52588e-05 | 1.16919e+06 | 17.8404 | 5540.04 | 7.28847 | 0.37284 |
|
||||||
cell_18 | 1722 | 3191 | 13271 | 0.10125 | 8.22242e-05 | 0.48822 | 7.62939e-06 | 580127 | 4.42602 | 1297.99 | 2.16087 | 0.106726 |
|
cell_18 | 3000 | 5563 | 23233 | 0.177254 | 7.71321e-05 | 0.446845 | 7.62939e-06 | 1.03117e+06 | 7.86724 | 2341.58 | 3.51543 | 0.180611 |
|
||||||
cell_19 | 1492 | 1492 | 0 | 0 | 0.000133795 | 0.668888 | 7.62939e-06 | 237851 | 1.81466 | 419.959 | 1.2138 | 0.0561883 |
|
cell_19 | 2573 | 2573 | 0 | 0 | 0.00010536 | 0.576978 | 7.62939e-06 | 406542 | 3.10167 | 829.823 | 1.7896 | 0.0874299 |
|
||||||
=============================================
|
=============================================
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -997,7 +997,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.100000s Real=0.097602s Sys=0.000000s
|
User=0.050000s Real=0.055867s Sys=0.000000s
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||||
This region is in the mass world.
|
This region is in the mass world.
|
||||||
@@ -1057,7 +1057,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.130000s Real=0.133383s Sys=0.000000s
|
User=0.130000s Real=0.125491s Sys=0.000000s
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
@@ -1073,10 +1073,10 @@ G4SDManager deleted.
|
|||||||
EventManager deleted.
|
EventManager deleted.
|
||||||
Units table cleared.
|
Units table cleared.
|
||||||
TransportationManager deleted.
|
TransportationManager deleted.
|
||||||
Total navigation history collections cleaned: 26
|
Total navigation history collections cleaned: 25
|
||||||
G4RNGHelper object is deleted.
|
G4RNGHelper object is deleted.
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Pool ID '20G4NavigationLevelRep', size : 0.0375 MB
|
Pool ID '20G4NavigationLevelRep', size : 0.0356 MB
|
||||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||||
Pool ID '17G4DynamicParticle', size : 0.00481 MB
|
Pool ID '17G4DynamicParticle', size : 0.00481 MB
|
||||||
Pool ID '16G4SmartVoxelNode', size : 0.000961 MB
|
Pool ID '16G4SmartVoxelNode', size : 0.000961 MB
|
||||||
@@ -1085,12 +1085,12 @@ Pool ID '7G4Event', size : 0.000961 MB
|
|||||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||||
Pool ID '7G4Track', size : 0.00961 MB
|
Pool ID '7G4Track', size : 0.00865 MB
|
||||||
Pool ID '18G4TouchableHistory', size : 0.00288 MB
|
Pool ID '18G4TouchableHistory', size : 0.00288 MB
|
||||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||||
Pool ID '10G4Fragment', size : 0.000961 MB
|
Pool ID '10G4Fragment', size : 0.000961 MB
|
||||||
Number of memory pools allocated: 13 of which, static: 0
|
Number of memory pools allocated: 13 of which, static: 0
|
||||||
Dynamic pools deleted: 13 / Total memory freed: 0.063 MB
|
Dynamic pools deleted: 13 / Total memory freed: 0.061 MB
|
||||||
============================================================
|
============================================================
|
||||||
G4Allocator objects are deleted.
|
G4Allocator objects are deleted.
|
||||||
UImanager deleted.
|
UImanager deleted.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -1399,7 +1399,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.010000s Real=0.003381s Sys=0.000000s
|
User=0.000000s Real=0.003172s Sys=0.000000s
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||||
This region is in the mass world.
|
This region is in the mass world.
|
||||||
@@ -2709,7 +2709,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.000000s Real=0.006364s Sys=0.000000s
|
User=0.010000s Real=0.006198s Sys=0.000000s
|
||||||
|
|
||||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||||
This region is in the mass world.
|
This region is in the mass world.
|
||||||
@@ -5330,7 +5330,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.010000s Real=0.013900s Sys=0.010000s
|
User=0.010000s Real=0.012222s Sys=0.010000s
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -943,270 +943,74 @@ Max 2J for sampling of angular correlations 10
|
|||||||
=======================================================================
|
=======================================================================
|
||||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||||
See commands in /vis/modeling/trajectories/ for other options.
|
See commands in /vis/modeling/trajectories/ for other options.
|
||||||
gamma, kinetic energy (MeV) = 0.209843, position (cm) = (-56.6779,57.8416,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.241115, position (cm) = (-113.577,1.15371,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.129544, position (cm) = (-0.802153,64.1525,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.312986, position (cm) = (-105.859,1.39483,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 24.4836, position (cm) = (-0.379311,78.3723,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 6.02116, position (cm) = (-106.781,8.00928,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 76.9956, position (cm) = (5.65745,76.8836,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 15.1933, position (cm) = (-35.1271,-55.3565,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.199099, position (cm) = (-57.4827,94.9327,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 39.7588, position (cm) = (-17.9469,-62.4248,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.636063, position (cm) = (125.874,96.3389,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 57.9287, position (cm) = (-45.3731,-16.9189,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 2.42857, position (cm) = (119.554,90.5893,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 56.8174, position (cm) = (-54.7863,-13.3736,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 6.2189, position (cm) = (120.348,91.2951,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 5.40594, position (cm) = (-125.309,-16.2342,500), weight = 3.8147e-06
|
||||||
neutron, kinetic energy (MeV) = 39.5351, position (cm) = (121.33,90.0421,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 17.2999, position (cm) = (40.0426,-92.4371,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 75.7178, position (cm) = (115.184,105.981,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.601252, position (cm) = (43.7659,-101.297,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 0.0154739, position (cm) = (1.64697,-14.4656,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 1.5077, position (cm) = (47.2851,-113.269,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 6.04697, position (cm) = (22.5006,-53.5417,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 9.17675, position (cm) = (39.6019,-107.772,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 4.98181, position (cm) = (11.4412,-25.797,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 1.22305, position (cm) = (28.9885,-119.723,500), weight = 3.8147e-06
|
||||||
neutron, kinetic energy (MeV) = 4.34284, position (cm) = (14.8203,-31.378,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.417389, position (cm) = (30.6867,-107.57,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 2.16755, position (cm) = (9.8282,8.74478,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 17.0179, position (cm) = (41.4869,-105.134,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 3.12299, position (cm) = (10.2077,11.0646,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 3.04692e-09, position (cm) = (45.8398,-115.201,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 97.4548, position (cm) = (16.4676,-18.3801,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.232572, position (cm) = (28.3323,-101.883,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 3.55725, position (cm) = (-32.4363,-28.8705,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 10.7757, position (cm) = (17.8319,-95.8084,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.370129, position (cm) = (-51.1888,31.4207,500), weight = 3.8147e-06
|
neutron, kinetic energy (MeV) = 84.4057, position (cm) = (34.0072,-107.877,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 45.4429, position (cm) = (-7.02144,65.2783,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.0702002, position (cm) = (-15.0959,-108.6,500), weight = 3.8147e-06
|
||||||
gamma, kinetic energy (MeV) = 0.108661, position (cm) = (-30.1643,111.052,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 1.63572, position (cm) = (-60.4376,-124.276,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.145538, position (cm) = (-33.1845,122.306,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 8.88366, position (cm) = (-43.2485,-132.422,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 7.30528, position (cm) = (-29.7069,104.094,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 72.8774, position (cm) = (-52.2922,-139.019,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 50.3578, position (cm) = (13.0085,57.2016,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.0930666, position (cm) = (-35.6376,-84.1812,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 50.5729, position (cm) = (4.46248,54.6654,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 1.26079, position (cm) = (-13.4284,-94.4511,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 3.80692, position (cm) = (-21.5304,48.9829,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 2.28799, position (cm) = (36.86,-0.363921,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 3.06066e-07, position (cm) = (-49.0009,67.8942,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.143098, position (cm) = (31.0003,-22.9975,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 98.6861, position (cm) = (-11.6548,78.5702,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.535752, position (cm) = (26.4956,-33.4867,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 90.4465, position (cm) = (-4.98652,76.5871,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 50.0199, position (cm) = (33.641,-9.8465,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 98.5237, position (cm) = (4.94351,62.4609,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.0879227, position (cm) = (75.4585,-20.8099,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 1.45168e-08, position (cm) = (-11.4865,46.0494,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 2.00057e-06, position (cm) = (-109.907,10.101,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 75.9349, position (cm) = (3.84417,42.2249,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.230341, position (cm) = (5.26733,16.5045,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 2.22306, position (cm) = (-15.4337,87.9969,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.603496, position (cm) = (-24.364,-23.0079,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 25.4024, position (cm) = (-21.042,58.267,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.0823512, position (cm) = (-31.7227,-40.6619,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 56.6735, position (cm) = (-31.8685,58.7986,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 4.20448e-07, position (cm) = (-17.7097,-1.7929,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 61.6688, position (cm) = (-46.4504,76.4786,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.127347, position (cm) = (-18.682,-30.951,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 9.70702, position (cm) = (-52.3089,102.511,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.177491, position (cm) = (-5.46731,-15.8052,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 7.03527, position (cm) = (-125.755,87.6139,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.0857689, position (cm) = (-17.2971,121.593,500), weight = 3.8147e-06
|
||||||
gamma, kinetic energy (MeV) = 0.100952, position (cm) = (83.2917,89.4826,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 4.2625, position (cm) = (-55.7902,116.22,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 1.71482, position (cm) = (29.7691,56.124,500), weight = 3.8147e-06
|
gamma, kinetic energy (MeV) = 4.10314, position (cm) = (-65.7941,78.1612,500), weight = 3.8147e-06
|
||||||
neutron, kinetic energy (MeV) = 15.8081, position (cm) = (24.496,63.9709,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.288295, position (cm) = (-36.3063,107.328,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.251695, position (cm) = (-5.68216,94.9588,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 2.34922, position (cm) = (-26.926,131.551,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (37.386,87.7305,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.11543, position (cm) = (17.5328,89.6006,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.130169, position (cm) = (-22.1138,92.7617,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 37.6003, position (cm) = (54.7935,135.566,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 64.8943, position (cm) = (-13.7919,121.501,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.433936, position (cm) = (32.6592,123.529,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 0.0182992, position (cm) = (20.0893,63.2125,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.161784, position (cm) = (55.613,132.516,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 71.4213, position (cm) = (22.1505,54.3608,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.278284, position (cm) = (21.6143,139.204,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 74.6497, position (cm) = (25.5636,53.543,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 64.2449, position (cm) = (25.2695,132.838,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 74.1807, position (cm) = (27.481,56.2964,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.0119002, position (cm) = (18.722,140.579,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.0810526, position (cm) = (-76.984,3.42518,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.428854, position (cm) = (47.6039,122.352,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 2.15802, position (cm) = (-29.2625,-73.1579,500), weight = 3.8147e-06
|
gamma, kinetic energy (MeV) = 1.64503, position (cm) = (-4.12492,135.063,500), weight = 3.8147e-06
|
||||||
neutron, kinetic energy (MeV) = 0.318645, position (cm) = (-18.5967,-29.668,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.14014, position (cm) = (-50.5202,-70.2636,500), weight = 7.62939e-06
|
||||||
gamma, kinetic energy (MeV) = 0.0708264, position (cm) = (-42.4548,-33.1662,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.00266401, position (cm) = (-104.423,-66.8259,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 53.581, position (cm) = (-31.7336,-39.3144,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.419517, position (cm) = (-1.33485,-59.2848,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.182779, position (cm) = (-19.9979,-20.8448,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.211129, position (cm) = (-12.988,-63.4433,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 8.2062, position (cm) = (-3.43032,-58.9232,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 41.457, position (cm) = (22.7232,134.237,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.108058, position (cm) = (1.02988,-59.6676,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.62946, position (cm) = (36.4394,143.72,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 2.80924, position (cm) = (5.97904,-54.2635,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.507078, position (cm) = (62.2522,104.928,500), weight = 3.8147e-06
|
||||||
gamma, kinetic energy (MeV) = 0.0881602, position (cm) = (-22.2212,-57.0038,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.25858, position (cm) = (53.3331,128.071,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 4.39336, position (cm) = (-18.6283,-63.0417,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 0.201961, position (cm) = (94.4354,137.688,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.143408, position (cm) = (-25.4072,-70.1068,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.151191, position (cm) = (104.576,138.396,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.0635231, position (cm) = (-26.0204,-66.2028,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.416588, position (cm) = (64.3557,30.1092,500), weight = 1.90735e-06
|
||||||
neutron, kinetic energy (MeV) = 34.633, position (cm) = (-19.1807,-52.4047,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (64.0025,37.2844,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.368502, position (cm) = (-38.9453,-86.1485,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 30.3444, position (cm) = (63.2767,34.5912,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 4.1594, position (cm) = (-69.7555,-109.296,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 0.0753912, position (cm) = (93.6578,29.1565,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.589538, position (cm) = (-62.6885,-74.3758,500), weight = 1.90735e-06
|
gamma, kinetic energy (MeV) = 1.84541, position (cm) = (99.0459,52.4318,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.335944, position (cm) = (-92.3953,-81.3931,500), weight = 1.90735e-06
|
anti_nu_e, kinetic energy (MeV) = 0.618119, position (cm) = (64.4237,82.5733,500), weight = 3.05176e-05
|
||||||
gamma, kinetic energy (MeV) = 0.102399, position (cm) = (-59.3759,-109.715,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 2.04229e-06, position (cm) = (72.722,-138.769,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.851156, position (cm) = (-65.2901,-104.837,500), weight = 1.90735e-06
|
neutron, kinetic energy (MeV) = 42.5174, position (cm) = (64.7914,-141.678,500), weight = 1.90735e-06
|
||||||
gamma, kinetic energy (MeV) = 0.528611, position (cm) = (-51.6453,-88.9246,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 6.15549, position (cm) = (-137.588,-86.4117,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 18.885, position (cm) = (82.4744,-108.047,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.40299, position (cm) = (67.0948,-125.822,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 44.8666, position (cm) = (89.3886,-128.007,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 87.533, position (cm) = (53.0291,-119.251,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 87.3694, position (cm) = (55.6628,-117.946,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.386864, position (cm) = (33.8631,-100.248,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 4.34019, position (cm) = (47.253,-123.53,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0496475, position (cm) = (39.557,-85.0201,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.90508, position (cm) = (47.7575,-107.366,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 77.963, position (cm) = (-44.1764,57.4418,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.06048, position (cm) = (-52.2645,45.6449,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.345263, position (cm) = (-50.9422,43.417,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.72171, position (cm) = (-45.7232,63.9605,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.91134, position (cm) = (-15.073,51.6878,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 4.39336, position (cm) = (-74.7522,52.5663,500), weight = 3.8147e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.44886, position (cm) = (-7.45531,63.4028,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.124829, position (cm) = (-33.5317,73.5062,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.148226, position (cm) = (44.752,67.4596,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.84804, position (cm) = (56.0321,24.1202,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.990776, position (cm) = (-4.72446,35.0018,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.186689, position (cm) = (32.5325,9.15332,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.43639, position (cm) = (2.24039,22.5745,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.08655, position (cm) = (-11.8524,-1.40534,500), weight = 3.8147e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0531639, position (cm) = (-11.8487,-1.43046,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 3.94612e-06, position (cm) = (-8.88923,-0.756166,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 10.9287, position (cm) = (14.1046,-3.8495,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.64433, position (cm) = (6.60688,-40.1466,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.921036, position (cm) = (11.9836,7.91273,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 4.60765, position (cm) = (10.3544,8.6085,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.17104, position (cm) = (15.9534,-6.6992,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.205073, position (cm) = (13.5924,-3.92181,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.97181, position (cm) = (21.4506,11.0728,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.4365, position (cm) = (8.43065,8.66359,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 3.30731, position (cm) = (8.3507,6.51311,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.346989, position (cm) = (-5.68884,41.6294,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.32992, position (cm) = (-3.12791,28.6412,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 43.4866, position (cm) = (-6.60971,37.9534,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.19232, position (cm) = (18.0522,23.0467,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0751882, position (cm) = (13.5455,20.2443,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 19.997, position (cm) = (26.5003,16.4233,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.637789, position (cm) = (5.66029,2.99066,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.80066, position (cm) = (-29.2049,31.7665,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.9593, position (cm) = (13.4131,9.15138,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.7712, position (cm) = (15.5361,14.5249,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.83727, position (cm) = (20.4231,10.4547,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.15247, position (cm) = (2.0243,31.1703,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 61.8795, position (cm) = (-24.35,87.9116,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 66.5184, position (cm) = (-22.4159,111.785,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.7372, position (cm) = (-43.2929,33.983,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 38.0738, position (cm) = (47.1108,104.663,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 38.7556, position (cm) = (49.2718,118.636,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.260894, position (cm) = (-71.1654,-42.9309,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 3.91197, position (cm) = (-76.2713,-50.7664,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.788356, position (cm) = (-45.5268,-46.2542,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0673396, position (cm) = (-52.625,-40.8059,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 56.7217, position (cm) = (-93.8178,-92.2452,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 5.44718, position (cm) = (-72.213,-51.1864,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 15.3314, position (cm) = (-69.3196,-50.3806,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.10272, position (cm) = (-67.8986,-39.4011,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.79137e-07, position (cm) = (-58.8369,-53.2859,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.46693, position (cm) = (-76.5878,-48.9646,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.285844, position (cm) = (-35.8847,-51.757,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 91.3283, position (cm) = (-59.4616,-54.4705,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 91.1812, position (cm) = (-66.0892,-51.6084,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.129026, position (cm) = (-59.1204,-56.3533,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 17.0369, position (cm) = (-64.2226,-52.5659,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.14724, position (cm) = (-99.6831,-48.3028,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.115749, position (cm) = (-27.586,-49.5565,500), weight = 7.62939e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.189706, position (cm) = (-37.1094,-34.7212,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.242707, position (cm) = (-49.7959,-32.5567,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 9.98207, position (cm) = (-37.3008,-35.1842,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.00139794, position (cm) = (-24.9769,-36.7449,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 90.7683, position (cm) = (-37.7631,-35.3753,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 90.5081, position (cm) = (-43.371,-42.5249,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0945575, position (cm) = (-20.0435,-30.9099,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 50.809, position (cm) = (-0.0984717,-45.4682,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 7.23814, position (cm) = (-128.579,25.3756,500), weight = 3.05176e-05
|
|
||||||
neutron, kinetic energy (MeV) = 39.1647, position (cm) = (-61.5683,14.8567,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.3052, position (cm) = (-112.198,-0.505596,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.331531, position (cm) = (-111.98,-115.173,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0297384, position (cm) = (-112.308,-116.108,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0580939, position (cm) = (-112.454,-116.689,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 36.7539, position (cm) = (-35.0755,130.155,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.40702e-07, position (cm) = (-83.262,134.495,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.88566e-05, position (cm) = (-78.3956,65.7628,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.63689, position (cm) = (-49.1867,117.621,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.542962, position (cm) = (-65.4437,133.116,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 43.9143, position (cm) = (-56.356,130.914,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.40594, position (cm) = (-45.186,145.867,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 33.7227, position (cm) = (91.4943,35.9914,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-39.1889,46.3028,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.454072, position (cm) = (68.7262,-0.131049,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 5.53674, position (cm) = (-14.1988,27.0754,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0931331, position (cm) = (-27.7191,73.3875,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.256092, position (cm) = (18.2166,53.5179,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.75633, position (cm) = (37.0827,54.2635,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.00651672, position (cm) = (35.744,37.2543,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 40.5121, position (cm) = (14.1594,46.251,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 5.44677, position (cm) = (-39.1116,92.0131,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 38.6033, position (cm) = (-40.3828,64.7637,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 38.1022, position (cm) = (-47.8672,71.0803,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 38.9593, position (cm) = (-55.3065,72.9204,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.0266486, position (cm) = (18.1176,43.1632,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 10.9814, position (cm) = (2.94195,35.0176,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.624097, position (cm) = (-26.1687,85.0884,500), weight = 3.8147e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0660738, position (cm) = (-28.3491,88.83,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.74723, position (cm) = (126.276,38.7812,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.132616, position (cm) = (114.352,39.1107,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 31.1192, position (cm) = (132.218,52.4255,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.355746, position (cm) = (149.614,64.2088,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.0779686, position (cm) = (93.971,8.2509,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0574323, position (cm) = (129.231,40.564,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 96.6099, position (cm) = (115.174,42.6261,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.357951, position (cm) = (97.8604,15.7414,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.07625, position (cm) = (110.249,65.4248,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.33097, position (cm) = (138.28,44.3923,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 27.825, position (cm) = (111.799,27.7409,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.17317, position (cm) = (108.735,19.9675,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.619365, position (cm) = (116.507,17.3815,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.380958, position (cm) = (72.8967,-65.5727,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.04645, position (cm) = (37.4695,-61.9708,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 63.5875, position (cm) = (101.46,-41.2301,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 63.8817, position (cm) = (97.5447,-38.664,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 63.3147, position (cm) = (90.5372,-30.354,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.135877, position (cm) = (100.804,-25.181,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.713201, position (cm) = (74.0935,-15.2893,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.550717, position (cm) = (45.7213,119.641,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 63.4216, position (cm) = (45.1229,119.716,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 93.2152, position (cm) = (48.3317,122.776,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.100667, position (cm) = (99.5201,49.0998,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 20.5603, position (cm) = (84.6104,56.044,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.56677, position (cm) = (70.2154,53.0204,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 82.7965, position (cm) = (87.4231,50.3805,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 69.9375, position (cm) = (73.4629,47.9818,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.3272, position (cm) = (71.4451,39.687,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.10199e-06, position (cm) = (129.13,24.0022,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.319612, position (cm) = (110.705,-30.7219,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 40.2057, position (cm) = (77.1939,-15.6289,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.67674, position (cm) = (89.3246,-31.4611,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 4.68555, position (cm) = (74.0525,-16.5289,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.61684, position (cm) = (78.7656,-35.8318,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.3911, position (cm) = (104.246,-15.1632,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.22305, position (cm) = (13.7995,31.3235,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 6.04697, position (cm) = (25.1071,-15.8138,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.2331, position (cm) = (23.2143,23.1016,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.249, position (cm) = (23.7834,23.6329,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 97.2914, position (cm) = (21.8925,25.3938,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 67.8889, position (cm) = (-17.7533,62.4748,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.01805e-06, position (cm) = (-2.6553,34.7979,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.64653, position (cm) = (27.1903,57.4892,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 54.1784, position (cm) = (-5.71962,76.7896,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.105659, position (cm) = (54.2639,1.20954,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.103364, position (cm) = (33.8185,41.5224,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 15.9843, position (cm) = (26.6039,32.5272,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 4.84838e-06, position (cm) = (30.9427,27.4441,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 4.71014e-08, position (cm) = (28.4099,31.491,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.99818, position (cm) = (-1.05508,31.398,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 1.55345, position (cm) = (2.7059,9.86976,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.87559, position (cm) = (34.3617,36.5009,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.239606, position (cm) = (49.7039,-63.7847,500), weight = 7.62939e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.8669, position (cm) = (42.1686,74.4832,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.86894, position (cm) = (30.699,57.8628,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 28.4416, position (cm) = (35.9953,60.0362,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0966349, position (cm) = (37.69,49.9684,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.90633, position (cm) = (33.0435,48.7359,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0743584, position (cm) = (37.1524,54.2452,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.43978, position (cm) = (33.9654,56.6486,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 3.93151, position (cm) = (38.6229,54.3853,500), weight = 1.90735e-06
|
|
||||||
proton, kinetic energy (MeV) = 35.5136, position (cm) = (37.3191,54.1653,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 4.07299, position (cm) = (-14.127,0.896229,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 9.40444, position (cm) = (-13.7081,37.0052,500), weight = 7.62939e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.25778, position (cm) = (16.6828,59.9148,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.130672, position (cm) = (31.9761,17.8285,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 3.30604, position (cm) = (17.7097,22.6856,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.652604, position (cm) = (26.5812,23.2093,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 1.27312, position (cm) = (36.5567,10.8439,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 5.40594, position (cm) = (24.8538,7.10479,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 86.3992, position (cm) = (11.1165,117.223,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 86.8251, position (cm) = (16.0228,112.224,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.660614, position (cm) = (55.9719,105.228,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 65.0546, position (cm) = (54.6553,-3.09014,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0729747, position (cm) = (51.8164,-1.6049,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 44.5383, position (cm) = (49.9592,3.05135,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.000953118, position (cm) = (55.0962,11.299,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0777286, position (cm) = (-33.7254,-14.022,500), weight = 3.8147e-06
|
|
||||||
neutron, kinetic energy (MeV) = 0.603, position (cm) = (38.9579,-29.5715,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 0.0729923, position (cm) = (37.0237,-17.6628,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 2.49579, position (cm) = (36.721,-39.8613,500), weight = 1.90735e-06
|
|
||||||
gamma, kinetic energy (MeV) = 2.51572, position (cm) = (32.0806,-33.8546,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 18.503, position (cm) = (36.1435,-18.8862,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 92.7225, position (cm) = (49.722,-23.5933,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 93.1857, position (cm) = (56.3726,-26.1092,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 93.4308, position (cm) = (54.5514,-25.004,500), weight = 1.90735e-06
|
|
||||||
neutron, kinetic energy (MeV) = 93.4308, position (cm) = (54.5514,-25.004,500), weight = 1.90735e-06
|
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -410,7 +410,7 @@ nb event 175000
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Run Aborted after 175200 events processed.
|
Run Aborted after 175200 events processed.
|
||||||
User=75.440000s Real=76.316975s Sys=0.100000s
|
User=74.920000s Real=75.542429s Sys=0.060000s
|
||||||
Results of reverse/adjoint simulation!
|
Results of reverse/adjoint simulation!
|
||||||
normalised edep [MeV] = 0.0016474
|
normalised edep [MeV] = 0.0016474
|
||||||
error[MeV] = 1.64738e-05
|
error[MeV] = 1.64738e-05
|
||||||
@@ -418,9 +418,7 @@ error[MeV] = 1.64738e-05
|
|||||||
----> Histogram Tree is saved in adjoint_sim.
|
----> Histogram Tree is saved in adjoint_sim.
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 14 of which, static: 1
|
Number of memory pools allocated: 14 of which, static: 1
|
||||||
Dynamic pools deleted: 13 / Total memory freed: 28 MB
|
Dynamic pools deleted: 13 / Total memory freed: 28 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -114,7 +114,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=0.000000s Real=0.000275s Sys=0.000000s
|
User=0.000000s Real=0.000244s Sys=0.000000s
|
||||||
Graphics systems deleted.
|
Graphics systems deleted.
|
||||||
Visualization Manager deleting...
|
Visualization Manager deleting...
|
||||||
G4 kernel has come to Quit state.
|
G4 kernel has come to Quit state.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -157,7 +157,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1
|
Number of events processed : 1
|
||||||
User=0.000000s Real=0.000520s Sys=0.000000s
|
User=0.000000s Real=0.000260s Sys=0.000000s
|
||||||
|
|
||||||
Material: Water density: 1.000 g/cm3 RadL: 36.092 cm Nucl.Int.Length: 75.356 cm
|
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
|
Imean: 78.000 eV temperature: 293.15 K pressure: 1.00 atm
|
||||||
@@ -227,10 +227,8 @@ Index : 1 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1
|
Number of events processed : 1
|
||||||
User=0.000000s Real=0.000131s Sys=0.000000s
|
User=0.000000s Real=0.000119s Sys=0.000000s
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.012 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.012 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -650,7 +650,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 2000
|
Number of events processed : 2000
|
||||||
User=1.800000s Real=1.819667s Sys=0.000000s
|
User=1.690000s Real=1.698893s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -719,7 +719,7 @@ N=17 V[N]={690198723536179998, 579348065020758353, 1232261265139153084, 16578704
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 2000
|
Number of events processed : 2000
|
||||||
User=0.080000s Real=0.074767s Sys=0.000000s
|
User=0.070000s Real=0.069097s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -752,9 +752,7 @@ mixmax state, file version 1.0
|
|||||||
N=17 V[N]={1022057284471871571, 2182122990961787818, 22661610049818286, 1167058904645161636, 1057523812732912072, 448833241231062584, 265784209780802524, 272334288315472262, 2207680454799403809, 1653502782966459341, 1990026467855209068, 1157980319271137565, 496108903690270821, 1002644507988024922, 1781101410953333273, 759600882143407906, 1560436312506735844} counter= 8sumtot= 600714310653319694
|
N=17 V[N]={1022057284471871571, 2182122990961787818, 22661610049818286, 1167058904645161636, 1057523812732912072, 448833241231062584, 265784209780802524, 272334288315472262, 2207680454799403809, 1653502782966459341, 1990026467855209068, 1157980319271137565, 496108903690270821, 1002644507988024922, 1781101410953333273, 759600882143407906, 1560436312506735844} counter= 8sumtot= 600714310653319694
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
#
|
#
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.037 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.037 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -215,10 +215,10 @@ Lorentz Factor XTR photon number
|
|||||||
8.085e+04 3.154
|
8.085e+04 3.154
|
||||||
9.283e+04 3.154
|
9.283e+04 3.154
|
||||||
|
|
||||||
total time for build X-ray TR energy loss tables = 0.67 s
|
total time for build X-ray TR energy loss tables = 0.62 s
|
||||||
Build angle for energy distribution according the current radiator
|
Build angle for energy distribution according the current radiator
|
||||||
|
|
||||||
total time for build X-ray TR angle for energy loss tables = 2.19 s
|
total time for build X-ray TR angle for energy loss tables = 2.02 s
|
||||||
|
|
||||||
msc: for e+ SubType= 10
|
msc: for e+ SubType= 10
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
@@ -305,10 +305,10 @@ Lorentz Factor XTR photon number
|
|||||||
8.085e+04 3.154
|
8.085e+04 3.154
|
||||||
9.283e+04 3.154
|
9.283e+04 3.154
|
||||||
|
|
||||||
total time for build X-ray TR energy loss tables = 0.67 s
|
total time for build X-ray TR energy loss tables = 0.62 s
|
||||||
Build angle for energy distribution according the current radiator
|
Build angle for energy distribution according the current radiator
|
||||||
|
|
||||||
total time for build X-ray TR angle for energy loss tables = 2.2 s
|
total time for build X-ray TR angle for energy loss tables = 2.02 s
|
||||||
|
|
||||||
msc: for proton SubType= 10
|
msc: for proton SubType= 10
|
||||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||||
@@ -633,7 +633,7 @@ Index : 2 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=0.250000s Real=0.251837s Sys=0.000000s
|
User=0.230000s Real=0.232935s Sys=0.000000s
|
||||||
================== run summary =====================
|
================== run summary =====================
|
||||||
End of Run TotNbofEvents = 1000
|
End of Run TotNbofEvents = 1000
|
||||||
Mean energy deposit in absorber = 0.0469696 +-0.0185724 MeV
|
Mean energy deposit in absorber = 0.0469696 +-0.0185724 MeV
|
||||||
@@ -646,9 +646,7 @@ Run Summary
|
|||||||
----------------------------------------
|
----------------------------------------
|
||||||
... write file : testem10.root - done
|
... write file : testem10.root - done
|
||||||
... close file : testem10.root - done
|
... close file : testem10.root - done
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 12 of which, static: 0
|
Number of memory pools allocated: 12 of which, static: 0
|
||||||
Dynamic pools deleted: 12 / Total memory freed: 0.054 MB
|
Dynamic pools deleted: 12 / Total memory freed: 0.054 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -540,7 +540,7 @@ Index : 1 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 20000
|
Number of events processed : 20000
|
||||||
User=0.800000s Real=0.810507s Sys=0.000000s
|
User=0.750000s Real=0.753868s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary =====================
|
======================== run summary =====================
|
||||||
|
|
||||||
@@ -562,9 +562,7 @@ Run Summary
|
|||||||
Initial seed (index) = 0
|
Initial seed (index) = 0
|
||||||
Current couple of seeds = 1986418266, 1501319171
|
Current couple of seeds = 1986418266, 1501319171
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 11 of which, static: 0
|
Number of memory pools allocated: 11 of which, static: 0
|
||||||
Dynamic pools deleted: 11 / Total memory freed: 0.016 MB
|
Dynamic pools deleted: 11 / Total memory freed: 0.016 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -543,7 +543,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=0.990000s Real=1.022767s Sys=0.010000s
|
User=0.910000s Real=0.914698s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary =====================
|
======================== run summary =====================
|
||||||
|
|
||||||
@@ -562,9 +562,7 @@ Run Summary
|
|||||||
Initial seed (index) = 0
|
Initial seed (index) = 0
|
||||||
Current couple of seeds = 967874980, 672079861
|
Current couple of seeds = 967874980, 672079861
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.027 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.027 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -182,7 +182,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000000
|
Number of events processed : 1000000
|
||||||
User=2.130000s Real=2.146248s Sys=0.010000s
|
User=2.180000s Real=2.198719s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -249,7 +249,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000000
|
Number of events processed : 1000000
|
||||||
User=2.620000s Real=2.631683s Sys=0.000000s
|
User=2.470000s Real=2.478271s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -182,7 +182,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000000
|
Number of events processed : 1000000
|
||||||
User=3.790000s Real=3.843792s Sys=0.020000s
|
User=3.660000s Real=3.677722s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -252,7 +252,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000000
|
Number of events processed : 1000000
|
||||||
User=3.600000s Real=3.632823s Sys=0.000000s
|
User=3.690000s Real=3.705881s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -564,7 +564,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=0.050000s Real=0.050336s Sys=0.000000s
|
User=0.050000s Real=0.046269s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
|
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
|
||||||
|
|
||||||
@@ -636,7 +636,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=0.070000s Real=0.072311s Sys=0.000000s
|
User=0.060000s Real=0.064091s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
|
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -331,7 +331,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=0.260000s Real=0.258221s Sys=0.000000s
|
User=0.180000s Real=0.185278s Sys=0.000000s
|
||||||
Summary for synchrotron radiation :
|
Summary for synchrotron radiation :
|
||||||
Number of photons = 65086
|
Number of photons = 65086
|
||||||
Emean = 20.39 +/- 0.1444 keV
|
Emean = 20.39 +/- 0.1444 keV
|
||||||
@@ -344,9 +344,7 @@ Summary for synchrotron radiation :
|
|||||||
mixmax state, file version 1.0
|
mixmax state, file version 1.0
|
||||||
N=17 V[N]={1402135844460474226, 1250051493877681105, 260032901618238037, 1959548330058272173, 333697207877744815, 2195090962095573257, 757497238491870347, 1983172992205346680, 333986983656040467, 1332034388201043752, 1148533830487492631, 1572133571051143919, 269618836299041414, 1500430236492907451, 1379717044319899969, 489791943798559179, 1807394300704501137} counter= 13sumtot= 1528124031986278951
|
N=17 V[N]={1402135844460474226, 1250051493877681105, 260032901618238037, 1959548330058272173, 333697207877744815, 2195090962095573257, 757497238491870347, 1983172992205346680, 333986983656040467, 1332034388201043752, 1148533830487492631, 1572133571051143919, 269618836299041414, 1500430236492907451, 1379717044319899969, 489791943798559179, 1807394300704501137} counter= 13sumtot= 1528124031986278951
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.35 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.35 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -630,7 +630,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=1.500000s Real=1.510269s Sys=0.010000s
|
User=1.430000s Real=1.445852s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||||
|
|
||||||
@@ -686,7 +686,7 @@ N=17 V[N]={1111323058175034053, 2219571529747864716, 1069225865531133458, 178650
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=1.410000s Real=1.423440s Sys=0.000000s
|
User=1.300000s Real=1.311823s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||||
|
|
||||||
@@ -741,7 +741,7 @@ N=17 V[N]={537023527533468854, 703812045741405464, 171213233908340175, 933330624
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=1.320000s Real=1.327165s Sys=0.000000s
|
User=1.210000s Real=1.216717s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -215,7 +215,7 @@ Index : 0 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100000
|
Number of events processed : 100000
|
||||||
User=0.620000s Real=0.622088s Sys=0.000000s
|
User=0.590000s Real=0.594056s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -252,9 +252,7 @@ Run Summary
|
|||||||
Initial seed (index) = 0
|
Initial seed (index) = 0
|
||||||
Current couple of seeds = 487149134, 312236109
|
Current couple of seeds = 487149134, 312236109
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.017 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.017 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -600,7 +600,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=2.390000s Real=2.416164s Sys=0.000000s
|
User=2.370000s Real=2.387094s Sys=0.000000s
|
||||||
LOGITUDINAL PROFILE CUMULATIVE LOGITUDINAL PROFILE
|
LOGITUDINAL PROFILE CUMULATIVE LOGITUDINAL PROFILE
|
||||||
|
|
||||||
bin Mean rms bin Mean rms
|
bin Mean rms bin Mean rms
|
||||||
@@ -730,9 +730,7 @@ N=17 V[N]={361321420877048618, 554786381671741085, 923204730180075713, 653520139
|
|||||||
... write file : testem2.root - done
|
... write file : testem2.root - done
|
||||||
... close file : testem2.root - done
|
... close file : testem2.root - done
|
||||||
... clear all data - done
|
... clear all data - done
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.062 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.062 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -548,7 +548,7 @@ Index : 2 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=1.660000s Real=1.678080s Sys=0.000000s
|
User=1.460000s Real=1.513046s Sys=0.010000s
|
||||||
|
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||||
@@ -620,7 +620,7 @@ Index : 2 used in the geometry : Yes
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=1.370000s Real=1.391094s Sys=0.000000s
|
User=1.230000s Real=1.234412s Sys=0.000000s
|
||||||
|
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||||
@@ -646,9 +646,7 @@ Run Summary
|
|||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
#
|
#
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 11 of which, static: 0
|
Number of memory pools allocated: 11 of which, static: 0
|
||||||
Dynamic pools deleted: 11 / Total memory freed: 0.11 MB
|
Dynamic pools deleted: 11 / Total memory freed: 0.11 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -209,7 +209,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100000
|
Number of events processed : 100000
|
||||||
User=0.710000s Real=0.711899s Sys=0.000000s
|
User=0.700000s Real=0.703499s Sys=0.000000s
|
||||||
|
|
||||||
--------- Ranecu engine status ---------
|
--------- Ranecu engine status ---------
|
||||||
Initial seed (index) = 0
|
Initial seed (index) = 0
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -105,7 +105,7 @@ Step# X Y Z KineE dEStep StepLeng T
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1
|
Number of events processed : 1
|
||||||
User=0.000000s Real=0.000476s Sys=0.000000s
|
User=0.010000s Real=0.000358s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -184,7 +184,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 6
|
Number of events processed : 6
|
||||||
User=0.000000s Real=0.000147s Sys=0.000000s
|
User=0.000000s Real=0.000066s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -230,9 +230,7 @@ Run Summary
|
|||||||
mixmax state, file version 1.0
|
mixmax state, file version 1.0
|
||||||
N=17 V[N]={1977567618660788324, 300890354879745607, 1424437069285335120, 2296497209797367902, 1143472681269825295, 260370018537989708, 668395878522115384, 1090766064544254753, 1931418983504702790, 828618339300030337, 2137373994898626588, 1263575693625627220, 316400124824195510, 274418011581707120, 1512294095604459534, 166310252540771229, 2260588327282429663} counter= 13sumtot= 1406650644950420476
|
N=17 V[N]={1977567618660788324, 300890354879745607, 1424437069285335120, 2296497209797367902, 1143472681269825295, 260370018537989708, 668395878522115384, 1090766064544254753, 1931418983504702790, 828618339300030337, 2137373994898626588, 1263575693625627220, 316400124824195510, 274418011581707120, 1512294095604459534, 166310252540771229, 2260588327282429663} counter= 13sumtot= 1406650644950420476
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.017 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.017 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -236,7 +236,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100000
|
Number of events processed : 100000
|
||||||
User=81.290000s Real=84.773830s Sys=0.020000s
|
User=84.480000s Real=88.166175s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -284,9 +284,7 @@ Run Summary
|
|||||||
mixmax state, file version 1.0
|
mixmax state, file version 1.0
|
||||||
N=17 V[N]={944671353633884230, 300194246912256983, 1338926093308238266, 1441599044978111444, 559828476273747537, 976665045002376518, 1655586542061687849, 1507013437582523992, 2052944524787068341, 2173254900581545545, 733849232472135636, 379249519059016924, 877093410379007237, 1488918075031648810, 1263787258307413205, 589725557209658928, 749180548014423557} counter= 14sumtot= 585743191885193394
|
N=17 V[N]={944671353633884230, 300194246912256983, 1338926093308238266, 1441599044978111444, 559828476273747537, 976665045002376518, 1655586542061687849, 1507013437582523992, 2052944524787068341, 2173254900581545545, 733849232472135636, 379249519059016924, 877093410379007237, 1488918075031648810, 1263787258307413205, 589725557209658928, 749180548014423557} counter= 14sumtot= 585743191885193394
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.16 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.16 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -515,7 +515,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100000
|
Number of events processed : 100000
|
||||||
User=0.960000s Real=0.963480s Sys=0.000000s
|
User=0.990000s Real=0.995499s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -614,7 +614,7 @@ N=17 V[N]={387689516187099455, 1947743697759783307, 984698709684866192, 15571250
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=0.500000s Real=0.501066s Sys=0.000000s
|
User=0.530000s Real=0.527098s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -718,7 +718,7 @@ N=17 V[N]={1239212255599460965, 1328488509436437337, 1766244005004820777, 289170
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=1.910000s Real=1.921789s Sys=0.000000s
|
User=1.830000s Real=1.847042s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -828,7 +828,7 @@ N=17 V[N]={536854359441855123, 1009932311112986142, 1367456349214626552, 2965156
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=0.520000s Real=0.515694s Sys=0.000000s
|
User=0.520000s Real=0.520304s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -939,7 +939,7 @@ N=17 V[N]={841703379855331740, 1160090687504734640, 968124569867711035, 10157294
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 50000
|
Number of events processed : 50000
|
||||||
User=7.990000s Real=8.052453s Sys=0.000000s
|
User=8.180000s Real=8.238345s Sys=0.000000s
|
||||||
|
|
||||||
======================== run summary ======================
|
======================== run summary ======================
|
||||||
|
|
||||||
@@ -986,9 +986,7 @@ mixmax state, file version 1.0
|
|||||||
N=17 V[N]={617661458496339327, 1853949536333809702, 576578364478647478, 412964137124411421, 1032844685672237211, 1031821778618090704, 544078291082236998, 194159493452279161, 171481080002404738, 70495838368000371, 205172618800321456, 1143344309854547675, 1442959377549137764, 1052598822626686356, 1979034980715068385, 1710881825679836342, 1632809550286451542} counter= 16sumtot= 1837778093858342925
|
N=17 V[N]={617661458496339327, 1853949536333809702, 576578364478647478, 412964137124411421, 1032844685672237211, 1031821778618090704, 544078291082236998, 194159493452279161, 171481080002404738, 70495838368000371, 205172618800321456, 1143344309854547675, 1442959377549137764, 1052598822626686356, 1979034980715068385, 1710881825679836342, 1632809550286451542} counter= 16sumtot= 1837778093858342925
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
#
|
#
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 9 of which, static: 0
|
Number of memory pools allocated: 9 of which, static: 0
|
||||||
Dynamic pools deleted: 9 / Total memory freed: 0.054 MB
|
Dynamic pools deleted: 9 / Total memory freed: 0.054 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -270,7 +270,7 @@ Step# X Y Z KineE dEStep StepLeng T
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 5
|
Number of events processed : 5
|
||||||
User=0.000000s Real=0.000893s Sys=0.000000s
|
User=0.000000s Real=0.000611s Sys=0.000000s
|
||||||
### RunAction::EndOfRunAction
|
### RunAction::EndOfRunAction
|
||||||
|
|
||||||
Number of process calls ---> GammaToMuPair : 5
|
Number of process calls ---> GammaToMuPair : 5
|
||||||
@@ -388,7 +388,7 @@ Step# X Y Z KineE dEStep StepLeng T
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 5
|
Number of events processed : 5
|
||||||
User=0.000000s Real=0.000530s Sys=0.000000s
|
User=0.000000s Real=0.000446s Sys=0.000000s
|
||||||
### RunAction::EndOfRunAction
|
### RunAction::EndOfRunAction
|
||||||
|
|
||||||
Number of process calls ---> AnnihiToMuPair : 2 ee2hadr : 3
|
Number of process calls ---> AnnihiToMuPair : 2 ee2hadr : 3
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
**************************************************************
|
**************************************************************
|
||||||
Geant4 version Name: geant4-11-01-ref-00 (9-December-2022)
|
Geant4 version Name: geant4-11-01-patch-01 (10-February-2023)
|
||||||
Copyright : Geant4 Collaboration
|
Copyright : Geant4 Collaboration
|
||||||
References : NIM A 506 (2003), 250-303
|
References : NIM A 506 (2003), 250-303
|
||||||
: IEEE-TNS 53 (2006), 270-278
|
: IEEE-TNS 53 (2006), 270-278
|
||||||
@@ -589,7 +589,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10000
|
Number of events processed : 10000
|
||||||
User=6.870000s Real=6.920041s Sys=0.010000s
|
User=6.350000s Real=6.375698s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||||
|
|
||||||
@@ -649,7 +649,7 @@ N=17 V[N]={1688224171856633815, 1204397957432844994, 970316653270356218, 2007108
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=2.240000s Real=2.266308s Sys=0.000000s
|
User=2.100000s Real=2.121501s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||||
|
|
||||||
@@ -720,7 +720,7 @@ N=17 V[N]={1649824727118647661, 1046390055990695993, 1480625329608636178, 146408
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=1.150000s Real=1.166945s Sys=0.000000s
|
User=1.070000s Real=1.078480s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
|
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
|
||||||
|
|
||||||
@@ -785,7 +785,7 @@ N=17 V[N]={1933654448227140629, 1457435173727069612, 1930983674723996504, 139968
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=0.000000s Real=0.000524s Sys=0.000000s
|
User=0.000000s Real=0.000418s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 mg/cm3)
|
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 mg/cm3)
|
||||||
|
|
||||||
@@ -848,7 +848,7 @@ N=17 V[N]={338928760304083625, 441887219544588962, 851684438601283227, 181798748
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 100
|
Number of events processed : 100
|
||||||
User=0.010000s Real=0.011792s Sys=0.000000s
|
User=0.010000s Real=0.010388s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||||
|
|
||||||
@@ -920,7 +920,7 @@ N=17 V[N]={2080744500207456733, 1944926083755594869, 710688226310155038, 2297318
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 10
|
Number of events processed : 10
|
||||||
User=3.520000s Real=3.599527s Sys=0.060000s
|
User=3.250000s Real=3.300516s Sys=0.040000s
|
||||||
|
|
||||||
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
|
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
|
||||||
|
|
||||||
@@ -998,7 +998,7 @@ N=17 V[N]={987077746800997428, 2082610003558889367, 593302383828085190, 10950096
|
|||||||
Run terminated.
|
Run terminated.
|
||||||
Run Summary
|
Run Summary
|
||||||
Number of events processed : 1000
|
Number of events processed : 1000
|
||||||
User=0.660000s Real=0.660069s Sys=0.000000s
|
User=0.620000s Real=0.624546s Sys=0.000000s
|
||||||
|
|
||||||
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
|
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
|
||||||
|
|
||||||
@@ -1012,9 +1012,7 @@ Run Summary
|
|||||||
mixmax state, file version 1.0
|
mixmax state, file version 1.0
|
||||||
N=17 V[N]={869322257438941195, 384251251088241991, 2180024558785132357, 853258939912875777, 176205193257164154, 1881574772054670531, 1781061241614129969, 1557037857960190014, 3008773993715497, 1252849085205759056, 1318002576626930808, 2123391528790226507, 2148130426532606502, 816744514228099003, 1633700286528463369, 415258349704432768, 1236702284415004523} counter= 13sumtot= 2183779824427032413
|
N=17 V[N]={869322257438941195, 384251251088241991, 2180024558785132357, 853258939912875777, 176205193257164154, 1881574772054670531, 1781061241614129969, 1557037857960190014, 3008773993715497, 1252849085205759056, 1318002576626930808, 2123391528790226507, 2148130426532606502, 816744514228099003, 1633700286528463369, 415258349704432768, 1236702284415004523} counter= 13sumtot= 2183779824427032413
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
G4 kernel has come to Quit state.
|
|
||||||
================== Deleting memory pools ===================
|
================== Deleting memory pools ===================
|
||||||
Number of memory pools allocated: 12 of which, static: 0
|
Number of memory pools allocated: 12 of which, static: 0
|
||||||
Dynamic pools deleted: 12 / Total memory freed: 56 MB
|
Dynamic pools deleted: 12 / Total memory freed: 56 MB
|
||||||
============================================================
|
============================================================
|
||||||
RunManagerKernel is deleted. Good bye :)
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user