Import Geant4 10.6.1 source tree

This commit is contained in:
Gabriele Cosmo
2020-02-14 15:32:52 +01:00
parent 5baee230e9
commit 8c87fe78c4
278 changed files with 24232 additions and 22963 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
project(Geant4)
set(${PROJECT_NAME}_VERSION_MAJOR 10)
set(${PROJECT_NAME}_VERSION_MINOR 6)
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}")
# - Prepend our own CMake Modules to the search path
+174
View File
@@ -0,0 +1,174 @@
Geant4 10.6 - patch-01 Release Notes
------------------------------------
14 February 2020
List of fixes included in this public patch since the public release 10.6:
o Configuration:
-------------
+ CMake:
o Applied patch to allow compilation on Windows using Clang.
o Quote VECGEOM_COMPILE_DEFINITIONS to avoid incorrect argument errors.
o Fix to prevent errors when a shell is in "set -u" mode.
Addressing problem report #2221.
o No longer create symlinks on Windows; Windows permissions may prevent
creation of symlinks, leading to errors at install time.
o Updated to data-set G4EMLOW-7.9.1.
+ GNUMake:
o Fixed and updated legacy setup for DLL builds on Windows.
o Digits_Hits:
-----------
+ G4ScoringManager, G4VScoreWriter, G4ScoringMessenger: added missing
setter/getter functions.
+ In G4ScoreQuantityMessenger, changed SetDefaultUnit() in trackLength
scorer to SetDefaultValue() to support various unit category.
Addressing problem report #2216.
o Geometry:
--------
+ magneticfield:
o Turn off verbosity flags by default in G4IntegratorDriver,
G4InterpolationDriver and G4MagIntegratorDriver.
+ navigation:
o Avoid looping infinitely by pushing N times with increasing step size.
Addressing problem report #2196.
+ solids/specific:
o Re-established parameterisation mechanism for G4Tet and G4UTet which was
removed by mistake. Addressing problem report #2209.
o Revision of G4Tet, for speed-up and issues detected in unit tests.
Implemented SetVertices(), direct modifier for vertices.
o Revision of G4Ellipsoid, fixing issues with previous implementation,
and 30%-70% speed-up in all main methods.
Also addressing problem report #2206.
o Added protection in G4VFacet header for double definition of global
symbols from Windows Kits code.
o Global:
------
+ Fixed symbol exporting problem in G4coutDestination on Windows; define
'masterG4coutDestination' as normal pointer.
Addressing problem report #2217.
+ Added windefs.hh header, including protections for double definition
of global symbols from Windows Kits code.
+ Updated date and version for 10.6.p01.
o Interfaces:
----------
+ Fixed obsolete URLs in UIQt splash screen.
o Particles
---------
+ Fixed broken if-block in G4DecayTableMessenger.
Addressing problem report #2193.
o Physics Lists
-------------
+ constructors/electromagnetic:
o G4EmModelActivator: fixed configuration of the default EM multiple
scattering on top of any other physics configuration.
Addressing problem report #2106.
+ constructors/gamma_lepto_nuclear
o Fixed reports from Coverity; removed double delete in destructor of
G4LENDBertiniGammaElectroNuclearBuilder.
+ lists:
o LBE: updated cross-sections to avoid crashes caused by the removal of
default Gheisha cross-sections, and to have consistency between elastic
and inelastic cross-sections.
o Processes - Electromagnetic:
---------------------------
+ muons:
o G4MuPairProductionModel: added Store/Retrieve data methods.
Co-works with new data-set G4EMLOW-7.9.1.
+ standard:
o G4BetheHeitler5DModel: added protection against negative argument of
sqrt(), due to precision lost.
+ utils:
o G4EmParameters, G4EmParametersMessenger: added new parameter to enable
read of e+e- production table from file.
Co-works with new data-set G4EMLOW-7.9.1.
o Processes - Hadronic:
--------------------
+ cross_sections:
o G4HadronInelasticDataSet: fixed wrong GHEISHA x-section.
Addressing problem report #2220.
+ management:
o G4HadronicProcess: for charge check assume that all final electrons
come from internal conversion.
+ cascade:
o G4CascadeCheckBalance: fixed outstanding problem of the interface with
native pre-compound model, happening when in the default de-excitation
internal electron conversion gets enabled.
o G4CascadeInterface: fixed memory leak by deleting ltcollider in class
destructor.
o G4CascadeParamMessenger.cc: ensure that Bertini-specific commands get
added to "/process/had/cascade/" UI directory, instead of
"/process/had".
+ models/coherent_elastic:
o G4ElasticHadrNucleusHE: for pi- and Z>1 reuse data structure computed
for pi+ in order to reduce memory and CPU at initialisation; added new
private methods to store/retrieve data tables. Co-works with new
data-set G4EMLOW-7.9.1. Fixed Coverity report.
Switch to parameterized model by cut on kinetic energy and not momentum.
+ models/lend:
o Removed inclusion of amp_math header on Windows as it is not required.
+ models/parton_string/qgsm:
o G4FTFParameters: fixed division by zero (Coverity report) due to wrong
protection.
+ models/radioactive_decay:
o In G4Radioactivation::AddDeexcitationSpectrumForBiasMode(), fixed
memory leak. Addressing problem report #2164.
o G4RadioactiveDecay, G4RadioactiveDecayBase: changed default verbosity
from 0 to 1, and remove G4cerr wherever it occurs and replace it with
G4Exception or G4cout.
Increased verbosity thresholds in order to reduce printout size.
o G4BetaPlusDecay: changed sign of daughterZ argument in
G4BetaDecayCorrections according to problem report #2199.
o Fixed Coverity warnings in G4RadioactiveDecay and
G4RadioactiveDecayBase. Fixed uninitialized data in G4SFDecay.
+ processes:
o G4HadronElasticProcess: removed forgotten try/catch pattern for
target isotope selection.
+ stopping:
o G4MuonicAtomDecay: fixed Coverity warning by addition of G4Exception.
o Visualization:
-------------
+ OpenInventor:
o Added include paths to Inventor to usage requirements on G4OpenInventor.
Inventor does not yet support imported targets, and paths added by
include_directories are now explicitly removed.
Addressing problem report #2215
o Data sets:
---------
+ G4EMLOW-7.9.1:
o Added a new directory mupair for double differential probability
of e+e- pairs produced by muons or hadrons.
o Examples:
--------
+ basic
o Fixed comment for suggested command "/run/numberOfThreads" in macros.
+ extended/hadronic/Hadr01
o HistoManager: fixed FPE happening if check on volume's material
is not vacuum.
----------------------------------------------------------------------------
Technical Notes
---------------
o This patch should be applied on top of release 10.6.
o Technical notes distributed for release 10.6 are also applicable and
valid for this patch.
The code and rebuilt binary libraries for release 10.6.p01 are available
through the Geant4 "Download" Web page.
Please refer to the Geant4 User Documentation for further information about
using Geant4.
+21
View File
@@ -30,6 +30,27 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
----------------------------------------------------------
14th February 2020 - Ben Morgan (cmake-V10-05-34)
- No longer create gnumake symlinks on Windows
Windows permissions may prevent creation of symlinks, leading to
errors at install time. As gnumake is no longer supported on
Windows, protect symlink creation with test on host platform.
5th February 2020 - Ben Morgan (cmake-V10-05-33)
- Apply patch from TXCorp to allow compilation on Windows using Clang
4th February 2020 - Ben Morgan (cmake-V10-05-32)
- BUGFIX 2221
Use "${FOO:-}" variable expansion and "-z" test to check for
undefined variables in Bourne Shell scripts. Prevents errors when
shell is in "set -u" mode. Report and patch supplied by Michael Reilly
28th January 2020 - Gunter Folger (cmake-V10-05-31)
- Switch to patched dataset for G4EMLOW 7.9.1
15th January 2020 - Ben Morgan (cmake-V10-05-30)
- Quote VECGEOM_COMPILE_DEFINITIONS to avoid incorrect argument errors
25th November 2019 - Ben Morgan (cmake-V10-05-29)
- Disable configuration of Wt UI/Vis driver due to it no longer
compiling with recent Wt versions
+8 -11
View File
@@ -284,7 +284,7 @@ function(_g4tc_setenv_ifnotset_command TEMPLATE_NAME SHELL_FAMILY VARIABLE_NAME
# Have to make this section verbatim to get correct formatting
set(${TEMPLATE_NAME}
"
if test \"x\$${VARIABLE_NAME}\" = \"x\" ; then
if [ -z \"\$\{${VARIABLE_NAME}-\}\" ] ; then
export ${VARIABLE_NAME}=${VARIABLE_VALUE}
fi
"
@@ -317,7 +317,7 @@ function(_g4tc_prepend_path TEMPLATE_NAME SHELL_FAMILY PATH_VARIABLE
# We have to make this section verbatim
set(${TEMPLATE_NAME}
"
if test \"x\$${PATH_VARIABLE}\" = \"x\" ; then
if [ -z \"\$\{${PATH_VARIABLE}-\}\" ] ; then
export ${PATH_VARIABLE}=${APPEND_VARIABLE}
else
export ${PATH_VARIABLE}=${APPEND_VARIABLE}:\${${PATH_VARIABLE}}
@@ -354,7 +354,7 @@ function(_g4tc_append_path TEMPLATE_NAME SHELL_FAMILY PATH_VARIABLE
# We have to make this section verbatim
set(${TEMPLATE_NAME}
"
if test \"x\$${PATH_VARIABLE}\" = \"x\" ; then
if [ -z \"\$\{${PATH_VARIABLE}-\}\" ] ; then
export ${PATH_VARIABLE}=${APPEND_VARIABLE}
else
export ${PATH_VARIABLE}=\${${PATH_VARIABLE}}:${APPEND_VARIABLE}
@@ -805,14 +805,11 @@ install(DIRECTORY config
PATTERN "scripts/" EXCLUDE
)
# Compatibility softlink to library directory, we do this on all
# platforms, but it does nothing on Windows (well, at least the
# attempted symlink creation does not)
# Take care to quote the path names to avoid issues with spaces
install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E make_directory \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")")
install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E create_symlink .. ${GEANT4_SYSTEM}-${GEANT4_COMPILER} WORKING_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")")
# Compatibility softlink to library directory on UNIX only
if(UNIX)
install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E make_directory \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")")
install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E create_symlink .. ${GEANT4_SYSTEM}-${GEANT4_COMPILER} WORKING_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")")
endif()
#-----------------------------------------------------------------------
# TEMPORARY
+1 -1
View File
@@ -11,7 +11,7 @@ if(VecGeom_FOUND)
string(REGEX REPLACE "^\-D|;-D" ";" VECGEOM_COMPILE_DEFINITIONS "${VECGEOM_DEFINITIONS}")
set_target_properties(VecGeom::VecGeom PROPERTIES
INTERFACE_COMPILE_DEFINITIONS ${VECGEOM_COMPILE_DEFINITIONS}
INTERFACE_COMPILE_DEFINITIONS "${VECGEOM_COMPILE_DEFINITIONS}"
INTERFACE_INCLUDE_DIRECTORIES "${VECGEOM_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES "${VECGEOM_LIBRARIES}"
IMPORTED_LOCATION "${VECGEOM_LIBRARY}")
+2 -2
View File
@@ -18,11 +18,11 @@ geant4_add_dataset(
# - Low energy electromagnetics
geant4_add_dataset(
NAME G4EMLOW
VERSION 7.9
VERSION 7.9.1
FILENAME G4EMLOW
EXTENSION tar.gz
ENVVAR G4LEDATA
MD5SUM d28a09f0c93243522512cf2a3a733348
MD5SUM 1308dc5d73b5539557e2ec6b96f7e5ef
)
# - Photon evaporation
+23 -17
View File
@@ -11,25 +11,31 @@
# 2) Set the compile flags/features when using CMake < 3.10
#
if(MSVC)
# This seems to indicate CMAKE_C_SIMULATE_ID
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
# Require MSVC that supports standard flags and std::filesystem
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20)
message(FATAL_ERROR "Geant4 requires MSVC 19.20 (Visual Studio 2019 Version 16.0) or newer")
else()
# Set cxxstd flags on CMake < 3.10
if(CMAKE_VERSION VERSION_LESS 3.10)
# VS 2015 Update 3 and above support language standard level flags,
# with the default and minimum level being C++14.
set(CMAKE_CXX98_STANDARD_COMPILE_OPTION "")
set(CMAKE_CXX98_EXTENSION_COMPILE_OPTION "")
set(CMAKE_CXX11_STANDARD_COMPILE_OPTION "")
set(CMAKE_CXX11_EXTENSION_COMPILE_OPTION "")
set(CMAKE_CXX14_STANDARD_COMPILE_OPTION "-std:c++14")
set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std:c++14")
set(CMAKE_CXX17_STANDARD_COMPILE_OPTION "-std:c++17")
set(CMAKE_CXX17_EXTENSION_COMPILE_OPTION "-std:c++17")
list(APPEND CMAKE_CXX17_COMPILE_FEATURES cxx_std_17)
set(CMAKE_CXX_COMPILE_FEATURES ${CMAKE_CXX_COMPILE_FEATURES} "${CMAKE_CXX17_COMPILE_FEATURES}")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20)
message(FATAL_ERROR "Geant4 requires MSVC 19.20 (Visual Studio 2019 Version 16.0) or newer")
else()
# Set cxxstd flags on CMake < 3.10
if(CMAKE_VERSION VERSION_LESS 3.10)
# VS 2015 Update 3 and above support language standard level flags,
# with the default and minimum level being C++14.
set(CMAKE_CXX98_STANDARD_COMPILE_OPTION "")
set(CMAKE_CXX98_EXTENSION_COMPILE_OPTION "")
set(CMAKE_CXX11_STANDARD_COMPILE_OPTION "")
set(CMAKE_CXX11_EXTENSION_COMPILE_OPTION "")
set(CMAKE_CXX14_STANDARD_COMPILE_OPTION "-std:c++14")
set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std:c++14")
set(CMAKE_CXX17_STANDARD_COMPILE_OPTION "-std:c++17")
set(CMAKE_CXX17_EXTENSION_COMPILE_OPTION "-std:c++17")
list(APPEND CMAKE_CXX17_COMPILE_FEATURES cxx_std_17)
set(CMAKE_CXX_COMPILE_FEATURES ${CMAKE_CXX_COMPILE_FEATURES} "${CMAKE_CXX17_COMPILE_FEATURES}")
endif()
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
else()
message(FATAL_ERROR "Geant4 requires Visual Studio or Clang.")
endif()
endif()
+3
View File
@@ -15,6 +15,9 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
12th Feb 2020 Gabriele Cosmo (config-V10-05-09)
- Fixed and updated setup for DLL builds on Windows.
20th Nov 2019 Gabriele Cosmo (config-V10-05-08)
- interactivity.gmk: added -DQT_NO_DEPRECATED_WARNINGS to Qt compilation
settings, to silence warnings from Qt for use of deprecated features.
-4
View File
@@ -261,10 +261,6 @@ ifdef GLOBALLIBS
LDLIBS2 += -lG4expat
endif
ifneq (,$(findstring WIN32-VC,$(G4SYSTEM)))
LDLIBS2 += -lG4expat
endif
ifdef G4LIB_USE_ZLIB
LDLIBS2 += -lG4zlib
endif
+1 -1
View File
@@ -102,7 +102,7 @@ typedef MEMORY_MAPPED_FILE* PMEMORY_MAPPED_FILE;
using namespace std;
#define MakePtr( cast, ptr, addValue ) (cast)( (DWORD)(ptr) + (DWORD)(addValue))
#define MakePtr( cast, ptr, addValue ) (cast)( (DWORD_PTR)(ptr) + (DWORD_PTR)(addValue))
/////////////////////////////////////////////////////////////////////////////
// CLibSymbolInfo
+8 -7
View File
@@ -12,8 +12,9 @@ ifeq ($(G4SYSTEM),WIN32-VC)
endif
CXXFLAGS += -GR -EHsc -Zm200 -nologo -std:c++17
CXXFLAGS += -D_CONSOLE -D_WIN32 -DOS
CPPFLAGS += -DWIN32 -DXPNET -D_CRT_SECURE_NO_DEPRECATE
CPPFLAGS += -DWIN32 -DXPNET -D_CRT_SECURE_NO_DEPRECATE -D_NO_CRT_STDIO_INLINE
LDFLAGS += -FORCE /NODEFAULTLIB:MSVCRT.dll /STACK:12582912
LOADLIBS += legacy_stdio_definitions.lib
SHEXT := dll
AR := LIB
@@ -93,15 +94,15 @@ ifeq ($(G4SYSTEM),WIN32-VC)
$(ECHO) "Building lib$(name).exp and lib$(name).lib file ...";\
$(RM) $(G4LIBDIR)/lib$(name).exp;\
$(RM) $(G4LIBDIR)/lib$(name).lib;\
lib.exe /nologo /machine:ix86 /def:$(name).def \
lib.exe /nologo /machine:x64 /def:$(name).def \
/out:$(G4LIBDIR)/lib$(name).lib;\
$(RM) $(G4LIBDIR)/$(name).dll;\
$(ECHO) "Building $(name).dll file ...";\
link.exe /nologo /dll /out:$(G4LIBDIR)/$(name).dll \
link.exe /nologo /machine:x64 /dll /out:$(G4LIBDIR)/$(name).dll \
$(G4LIBDIR)/lib$(name).exp $(G4LIBDIR)/lib$(name).a \
$(LIB_PATH)$(G4LIBDIR) $(GLOBLIBS) \
$(LIB_PATH)$(CLHEP_LIB_DIR) $(CLHEP_LIB) \
$(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS)
$(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) $(LOADLIBS)
endef
define build-global-shared-lib
@libdir=`(cd $(@D);/bin/pwd)`;\
@@ -112,14 +113,14 @@ ifeq ($(G4SYSTEM),WIN32-VC)
$(ECHO) "Building lib$(name).exp and lib$(name).lib ...";\
$(RM) $(G4LIBDIR)/lib$(name).exp;\
$(RM) $(G4LIBDIR)/lib$(name).lib;\
lib.exe /nologo /machine:ix86 /def:$(name).def \
lib.exe /nologo /machine:x64 /def:$(name).def \
/out:$(G4LIBDIR)/lib$(name).lib;\
$(RM) $(G4LIBDIR)/$(name).dll;\
$(ECHO) "Building $(name).dll ...";\
link.exe /nologo /dll /out:$(G4LIBDIR)/$(name).dll \
link.exe /nologo /machine:x64 /dll /out:$(G4LIBDIR)/$(name).dll \
$(G4LIBDIR)/lib$(name).exp $(G4LIBDIR)/lib$(name).a \
$(LIB_PATH)$(G4LIBDIR) $(GLOBLIBS) \
$(LIB_PATH)$(CLHEP_LIB_DIR) $(CLHEP_LIB) \
$(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS)
$(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) $(LOADLIBS)
endef
endif
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -1278,7 +1278,7 @@ Event 14455
Run terminated.
Run Summary
Number of events processed : 14456, effectively: 10
User=8.780000s Real=9.096388s Sys=0.030000s
User=8.590000s Real=8.667211s Sys=0.010000s
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
1 [ 1.0000, 0.8000) | 0.00254453 ( 1 / 393 ) | 0.00000000 ( 0 / 393 / 480 )
+6 -6
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -244,8 +244,8 @@ See commands in /vis/modeling/trajectories/ for other options.
ooo Run 0 starts (global).
--------- Ranlux engine status ---------
Initial seed = 1575548249
float_seed_table[] = 0.636971 0.80368 0.477473 0.77956 0.386704 0.678484 0.893229 0.819829 0.749979 0.779605 0.210427 0.0392667 0.297203 0.429559 0.550057 0.0868152 0.840908 0.125298 0.800472 0.247863 0.0465301 0.967462 0.0514111 0.299733
Initial seed = 1581670685
float_seed_table[] = 0.771425 0.857793 0.786471 0.959849 0.54189 0.251619 0.336965 0.48616 0.231617 0.975826 0.760323 0.680841 0.384682 0.719225 0.266291 0.500768 0.777779 0.245909 0.829786 0.237351 0.567685 0.441431 0.607113 0.0855538
i_lag = 23, j_lag = 9
carry = 0, count24 = 0
luxury = 3 nskip = 199
@@ -256,7 +256,7 @@ mu- Mono Plane
Run terminated.
Run Summary
Number of events processed : 100
User=1.900000s Real=1.911033s Sys=0.000000s
User=2.090000s Real=2.091367s Sys=0.000000s
### Run 0 (global) ended.
Graphics systems deleted.
Visualization Manager deleting...
@@ -284,9 +284,9 @@ Pool ID '17G4DynamicParticle', size : 0.025 MB
Pool ID '7G4Track', size : 0.049 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '15UltraOpticalHit', size : 0.00385 MB
Pool ID '15UltraOpticalHit', size : 0.000961 MB
Number of memory pools allocated: 12 of which, static: 0
Dynamic pools deleted: 12 / Total memory freed: 0.097 MB
Dynamic pools deleted: 12 / Total memory freed: 0.094 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
+2 -2
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -179,7 +179,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
User=7.540000s Real=7.561025s Sys=0.000000s
User=7.470000s Real=7.527727s Sys=0.000000s
-------------------------------------------------------------
---> The calorimeter is 9 Modules
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -902,7 +902,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 20
User=18.970000s Real=19.354676s Sys=0.030000s
User=19.750000s Real=20.570038s Sys=0.040000s
### Run 0 end.
... write Root file : ccal.root - done
... close Root file : ccal.root - done
@@ -918,23 +918,23 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
Total navigation history collections cleaned: 47
Total navigation history collections cleaned: 48
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 0.0683 MB
Pool ID '20G4NavigationLevelRep', size : 0.0721 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.0702 MB
Pool ID '7G4Track', size : 0.139 MB
Pool ID '17G4DynamicParticle', size : 0.0538 MB
Pool ID '7G4Track', size : 0.108 MB
Pool ID '18G4TouchableHistory', size : 0.00577 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '17G4ReactionProduct', size : 0.0125 MB
Pool ID '17G4ReactionProduct', size : 0.0135 MB
Pool ID '10G4Fragment', size : 0.00481 MB
Number of memory pools allocated: 13 of which, static: 0
Dynamic pools deleted: 13 / Total memory freed: 0.31 MB
Dynamic pools deleted: 13 / Total memory freed: 0.26 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
+2 -2
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -200,4 +200,4 @@ Index : 2 used in the geometry : Yes
---- eRosita event counter: 9000
---- eRosita event counter: 10000
--- Run 00 ends (Number of events = 10000).
User=39.150000s Real=39.511848s Sys=0.010000s
User=37.830000s Real=37.981702s Sys=0.010000s
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -586,17 +586,17 @@ Run 0 starts ...
Run terminated.
Run Summary
Number of events processed : 500
User=5.400000s Real=5.566863s Sys=0.070000s
User=5.280000s Real=5.353012s Sys=0.050000s
... write Csv file : Hadrontherapy_h1_Ekin.csv - done
... write Csv file : Hadrontherapy_h1_Edep.csv - done
... write Csv files : - done
Graphics systems deleted.
Visualization Manager deleting...
The simulation took: 9.47318 s to run (real time)
The simulation took: 9.36765 s to run (real time)
Dose is being written to Dose.out
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 12 of which, static: 0
Dynamic pools deleted: 12 / Total memory freed: 0.45 MB
Dynamic pools deleted: 12 / Total memory freed: 0.39 MB
============================================================
RunManagerKernel is deleted. Good bye :)
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -80,19 +80,19 @@ MotherVolume: physicalWorld
sensitivity : 0
Construct Head with mother physicalWorld
Checking overlaps for volume physicalHead (G4UnionSolid) ... OK!
Volume of Head = 4657.34 cm^3
Volume of Head = 4655.7 cm^3
Material of Head = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of Head = 4596.33 g
Mass of Head = 4594.71 g
MotherVolume: physicalHead
sensitivity : 0
Construct Skull with mother volume physicalHead
Checking overlaps for volume physicalSkull (G4SubtractionSolid) ... OK!
Skull created !!!!!!
Volume of Skull = 845.927 cm^3
Volume of Skull = 845.339 cm^3
Material of Skull = skeleton
Density of Material = 1.4862 g/cm^3
Mass of Skull = 1257.22 g
Mass of Skull = 1256.34 g
Construct Brain with mother physicalHead
Checking overlaps for volume physicalBrain (G4Ellipsoid) ... OK!
Volume of Brain = 1470.27 cm^3
@@ -167,28 +167,28 @@ sensitivity : 0
Construct UpperSpine with mother volume physicalHead
Checking overlaps for volume physicalUpperSpine (G4SubtractionSolid) ... OK!
UpperSpine created !!!!!!
Volume of UpperSpine = 126.361 cm^3
Volume of UpperSpine = 126.526 cm^3
Material of UpperSpine = skeleton
Density of Material = 1.4862 g/cm^3
Mass of UpperSpine = 187.798 g
Mass of UpperSpine = 188.044 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct LeftScapula with mother volume physicalTrunk
Checking overlaps for volume physicalLeftScapula (G4SubtractionSolid) ... OK!
LeftScapula created !!!!!!
Volume of LeftScapula = 100.174 cm^3
Volume of LeftScapula = 99.759 cm^3
Material of LeftScapula = skeleton
Density of Material = 1.4862 g/cm^3
Mass of LeftScapula = 148.879 g
Mass of LeftScapula = 148.262 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct RightScapula with mother volume physicalTrunk
Checking overlaps for volume physicalRightScapula (G4SubtractionSolid) ... OK!
RightScapula created !!!!!!
Volume of RightScapula = 101.994 cm^3
Volume of RightScapula = 103.167 cm^3
Material of RightScapula = skeleton
Density of Material = 1.4862 g/cm^3
Mass of RightScapula = 151.584 g
Mass of RightScapula = 153.327 g
Construct LeftAdrenal with mother physicalTrunk
Checking overlaps for volume physicalLeftAdrenal (G4Ellipsoid) ... OK!
Left LeftAdrenal created !!!!!!
@@ -231,10 +231,10 @@ Mass of RightClavicle = 20.3099 g
Construct SmallIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalSmallIntestine (G4SubtractionSolid) ... OK!
SmallIntestine created !!!!!!
Volume of SmallIntestine = 1018.95 cm^3
Volume of SmallIntestine = 1019.77 cm^3
Material of SmallIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of SmallIntestine = 1005.6 g
Mass of SmallIntestine = 1006.41 g
Construct RibCage with mother volume physicalTrunk
Checking overlaps for volume physicalRibCage (G4SubtractionSolid) ... OK!
Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK!
@@ -250,10 +250,10 @@ Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK!
Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK!
Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK!
RibCage created !!!!!!
Volume of RibCage = 692.856 cm^3
Volume of RibCage = 693.651 cm^3
Material of RibCage = skeleton
Density of Material = 1.4862 g/cm^3
Mass of RibCage = 1029.72 g
Mass of RibCage = 1030.9 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct MiddleLowerSpine with mother volume physicalTrunk
@@ -266,10 +266,10 @@ Mass of MiddleLowerSpine = 1120.57 g
Construct Pelvis with mother volume physicalTrunk
Checking overlaps for volume physicalPelvis (G4SubtractionSolid) ... OK!
Pelvis created !!!!!!
Volume of Pelvis = 605.413 cm^3
Volume of Pelvis = 605.932 cm^3
Material of Pelvis = skeleton
Density of Material = 1.4862 g/cm^3
Mass of Pelvis = 899.764 g
Mass of Pelvis = 900.536 g
Construct Stomach with mother volume physicalTrunk
Checking overlaps for volume physicalStomach (G4Ellipsoid) ... OK!
Stomach created !!!!!!
@@ -280,17 +280,17 @@ Mass of Stomach = 396.856 g
Construct UpperLargeIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalUpperLargeIntestine (G4UnionSolid) ... OK!
UpperLargeIntestine created !!!!!!
Volume of UpperLargeIntestine = 434.434 cm^3
Volume of UpperLargeIntestine = 434.039 cm^3
Material of UpperLargeIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of UpperLargeIntestine = 428.743 g
Mass of UpperLargeIntestine = 428.353 g
Construct LowerLargeIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalLowerLargeIntestine (G4UnionSolid) ... OK!
LowerLargeIntestine created !!!!!!
Volume of LowerLargeIntestine = 344.701 cm^3
Volume of LowerLargeIntestine = 343.562 cm^3
Material of LowerLargeIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of LowerLargeIntestine = 340.186 g
Mass of LowerLargeIntestine = 339.062 g
Construct Spleen with mother volume physicalTrunk
Checking overlaps for volume physicalSpleen (G4Ellipsoid) ... OK!
Spleen created !!!!!!
@@ -301,40 +301,40 @@ Mass of Spleen = 173.625 g
Construct Pancreas with mother volume physicalTrunk
Checking overlaps for volume physicalPancreas (G4SubtractionSolid) ... OK!
Pancreas created !!!!!!
Volume of Pancreas = 60.9048 cm^3
Volume of Pancreas = 61.0776 cm^3
Material of Pancreas = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of Pancreas = 60.1069 g
Mass of Pancreas = 60.2775 g
Construct LeftKidney with mother volume physicalTrunk
Checking overlaps for volume physicalLeftKidney (G4SubtractionSolid) ... OK!
Left LeftKidney created !!!!!!
Volume of LeftKidney = 144.103 cm^3
Volume of LeftKidney = 144.133 cm^3
Material of LeftKidney = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of LeftKidney = 142.215 g
Mass of LeftKidney = 142.245 g
Construct RightKidney with mother volume physicalTrunk
Checking overlaps for volume physicalRightKidney (G4SubtractionSolid) ... OK!
RightKidney created !!!!!!
Volume of RightKidney = 144.185 cm^3
Volume of RightKidney = 144.273 cm^3
Material of RightKidney = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of RightKidney = 142.297 g
Mass of RightKidney = 142.383 g
Construct UrinaryBladder with mother volume physicalTrunk
Checking overlaps for volume physicalUrinaryBladder (G4SubtractionSolid) ... OK!
UrinaryBladder created !!!!!!
Volume of UrinaryBladder = 45.7174 cm^3
Volume of UrinaryBladder = 45.7625 cm^3
Material of UrinaryBladder = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of UrinaryBladder = 45.1185 g
Mass of UrinaryBladder = 45.163 g
MotherVolume: physicalWorld
sensitivity : 0
Construct MaleGenitalia with mother volume physicalWorld
Checking overlaps for volume physicalMaleGenitalia (G4SubtractionSolid) ... OK!
MaleGenitalia created !!!!!!
Volume of MaleGenitalia = 229.61 cm^3
Volume of MaleGenitalia = 229.44 cm^3
Material of MaleGenitalia = soft_tissue
Density of Material = 0.9869 g/cm^3
Mass of MaleGenitalia = 226.603 g
Mass of MaleGenitalia = 226.434 g
MotherVolume: physicalWorld
sensitivity : 0
Construct LeftTeste with mother volume physicalMaleGenitalia
@@ -810,31 +810,31 @@ See commands in /vis/modeling/trajectories/ for other options.
### Run 0 start.
Number of events = 100
Energy Total in Run:logicalBrain, ID: 0, Energy Deposition (MeV): 0
Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 4.69457
Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 4.39192
Energy Total in Run:logicalHeart, ID: 2, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftAdrenal, ID: 3, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftArmBone, ID: 4, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftBreast, ID: 5, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftClavicle, ID: 6, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftKidney, ID: 7, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 7.51151
Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 9.46308
Energy Total in Run:logicalLeftLegBone, ID: 9, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftLung, ID: 10, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftOvary, ID: 11, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftScapula, ID: 12, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftTeste, ID: 13, Energy Deposition (MeV): 0
Energy Total in Run:logicalLowerLargeIntestine, ID: 14, Energy Deposition (MeV): 0
Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 1.9476
Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 1.93927
Energy Total in Run:logicalMiddleLowerSpine, ID: 16, Energy Deposition (MeV): 0
Energy Total in Run:logicalPancreas, ID: 17, Energy Deposition (MeV): 0
Energy Total in Run:logicalPelvis, ID: 18, Energy Deposition (MeV): 0
Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0.0129018
Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightAdrenal, ID: 20, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightArmBone, ID: 21, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightBreast, ID: 22, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightClavicle, ID: 23, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightKidney, ID: 24, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 10.4601
Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 6.1743
Energy Total in Run:logicalRightLegBone, ID: 26, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightLung, ID: 27, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightOvary, ID: 28, Energy Deposition (MeV): 0
@@ -846,11 +846,11 @@ Energy Total in Run:logicalSpleen, ID: 33, Energy Deposition (MeV): 0
Energy Total in Run:logicalStomach, ID: 34, Energy Deposition (MeV): 0
Energy Total in Run:logicalThymus, ID: 35, Energy Deposition (MeV): 0
Energy Total in Run:logicalThyroid, ID: 36, Energy Deposition (MeV): 0
Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 25.6211
Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 29.7901
Energy Total in Run:logicalUpperLargeIntestine, ID: 38, Energy Deposition (MeV): 0
Energy Total in Run:logicalUpperSpine, ID: 39, Energy Deposition (MeV): 0
Energy Total in Run:logicalUrinaryBladder, ID: 40, Energy Deposition (MeV): 0
Energy Total in Run:logicalUterus, ID: 41, Energy Deposition (MeV): 0
Total Energy deposit in the body is: 50.2477 MeV
Total Energy deposit in the body is: 51.7587 MeV
Graphics systems deleted.
Visualization Manager deleting...
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -500,7 +500,7 @@ Run 0 starts ...
Run terminated.
Run Summary
Number of events processed : 2000
User=11.530000s Real=12.040426s Sys=0.170000s
User=10.890000s Real=11.425052s Sys=0.170000s
/score/dumpQuantityToFile boxMesh_1 dose dose.out
Graphics systems deleted.
Visualization Manager deleting...
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -1239,7 +1239,7 @@ Edep in FCAL1 FCAl2 : 19924.3 4.87868
Run terminated.
Run Summary
Number of events processed : 18
User=9.560000s Real=9.619343s Sys=0.010000s
User=8.940000s Real=9.013551s Sys=0.010000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -883,10 +883,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
User=18.340000s Real=18.473930s Sys=0.030000s
User=17.290000s Real=17.460144s Sys=0.030000s
PrimitiveScorer RUN PhantomSD,TotalDose
Number of entries 166
loop elapsed time [s] : 18.38
loop elapsed time [s] : 17.32
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
@@ -1110,10 +1110,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
User=18.240000s Real=18.316144s Sys=0.010000s
User=17.210000s Real=17.304531s Sys=0.000000s
PrimitiveScorer RUN PhantomSD,TotalDose
Number of entries 117
loop elapsed time [s] : 18.27
loop elapsed time [s] : 17.24
################ END NEW GEOMETRY ########################
/run/geometryModified
@@ -1407,10 +1407,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
User=18.230000s Real=18.475172s Sys=0.030000s
User=17.180000s Real=17.303020s Sys=0.020000s
PrimitiveScorer RUN PhantomSD,TotalDose
Number of entries 71
loop elapsed time [s] : 18.26
loop elapsed time [s] : 17.22
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
@@ -1634,13 +1634,13 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
User=18.230000s Real=18.302562s Sys=0.010000s
User=17.170000s Real=17.279028s Sys=0.020000s
PrimitiveScorer RUN PhantomSD,TotalDose
Number of entries 128
loop elapsed time [s] : 18.27
loop elapsed time [s] : 17.22
################ END NEW GEOMETRY ########################
loop elapsed time [s] : 77.08
loop elapsed time [s] : 72.9
G4 kernel has come to Quit state.
UserDetectorConstruction deleted.
+2 -2
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -758,7 +758,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
See commands in /vis/modeling/trajectories/ for other options.
##### Create analysis manager 0x2a13060
##### Create analysis manager 0x25934c0
Using Root analysis manager
All Ntuples have been created
-> Event # 1 generated
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -192,13 +192,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
See commands in /vis/modeling/trajectories/ for other options.
### Run 0 starts.
##### Create analysis manager 0x12ffdd0
##### Create analysis manager 0x1146e40
Using Root analysis manager
... open Root analysis file : microelectronics.root - done
Run terminated.
Run Summary
Number of events processed : 10
User=0.010000s Real=0.006974s Sys=0.000000s
User=0.010000s Real=0.011922s Sys=0.000000s
... write Root file : microelectronics.root - done
... close Root file : microelectronics.root - done
Number and type of particles created outside region "Target" :
+2 -2
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -208,7 +208,7 @@ Index : 0 used in the geometry : Yes
====================================================================
##### Create analysis manager 0x1c71770
##### Create analysis manager 0x1a527c0
Using Root analysis manager
Ntuple-1 created
Ntuple-2 created
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -325,9 +325,3 @@ Total number of event = 5000
----------------------------------------
Graphics systems deleted.
Visualization Manager deleting...
G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0
G4ChordFinder statistics report:
No trials: 0 No Calls: 0 Max-trial: 0
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
G4ChordFinder statistics report:
No trials: 15000 No Calls: 15000 Max-trial: 1
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -2908,7 +2908,7 @@ Created histos
Run terminated.
Run Summary
Number of events processed : 10
User=0.700000s Real=0.724247s Sys=0.000000s
User=0.680000s Real=0.678925s Sys=0.000000s
Going to save histograms
... write Root file : xrayfluo.root - done
... close Root file : xrayfluo.root - done
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -379,7 +379,7 @@ Opening output file xraytel ... done
Run terminated.
Run Summary
Number of events processed : 1000
User=0.010000s Real=0.010981s Sys=0.000000s
User=0.020000s Real=0.011633s Sys=0.000000s
##########################################
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
Graphics systems deleted.
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB1 run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
/control/verbose 2
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,6 +3,6 @@
# To be run preferably in batch, without graphics:
# % exampleB2[a,b] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
/run/beamOn 500
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,6 +3,6 @@
# To be run preferably in batch, without graphics:
# % exampleB2[a,b] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
/run/beamOn 500
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,6 +3,6 @@
# To be run preferably in batch, without graphics:
# % exampleB2[a,b] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
/run/beamOn 500
+3 -3
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -238,8 +238,8 @@ See commands in /vis/modeling/trajectories/ for other options.
--> Event 9000 starts.
--------------------End of Global Run-----------------------
The run was 10000 events Nb of 'good' e+ annihilations: 1345
Total dose in patient : 292.044 picoGy
The run was 10000 events Nb of 'good' e+ annihilations: 1267
Total dose in patient : 310.719 picoGy
------------------------------------------------------------
... write Root file : scoring.root - done
+1 -1
View File
@@ -2,7 +2,7 @@
# Macro file of "exampleB3.cc"
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB3 run3.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
/control/verbose 2
+4 -4
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -240,9 +240,9 @@ See commands in /vis/modeling/trajectories/ for other options.
--> Event 9000 starts.
--------------------End of Global Run-----------------------
The run was 10000 events Nb of 'good' e+ annihilations: 1345
Total dose in patient : 292.044 picoGy
Total dose in patient : 2.92044e-10 [sigma: 1.76605e-14 | error: 0.0060472 | coeff: 0.0060472 | eff: 1 | fom: 27345.9 | r2int: 3.65649e-05 | r2eff: 0 | hits: 10000 ] Gy
The run was 10000 events Nb of 'good' e+ annihilations: 1267
Total dose in patient : 310.719 picoGy
Total dose in patient : 3.10719e-10 [sigma: 1.77059e-14 | error: 0.00569837 | coeff: 0.00569837 | eff: 1 | fom: 30796.3 | r2int: 3.24682e-05 | r2eff: 0 | hits: 10000 ] Gy
------------------------------------------------------------
... write Root file : scoring.root - done
+1 -1
View File
@@ -2,7 +2,7 @@
# Macro file of "exampleB3.cc"
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB3 run3.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
/control/verbose 2
+1 -1
View File
@@ -2,7 +2,7 @@
# Macro file of "exampleB3.cc"
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB3 run3.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
/control/verbose 2
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB4[a,b,c,d] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# Default kinemtics:
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB4[a,b,c,d] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# Default kinemtics:
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB4[a,b,c,d] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# Default kinemtics:
+2 -2
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -1573,4 +1573,4 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
... close Root file : B4.root - done
Graphics systems deleted.
Visualization Manager deleting...
### deleting chargedFilter 0x23492f0
### deleting chargedFilter 0x2314700
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB4[a,b,c,d] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# Default kinemtics:
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB4[a,b,c,d] run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# Default kinemtics:
+139 -143
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -881,14 +881,12 @@ See commands in /vis/modeling/trajectories/ for other options.
>>> Event 0 >>> Simulation truth : proton (-0,0,100000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9870028523976 (nsec)
Hodoscope 2 has 4 hits.
Hodoscope 2 has 1 hits.
Hodoscope[9] 43.187937103889 (nsec)
Hodoscope[3] 343.7101812424 (nsec)
Hodoscope[1] 368.39433739278 (nsec)
Hodoscope[4] 1120.9757842255 (nsec)
Drift Chamber 1 has 5 hits.
Drift Chamber 1 has 6 hits.
Layer[0] : time 6.6712421465156 (nsec) --- local (x,y) 0.0068976087488375, -0.001060304538742
Layer[1] : time 8.3391360803921 (nsec) --- local (x,y) 0.013210911787839, -0.0046929086614397
Layer[1] : time 8.7426621675878 (nsec) --- local (x,y) 39.269046316658, -58.598496678638
Layer[2] : time 10.007030014525 (nsec) --- local (x,y) 0.017790490821106, -0.0035138351901322
Layer[3] : time 11.674923948876 (nsec) --- local (x,y) 0.023425005836559, -0.0011390087980778
Layer[4] : time 13.342817883344 (nsec) --- local (x,y) 0.028071293571896, 0.0008951461009665
@@ -898,36 +896,34 @@ Drift Chamber 2 has 5 hits.
Layer[2] : time 38.191927700839 (nsec) --- local (x,y) -206.40408252011, 0.060251975739992
Layer[3] : time 39.862722101185 (nsec) --- local (x,y) -235.90416191435, 0.069550578156142
Layer[4] : time 41.533516723828 (nsec) --- local (x,y) -265.4053723571, 0.077470538676864
EM Calorimeter has 60 hits. Total Edep is 1142.9733926755 (MeV)
Hadron Calorimeter has 15 hits. Total Edep is 4083.3063753168 (MeV)
EM Calorimeter has 62 hits. Total Edep is 849.88134124286 (MeV)
Hadron Calorimeter has 16 hits. Total Edep is 4438.7285397424 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 1 starts.
... open Root analysis file : B5.root - done
--> 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[7] 4.9867880840202 (nsec)
Hodoscope 2 has 4 hits.
Hodoscope[10] 42.694428440293 (nsec)
Hodoscope[24] 67.92729448977 (nsec)
Hodoscope[2] 139.28267569892 (nsec)
Hodoscope[22] 619.96790178774 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6709548426897 (nsec) --- local (x,y) 0.0050624195828011, -0.0013651812734906
Layer[1] : time 8.338776944908 (nsec) --- local (x,y) 0.016563120978568, 0.0030877934273825
Layer[2] : time 10.006599047368 (nsec) --- local (x,y) 0.030183744194107, -0.0029643249344607
Layer[3] : time 11.674421149739 (nsec) --- local (x,y) 0.042961654818907, -0.0086708468616026
Layer[4] : time 13.342243251965 (nsec) --- local (x,y) 0.05424873712076, -0.013603504093659
Hodoscope[7] 4.9867880839421 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[10] 42.693676204473 (nsec)
Drift Chamber 1 has 6 hits.
Layer[0] : time 6.6709548424639 (nsec) --- local (x,y) -0.0094441611726117, -0.0029650084706917
Layer[0] : time 7.2235069406174 (nsec) --- local (x,y) 270.23484737043, 83.527841028913
Layer[1] : time 8.3387769444375 (nsec) --- local (x,y) -0.016717272669641, -0.0063009630761916
Layer[2] : time 10.006599046517 (nsec) --- local (x,y) -0.022879503058124, -0.014004296686359
Layer[3] : time 11.674421148632 (nsec) --- local (x,y) -0.030201956169539, -0.021334721492455
Layer[4] : time 13.342243250899 (nsec) --- local (x,y) -0.040034526298235, -0.02869421396906
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.367095178277 (nsec) --- local (x,y) -82.683943098722, 0.00012054166571091
Layer[1] : time 36.035832114765 (nsec) --- local (x,y) -99.247018175101, 0.0066316972645882
Layer[2] : time 37.704569049497 (nsec) --- local (x,y) -115.81007668286, 0.014592347162893
Layer[3] : time 39.373306555657 (nsec) --- local (x,y) -132.37830429164, 0.028935540094715
Layer[4] : time 41.042044215455 (nsec) --- local (x,y) -148.9479239014, 0.041675733386845
EM Calorimeter has 61 hits. Total Edep is 41988.174968205 (MeV)
Hadron Calorimeter has 17 hits. Total Edep is 1471.403814052 (MeV)
Layer[0] : time 34.366366766644 (nsec) --- local (x,y) -82.762434084779, -0.065567595931391
Layer[1] : time 36.035099660419 (nsec) --- local (x,y) -99.28886223977, -0.068016524108466
Layer[2] : time 37.703832110356 (nsec) --- local (x,y) -115.81126221135, -0.068734901742467
Layer[3] : time 39.372564572467 (nsec) --- local (x,y) -132.33377236231, -0.071891173688295
Layer[4] : time 41.041297040105 (nsec) --- local (x,y) -148.85633269663, -0.074732172828571
EM Calorimeter has 54 hits. Total Edep is 700.14187810992 (MeV)
Hadron Calorimeter has 16 hits. Total Edep is 4254.7962495077 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 2 starts.
@@ -936,51 +932,53 @@ Hadron Calorimeter has 17 hits. Total Edep is 1471.403814052 (MeV)
>>> Event 0 >>> Simulation truth : e+ (0,0,100000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9867832233049 (nsec)
Hodoscope 2 has 3 hits.
Hodoscope[9] 43.186234924535 (nsec)
Hodoscope[18] 470.96922977071 (nsec)
Hodoscope[4] 56.996125944717 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6709483413676 (nsec) --- local (x,y) 0.010396291919288, -0.017817142746325
Layer[1] : time 8.3387688191634 (nsec) --- local (x,y) 0.028569605374595, -0.032319445232034
Layer[2] : time 10.006589297374 (nsec) --- local (x,y) 0.047453578729187, -0.049870690683874
Layer[3] : time 11.674409775557 (nsec) --- local (x,y) 0.066711499964905, -0.066773377182047
Layer[4] : time 13.342230253482 (nsec) --- local (x,y) 0.085914878472482, -0.081293057338205
Hodoscope[7] 4.9867832233951 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[9] 43.185256193668 (nsec)
Drift Chamber 1 has 10 hits.
Layer[0] : time 6.6709483454228 (nsec) --- local (x,y) -0.043045803505444, -0.022650485616768
Layer[0] : time 6.7234012810142 (nsec) --- local (x,y) 124.80253298953, 11.588245621717
Layer[1] : time 8.3387688268713 (nsec) --- local (x,y) -0.075628069356991, -0.046617439876332
Layer[1] : time 8.4365354696137 (nsec) --- local (x,y) 238.44293271577, 37.412653652984
Layer[2] : time 10.006589308129 (nsec) --- local (x,y) -0.10722002711301, -0.070703933325171
Layer[2] : time 10.166377709854 (nsec) --- local (x,y) 371.77039481644, 67.849021827537
Layer[3] : time 11.674409789748 (nsec) --- local (x,y) -0.13938010487078, -0.096254123303717
Layer[3] : time 11.903382553481 (nsec) --- local (x,y) 515.47869517554, 83.354691279305
Layer[4] : time 13.342230270963 (nsec) --- local (x,y) -0.17202707683003, -0.11857834331394
Layer[4] : time 13.629140131894 (nsec) --- local (x,y) 645.49664678892, 107.04046108387
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.848992760374 (nsec) --- local (x,y) -147.37213411919, -0.29505532909232
Layer[1] : time 36.519716147209 (nsec) --- local (x,y) -176.88531030006, -0.31914447701038
Layer[2] : time 38.190439529152 (nsec) --- local (x,y) -206.39846258023, -0.34193852804264
Layer[3] : time 39.861162414804 (nsec) --- local (x,y) -235.90909147326, -0.36239207437169
Layer[4] : time 41.531885328261 (nsec) --- local (x,y) -265.41986206356, -0.38253157408852
EM Calorimeter has 42 hits. Total Edep is 91129.81901073 (MeV)
Hadron Calorimeter has 5 hits. Total Edep is 37.245445341629 (MeV)
Layer[0] : time 34.84795567911 (nsec) --- local (x,y) -148.22329538041, -0.28245009598817
Layer[1] : time 36.518690340455 (nsec) --- local (x,y) -177.79378742679, -0.2899215773712
Layer[2] : time 38.189425384477 (nsec) --- local (x,y) -207.36622237556, -0.29833148454904
Layer[3] : time 39.860160504233 (nsec) --- local (x,y) -236.93904166691, -0.30745471037711
Layer[4] : time 41.530895225769 (nsec) --- local (x,y) -266.50983892796, -0.31454998374691
EM Calorimeter has 42 hits. Total Edep is 89463.571399374 (MeV)
Hadron Calorimeter has 6 hits. Total Edep is 50.997136572829 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 3 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
>>> Event 0 >>> Simulation truth : proton (0,0,10000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 5.0086963524923 (nsec)
Hodoscope 2 has 2 hits.
Hodoscope[9] 43.376426180616 (nsec)
Hodoscope[19] 371.12339969207 (nsec)
Hodoscope[7] 5.0086958668975 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[9] 43.377407873731 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.7002663344515 (nsec) --- local (x,y) 0.064729686670757, -0.31481797901308
Layer[1] : time 8.3754200204965 (nsec) --- local (x,y) 0.023760757816926, -0.5056582595733
Layer[2] : time 10.050573840366 (nsec) --- local (x,y) 0.0018589374504675, -0.6933953865286
Layer[3] : time 11.725727813664 (nsec) --- local (x,y) 0.01035032366956, -0.85581692102207
Layer[4] : time 13.400881925624 (nsec) --- local (x,y) 0.044865590184516, -1.0115908167295
Layer[0] : time 6.7002643642573 (nsec) --- local (x,y) 0.14229560519521, -0.004869992857376
Layer[1] : time 8.37541657243 (nsec) --- local (x,y) 0.19791116219288, -0.070634248766558
Layer[2] : time 10.050568917717 (nsec) --- local (x,y) 0.26653281552991, -0.12648625341583
Layer[3] : time 11.725721383341 (nsec) --- local (x,y) 0.34545674268712, -0.17745068290342
Layer[4] : time 13.400873977763 (nsec) --- local (x,y) 0.39988693082324, -0.19992688856468
Drift Chamber 2 has 5 hits.
Layer[0] : time 35.0024194105 (nsec) --- local (x,y) -147.65594715699, -3.0055794234427
Layer[1] : time 36.680511206262 (nsec) --- local (x,y) -177.27183217352, -3.1588328223695
Layer[2] : time 38.358602185339 (nsec) --- local (x,y) -206.88303016038, -3.3046683943015
Layer[3] : time 40.036691916958 (nsec) --- local (x,y) -236.48727267461, -3.4573425561407
Layer[4] : time 41.714780631213 (nsec) --- local (x,y) -266.08564801388, -3.6090302851588
EM Calorimeter has 14 hits. Total Edep is 448.06855925564 (MeV)
Hadron Calorimeter has 1 hits. Total Edep is 41.666004719031 (MeV)
Layer[0] : time 35.003424744184 (nsec) --- local (x,y) -146.90656495926, -0.2158608698142
Layer[1] : time 36.681509789115 (nsec) --- local (x,y) -176.4957775974, -0.20006245767694
Layer[2] : time 38.35959595202 (nsec) --- local (x,y) -206.08997399963, -0.17861192862172
Layer[3] : time 40.037686975027 (nsec) --- local (x,y) -235.70807225657, -0.16268230493274
Layer[4] : time 41.715773070649 (nsec) --- local (x,y) -265.30065459, -0.15726093717557
EM Calorimeter has 33 hits. Total Edep is 355.16453389852 (MeV)
Hadron Calorimeter has 12 hits. Total Edep is 325.50875239358 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 4 starts.
@@ -989,74 +987,78 @@ Hadron Calorimeter has 1 hits. Total Edep is 41.666004719031 (MeV)
>>> Event 0 >>> Simulation truth : pi+ (-0,0,10000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9872692049642 (nsec)
Hodoscope[7] 4.9872691719261 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[10] 42.700365709336 (nsec)
Hodoscope[10] 42.696283399216 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6715985598714 (nsec) --- local (x,y) 0.00064788649120932, -0.13304524387673
Layer[1] : time 8.3395816688551 (nsec) --- local (x,y) 0.055083458120559, -0.19149787818302
Layer[2] : time 10.007564779453 (nsec) --- local (x,y) 0.093368254624109, -0.25948844340181
Layer[3] : time 11.675547882135 (nsec) --- local (x,y) 0.12246360058204, -0.30131591006524
Layer[4] : time 13.343531002261 (nsec) --- local (x,y) 0.15917538526494, -0.37284880161189
Layer[0] : time 6.6715985588073 (nsec) --- local (x,y) -0.090585312455802, -0.15548781422372
Layer[1] : time 8.3395817130626 (nsec) --- local (x,y) -0.13735172352394, -0.30927124663737
Layer[2] : time 10.007564891994 (nsec) --- local (x,y) -0.20714720096325, -0.47403732803784
Layer[3] : time 11.675548087031 (nsec) --- local (x,y) -0.26873977950367, -0.65303840094554
Layer[4] : time 13.343531300139 (nsec) --- local (x,y) -0.3207179038678, -0.84685633337518
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.372034544938 (nsec) --- local (x,y) -83.529992267384, -1.6503759810252
Layer[1] : time 36.040972835977 (nsec) --- local (x,y) -100.45313352833, -1.7151211300795
Layer[2] : time 37.709907488268 (nsec) --- local (x,y) -117.34388669324, -1.797345895128
Layer[3] : time 39.378842427724 (nsec) --- local (x,y) -134.23710337675, -1.888725456054
Layer[4] : time 41.047780721514 (nsec) --- local (x,y) -151.16002732897, -1.9821987803142
EM Calorimeter has 34 hits. Total Edep is 3321.8463883141 (MeV)
Hadron Calorimeter has 13 hits. Total Edep is 239.4475029565 (MeV)
Layer[0] : time 34.368087039548 (nsec) --- local (x,y) -83.768520812507, -3.7875306533918
Layer[1] : time 36.0369956943 (nsec) --- local (x,y) -100.42475412277, -4.0804712464521
Layer[2] : time 37.705905465405 (nsec) --- local (x,y) -117.0911704884, -4.3642681057927
Layer[3] : time 39.374815173688 (nsec) --- local (x,y) -133.75696463927, -4.6503086245232
Layer[4] : time 41.043726757415 (nsec) --- local (x,y) -150.43975185618, -4.92632823078
EM Calorimeter has 2 hits. Total Edep is 205.31969775532 (MeV)
Hadron Calorimeter has 14 hits. Total Edep is 484.49630305339 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 5 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
>>> Event 0 >>> Simulation truth : e+ (-0,0,10000)
>>> Event 0 >>> Simulation truth : e+ (0,0,10000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9867832642254 (nsec)
Hodoscope[7] 4.9867832321246 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[9] 43.184282969275 (nsec)
Hodoscope[2] 43.407125916824 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6709484064958 (nsec) --- local (x,y) -0.10900858016502, 0.17810071623362
Layer[1] : time 8.3387689019624 (nsec) --- local (x,y) -0.18427755969866, 0.17006737143187
Layer[2] : time 10.006589388175 (nsec) --- local (x,y) -0.23763622120349, 0.15646002925037
Layer[3] : time 11.674409871932 (nsec) --- local (x,y) -0.28481430783061, 0.16529304225753
Layer[4] : time 13.342230361939 (nsec) --- local (x,y) -0.34833788997753, 0.17202057515347
Layer[0] : time 6.6709484110987 (nsec) --- local (x,y) 0.16802966579064, -0.064360965148442
Layer[1] : time 8.33876896517 (nsec) --- local (x,y) 0.29613548011261, -0.14762969733241
Layer[2] : time 10.006589506284 (nsec) --- local (x,y) 0.42692642699756, -0.19476796040059
Layer[3] : time 11.674410040978 (nsec) --- local (x,y) 0.55701521180704, -0.22033761562644
Layer[4] : time 13.342230555565 (nsec) --- local (x,y) 0.66446355842517, -0.21883255546315
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.846884522008 (nsec) --- local (x,y) -149.37793803987, -0.2489095406814
Layer[1] : time 36.517637461127 (nsec) --- local (x,y) -179.04109939904, -0.2462396800002
Layer[2] : time 38.1883877776 (nsec) --- local (x,y) -208.6909731289, -0.26399997704399
Layer[3] : time 39.859137141301 (nsec) --- local (x,y) -238.33601877731, -0.28970184807521
Layer[4] : time 41.529895800016 (nsec) --- local (x,y) -268.02808670641, -0.33442485369796
EM Calorimeter has 21 hits. Total Edep is 9221.7115814879 (MeV)
Hadron Calorimeter has 2 hits. Total Edep is 5.7974838636336 (MeV)
Layer[0] : time 34.907230454539 (nsec) --- local (x,y) -515.91713715762, -0.52904261729124
Layer[1] : time 36.610551497563 (nsec) --- local (x,y) -619.6285490785, -0.64850700014902
Layer[2] : time 38.313886090332 (nsec) --- local (x,y) -723.35996455104, -0.76451843745849
Layer[3] : time 40.017214845778 (nsec) --- local (x,y) -827.08278418518, -0.86108812019949
Layer[4] : time 41.720522917161 (nsec) --- local (x,y) -930.77509052908, -0.93415110668079
EM Calorimeter has 7 hits. Total Edep is 7321.8806541565 (MeV)
Hadron Calorimeter has 1 hits. Total Edep is 0.86748128524393 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 6 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
>>> Event 0 >>> Simulation truth : proton (0,0,1000)
>>> Event 0 >>> Simulation truth : proton (-0,0,1000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 6.8392895352614 (nsec)
Hodoscope[7] 6.8393277189197 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[9] 59.438632379989 (nsec)
Drift Chamber 1 has 6 hits.
Layer[0] : time 9.1540190759168 (nsec) --- local (x,y) 1.4521662244452, 1.4661635419661
Layer[1] : time 11.446570882717 (nsec) --- local (x,y) 1.9395157879677, 2.8912283228286
Layer[2] : time 13.739312628117 (nsec) --- local (x,y) 2.755436329371, 4.0940589795297
Layer[2] : time 13.74152926664 (nsec) --- local (x,y) 3.7431959191646, 3.3747568982841
Layer[3] : time 16.032726630133 (nsec) --- local (x,y) 3.5825862215481, 5.5935007385707
Layer[4] : time 18.326370046535 (nsec) --- local (x,y) 4.8421342427482, 7.3811816612691
Drift Chamber 2 has 5 hits.
Layer[0] : time 47.954690859786 (nsec) --- local (x,y) -139.16119211787, 22.265536870324
Layer[1] : time 50.255440165709 (nsec) --- local (x,y) -170.12947682074, 23.337985163478
Layer[2] : time 52.556518822172 (nsec) --- local (x,y) -201.39453225937, 23.59122008521
Layer[3] : time 54.857905330804 (nsec) --- local (x,y) -232.85580453652, 23.937366065789
Layer[4] : time 57.159479905281 (nsec) --- local (x,y) -264.25848067808, 24.702460920679
EM Calorimeter has 14 hits. Total Edep is 67.75959989501 (MeV)
Hadron Calorimeter has 3 hits. Total Edep is 3.6304311642584 (MeV)
Hodoscope[9] 59.505894132229 (nsec)
Drift Chamber 1 has 9 hits.
Layer[0] : time 9.1546180880927 (nsec) --- local (x,y) 2.8086388020593, 2.4415468809092
Layer[0] : time 9.1546731337303 (nsec) --- local (x,y) 2.8086780568679, 2.441562306354
Layer[0] : time 9.1546731337303 (nsec) --- local (x,y) 2.8086780568679, 2.441562306354
Layer[0] : time 9.1550567546333 (nsec) --- local (x,y) 2.8147058019818, 2.4367229688312
Layer[0] : time 9.1554449691445 (nsec) --- local (x,y) 2.8213903689215, 2.4344115992154
Layer[1] : time 11.447684677538 (nsec) --- local (x,y) 4.4639320346292, 2.9326315917189
Layer[2] : time 13.740938810923 (nsec) --- local (x,y) 6.2244736129704, 3.0954588961514
Layer[3] : time 16.034394676086 (nsec) --- local (x,y) 8.2029629290516, 3.7211061584733
Layer[4] : time 18.328110801997 (nsec) --- local (x,y) 10.96637493929, 4.788966302369
Drift Chamber 2 has 6 hits.
Layer[0] : time 48.019288058303 (nsec) --- local (x,y) -111.23721903157, 23.896011360033
Layer[0] : time 48.062175058099 (nsec) --- local (x,y) -112.18346682518, 30.874102362475
Layer[1] : time 50.320684001242 (nsec) --- local (x,y) -141.43948357675, 26.090351416064
Layer[2] : time 52.622317180214 (nsec) --- local (x,y) -171.55608688252, 28.400582708493
Layer[3] : time 54.924172142131 (nsec) --- local (x,y) -201.67739809555, 31.004870734014
Layer[4] : time 57.226198743754 (nsec) --- local (x,y) -231.78450517846, 33.874064210685
EM Calorimeter has 12 hits. Total Edep is 134.49441404723 (MeV)
Hadron Calorimeter has 4 hits. Total Edep is 9.8949984949873 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 7 starts.
@@ -1065,23 +1067,23 @@ Hadron Calorimeter has 3 hits. Total Edep is 3.6304311642584 (MeV)
>>> Event 0 >>> Simulation truth : pi+ (0,0,1000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 5.0351743513804 (nsec)
Hodoscope[7] 5.0351589066995 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[10] 43.131260255663 (nsec)
Hodoscope[10] 43.113602983876 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.7357467599648 (nsec) --- local (x,y) 1.9534675720145, 1.1282107980231
Layer[1] : time 8.4198178896479 (nsec) --- local (x,y) 2.6157636716599, 1.8270189600363
Layer[2] : time 10.103893584129 (nsec) --- local (x,y) 3.3901702087705, 2.7305434999355
Layer[3] : time 11.787975018045 (nsec) --- local (x,y) 4.0584417900053, 4.0005657176277
Layer[4] : time 13.472066265956 (nsec) --- local (x,y) 4.4080440668488, 6.0142329280106
Layer[0] : time 6.7357183637513 (nsec) --- local (x,y) 0.12454939268685, -0.1266780822379
Layer[1] : time 8.4197772339928 (nsec) --- local (x,y) 0.061795021539463, -0.21965455987113
Layer[2] : time 10.103838977004 (nsec) --- local (x,y) -0.063130466701966, -0.59493968361598
Layer[3] : time 11.787904237484 (nsec) --- local (x,y) -0.1168508268976, -1.062189146105
Layer[4] : time 13.471972267309 (nsec) --- local (x,y) -0.062742681906861, -1.6396563954855
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.720281717233 (nsec) --- local (x,y) -90.564469325351, 37.633264047691
Layer[1] : time 36.405746253855 (nsec) --- local (x,y) -110.33698504281, 40.76735872828
Layer[2] : time 38.091218305749 (nsec) --- local (x,y) -130.15681814318, 43.828696269145
Layer[3] : time 39.776712818707 (nsec) --- local (x,y) -150.09515865005, 47.017463781587
Layer[4] : time 41.462222951448 (nsec) --- local (x,y) -170.11457828404, 50.273587528051
EM Calorimeter has 25 hits. Total Edep is 518.00908706211 (MeV)
Hadron Calorimeter has 8 hits. Total Edep is 10.500785909719 (MeV)
Layer[0] : time 34.704915183546 (nsec) --- local (x,y) -84.283120199521, -3.4711703204222
Layer[1] : time 36.389958006513 (nsec) --- local (x,y) -100.95352494784, -3.3344634598325
Layer[2] : time 38.075002616555 (nsec) --- local (x,y) -117.61614228795, -3.1503187293274
Layer[3] : time 39.76005292452 (nsec) --- local (x,y) -134.25436184841, -2.5983973941548
Layer[4] : time 41.445095464774 (nsec) --- local (x,y) -150.75763440828, -1.7709025644857
EM Calorimeter has 23 hits. Total Edep is 468.39308707035 (MeV)
Hadron Calorimeter has 4 hits. Total Edep is 3.7801407133733 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 8 starts.
@@ -1090,30 +1092,24 @@ Hadron Calorimeter has 8 hits. Total Edep is 10.500785909719 (MeV)
>>> Event 0 >>> Simulation truth : e+ (0,0,1000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9867842004183 (nsec)
Hodoscope[7] 4.9867835815532 (nsec)
Hodoscope 2 has 1 hits.
Hodoscope[9] 43.163748646989 (nsec)
Hodoscope[9] 43.179795122507 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6709510595715 (nsec) --- local (x,y) -1.065070118712, 0.020881174109227
Layer[1] : time 8.3387732745694 (nsec) --- local (x,y) -1.6672425633637, 0.41613548480397
Layer[2] : time 10.006595676078 (nsec) --- local (x,y) -2.2827149332653, 0.86055239029902
Layer[3] : time 11.674418692645 (nsec) --- local (x,y) -2.9017797256979, 1.4721811149782
Layer[4] : time 13.342244474303 (nsec) --- local (x,y) -3.8015049443331, 2.3347451373945
Layer[0] : time 6.6709488931514 (nsec) --- local (x,y) -0.29921747597948, 0.042376789567754
Layer[1] : time 8.338769634134 (nsec) --- local (x,y) -0.44636469641414, -0.15726147096907
Layer[2] : time 10.006590367365 (nsec) --- local (x,y) -0.64848185928713, -0.33719384936477
Layer[3] : time 11.674411037874 (nsec) --- local (x,y) -0.7870244327052, -0.52902484057313
Layer[4] : time 13.342231630038 (nsec) --- local (x,y) -0.95511454871227, -0.55881921749006
Drift Chamber 2 has 5 hits.
Layer[0] : time 34.82484502302 (nsec) --- local (x,y) -169.44055683775, 12.364922793975
Layer[1] : time 36.495907965344 (nsec) --- local (x,y) -200.62964575477, 12.848551772413
Layer[2] : time 38.166971224066 (nsec) --- local (x,y) -231.81899113387, 13.421401672131
Layer[3] : time 39.838027137573 (nsec) --- local (x,y) -262.97062390594, 14.108975415495
Layer[4] : time 41.509057557532 (nsec) --- local (x,y) -293.9967796649, 14.893613011051
EM Calorimeter has 5 hits. Total Edep is 944.76240996143 (MeV)
Layer[0] : time 34.841967946802 (nsec) --- local (x,y) -154.72818024603, 3.5695330256083
Layer[1] : time 36.512798313398 (nsec) --- local (x,y) -184.78001436588, 3.3802834643569
Layer[2] : time 38.183632274885 (nsec) --- local (x,y) -214.8485423434, 3.053207885002
Layer[3] : time 39.854477849344 (nsec) --- local (x,y) -244.9747663731, 2.6988672083713
Layer[4] : time 41.525312535792 (nsec) --- local (x,y) -275.04883116395, 2.7398464563369
EM Calorimeter has 13 hits. Total Edep is 977.76611994084 (MeV)
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
Graphics systems deleted.
Visualization Manager deleting...
G4Integration Driver Stats: #QuickAdvance 1779 - #AccurateAdvance 13 #good steps 13 #bad steps 0
G4ChordFinder statistics report:
No trials: 1772 No Calls: 1772 Max-trial: 1
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
G4ChordFinder statistics report:
No trials: 7989 No Calls: 4944 Max-trial: 5
+1 -1
View File
@@ -4,7 +4,7 @@
# or interactively: Idle> /control/execute run1.mac
#
# Change the default number of workers (in multi-threading mode)
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
#
# Initialize kernel
/run/initialize
+1 -1
View File
@@ -3,7 +3,7 @@
# To be run preferably in batch, without graphics:
# % exampleB5 run2.mac
#
#/run/numberOfWorkers 4
#/run/numberOfThreads 4
/run/initialize
#
# turn off randomization
+3
View File
@@ -15,6 +15,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
24/01/20, A. Zaborowska (exbasic-V10-05-01)
- Fix suggested in macros command /run/numberOfThreads
31/01/19, I.Hrivnacova (exbasic-V10-05-00)
- Merged GitHub PR #4: all Boolean operators now return G4bool.
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -838,13 +838,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY
R = 0.0290251
SHIFT = 4.97518e-14
VOV = 0.000170576
FOM = 4093.11
FOM = 3956.67
THE LARGEST SCORE = 1.07563e-11 and it happened at 858th event
Affected Mean = 5.02578e-12 and its ratio to original is 1.00114
Affected VAR = 2.12424e-23 and its ratio to original is 1.00055
Affected R = 0.0289855 and its ratio to original is 0.998634
Affected SHIFT = 4.5526e-14 and its ratio to original is 0.915062
Affected FOM = 4093.11 and its ratio to original is 1
Affected FOM = 3956.67 and its ratio to original is 1
MEAN distribution is not RANDOM
r follows 1/std::sqrt(N)
r is monotonically decrease
@@ -858,22 +858,22 @@ This result passes 5 / 8 Convergence Test.
G4ConvergenceTester Output History of DOSE_TALLY
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
1 62 6.53175e-12 2.03034e-23 4.50593e-12 0.086913 0.00844893 456.492 -1.33549e-12 0.746032 0.00540358 0.00203038
2 124 5.55112e-12 2.14558e-23 4.63204e-12 0.074634 0.00160675 619.055 -3.82306e-13 0.696 0.00349425 0.00203142
3 187 5.30738e-12 2.14919e-23 4.63594e-12 0.0637058 0.000927957 849.659 -1.83031e-13 0.659574 0.00274537 0.00129147
4 249 5.15024e-12 2.1194e-23 4.60369e-12 0.0565339 0.000744103 1078.91 -6.1484e-14 0.652 0.00213497 0.00104833
5 312 4.92129e-12 2.11952e-23 4.60382e-12 0.0528771 0.00058703 1233.3 1.18743e-13 0.623003 0.00193332 0.000853736
6 374 4.80695e-12 2.13467e-23 4.62025e-12 0.0496341 0.000466755 1399.72 2.18457e-13 0.610667 0.00170015 0.000756827
7 437 4.85114e-12 2.12678e-23 4.6117e-12 0.0454234 0.00039924 1671.25 1.71454e-13 0.614155 0.00143437 0.000624212
8 499 4.9838e-12 2.12165e-23 4.60614e-12 0.0413325 0.000351382 2018.45 6.05528e-14 0.626 0.00119489 0.000510069
9 562 4.95828e-12 2.11699e-23 4.60107e-12 0.0391087 0.000316496 2254.52 9.05158e-14 0.625222 0.00106471 0.000462066
10 624 4.90925e-12 2.11716e-23 4.60126e-12 0.0374906 0.000284661 2453.34 1.30639e-13 0.6208 0.00097732 0.000425973
11 687 4.91322e-12 2.10675e-23 4.58993e-12 0.035616 0.000265223 2718.38 1.32122e-13 0.625 0.000872093 0.000394565
12 749 4.98136e-12 2.1168e-23 4.60087e-12 0.0337257 0.000235966 3031.66 7.49022e-14 0.630667 0.000780832 0.000355074
13 812 5.032e-12 2.12732e-23 4.61229e-12 0.0321463 0.0002119 3336.87 3.01346e-14 0.633456 0.000711735 0.000320379
14 874 5.07195e-12 2.13238e-23 4.61777e-12 0.0307789 0.000191704 3639.95 -6.53368e-15 0.637714 0.000649258 0.000297
15 937 5.06502e-12 2.12895e-23 4.61406e-12 0.0297441 0.000179612 3897.63 5.77018e-15 0.637527 0.000606143 0.000277624
16 999 5.02005e-12 2.12307e-23 4.60768e-12 0.0290251 0.000170576 4093.11 4.97518e-14 0.636 0.000572327 0.00026929
1 62 6.53175e-12 2.03034e-23 4.50593e-12 0.086913 0.00844893 441.275 -1.33549e-12 0.746032 0.00540358 0.00203038
2 124 5.55112e-12 2.14558e-23 4.63204e-12 0.074634 0.00160675 598.419 -3.82306e-13 0.696 0.00349425 0.00203142
3 187 5.30738e-12 2.14919e-23 4.63594e-12 0.0637058 0.000927957 821.337 -1.83031e-13 0.659574 0.00274537 0.00129147
4 249 5.15024e-12 2.1194e-23 4.60369e-12 0.0565339 0.000744103 1042.94 -6.1484e-14 0.652 0.00213497 0.00104833
5 312 4.92129e-12 2.11952e-23 4.60382e-12 0.0528771 0.00058703 1192.19 1.18743e-13 0.623003 0.00193332 0.000853736
6 374 4.80695e-12 2.13467e-23 4.62025e-12 0.0496341 0.000466755 1353.07 2.18457e-13 0.610667 0.00170015 0.000756827
7 437 4.85114e-12 2.12678e-23 4.6117e-12 0.0454234 0.00039924 1615.54 1.71454e-13 0.614155 0.00143437 0.000624212
8 499 4.9838e-12 2.12165e-23 4.60614e-12 0.0413325 0.000351382 1951.17 6.05528e-14 0.626 0.00119489 0.000510069
9 562 4.95828e-12 2.11699e-23 4.60107e-12 0.0391087 0.000316496 2179.37 9.05158e-14 0.625222 0.00106471 0.000462066
10 624 4.90925e-12 2.11716e-23 4.60126e-12 0.0374906 0.000284661 2371.56 1.30639e-13 0.6208 0.00097732 0.000425973
11 687 4.91322e-12 2.10675e-23 4.58993e-12 0.035616 0.000265223 2627.77 1.32122e-13 0.625 0.000872093 0.000394565
12 749 4.98136e-12 2.1168e-23 4.60087e-12 0.0337257 0.000235966 2930.6 7.49022e-14 0.630667 0.000780832 0.000355074
13 812 5.032e-12 2.12732e-23 4.61229e-12 0.0321463 0.0002119 3225.65 3.01346e-14 0.633456 0.000711735 0.000320379
14 874 5.07195e-12 2.13238e-23 4.61777e-12 0.0307789 0.000191704 3518.62 -6.53368e-15 0.637714 0.000649258 0.000297
15 937 5.06502e-12 2.12895e-23 4.61406e-12 0.0297441 0.000179612 3767.71 5.77018e-15 0.637527 0.000606143 0.000277624
16 999 5.02005e-12 2.12307e-23 4.60768e-12 0.0290251 0.000170576 3956.67 4.97518e-14 0.636 0.000572327 0.00026929
--------------------End of Global Run-----------------------
The run consists of 1000 proton of 210 MeV
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
+1 -1
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -805,7 +805,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
Run terminated.
Run Summary
Number of events processed : 10
User=0.090000s Real=0.136506s Sys=0.010000s
User=0.090000s Real=0.098888s Sys=0.010000s
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
This region is in the mass world.
@@ -865,7 +865,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
Run terminated.
Run Summary
Number of events processed : 10
User=0.150000s Real=0.155563s Sys=0.000000s
User=0.160000s Real=0.157271s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -1012,7 +1012,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
User=0.000000s Real=0.002122s Sys=0.000000s
User=0.000000s Real=0.002383s Sys=0.000000s
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
This region is in the mass world.
@@ -1934,7 +1934,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
User=0.000000s Real=0.004084s Sys=0.000000s
User=0.000000s Real=0.004956s Sys=0.000000s
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
This region is in the mass world.
@@ -4102,7 +4102,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
User=0.010000s Real=0.011872s Sys=0.000000s
User=0.010000s Real=0.010366s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -322,7 +322,7 @@ nb event 175000
Run terminated.
Run Summary
Run Aborted after 178102 events processed.
User=77.260000s Real=77.950652s Sys=0.130000s
User=78.510000s Real=80.035046s Sys=0.100000s
Results of reverse/adjoint simulation!
normalised edep [MeV] = 0.00163833
error[MeV] = 1.63831e-05
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -301,7 +301,8 @@ Enable angular generator interface 1
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 1 GeV
Max kinetic energy for NIEL computation 1 MeV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -369,7 +370,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
User=0.000000s Real=0.000490s Sys=0.000000s
User=0.000000s Real=0.000550s Sys=0.000000s
========= Table of registered couples ==============================
@@ -424,7 +425,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
User=0.000000s Real=0.000173s Sys=0.000000s
User=0.000000s Real=0.000169s Sys=0.000000s
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 9 of which, static: 0
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -332,7 +332,8 @@ Enable angular generator interface 0
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 1 GeV
Max kinetic energy for NIEL computation 0 eV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -363,6 +364,9 @@ Screening factor 1
/run/initialize
The Box is 10 m of Aluminium
G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11.
Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process.
If you want the general process, with optional biasing, use G4Radioactivation.
GetProcess : RadioactiveDecay
##/globalField/setValue 0 0 5 tesla
@@ -421,7 +425,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 2000
User=1.360000s Real=1.364241s Sys=0.000000s
User=1.450000s Real=1.449853s Sys=0.000000s
======================== run summary ======================
@@ -490,7 +494,7 @@ N=17 V[N]={2090744789413038816, 475879386275182165, 924531448196777844, 92377436
Run terminated.
Run Summary
Number of events processed : 2000
User=0.080000s Real=0.080563s Sys=0.000000s
User=0.080000s Real=0.085569s Sys=0.000000s
======================== run summary ======================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -560,7 +560,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=0.250000s Real=0.252695s Sys=0.000000s
User=0.270000s Real=0.273413s Sys=0.000000s
================== run summary =====================
End of Run TotNbofEvents = 1000
Mean energy deposit in absorber = 0.0480988 +-0.0184346 MeV
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -35,6 +35,9 @@ userDetector->Construct() start.
World is registered to the default region.
physicsList->Construct() start.
G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11.
Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process.
If you want the general process, with optional biasing, use G4Radioactivation.
physicsList->CheckParticleList() start.
physicsList->setCut() start.
#
@@ -471,7 +474,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 20000
User=1.300000s Real=1.292872s Sys=0.000000s
User=1.330000s Real=1.340874s Sys=0.010000s
======================== run summary =====================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -141,7 +141,8 @@ Enable angular generator interface 0
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 1 GeV
Max kinetic energy for NIEL computation 0 eV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -179,7 +180,7 @@ Screening factor 1
Run terminated.
Run Summary
Number of events processed : 10000
User=0.860000s Real=0.866216s Sys=0.000000s
User=0.920000s Real=0.921520s Sys=0.000000s
======================== run summary =====================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -52,7 +52,8 @@ Enable angular generator interface 0
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 1 GeV
Max kinetic energy for NIEL computation 0 eV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -170,7 +171,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000000
User=2.230000s Real=2.238507s Sys=0.000000s
User=2.250000s Real=2.275494s Sys=0.000000s
======================== run summary ======================
@@ -237,7 +238,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000000
User=2.400000s Real=2.408276s Sys=0.000000s
User=3.350000s Real=3.420549s Sys=0.000000s
======================== run summary ======================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -52,7 +52,8 @@ Enable angular generator interface 0
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 1 GeV
Max kinetic energy for NIEL computation 0 eV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -170,7 +171,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000000
User=3.380000s Real=3.392458s Sys=0.000000s
User=3.490000s Real=3.547021s Sys=0.000000s
======================== run summary ======================
@@ -240,7 +241,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000000
User=3.300000s Real=3.299101s Sys=0.000000s
User=3.300000s Real=3.315051s Sys=0.000000s
======================== run summary ======================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -490,7 +490,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
User=0.040000s Real=0.037616s Sys=0.000000s
User=0.030000s Real=0.045402s Sys=0.000000s
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
@@ -562,7 +562,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
User=0.050000s Real=0.055099s Sys=0.000000s
User=0.050000s Real=0.055686s Sys=0.000000s
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -270,7 +270,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
Run terminated.
Run Summary
Number of events processed : 100
User=0.200000s Real=0.192070s Sys=0.000000s
User=0.190000s Real=0.201053s Sys=0.000000s
Summary for synchrotron radiation :
Number of photons = 65086
Emean = 20.39 +/- 0.1444 keV
@@ -284,12 +284,6 @@ 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
---------------------------------------
G4 kernel has come to Quit state.
G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0
G4ChordFinder statistics report:
No trials: 0 No Calls: 0 Max-trial: 0
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
G4ChordFinder statistics report:
No trials: 95705 No Calls: 81639 Max-trial: 2
================== Deleting memory pools ===================
Number of memory pools allocated: 9 of which, static: 0
Dynamic pools deleted: 9 / Total memory freed: 0.35 MB
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -189,7 +189,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
User=1.600000s Real=1.605165s Sys=0.000000s
User=1.950000s Real=2.001719s Sys=0.000000s
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
@@ -246,7 +246,7 @@ N=17 V[N]={286475725969272019, 102930219447347412, 811054343764696615, 164523614
Run terminated.
Run Summary
Number of events processed : 10000
User=1.490000s Real=1.492561s Sys=0.000000s
User=1.470000s Real=1.497953s Sys=0.000000s
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
@@ -302,7 +302,7 @@ N=17 V[N]={1938593007681043377, 1555514513714236691, 194451399239091519, 1240852
Run terminated.
Run Summary
Number of events processed : 10000
User=1.410000s Real=1.422179s Sys=0.000000s
User=1.510000s Real=1.864670s Sys=0.000000s
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -53,7 +53,8 @@ Enable angular generator interface 0
Factor of cut reduction for sub-cutoff method 1
Max kinetic energy for CSDA tables 10 TeV
Max kinetic energy for NIEL computation 0 eV
Linear loss limit 0.01
Linear loss limit 0.01
Read data from file for e+e- pair production by mu 0
=======================================================================
====== Multiple Scattering Parameters ========
=======================================================================
@@ -160,7 +161,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100000
User=0.540000s Real=0.551257s Sys=0.000000s
User=0.580000s Real=0.608585s Sys=0.000000s
======================== run summary ======================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -539,7 +539,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 100
User=2.650000s Real=2.651831s Sys=0.000000s
User=2.850000s Real=2.877386s Sys=0.000000s
===== SUMMARY =====
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -508,7 +508,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100
User=1.620000s Real=1.626427s Sys=0.010000s
User=1.940000s Real=1.942158s Sys=0.000000s
------------------------------------------------------------
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
@@ -958,7 +958,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
User=1.360000s Real=1.354242s Sys=0.000000s
User=1.600000s Real=1.618314s Sys=0.000000s
------------------------------------------------------------
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -141,7 +141,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100000
User=0.690000s Real=0.696760s Sys=0.000000s
User=0.700000s Real=0.773257s Sys=0.000000s
--------- Ranecu engine status ---------
Initial seed (index) = 0
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -438,7 +438,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 100000
User=0.880000s Real=0.893367s Sys=0.000000s
User=1.370000s Real=1.377399s Sys=0.000000s
======================== run summary ======================
@@ -863,7 +863,7 @@ N=17 V[N]={487039142106637111, 268522011348262973, 30963757192920968, 2982170328
Run terminated.
Run Summary
Number of events processed : 50000
User=0.900000s Real=0.909986s Sys=0.000000s
User=0.920000s Real=0.922438s Sys=0.000000s
======================== run summary ======================
@@ -1293,7 +1293,7 @@ N=17 V[N]={757573894848696274, 400073108137045350, 2132458077966397313, 96621969
Run terminated.
Run Summary
Number of events processed : 50000
User=2.030000s Real=2.038365s Sys=0.000000s
User=2.520000s Real=2.530312s Sys=0.000000s
======================== run summary ======================
@@ -1729,7 +1729,7 @@ N=17 V[N]={2039908199796061254, 212154955260722024, 982286759211187269, 13649097
Run terminated.
Run Summary
Number of events processed : 50000
User=0.460000s Real=0.461907s Sys=0.000000s
User=0.700000s Real=0.699972s Sys=0.000000s
======================== run summary ======================
@@ -2166,7 +2166,7 @@ N=17 V[N]={981072211861672983, 1468495847380516116, 656071057052950235, 18853076
Run terminated.
Run Summary
Number of events processed : 50000
User=7.810000s Real=7.832620s Sys=0.000000s
User=7.940000s Real=8.012233s Sys=0.000000s
======================== run summary ======================
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -194,7 +194,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 5
User=0.000000s Real=0.000841s Sys=0.000000s
User=0.000000s Real=0.000819s Sys=0.000000s
Number of process calls ---> GammaToMuPair : 5... write Root file : testem6_0.root - done
... close Root file : testem6_0.root - done
@@ -300,7 +300,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 5
User=0.000000s Real=0.000545s Sys=0.000000s
User=0.000000s Real=0.000440s Sys=0.000000s
Number of process calls ---> ee2hadr : 5 AnnihiToMuPair : 1... write Root file : testem6_1.root - done
... close Root file : testem6_1.root - done
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -508,7 +508,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
User=5.600000s Real=5.755756s Sys=0.010000s
User=5.370000s Real=5.420645s Sys=0.000000s
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -566,7 +566,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=2.260000s Real=2.293785s Sys=0.000000s
User=2.210000s Real=2.217359s Sys=0.000000s
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -966,7 +966,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=1.080000s Real=1.112988s Sys=0.000000s
User=1.080000s Real=1.101871s Sys=0.000000s
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
@@ -1360,7 +1360,7 @@ Index : 3 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
User=0.000000s Real=0.000499s Sys=0.000000s
User=0.000000s Real=0.000438s Sys=0.000000s
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 kg/m3 )
@@ -1752,7 +1752,7 @@ Index : 3 used in the geometry : No
Run terminated.
Run Summary
Number of events processed : 100
User=0.010000s Real=0.010423s Sys=0.000000s
User=0.010000s Real=0.010026s Sys=0.000000s
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -2153,7 +2153,7 @@ Index : 4 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
User=3.900000s Real=3.940393s Sys=0.030000s
User=3.840000s Real=3.901085s Sys=0.050000s
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
@@ -2560,7 +2560,7 @@ Index : 5 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=0.520000s Real=0.530249s Sys=0.000000s
User=0.510000s Real=0.515612s Sys=0.000000s
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-06-ref-00 (6-December-2019)
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -546,7 +546,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
User=0.060000s Real=0.067362s Sys=0.000000s
User=0.070000s Real=0.068029s Sys=0.000000s
RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0161372
====================================================
Beam Particle: proton

Some files were not shown because too many files have changed in this diff Show More