Import Geant4 10.6.2 source tree
This commit is contained in:
@@ -6,32 +6,18 @@ project(${name})
|
||||
|
||||
find_package(Geant4 REQUIRED gdml)
|
||||
|
||||
# if CEXMC_USE_TCSH is 'yes' then tcsh session support will be built
|
||||
option(CEXMC_USE_TCSH
|
||||
"Build ${name} with tcsh session support
|
||||
(requires Geant4 tcsh support)" ON)
|
||||
if(CEXMC_USE_TCSH)
|
||||
find_package(Geant4 COMPONENTS ui_tcsh)
|
||||
if(NOT Geant4_ui_tcsh_FOUND)
|
||||
message(WARNING
|
||||
"Could not find Geant4 tcsh binding, skip tcsh session support")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# if CEXMC_USE_GUI is 'yes' then GUI session support will be built
|
||||
option(CEXMC_USE_GUI
|
||||
"Build ${name} with GUI session support
|
||||
(requires Geant4 Qt backend)" ON)
|
||||
if(CEXMC_USE_GUI)
|
||||
find_package(Geant4 COMPONENTS qt)
|
||||
if(NOT Geant4_qt_FOUND)
|
||||
message(WARNING
|
||||
"Could not find Geant4 Qt backend, skip GUI session support")
|
||||
endif()
|
||||
option(WITH_GEANT4_UIVIS "Build example with Geant4 UI and Vis drivers" ON)
|
||||
if(WITH_GEANT4_UIVIS)
|
||||
find_package(Geant4 REQUIRED ui_all vis_all)
|
||||
else()
|
||||
find_package(Geant4 REQUIRED)
|
||||
endif()
|
||||
|
||||
include(${Geant4_USE_FILE})
|
||||
|
||||
# Setup of ROOT ANALYSIS : optional.
|
||||
find_package(ROOT QUIET)
|
||||
cmake_dependent_option(CEXMC_USE_HISTOGRAMING "Build example with analysis objects" ON "ROOT_FOUND" OFF)
|
||||
|
||||
set(EXTRA_LIBRARIES )
|
||||
|
||||
@@ -40,20 +26,12 @@ set(EXTRA_LIBRARIES )
|
||||
option(CEXMC_USE_PERSISTENCY
|
||||
"Build ${name} with data persistency support
|
||||
(requires Boost Serialization library)" OFF)
|
||||
|
||||
if(CEXMC_USE_PERSISTENCY)
|
||||
find_package(Boost COMPONENTS serialization)
|
||||
if(Boost_SERIALIZATION_FOUND)
|
||||
add_definitions(-DCEXMC_USE_PERSISTENCY)
|
||||
include_directories(${Boost_INCLUDE_DIRS})
|
||||
link_directories(${Boost_LIBRARY_DIRS})
|
||||
list(APPEND EXTRA_LIBRARIES ${Boost_LIBRARIES})
|
||||
message(STATUS
|
||||
"Library ${Boost_LIBRARIES} was added to the linkage list")
|
||||
else()
|
||||
message(WARNING
|
||||
"Could not find Boost Serialization library, "
|
||||
"skip data persistency support")
|
||||
endif()
|
||||
find_package(Boost REQUIRED serialization)
|
||||
add_definitions(-DCEXMC_USE_PERSISTENCY)
|
||||
list(APPEND EXTRA_LIBRARIES Boost::serialization)
|
||||
message(STATUS "Library Boost::serialization was added to the linkage list")
|
||||
endif()
|
||||
|
||||
# if CEXMC_USE_CUSTOM_FILTER is 'yes' then Custom filter can be used for
|
||||
@@ -101,75 +79,19 @@ option(CEXMC_DEBUG_TP
|
||||
if(CEXMC_DEBUG_TP)
|
||||
add_definitions(-DCEXMC_DEBUG_TP)
|
||||
endif()
|
||||
|
||||
# if CEXMC_USE_HISTOGRAMING is 'yes' then ROOT histograming framework will be
|
||||
# compiled. Notice: if ROOT CERN is not installed in your system then the
|
||||
# histograming module won't compile anyway
|
||||
option(CEXMC_USE_HISTOGRAMING
|
||||
"Build ${name} with histograming support
|
||||
(requires CERN ROOT libraries)" ON)
|
||||
|
||||
if(CEXMC_USE_HISTOGRAMING)
|
||||
find_package(ROOT QUIET)
|
||||
if(ROOT_FOUND)
|
||||
add_definitions(-DCEXMC_USE_ROOT)
|
||||
include_directories(${ROOT_INCLUDE_DIRS})
|
||||
list(APPEND EXTRA_LIBRARIES ${ROOT_LIBRARIES})
|
||||
message(STATUS
|
||||
"Libraries ${ROOT_LIBRARIES} were added to the linkage list")
|
||||
else()
|
||||
message(WARNING
|
||||
"Could not find ROOT package, skip histograming support")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# if CEXMC_USE_ROOTQT is 'yes' then it will be possible to see ROOT histograms
|
||||
# in GUI session mode
|
||||
cmake_dependent_option(CEXMC_USE_ROOTQT
|
||||
"Build ${name} with GUI histograming support
|
||||
(requires CERN ROOT Qt binding)" ON
|
||||
"CEXMC_USE_HISTOGRAMING" OFF)
|
||||
if(CEXMC_USE_ROOTQT AND ROOT_FOUND)
|
||||
find_library(ROOTQT_LIBRARY GQt
|
||||
PATHS ${ROOT_LIBRARY_DIR} ${ROOT_LIBRARY_DIR}/root
|
||||
NO_DEFAULT_PATH)
|
||||
if(ROOTQT_LIBRARY)
|
||||
add_definitions(-DCEXMC_USE_ROOTQT)
|
||||
list(APPEND EXTRA_LIBRARIES ${ROOTQT_LIBRARY})
|
||||
message(STATUS "ROOT Qt library was added to the linkage list")
|
||||
else()
|
||||
message(WARNING
|
||||
"Could not find ROOT Qt library, skip GUI histograming support")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# if CEXMC_USE_GENBOD is 'yes' then original FORTRAN routine GENBOD() will be
|
||||
# used as phase space generator
|
||||
option(CEXMC_USE_GENBOD
|
||||
"Link ${name} with original FORTRAN function GENBOD()
|
||||
(by default C++ reimplementation of GENBOD() is used)" OFF)
|
||||
if(CEXMC_USE_GENBOD)
|
||||
find_program(CERNLIB_CONFIG_EXE cernlib
|
||||
PATHS $ENV{CERN_ROOT}/bin)
|
||||
if(CERNLIB_CONFIG_EXE)
|
||||
execute_process(
|
||||
COMMAND ${CERNLIB_CONFIG_EXE} geant321 phtools packlib kernlib
|
||||
OUTPUT_VARIABLE CERNLIB_LIBRARIES
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
add_definitions(-DCEXMC_USE_GENBOD)
|
||||
list(APPEND EXTRA_LIBRARIES ${CERNLIB_LIBRARIES})
|
||||
message(STATUS
|
||||
"Libraries ${CERNLIB_LIBRARIES} were added to the linkage list")
|
||||
else()
|
||||
message(WARNING
|
||||
"Could not find cernlib, skip original FORTRAN GENBOD() support")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
EXECUTE_PROCESS(COMMAND root-config --cflags OUTPUT_VARIABLE ROOT_CXX_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ROOT_CXX_FLAGS}")
|
||||
EXECUTE_PROCESS(COMMAND root-config --libs OUTPUT_VARIABLE ROOT_LD_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
set(CMAKE_EXE_LINKER_FLAGS ${ROOT_LD_FLAGS})
|
||||
endif(CEXMC_USE_HISTOGRAMING)
|
||||
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include ${Geant4_INCLUDE_DIR})
|
||||
file(GLOB sources ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cc)
|
||||
|
||||
add_executable(${name} ${name}.cc ${sources})
|
||||
|
||||
target_link_libraries(${name} ${Geant4_LIBRARIES} ${EXTRA_LIBRARIES})
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
@@ -503,13 +503,11 @@ int main( int argc, char ** argv )
|
||||
CexmcHistoManager::Destroy();
|
||||
#endif
|
||||
|
||||
delete visManager;
|
||||
|
||||
CexmcMessenger::Destroy();
|
||||
delete runManager;
|
||||
|
||||
delete session;
|
||||
|
||||
delete visManager;
|
||||
delete runManager;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-2020)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -779,7 +779,7 @@ Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Use simple level density model 1
|
||||
Use discrete excitation energy of the residual 0
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
@@ -1091,133 +1091,99 @@ Event 7900
|
||||
2.091 242.6 2.139 0 0 0
|
||||
3.443 2.003 0 0 0 0
|
||||
0.06417 0.305 0 0 0 0
|
||||
Event 10733
|
||||
Event 11751
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 3.43905 -3.22935 -15 cm
|
||||
right: 5.68118 3.1405 -15 cm
|
||||
left: -10.2032 -0.493543 -15 cm
|
||||
right: 9.47606 2.65278 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 127.95 deg
|
||||
-- mass of the output particle: 466.316 MeV
|
||||
-- mass of the nucleus output particle: 1.01905 GeV
|
||||
-- the angle: 111.374 deg
|
||||
-- mass of the output particle: 491.901 MeV
|
||||
-- mass of the nucleus output particle: 1.00114 GeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta 137.8253 -7.5255 225.3841 MeV -- 536.0051 MeV
|
||||
(SCM) : eta 137.8253 -7.5255 -8.1211 MeV -- 486.3840 MeV
|
||||
Nucleus output particle (LAB) : neutron -137.8253 7.5255 504.6159 MeV -- 1.1455 GeV
|
||||
(SCM) : neutron -137.8253 7.5255 8.1211 MeV -- 1.0284 GeV
|
||||
Output particle (LAB) : eta -83.0933 13.2690 339.5986 MeV -- 603.6343 MeV
|
||||
(SCM) : eta -83.0933 13.2690 86.0726 MeV -- 506.4146 MeV
|
||||
Nucleus output particle (LAB) : neutron 83.0933 -13.2690 390.4014 MeV -- 1.0779 GeV
|
||||
(SCM) : neutron 83.0933 -13.2690 -86.0726 MeV -- 1.0084 GeV
|
||||
-- triggered angular ranges:
|
||||
2 [ 0.8000, 0.6000)
|
||||
--- Energy Deposit
|
||||
monitor : 488.261 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 252.568 MeV
|
||||
0 0 0 0 4.542 0
|
||||
0 0 0 0 87.85 10.75
|
||||
0 0 0 2.364 133.3 8.993
|
||||
0 0 0 0 0.6689 4.072
|
||||
cal (r) : 351.067 MeV
|
||||
7.149 1.657 2.521 0 0 0
|
||||
14.55 305.8 3.998 0.1935 0 0
|
||||
7.953 5.45 1.437 0.1399 0 0
|
||||
0 0.2176 0 0 0 0
|
||||
Event 13211
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 730.3 MeV : -1.206 -1.375 -0.125 cm [0.01664, -0.01408, 0.9998]
|
||||
target : pi- [1,bp] 729.6 MeV : 2.616 4.261 -1.754 cm [-0.63, -0.7765, -0.01371]
|
||||
: eta [6,op] 251 MeV : -2.242 -1.72 -1.861 cm [-0.93, -0.3601, 0.07288]
|
||||
: neutron [7,np] 525.6 MeV : -2.242 -1.72 -1.861 cm [-0.4306, -0.901, -0.05366]
|
||||
: gamma [9,opdp] 230.5 MeV : -2.242 -1.72 -1.861 cm [0.5381, -0.8412, 0.05418]
|
||||
: gamma [8,opdp] 372.1 MeV : -2.242 -1.72 -1.861 cm [-0.9604, 0.278, 0.0156]
|
||||
vc (l) : gamma [9,opdp] 230.5 MeV : 5.004 1.322 -0.25 cm [0.1321, 0.05418, 0.9897]
|
||||
vc (r) : gamma [8,opdp] 372.1 MeV : 1.101 -0.9712 -0.25 cm [-0.01998, 0.0156, 0.9997]
|
||||
cal (l) : gamma [9,opdp] 230.5 MeV : 5.171 1.39 -15 cm [0.1321, 0.05418, 0.9897]
|
||||
cal (r) : gamma [8,opdp] 372.1 MeV : 1.076 -0.9517 -15 cm [-0.01998, 0.0156, 0.9997]
|
||||
---
|
||||
angle between the eta decay products : 138.573 deg
|
||||
--- Triggered angular ranges:
|
||||
7 [-0.2000, -0.4000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- 10.3311 -9.9142 727.5417 MeV -- 740.9466 MeV
|
||||
(SCM) : pi- 6.4052 -6.1467 451.0710 MeV -- 472.2538 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton -6.4052 6.1467 -451.0710 MeV -- 1.0411 GeV
|
||||
Output particle (LAB) : eta -120.7117 18.2915 219.2850 MeV -- 602.6148 MeV
|
||||
(SCM) : eta -124.4874 21.9148 -46.6113 MeV -- 564.1833 MeV
|
||||
Nucleus output particle (LAB) : neutron 131.0428 -28.2057 508.2567 MeV -- 1.0766 GeV
|
||||
(SCM) : neutron 124.4874 -21.9148 46.6113 MeV -- 949.1749 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 6.63965 0.414976 -15 cm
|
||||
right: 1.38873 -1.7797 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 134.979 deg
|
||||
-- mass of the output particle: 546.925 MeV
|
||||
-- mass of the nucleus output particle: 938.975 MeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta -139.7029 -10.0887 245.4258 MeV -- 615.6126 MeV
|
||||
(SCM) : eta -139.7029 -10.0887 -24.2381 MeV -- 565.0952 MeV
|
||||
Nucleus output particle (LAB) : neutron 139.7029 10.0887 484.5742 MeV -- 1.0659 GeV
|
||||
(SCM) : neutron 139.7029 10.0887 24.2381 MeV -- 949.6735 MeV
|
||||
-- triggered angular ranges:
|
||||
6 [ 0.0000, -0.2000)
|
||||
--- Energy Deposit
|
||||
monitor : 527.646 keV
|
||||
monitor : 587.022 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 335.098 MeV
|
||||
0 0.09963 0 0 0 0
|
||||
0 15.23 6.307 0.987 0 0.4142
|
||||
3.963 3.311 248.1 10.78 1.947 0
|
||||
0 12.16 29.91 1.868 0 0
|
||||
cal (r) : 200.907 MeV
|
||||
0 3.402 1.721 0 0 0
|
||||
4.364 41.11 147.6 0.5654 0 0
|
||||
0.5333 0 0.5615 1.087 0 0
|
||||
cal (l) : 223.431 MeV
|
||||
0 1.547 0 0 0 0
|
||||
0.3088 140.3 64.75 0 0 0
|
||||
0 6.832 2.317 0.5119 0 0
|
||||
1.18 2.303 2.968 0.4372 0 0
|
||||
cal (r) : 392.182 MeV
|
||||
0 0 0 0 0 0
|
||||
Event 12276
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 730.7 MeV : -1.361 0.1986 -0.125 cm [0.0097, -0.01364, 0.9999]
|
||||
target : pi- [1,bp] 730 MeV : 2.276 4.452 -0.1846 cm [-0.6368, -0.7709, -0.01386]
|
||||
: eta [4,op] 335.4 MeV : -2.774 -1.661 -0.2945 cm [-0.3263, -0.9286, 0.1764]
|
||||
: neutron [5,np] 439.8 MeV : -2.774 -1.661 -0.2945 cm [-0.8091, -0.5654, -0.1603]
|
||||
: gamma [7,opdp] 383.5 MeV : -2.774 -1.661 -0.2945 cm [0.3773, -0.9219, 0.08797]
|
||||
: gamma [6,opdp] 258.9 MeV : -2.774 -1.661 -0.2945 cm [-0.9818, 0.1627, 0.09827]
|
||||
vc (l) : gamma [7,opdp] 383.5 MeV : -6.016 4.871 -0.25 cm [-0.04769, 0.08797, 0.995]
|
||||
vc (r) : gamma [6,opdp] 258.9 MeV : 7.852 5.311 -0.25 cm [0.09693, 0.09827, 0.9904]
|
||||
cal (l) : gamma [7,opdp] 383.5 MeV : -6.076 4.981 -15 cm [-0.04769, 0.08797, 0.995]
|
||||
cal (r) : gamma [6,opdp] 258.9 MeV : 7.974 5.435 -15 cm [0.09693, 0.09827, 0.9904]
|
||||
---
|
||||
angle between the eta decay products : 120.782 deg
|
||||
--- Triggered angular ranges:
|
||||
4 [ 0.4000, 0.2000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- 3.6191 -11.3208 728.1401 MeV -- 741.4911 MeV
|
||||
(SCM) : pi- 2.2433 -7.0173 451.3413 MeV -- 472.4861 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton -2.2433 7.0173 -451.3413 MeV -- 1.0412 GeV
|
||||
Output particle (LAB) : eta 116.3541 59.1753 308.9270 MeV -- 642.3618 MeV
|
||||
(SCM) : eta 114.9864 63.4532 33.7746 MeV -- 564.3950 MeV
|
||||
Nucleus output particle (LAB) : neutron -112.7349 -70.4961 419.2131 MeV -- 1.0374 GeV
|
||||
(SCM) : neutron -114.9864 -63.4532 -33.7746 MeV -- 949.3008 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -7.39869 6.11398 -15 cm
|
||||
right: 9.11782 5.05555 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 113.586 deg
|
||||
-- mass of the output particle: 487.185 MeV
|
||||
-- mass of the nucleus output particle: 997.246 MeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta 111.3085 55.8699 320.3083 MeV -- 596.2026 MeV
|
||||
(SCM) : eta 111.3085 55.8699 68.2407 MeV -- 507.4613 MeV
|
||||
Nucleus output particle (LAB) : neutron -111.3085 -55.8699 409.6917 MeV -- 1.0853 GeV
|
||||
(SCM) : neutron -111.3085 -55.8699 -68.2407 MeV -- 1.0073 GeV
|
||||
-- triggered angular ranges:
|
||||
3 [ 0.6000, 0.4000)
|
||||
--- Energy Deposit
|
||||
monitor : 528.79 keV
|
||||
vc (l) : 147.2 keV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 362.167 MeV
|
||||
0 0 0.516 34.92 192.1 0
|
||||
0 0 0.5746 4.391 128.4 0.1214
|
||||
0 0 0 0 0.443 0.7335
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 234.036 MeV
|
||||
2.882 128.7 1.108 0 0 0
|
||||
1.782 89.38 6.973 0 0 0
|
||||
0 1.666 0 0 0 0
|
||||
1.566 0 0 0 0 0
|
||||
Event 13522
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -9.02543 5.62386 -15 cm
|
||||
right: -3.93639 -3.29667 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 125.321 deg
|
||||
-- mass of the output particle: 538.541 MeV
|
||||
-- mass of the nucleus output particle: 947.369 MeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta -141.6408 2.3998 270.5499 MeV -- 619.1058 MeV
|
||||
(SCM) : eta -141.6408 2.3998 1.9680 MeV -- 556.8650 MeV
|
||||
Nucleus output particle (LAB) : neutron 141.6408 -2.3998 459.4501 MeV -- 1.0624 GeV
|
||||
(SCM) : neutron 141.6408 -2.3998 -1.9680 MeV -- 957.9037 MeV
|
||||
-- triggered angular ranges:
|
||||
5 [ 0.2000, 0.0000)
|
||||
--- Energy Deposit
|
||||
monitor : 364.597 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 246.825 MeV
|
||||
0 0 3.933 1.455 82.24 12.03
|
||||
0 0 0 1.251 133.7 11.3
|
||||
0 0 0 0.1587 0.7699 0
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 372.281 MeV
|
||||
0 1.206 0 0 0 0
|
||||
0 0 2.141 7.39 1.737 0.356
|
||||
0 0 2.657 279.1 23.23 10.77
|
||||
0 0.4894 4.184 36.08 2.966 0
|
||||
Event 14455
|
||||
0.4334 5.099 20.71 5.466 0.9886 0
|
||||
0 0.613 346 8.997 0.959 0.2674
|
||||
0 0 1.061 0.9726 0.3666 0.2413
|
||||
Event 14352
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 727 MeV : -1.169 -0.455 -1.25 mm [-0.003548, 0.01198, 0.9999]
|
||||
target : pi- [1,bp] 726.5 MeV : 3.047 3.964 0.2767 cm [-0.6454, -0.7637, 0.01184]
|
||||
@@ -1275,24 +1241,82 @@ Event 14455
|
||||
28.97 103.9 1.943 0 0 0
|
||||
0 0 5.24 0.5402 0 0
|
||||
0 0 0 0 0 0
|
||||
Event 14456
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 730.7 MeV : -7.775 1.689 -1.25 mm [-0.01427, -0.01005, 0.9998]
|
||||
target : pi- [1,bp] 730 MeV : 2.171 4.504 -0.1301 cm [-0.6541, -0.7563, -0.009803]
|
||||
: eta [3,op] 341.3 MeV : 1.37 3.578 -0.1421 cm [-0.8942, -0.4444, -0.05454]
|
||||
: neutron [4,np] 436 MeV : 1.37 3.578 -0.1421 cm [-0.3945, -0.9184, 0.02873]
|
||||
: gamma [6,opdp] 235.7 MeV : 1.37 3.578 -0.1421 cm [0.418, -0.9061, 0.0652]
|
||||
: gamma [5,opdp] 409.8 MeV : 1.37 3.578 -0.1421 cm [-0.985, 0.151, -0.08292]
|
||||
vc (l) : gamma [6,opdp] 235.7 MeV : 2.502 3.871 -0.25 cm [-0.004087, 0.0652, 0.9979]
|
||||
vc (r) : gamma [5,opdp] 409.8 MeV : 2.703 -5.093 -0.25 cm [0.1091, -0.08292, 0.9906]
|
||||
cal (l) : gamma [6,opdp] 235.7 MeV : 2.497 3.952 -15 cm [-0.004087, 0.0652, 0.9979]
|
||||
cal (r) : gamma [5,opdp] 409.8 MeV : 2.84 -5.198 -15 cm [0.1091, -0.08292, 0.9906]
|
||||
---
|
||||
angle between the eta decay products : 123.642 deg
|
||||
--- Triggered angular ranges:
|
||||
4 [ 0.4000, 0.2000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- -10.6233 -6.0829 729.6631 MeV -- 742.9926 MeV
|
||||
(SCM) : pi- -6.5808 -3.7682 452.0076 MeV -- 473.1259 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 6.5808 3.7682 -452.0076 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta -136.2686 -18.6119 312.3168 MeV -- 645.4534 MeV
|
||||
(SCM) : eta -132.2451 -16.3081 35.9596 MeV -- 564.9784 MeV
|
||||
Nucleus output particle (LAB) : neutron 125.6454 12.5291 417.3463 MeV -- 1.0358 GeV
|
||||
(SCM) : neutron 132.2451 16.3081 -35.9596 MeV -- 949.6478 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 3.0254 4.15893 -15 cm
|
||||
right: 2.473 -5.13776 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 130.676 deg
|
||||
-- mass of the output particle: 594.596 MeV
|
||||
-- mass of the nucleus output particle: 898.922 MeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta -122.5169 -17.0072 285.9104 MeV -- 671.2593 MeV
|
||||
(SCM) : eta -122.5169 -17.0072 -6.1148 MeV -- 607.3563 MeV
|
||||
Nucleus output particle (LAB) : neutron 122.5169 17.0072 444.0896 MeV -- 1.0102 GeV
|
||||
(SCM) : neutron 122.5169 17.0072 6.1148 MeV -- 907.4123 MeV
|
||||
-- triggered angular ranges:
|
||||
6 [ 0.0000, -0.2000)
|
||||
--- Energy Deposit
|
||||
monitor : 537.389 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 260.612 MeV
|
||||
0 2.307 11.35 2.38 0 0
|
||||
1.264 2.013 238.9 0.6066 0.8145 0
|
||||
0 0 0.04745 0.8924 0 0
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 410.647 MeV
|
||||
0 0 0 0 0 0
|
||||
0 0.4661 0.5644 0 0 0
|
||||
0 1.913 312.3 1.798 0.5417 0
|
||||
0 4.626 81.24 5.903 1.265 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 14456, effectively: 10
|
||||
User=8.590000s Real=8.667211s Sys=0.010000s
|
||||
Number of events processed : 14457, effectively: 10
|
||||
User=9.020000s Real=9.097572s 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 )
|
||||
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 404 ) | 0.00247525 ( 1 / 404 / 498 )
|
||||
3 [ 0.6000, 0.4000) | 0.00000000 ( 0 / 423 ) | 0.00236407 ( 1 / 423 / 499 )
|
||||
4 [ 0.4000, 0.2000) | 0.00259067 ( 1 / 386 ) | 0.00000000 ( 0 / 386 / 480 )
|
||||
5 [ 0.2000, 0.0000) | 0.00236407 ( 1 / 423 ) | 0.00000000 ( 0 / 423 / 511 )
|
||||
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 411 ) | 0.00243309 ( 1 / 411 / 511 )
|
||||
7 [-0.2000, -0.4000) | 0.00000000 ( 0 / 428 ) | 0.00000000 ( 0 / 428 / 510 )
|
||||
8 [-0.4000, -0.6000) | 0.00000000 ( 0 / 400 ) | 0.00000000 ( 0 / 400 / 503 )
|
||||
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 398 ) | 0.00000000 ( 0 / 398 / 486 )
|
||||
10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 371 ) | 0.00000000 ( 0 / 371 / 454 )
|
||||
1 [ 1.0000, 0.8000) | 0.00246914 ( 1 / 405 ) | 0.00000000 ( 0 / 405 / 486 )
|
||||
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 395 ) | 0.00253165 ( 1 / 395 / 490 )
|
||||
3 [ 0.6000, 0.4000) | 0.00000000 ( 0 / 417 ) | 0.00000000 ( 0 / 417 / 496 )
|
||||
4 [ 0.4000, 0.2000) | 0.00240964 ( 1 / 415 ) | 0.00000000 ( 0 / 415 / 506 )
|
||||
5 [ 0.2000, 0.0000) | 0.00230415 ( 1 / 434 ) | 0.00000000 ( 0 / 434 / 522 )
|
||||
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 419 ) | 0.00715990 ( 3 / 419 / 514 )
|
||||
7 [-0.2000, -0.4000) | 0.00242131 ( 1 / 413 ) | 0.00000000 ( 0 / 413 / 494 )
|
||||
8 [-0.4000, -0.6000) | 0.00000000 ( 0 / 414 ) | 0.00000000 ( 0 / 414 / 510 )
|
||||
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 406 ) | 0.00000000 ( 0 / 406 / 495 )
|
||||
10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 390 ) | 0.00000000 ( 0 / 390 / 474 )
|
||||
---
|
||||
False hits (edt | rec): 7 | 7
|
||||
False hits (edt | rec): 6 | 6
|
||||
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
|
||||
@@ -7,6 +7,10 @@ cirrone@lns.infn.it
|
||||
History file of the ChargeExchangeMC application
|
||||
====================================================
|
||||
|
||||
08.04.2020 - S. Guatelli, Tag ChargeExchangeMC-V10-05-00
|
||||
Error removed from the main. CMakeList.txt updated.
|
||||
Dependence to Qt Libraries when using ROOT demoved as obsolete.
|
||||
|
||||
02.09.2019 - S. Guatelli, Tag ChargeExchangeMC-V10-05-02
|
||||
G4VIS_USE and G4UI_USE deleted
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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 = 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
|
||||
Initial seed = 1590745240
|
||||
float_seed_table[] = 0.769771 0.683744 0.431496 0.063198 0.981073 0.662218 0.139998 0.0275069 0.809529 0.691412 0.220709 0.553455 0.998968 0.80317 0.0774835 0.496753 0.139411 0.555612 0.271583 0.197803 0.878428 0.535016 0.310122 0.39858
|
||||
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=2.090000s Real=2.091367s Sys=0.000000s
|
||||
User=2.460000s Real=2.458819s Sys=0.000000s
|
||||
### Run 0 (global) ended.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
@@ -271,9 +271,9 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 9
|
||||
Total navigation history collections cleaned: 10
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0115 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||
@@ -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.000961 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.00481 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.094 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.1 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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.470000s Real=7.527727s Sys=0.000000s
|
||||
User=7.940000s Real=8.196714s Sys=0.020000s
|
||||
|
||||
-------------------------------------------------------------
|
||||
---> The calorimeter is 9 Modules
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-2020)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -752,7 +752,7 @@ Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Use simple level density model 1
|
||||
Use discrete excitation energy of the residual 0
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
@@ -902,7 +902,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=19.750000s Real=20.570038s Sys=0.040000s
|
||||
User=19.460000s Real=19.994019s Sys=0.030000s
|
||||
### 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: 48
|
||||
Total navigation history collections cleaned: 46
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0721 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0692 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.0538 MB
|
||||
Pool ID '7G4Track', size : 0.108 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.074 MB
|
||||
Pool ID '7G4Track', size : 0.148 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0135 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0115 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.26 MB
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.32 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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=37.830000s Real=37.981702s Sys=0.010000s
|
||||
User=39.280000s Real=39.503039s 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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-2020)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -586,13 +586,13 @@ Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 500
|
||||
User=5.280000s Real=5.353012s Sys=0.050000s
|
||||
User=5.620000s Real=5.686506s 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.36765 s to run (real time)
|
||||
The simulation took: 9.80263 s to run (real time)
|
||||
Dose is being written to Dose.out
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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=10.890000s Real=11.425052s Sys=0.170000s
|
||||
User=11.400000s Real=12.005350s Sys=0.190000s
|
||||
/score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-2020)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -737,7 +737,7 @@ Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Use simple level density model 1
|
||||
Use discrete excitation energy of the residual 0
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
@@ -858,13 +858,13 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 395 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0.3 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0.31 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
53.33 0.16 0.00 152k EmModuleLogical
|
||||
46.67 0.14 0.00 238k HadModuleLogical
|
||||
54.84 0.17 0.00 152k EmModuleLogical
|
||||
45.16 0.14 0.00 238k HadModuleLogical
|
||||
0.00 0.00 0.00 4k Mother
|
||||
0.00 0.00 0.00 0k CryostatLogical
|
||||
0.00 0.00 0.00 0k LArgLogical
|
||||
@@ -876,7 +876,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
60.17 238k 1385 2370 3792 0.14 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.16 EmModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.17 EmModuleLogical
|
||||
0.93 3k 8 42 146 0.00 Mother
|
||||
0.12 0k 1 7 8 0.00 SolidWLogical
|
||||
0.12 0k 1 7 8 0.00 CuPlateLogical
|
||||
@@ -1239,7 +1239,7 @@ Edep in FCAL1 FCAl2 : 19924.3 4.87868
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 18
|
||||
User=8.940000s Real=9.013551s Sys=0.010000s
|
||||
User=9.040000s Real=9.571288s 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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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=17.290000s Real=17.460144s Sys=0.030000s
|
||||
User=18.410000s Real=18.685176s Sys=0.020000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 166
|
||||
loop elapsed time [s] : 17.32
|
||||
loop elapsed time [s] : 18.46
|
||||
|
||||
|
||||
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=17.210000s Real=17.304531s Sys=0.000000s
|
||||
User=18.310000s Real=18.517761s Sys=0.000000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 117
|
||||
loop elapsed time [s] : 17.24
|
||||
loop elapsed time [s] : 18.35
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
/run/geometryModified
|
||||
@@ -1407,10 +1407,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.180000s Real=17.303020s Sys=0.020000s
|
||||
User=17.940000s Real=18.224467s Sys=0.030000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 71
|
||||
loop elapsed time [s] : 17.22
|
||||
loop elapsed time [s] : 17.97
|
||||
|
||||
|
||||
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=17.170000s Real=17.279028s Sys=0.020000s
|
||||
User=17.990000s Real=18.362001s Sys=0.000000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 128
|
||||
loop elapsed time [s] : 17.22
|
||||
loop elapsed time [s] : 18.03
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
loop elapsed time [s] : 72.9
|
||||
loop elapsed time [s] : 76.93
|
||||
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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 0x25934c0
|
||||
##### Create analysis manager 0x206e420
|
||||
Using Root analysis manager
|
||||
All Ntuples have been created
|
||||
-> Event # 1 generated
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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 0x1146e40
|
||||
##### Create analysis manager 0xefcd50
|
||||
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.011922s Sys=0.000000s
|
||||
User=0.010000s Real=0.007394s Sys=0.000000s
|
||||
... write Root file : microelectronics.root - done
|
||||
... close Root file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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 0x1a527c0
|
||||
##### Create analysis manager 0x26cf6f0
|
||||
Using Root analysis manager
|
||||
Ntuple-1 created
|
||||
Ntuple-2 created
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-06-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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.680000s Real=0.678925s Sys=0.000000s
|
||||
User=0.720000s Real=0.721156s 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-patch-01 (14-February-2020)
|
||||
Geant4 version Name: geant4-10-06-patch-02 (29-May-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.020000s Real=0.011633s Sys=0.000000s
|
||||
User=0.010000s Real=0.013941s Sys=0.000000s
|
||||
##########################################
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
|
||||
Reference in New Issue
Block a user