Import Geant4 10.7.1 source tree
This commit is contained in:
+1
-1
@@ -33,7 +33,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
|
||||
project(Geant4)
|
||||
set(${PROJECT_NAME}_VERSION_MAJOR 10)
|
||||
set(${PROJECT_NAME}_VERSION_MINOR 7)
|
||||
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
|
||||
|
||||
@@ -11,6 +11,9 @@ the development repository of Geant4, to be included in a future release or
|
||||
patch.
|
||||
|
||||
For simple bug-fixes, it is anyhow recommended to use the official
|
||||
`Bugzilla problem reporting system <https://bugzilla-geant4.kek.jp/>`.
|
||||
Bugzilla problem reporting system.
|
||||
- Problem reports: `Bugzilla problem reporting system <https://bugzilla-geant4.kek.jp>`_.
|
||||
- User Forum: `Geant4 Forum <https://geant4-forum.web.cern.ch>`_.
|
||||
- Documentation: `User Documentation <https://cern.ch/geant4/support/user_documentation>`_.
|
||||
|
||||
The Geant4 Collaboration
|
||||
+6
-1
@@ -1,3 +1,8 @@
|
||||
=====
|
||||
Geant4: A Simulation Toolkit
|
||||
Geant4: A Simulation Toolkit
|
||||
=====
|
||||
|
||||
- Problem reports: `Bugzilla problem reporting system <https://bugzilla-geant4.kek.jp>`_.
|
||||
- User Forum: `Geant4 Forum <https://geant4-forum.web.cern.ch>`_.
|
||||
- Documentation: `User Documentation <https://cern.ch/geant4/support/user_documentation>`_.
|
||||
|
||||
|
||||
@@ -0,0 +1,220 @@
|
||||
|
||||
Geant4 10.7 - patch-01 Release Notes
|
||||
------------------------------------
|
||||
|
||||
5 February 2021
|
||||
|
||||
List of fixes included in this public patch since the public release 10.7:
|
||||
|
||||
o Configuration
|
||||
-------------
|
||||
+ CMake:
|
||||
o Make fail configuration if Qt is enabled with CMake < 3.9.
|
||||
Addressing problem report #2303.
|
||||
o Fixed potential installation error with Homebrew/MacPorts X11/GL.
|
||||
Apply GitHub PR #17.
|
||||
o Fixed configure/build with system PTL 1.0.0.
|
||||
Apply GitHub PR #16.
|
||||
o Install/Use builtin PTL CMake scripts from PTL subdirectory alongside
|
||||
Geant4Config.cmake.
|
||||
o Updated to data set G4PARTICLEXS-3.1.1.
|
||||
+ GNUmake:
|
||||
o Updated Qt5 settings in Linux targets.
|
||||
|
||||
o Analysis:
|
||||
--------
|
||||
+ Updated to g4tools 5.2.3:
|
||||
o Fixed bug in tools/histo/h2,h3 for get_bin_content();
|
||||
have '&' in "get" arguments. Addressing problem report #2306.
|
||||
o See History_tools for the complete list of modifications.
|
||||
+ Fixed problem with merging n-tuples with columns of vector type.
|
||||
|
||||
o Externals:
|
||||
----------
|
||||
+ Force PTL to install its CMake configuration files within the directory
|
||||
where Geant4 installs its own. Force to install its headers under
|
||||
CMAKE_INSTALL_INCLUDEDIR/Geant4. Addressing problem report #2298.
|
||||
+ ptl: apply patch to fix component installs on Windows.
|
||||
|
||||
o Geometry:
|
||||
--------
|
||||
+ navigation:
|
||||
o G4ReplicaNavigation: reduced step correction in ComputeStep().
|
||||
Addressing problem report #2302.
|
||||
o G4PathFinder: moved debug printout within debug block in Locate().
|
||||
o G4RegularNavigation: protected within G4DEBUG_NAVIGATION debug printout.
|
||||
Substituted warning printout with proper G4Exception.
|
||||
+ solids/Boolean:
|
||||
o Added protection against using invalid normal
|
||||
in G4ScaledSolid::DistanceToOut(p,v).
|
||||
+ solids/CSG:
|
||||
o G4Trap, G4Para: removed spurious character in printout in StreamInfo().
|
||||
Addressed problem report #2318.
|
||||
+ solids/specific:
|
||||
o Reduce cases of bad speculation in G4PolyhedraSide::Inside() and
|
||||
G4PolyPhiFace::InsideEdges(), based on profiling analysis.
|
||||
+ volumes:
|
||||
o Added creation order index in G4LogicalBorderSurface.
|
||||
Addressing problem report #2311.
|
||||
o G4GeometryWorkspace: added protection for thread contention in function
|
||||
DestroyWorkspace(). Some code cleanup.
|
||||
|
||||
o Global:
|
||||
------
|
||||
+ Updated date and version for 10.7.p01.
|
||||
|
||||
o Intercoms:
|
||||
---------
|
||||
+ G4UImanager: introduced flag and access functions for
|
||||
LastCommandOutputTreated. This flag is set to false at the point
|
||||
in ApplyCommand() where, if verbosity>0, the command is sent to G4cout.
|
||||
The treating UI must reset to true when the line has been treated.
|
||||
Of course, the UI may simply ignore it.
|
||||
|
||||
o Interfaces:
|
||||
----------
|
||||
+ G4UIQt: Use QPalette to get colour and background from OS;
|
||||
instead of fixed background <span style='background:#EEEEEE...
|
||||
use <span style='background:" + pal.highlight().color().name()...
|
||||
This picks up colour from the OS and even allows for change of
|
||||
OS display style, e.g., dark mode on MacOS.
|
||||
Fixed command-line-echo highlighting whereby there could be a crash
|
||||
in some circumstances: use <span> instead of <div> in HTML wrappers.
|
||||
+ Introduce choice of output styles:
|
||||
o /gui/outputStyle
|
||||
<cout|cerr|warnings|errors|all>
|
||||
<fixed|proportional>
|
||||
<highlight|no-highlight>
|
||||
o Highlighting applies to the echoed command line if echoing is
|
||||
requested with /control/verbose > 0.
|
||||
|
||||
o Persistency - gdml:
|
||||
------------------
|
||||
+ Fix for proper treatment of material properties reading for skinsurface
|
||||
and bordersurface elements; adopt the key of the property vector map as
|
||||
'name + ref'. Addressing problem report #2305.
|
||||
+ Fixed parsing of regions in G4GDMLParser::ImportRegions().
|
||||
Allow for proper deletion of meta-data lists in destructor.
|
||||
Based on GitHub PR#19.
|
||||
+ Fixed reading of units for GenericTrap in G4GDMLReadSolids.
|
||||
Addressing problem report #2317.
|
||||
|
||||
o Physics Lists:
|
||||
-------------
|
||||
+ builders
|
||||
o G4HadronicBuilder: replaced 2-body decays of bottom mesons into charmed
|
||||
mesons and charged rho resonance, with 3-body decays into the same
|
||||
charmed mesons and charged pion and neutral pion. This allows to get a
|
||||
more precise numerical treatment of the decay kinematics in the rest
|
||||
frame, avoiding spurious energy-momentum violations reported by
|
||||
G4DecayProducts.
|
||||
o OrderingParameterTable: added forgotten processes (general positron,
|
||||
surface reflection, DNA) coherently with G4PhysicsListHelper.
|
||||
+ constructors/electromagnetic
|
||||
o G4GammaGeneralProcess: changed 1st energy limit from 50 keV to 150 keV
|
||||
to guarantee K-shell energy for any element to be within 1st energy
|
||||
area. Changed logic for selection of a concrete process.
|
||||
Maximally reduced use of 'if' statements; reduced number of 'return'
|
||||
in run time methods; removed shadowing of base class methods.
|
||||
Addressing problem report #2309.
|
||||
+ constructors/hadron_elastic
|
||||
o G4HadronElasticPhysics: fixed type of builder in all hadron elastic
|
||||
constructors. Addressing problem report #2183.
|
||||
o G4IonElasticPhysics, G4ThermalNeutrons: added comments
|
||||
+ constructors/hadron_inelastic
|
||||
o G4HadronPhysicsFTFP_BERT, G4HadronPhysicsQGSP_BERT,
|
||||
G4HadronInelasticQBBC, G4HadronPhysicsQGSP_BIC: fixed type of builder
|
||||
in all hadron inelatic constructors. Addressing problem report #2296.
|
||||
|
||||
o Processes - Electromagnetic:
|
||||
---------------------------
|
||||
+ lowenergy
|
||||
o G4MicroElecSurface, G4MicroElecLOPhononModel: fixed Coverity defects.
|
||||
+ standard
|
||||
o G4BetheBlochModel, G4LindhardSorensenIonModel: restore computation of
|
||||
maximum energy transfer as in Geant4 version 10.4; affecting only
|
||||
ultra-relativistic ions. Addressing problem report #2312.
|
||||
+ utils
|
||||
o G4EmCorrections: fixed 2-D interpolation of shell corrections, which
|
||||
provides minor change of ranges of charge particles (< 0.1 mm).
|
||||
Addressing problem report #2308.
|
||||
o G4VEnergyLossProcess, G4VEmProcess, G4EmExtraParameters and
|
||||
G4EmExtraParametersMessenger: improved printout.
|
||||
Addressing problem report #2292.
|
||||
|
||||
o Processes - Hadronic:
|
||||
--------------------
|
||||
+ cross_sections:
|
||||
o Drop cache for per-element G4CrossSectionDataStore::GetCrossSection(),
|
||||
as never used in practice. Note that material, particle, and energy are
|
||||
still cached by G4CrossSectionDataStore::ComputeCrossSection(). The
|
||||
condition to check for the cache in that case has been optimized to
|
||||
minimize unnecessary checks by reordering checked conditions from most
|
||||
to least discriminant.
|
||||
o G4ParticleInelasticXS, G4CrossSectionInelastic, G4CrossSectionElastic:
|
||||
extended maximum energy range for ion cross-sections (QBBC and other
|
||||
Physics Lists has the same high energy limits).
|
||||
o G4ParticleInelasticXS, G4NeutronCaptureXS, G4NeutronElasticXS,
|
||||
G4NeutronInelasticXS: make MAXZ variable static class member.
|
||||
o G4GammaNuclearXS: fixed duplicated name of static variable.
|
||||
o G4VCrossSectionRatio: use inheritance from G4VCrossSectionDataSet
|
||||
in order to guarantee deletion of the object at the end of run.
|
||||
+ models/particle_hp
|
||||
o G4ParticleHPThermalScattering: added final state phi-rotation.
|
||||
Addressing problem reports #1856 and #2290.
|
||||
+ stopping
|
||||
o G4MuonicAtomDecay: fixed Coverity defects; removed commented code.
|
||||
|
||||
o Processes - Transportation
|
||||
--------------------------
|
||||
+ Limit reporting of number of calls to G4Transportation::AlongStepDoIt()
|
||||
to when either G4VERBOSE or G4DEBUG_TRANSPORT is defined, which allows to
|
||||
avoid using a thread local variable for a slight performance gain.
|
||||
|
||||
o Run:
|
||||
---
|
||||
+ G4PhysicsListHelper: added forgotten processes (general positron and
|
||||
surface reflection).
|
||||
|
||||
o Tasking:
|
||||
-------
|
||||
+ G4WorkerTaskRunManager: corrected way to count the number of events
|
||||
processed in a worker thread. This correction also fixes a rare crash
|
||||
due to accessing to the seed vector more than necessary.
|
||||
+ G4TaskRunManager: reduce number of events per task to evenly distribute
|
||||
events to all available threads.
|
||||
|
||||
o Visualization:
|
||||
-------------
|
||||
+ OpenInventor
|
||||
o Consolidated all the planned features of the OIQt viewer.
|
||||
+ Qt3D
|
||||
o Auxiliary edge suppression and some small improvements.
|
||||
|
||||
o Data Sets:
|
||||
---------
|
||||
+ G4PARTICLEXS-3.1.1:
|
||||
o Fixed data for He3 and He4 for few light targets.
|
||||
|
||||
o Examples:
|
||||
--------
|
||||
+ basic/B4:
|
||||
o Fixed README: updated visualization tutorial to follow smart parsing.
|
||||
+ extended/persistency/gdml/G01:
|
||||
o Fixed auxiliary.gdml sample to define proper Region tags.
|
||||
o Added scaledSolids.gdml sample setup.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o This patch should be applied on top of release 10.7.
|
||||
o Technical notes distributed for release 10.7 are also applicable and
|
||||
valid for this patch.
|
||||
|
||||
The code and rebuilt binary libraries for release 10.7.p01 are available
|
||||
through the Geant4 "Download" Web page.
|
||||
|
||||
Please refer to the Geant4 User Documentation for further information about
|
||||
using Geant4.
|
||||
@@ -30,6 +30,25 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
|
||||
|
||||
----------------------------------------------------------
|
||||
|
||||
30th January 2021 - Gunter Folger (cmake-V10-06-51)
|
||||
- Update to patched dataset G4PARTICLEXS 3.1.1 as provided by Vladimir I.
|
||||
|
||||
22nd January 2021 - Ben Morgan (cmake-V10-06-50)
|
||||
- Update for GitHub PR #17: Provide same fix for MacPorts
|
||||
- Address Bugzilla #2303: Fail configuration if Qt is enabled with CMake < 3.9
|
||||
|
||||
15th January 2021 - Ben Morgan (cmake-V10-06-49)
|
||||
- Apply GitHub PR #17 from Florian Uhlig: Fix installation
|
||||
error with Homebrew X11/GL.
|
||||
|
||||
11th January 2021 - Ben Morgan (cmake-V10-06-48)
|
||||
- Apply GitHub PR #16 from andriish: Fix configure/build with
|
||||
system PTL 1.0.0.
|
||||
|
||||
14th December 2020 - Ben Morgan (cmake-V10-06-47)
|
||||
- Install/Use builtin PTL CMake scripts from PTL subdirectory
|
||||
alongside Geant4Config.cmake
|
||||
|
||||
20th November 2020 - Ben Morgan (cmake-V10-06-46)
|
||||
- Make GEANT4_USE_SYSTEM_PTL option advanced
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
FindXQuartzGL
|
||||
-------------
|
||||
|
||||
FindModule for XQuartz implementation of OpenGL/GLU. Specific to Geant4
|
||||
to allow use of XQuartz only.
|
||||
FindModule for XQuartz/Homebrew/MacPorts implementation of OpenGL/GLU. Specific
|
||||
to Geant4 to allow use of XQuartz/Homebrew/MacPorts only.
|
||||
|
||||
Use of the module on non-macOS systems will result in a fatal error
|
||||
|
||||
@@ -49,17 +49,17 @@ set(CMAKE_FIND_FRAMEWORK_SAVE ${CMAKE_FIND_FRAMEWORK})
|
||||
set(CMAKE_FIND_FRAMEWORK NEVER)
|
||||
|
||||
find_path(XQuartzGL_INCLUDE_DIR GL/gl.h
|
||||
PATHS /usr/X11R6/include /opt/X11/include
|
||||
PATHS /usr/X11R6/include /opt/X11/include /usr/local/include /opt/local/include
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
find_library(XQuartzGL_gl_LIBRARY GL
|
||||
PATHS /usr/X11R6/lib /opt/X11/lib
|
||||
PATHS /usr/X11R6/lib /opt/X11/lib /usr/local/lib /opt/local/lib
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
find_library(XQuartzGL_glu_LIBRARY GLU
|
||||
PATHS /usr/X11R6/lib /opt/X11/lib
|
||||
PATHS /usr/X11R6/lib /opt/X11/lib /usr/local/lib /opt/local/lib
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ endif()
|
||||
if(NOT GEANT4_USE_SYSTEM_PTL)
|
||||
list(APPEND GEANT4_EXTERNALS_TARGETS G4ptl)
|
||||
set(PTL_BUILDTREE_PREFIX "${PROJECT_BINARY_DIR}/source/externals/ptl")
|
||||
set(PTL_INSTALLTREE_PREFIX "\${_geant4_thisdir}/../PTL")
|
||||
set(PTL_INSTALLTREE_PREFIX "\${_geant4_thisdir}/PTL")
|
||||
endif()
|
||||
|
||||
# - USolids
|
||||
|
||||
@@ -48,11 +48,11 @@ geant4_add_dataset(
|
||||
# - Particle XS - replaces Neutron XS
|
||||
geant4_add_dataset(
|
||||
NAME G4PARTICLEXS
|
||||
VERSION 3.1
|
||||
VERSION 3.1.1
|
||||
FILENAME G4PARTICLEXS
|
||||
EXTENSION tar.gz
|
||||
ENVVAR G4PARTICLEXSDATA
|
||||
MD5SUM 35a3fe5cf0a29d453e6805e2cfacacee
|
||||
MD5SUM 98b766fa2c447b541834cc9bf5206c05
|
||||
)
|
||||
|
||||
# - PII
|
||||
|
||||
@@ -132,6 +132,11 @@ endif()
|
||||
|
||||
# - Qt5
|
||||
if(GEANT4_USE_QT)
|
||||
# Must have CMake > 3.8 to support automoc (Bugzilla 2303)
|
||||
if(CMAKE_VERSION VERSION_LESS 3.9)
|
||||
message(FATAL_ERROR "GEANT4_USE_QT requires CMake 3.9 or newer to support automatic MOC for UI/Vis libraries")
|
||||
endif()
|
||||
|
||||
find_package(Qt5Core REQUIRED)
|
||||
find_package(Qt5Gui REQUIRED)
|
||||
find_package(Qt5Widgets REQUIRED)
|
||||
|
||||
@@ -177,7 +177,7 @@ option(GEANT4_USE_SYSTEM_PTL "Use system zlib library" OFF)
|
||||
if(GEANT4_USE_SYSTEM_PTL)
|
||||
find_package(PTL REQUIRED)
|
||||
# Backward compatibility for sources.cmake using the variable
|
||||
set(PTL_LIBRARIES PTL::PTL)
|
||||
set(PTL_LIBRARIES PTL::ptl)
|
||||
geant4_save_package_variables(PTL PTL_DIR)
|
||||
else()
|
||||
set(PTL_USE_TBB ${GEANT4_USE_TBB})
|
||||
|
||||
@@ -15,6 +15,9 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
11th December 2020 Gabriele Cosmo (config-V10-06-08)
|
||||
- Updated Qt5 settings in Linux targets.
|
||||
|
||||
22nd October 2020 Gabriele Cosmo (config-V10-06-07)
|
||||
- Added configuration for Qt3D visualization driver.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# ------ GNU/LINUX ------ clang 3.6 and higher
|
||||
# ------ GNU/LINUX ------ clang 9.0 and higher
|
||||
#
|
||||
# Original author: Gabriele Cosmo - CERN
|
||||
#
|
||||
@@ -46,6 +46,7 @@ ifeq ($(G4SYSTEM),Linux-clang)
|
||||
CCFLAGS += -O2 -g
|
||||
endif
|
||||
ifdef G4LIB_BUILD_SHARED
|
||||
CPPFLAGS += -fPIC
|
||||
CXXFLAGS += -fPIC
|
||||
FCFLAGS += -fPIC
|
||||
CCFLAGS += -fPIC
|
||||
@@ -106,14 +107,14 @@ ifeq ($(G4SYSTEM),Linux-clang)
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTFLAGS # Qt5
|
||||
QTFLAGS := -I $(QTHOME)/include -I$(QTHOME)/include/Qt
|
||||
QTFLAGS += -I $(QTHOME)/include/QtCore
|
||||
QTFLAGS += -I $(QTHOME)/include/QtGui
|
||||
QTFLAGS += -I $(QTHOME)/include/QtWidgets
|
||||
QTFLAGS += -I $(QTHOME)/include/QtOpenGL
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DCore
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DExtras
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DRender
|
||||
QTFLAGS += -I $(QTHOME)/include/QtPrintSupport
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtGui
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtWidgets
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtOpenGL
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DExtras
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DRender
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtPrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTFLAGS
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# ------ GNU/LINUX ------ gcc 4.8 and higher
|
||||
# ------ GNU/LINUX ------ gcc 9.3 and higher
|
||||
#
|
||||
ifeq ($(G4SYSTEM),Linux-g++)
|
||||
CXX := g++
|
||||
@@ -44,6 +44,7 @@ ifeq ($(G4SYSTEM),Linux-g++)
|
||||
CCFLAGS += -O2 -g
|
||||
endif
|
||||
ifdef G4LIB_BUILD_SHARED
|
||||
CPPFLAGS += -fPIC
|
||||
CXXFLAGS += -fPIC
|
||||
FCFLAGS += -fPIC
|
||||
CCFLAGS += -fPIC
|
||||
@@ -104,14 +105,14 @@ ifeq ($(G4SYSTEM),Linux-g++)
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTFLAGS # Qt5
|
||||
QTFLAGS := -I $(QTHOME)/include -I$(QTHOME)/include/Qt
|
||||
QTFLAGS += -I $(QTHOME)/include/QtCore
|
||||
QTFLAGS += -I $(QTHOME)/include/QtGui
|
||||
QTFLAGS += -I $(QTHOME)/include/QtWidgets
|
||||
QTFLAGS += -I $(QTHOME)/include/QtOpenGL
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DCore
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DExtras
|
||||
QTFLAGS += -I $(QTHOME)/include/Qt3DRender
|
||||
QTFLAGS += -I $(QTHOME)/include/QtPrintSupport
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtGui
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtWidgets
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtOpenGL
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DExtras
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DRender
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtPrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTFLAGS
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# ------ GNU/LINUX ------ Intel icc 15.x.x and higher
|
||||
# ------ GNU/LINUX ------ Intel icc 19.x.x and higher
|
||||
#
|
||||
ifeq ($(G4SYSTEM),Linux-icc)
|
||||
CXX := icc
|
||||
@@ -78,6 +78,68 @@ ifeq ($(G4SYSTEM),Linux-icc)
|
||||
ifndef OGLLIBS
|
||||
OGLLIBS := -L$(OGLHOME)/lib -lGL
|
||||
endif
|
||||
|
||||
# ---- QT Setup block -------------------------------------------------------
|
||||
|
||||
ifndef QTHOME
|
||||
QTHOME := /usr
|
||||
endif
|
||||
ifndef QTMOC
|
||||
QTMOC := $(QTHOME)/bin/moc
|
||||
endif
|
||||
|
||||
ifndef QT_VERSION
|
||||
QT_VERSION := 5
|
||||
endif
|
||||
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTFLAGS # Qt5
|
||||
QTFLAGS := -I $(QTHOME)/include -I$(QTHOME)/include/Qt
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtGui
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtWidgets
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtOpenGL
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DCore
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DExtras
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/Qt3DRender
|
||||
QTFLAGS += -I $(QTHOME)/include/qt5/QtPrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTFLAGS
|
||||
QTFLAGS := -I$(QTHOME)/include -I$(QTHOME)/include/Qt
|
||||
QTFLAGS += -I$(QTHOME)/include/QtCore
|
||||
QTFLAGS += -I$(QTHOME)/include/QtGui
|
||||
QTFLAGS += -I$(QTHOME)/include/QtOpenGL
|
||||
endif
|
||||
endif
|
||||
ifndef QTLIBPATH
|
||||
QTLIBPATH := $(QTHOME)/lib
|
||||
QT_SEARCH_LIB := $(shell ls $(QTLIBPATH)/qt$(QT_VERSION)/libq* 2>/dev/null | wc -l )
|
||||
ifneq ($(QT_SEARCH_LIB),0)
|
||||
QTLIBPATH := $(QTHOME)/lib/qt$(QT_VERSION)
|
||||
endif
|
||||
endif
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTLIBS # Qt5
|
||||
QTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5PrintSupport
|
||||
endif
|
||||
ifndef QT3DLIBS
|
||||
QT3DLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt53DCore -lQt53DExtras -lQt53DRender -lQt5PrintSupport
|
||||
endif
|
||||
ifndef GLQTLIBS
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5OpenGL -lQt5PrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTLIBS
|
||||
QTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui
|
||||
endif
|
||||
ifndef GLQTLIBS
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui -lQtOpenGL
|
||||
endif
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
define build-granular-shared-lib
|
||||
@libdir=`(cd $(@D);/bin/pwd)`; \
|
||||
cd $(G4TMPDIR); \
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -918,177 +918,269 @@ Index : 9 used in the geometry : Yes
|
||||
==================================================================
|
||||
|
||||
### Run 0 starts.
|
||||
Event 206
|
||||
Event 95
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 0.279661 -3.90536 -15 cm
|
||||
right: 8.66082 -4.0998 -15 cm
|
||||
left: 7.58878 -2.96404 -15 cm
|
||||
right: -9.67051 -1.03894 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 121.601 deg
|
||||
-- mass of the output particle: 490.583 MeV
|
||||
-- mass of the nucleus output particle: 997.229 MeV
|
||||
-- the angle: 146.163 deg
|
||||
-- mass of the output particle: 506.783 MeV
|
||||
-- mass of the nucleus output particle: 996.503 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 -120.9344 -38.9507 292.5657 MeV -- 585.1570 MeV
|
||||
(SCM) : eta -120.9344 -38.9507 42.7675 MeV -- 508.5697 MeV
|
||||
Nucleus output particle (LAB) : neutron 120.9344 38.9507 437.4343 MeV -- 1.0963 GeV
|
||||
(SCM) : neutron 120.9344 38.9507 -42.7675 MeV -- 1.0062 GeV
|
||||
Output particle (LAB) : eta -12.2541 -17.3388 152.9992 MeV -- 529.8009 MeV
|
||||
(SCM) : eta -12.2541 -17.3388 -85.4832 MeV -- 514.3808 MeV
|
||||
Nucleus output particle (LAB) : neutron 12.2541 17.3388 577.0008 MeV -- 1.1517 GeV
|
||||
(SCM) : neutron 12.2541 17.3388 85.4832 MeV -- 1.0004 GeV
|
||||
-- triggered angular ranges:
|
||||
4 [ 0.4000, 0.2000)
|
||||
10 [-0.8000, -1.0000)
|
||||
--- Energy Deposit
|
||||
monitor : 660.907 keV
|
||||
monitor : 609.887 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 211.083 MeV
|
||||
cal (l) : 259.995 MeV
|
||||
0.8056 0 0 0 0 0
|
||||
1.399 4.24 0.156 2.715 0 0
|
||||
0.9073 220.9 10.4 0.6282 0.4904 0
|
||||
2.622 10.94 3.809 0 0 0
|
||||
cal (r) : 269.806 MeV
|
||||
0 0 0 0 0 0
|
||||
0 0 1.304 1.382 0.5148 0
|
||||
0 6.943 114.3 62.72 0.2671 1.437
|
||||
0 1.395 12.47 7.873 0.4574 0
|
||||
cal (r) : 374.074 MeV
|
||||
0 0 0 0 0 0
|
||||
3.746 2.703 3.565 0 0 0
|
||||
1.268 290.5 6.137 1.015 0 0
|
||||
12.19 47.1 5.896 0 0 0
|
||||
Event 704
|
||||
0.1721 0.1439 0 1.554 38.02 45.28
|
||||
2.186 0 0 0 136.1 42.21
|
||||
0 0 0 0 3.376 0.8142
|
||||
Event 516
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -9.28523 2.79254 -15 cm
|
||||
right: -0.0320336 -1.93889 -15 cm
|
||||
left: -11.6222 3.8466 -15 cm
|
||||
right: 10.5868 3.31399 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 121.278 deg
|
||||
-- mass of the output particle: 265.264 MeV
|
||||
-- mass of the nucleus output particle: 1.24815 GeV
|
||||
-- the angle: 108.756 deg
|
||||
-- mass of the output particle: 495.28 MeV
|
||||
-- mass of the nucleus output particle: 1.00185 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 -16.1739 1.8692 148.4346 MeV -- 304.4060 MeV
|
||||
(SCM) : eta -16.1739 1.8692 18.0724 MeV -- 266.3771 MeV
|
||||
Nucleus output particle (LAB) : neutron 16.1739 -1.8692 581.5654 MeV -- 1.3771 GeV
|
||||
(SCM) : neutron 16.1739 -1.8692 -18.0724 MeV -- 1.2484 GeV
|
||||
-- triggered angular ranges:
|
||||
2 [ 0.8000, 0.6000)
|
||||
--- Energy Deposit
|
||||
monitor : 393.161 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 149.543 MeV
|
||||
0 0 0.6324 2.577 2.825 4.541
|
||||
0 0 0 0 115.2 1.316
|
||||
0 0 0 0 20.74 1.166
|
||||
0 0 0 0 0.5066 0
|
||||
cal (r) : 154.863 MeV
|
||||
0 0 0.7944 0.3091 0 0
|
||||
0 1.105 5.044 8.963 0 0
|
||||
0 1.49 32.9 99.01 1.058 0
|
||||
0 1.188 0.6085 1.907 0.4846 0
|
||||
Event 3675
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -8.12482 -1.2043 -15 cm
|
||||
right: 11.831 -1.63642 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 111.089 deg
|
||||
-- mass of the output particle: 575.513 MeV
|
||||
-- mass of the nucleus output particle: 920.846 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 -45.6110 -16.5957 398.0663 MeV -- 701.4470 MeV
|
||||
(SCM) : eta -45.6110 -16.5957 103.8377 MeV -- 586.8163 MeV
|
||||
Nucleus output particle (LAB) : neutron 45.6110 16.5957 331.9337 MeV -- 980.0476 MeV
|
||||
(SCM) : neutron 45.6110 16.5957 -103.8377 MeV -- 927.9523 MeV
|
||||
Output particle (LAB) : eta -29.7981 35.5949 353.3564 MeV -- 610.1787 MeV
|
||||
(SCM) : eta -29.7981 35.5949 98.1909 MeV -- 507.0490 MeV
|
||||
Nucleus output particle (LAB) : neutron 29.7981 -35.5949 376.6436 MeV -- 1.0713 GeV
|
||||
(SCM) : neutron 29.7981 -35.5949 -98.1909 MeV -- 1.0077 GeV
|
||||
-- triggered angular ranges:
|
||||
1 [ 1.0000, 0.8000)
|
||||
--- Energy Deposit
|
||||
monitor : 521.984 keV
|
||||
monitor : 371.495 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 315.799 MeV
|
||||
0 0 0 0 0.3902 0.4047
|
||||
0 0 0.6473 6.487 43.26 2.059
|
||||
0 0 0 3.733 251.9 0.7607
|
||||
0 0 0 3.717 2.4 0
|
||||
cal (r) : 385.648 MeV
|
||||
0.05533 0 0 0 0 0
|
||||
47.89 25.94 0 0 0 0
|
||||
85.79 219.3 0 0 0 0
|
||||
5.496 1.215 0 0 0 0
|
||||
Event 5689
|
||||
cal (l) : 288.65 MeV
|
||||
0 0 0 1.192 28.58 16.75
|
||||
0 0 0 0.2021 96.18 141.8
|
||||
0 0 0 0 1.244 1.101
|
||||
0 0 0 0 1.393 0.1846
|
||||
cal (r) : 321.528 MeV
|
||||
9.067 5.142 0.7614 0 0 0
|
||||
88.42 211.9 3.315 0 0 0
|
||||
0.9632 0.454 0.04667 0 0 0
|
||||
0 0 1.497 0 0 0
|
||||
Event 1392
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -4.23162 -5.22164 -15 cm
|
||||
right: -10.2049 0.257857 -15 cm
|
||||
left: -6.59443 -3.99708 -15 cm
|
||||
right: -1.32488 0.356727 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 135.429 deg
|
||||
-- mass of the output particle: 571.676 MeV
|
||||
-- mass of the nucleus output particle: 916.713 MeV
|
||||
-- the angle: 124.932 deg
|
||||
-- mass of the output particle: 209.366 MeV
|
||||
-- mass of the nucleus output particle: 1.29562 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 130.8992 -34.3615 259.4226 MeV -- 642.2060 MeV
|
||||
(SCM) : eta 130.8992 -34.3615 -21.5165 MeV -- 587.8702 MeV
|
||||
Nucleus output particle (LAB) : neutron -130.8992 34.3615 470.5774 MeV -- 1.0393 GeV
|
||||
(SCM) : neutron -130.8992 34.3615 21.5165 MeV -- 926.8985 MeV
|
||||
Output particle (LAB) : eta 57.8240 -10.1109 118.1801 MeV -- 247.4800 MeV
|
||||
(SCM) : eta 57.8240 -10.1109 11.9219 MeV -- 217.7657 MeV
|
||||
Nucleus output particle (LAB) : neutron -57.8240 10.1109 611.8199 MeV -- 1.4340 GeV
|
||||
(SCM) : neutron -57.8240 10.1109 -11.9219 MeV -- 1.2970 GeV
|
||||
-- triggered angular ranges:
|
||||
6 [ 0.0000, -0.2000)
|
||||
5 [ 0.2000, 0.0000)
|
||||
--- Energy Deposit
|
||||
monitor : 430.919 keV
|
||||
monitor : 584.802 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 408.742 MeV
|
||||
0 0 0 0 0 2.727
|
||||
0 0.5286 0 0.9527 2.837 0
|
||||
0 0 1.191 119.8 8.794 3.554
|
||||
0 0.4311 10.28 246.7 10.39 0.523
|
||||
cal (r) : 233.464 MeV
|
||||
0 0 0 0 3.819 1.266
|
||||
0 0 0 0 116.9 2.896
|
||||
0 0 0 0.9959 84.82 20.72
|
||||
0 0 0 0 2.019 0
|
||||
Event 7948
|
||||
cal (l) : 160.819 MeV
|
||||
0 0 0 0 0 0
|
||||
0 0 0 0.7839 1.819 0
|
||||
0 0 0 1.399 141.9 0.5567
|
||||
0 0 5.049 8.923 0.4212 0
|
||||
cal (r) : 86.661 MeV
|
||||
0 0 0 3.43 0 0
|
||||
0 0 3.963 20.98 0 0
|
||||
0 0.2633 4.454 53.57 0 0
|
||||
0 0 0 0 0 0
|
||||
Event 1552
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -6.18349 6.41759 -15 cm
|
||||
right: -8.19992 2.12718 -15 cm
|
||||
left: -3.75405 -2.13161 -15 cm
|
||||
right: -10.8062 -3.83562 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 131.295 deg
|
||||
-- mass of the output particle: 500.942 MeV
|
||||
-- mass of the nucleus output particle: 976.569 MeV
|
||||
-- the angle: 136.287 deg
|
||||
-- mass of the output particle: 187.293 MeV
|
||||
-- mass of the nucleus output particle: 1.31852 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 -150.4224 35.1231 213.7638 MeV -- 566.1255 MeV
|
||||
(SCM) : eta -150.4224 35.1231 -35.5360 MeV -- 525.4197 MeV
|
||||
Nucleus output particle (LAB) : neutron 150.4224 -35.1231 516.2362 MeV -- 1.1154 GeV
|
||||
(SCM) : neutron 150.4224 -35.1231 35.5360 MeV -- 989.3489 MeV
|
||||
Output particle (LAB) : eta -49.3578 -10.7404 70.7773 MeV -- 206.4934 MeV
|
||||
(SCM) : eta -49.3578 -10.7404 -20.9462 MeV -- 195.1124 MeV
|
||||
Nucleus output particle (LAB) : neutron 49.3578 10.7404 659.2227 MeV -- 1.4750 GeV
|
||||
(SCM) : neutron 49.3578 10.7404 20.9462 MeV -- 1.3197 GeV
|
||||
-- triggered angular ranges:
|
||||
7 [-0.2000, -0.4000)
|
||||
--- Energy Deposit
|
||||
monitor : 461.389 keV
|
||||
monitor : 388.451 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 30.236 keV
|
||||
cal (l) : 215.709 MeV
|
||||
0 0 0.5764 56.62 97.49 0.9733
|
||||
0 0 0 34.44 24.72 0
|
||||
0 0 0 0.5898 0.2999 0
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 81.3543 MeV
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 350.416 MeV
|
||||
0 0 0.7501 0.765 4.834 2.178
|
||||
0 0 6.003 9.046 297.5 13.69
|
||||
0 0 0.1387 3.938 3.873 4.673
|
||||
0 0 0 0.9534 0 2.104
|
||||
Event 8031
|
||||
0 0 0 0.6441 2.526 0
|
||||
0 0 0.5642 76.71 0.6745 0
|
||||
0 0 0 0.2312 0 0
|
||||
cal (r) : 125.139 MeV
|
||||
0 0 0 0 1.091 0
|
||||
0 0 0 0 0 0
|
||||
0 0 0 0 106.8 4.505
|
||||
0 0 0 0 1.643 11.09
|
||||
Event 2314
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 718.8 MeV : 9.445 1.399 -1.25 mm [0.005182, 0.003488, 1]
|
||||
target : pi- [1,bp] 718.2 MeV : 3.931 3.09 0.2802 cm [-0.6404, -0.768, 0.004806]
|
||||
: eta [6,op] 333 MeV : 3.484 2.554 0.2836 cm [-0.8083, -0.5529, 0.2023]
|
||||
: neutron [7,np] 418.8 MeV : 3.484 2.554 0.2836 cm [-0.456, -0.8767, -0.1531]
|
||||
: pi0 [10,opdp] 176.7 MeV : 3.484 2.554 0.2836 cm [-0.587, 0.1759, 0.7902]
|
||||
: pi0 [8,opdp] 230.4 MeV : 3.484 2.554 0.2836 cm [-0.4968, -0.859, -0.1238]
|
||||
vc (l) : tp is not valid
|
||||
vc (r) : tp is not valid
|
||||
cal (l) : tp is not valid
|
||||
cal (r) : tp is not valid
|
||||
---
|
||||
angle between the eta decay products : 87.5551 deg
|
||||
--- Triggered angular ranges:
|
||||
4 [ 0.4000, 0.2000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- 1.8765 3.2505 718.0938 MeV -- 731.5412 MeV
|
||||
(SCM) : pi- 1.1679 2.0231 446.9388 MeV -- 468.2303 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton -1.1679 -2.0231 -446.9388 MeV -- 1.0393 GeV
|
||||
Output particle (LAB) : eta -87.8643 67.3725 314.0654 MeV -- 641.1311 MeV
|
||||
(SCM) : eta -88.5740 66.1432 42.4866 MeV -- 560.5160 MeV
|
||||
Nucleus output particle (LAB) : neutron 89.7408 -64.1220 404.0284 MeV -- 1.0287 GeV
|
||||
(SCM) : neutron 88.5740 -66.1432 -42.4866 MeV -- 946.9997 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -1.62755 -6.10162 -15 cm
|
||||
right: -11.779 -2.4304 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 138.807 deg
|
||||
-- mass of the output particle: 141.531 MeV
|
||||
-- mass of the nucleus output particle: 1.37125 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 -11.9935 -10.4615 51.1517 MeV -- 151.3301 MeV
|
||||
(SCM) : eta -11.9935 -10.4615 -16.1475 MeV -- 143.3354 MeV
|
||||
Nucleus output particle (LAB) : neutron 11.9935 10.4615 678.8483 MeV -- 1.5302 GeV
|
||||
(SCM) : neutron 11.9935 10.4615 16.1475 MeV -- 1.3714 GeV
|
||||
-- triggered angular ranges:
|
||||
9 [-0.6000, -0.8000)
|
||||
--- Energy Deposit
|
||||
monitor : 451.566 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 72.4733 MeV
|
||||
0 0 0 0 0 0
|
||||
0 0 0 0 0 0
|
||||
0 0 0.4857 47.84 0 0.5353
|
||||
0 2.266 7.994 12.09 1.255 0
|
||||
cal (r) : 78.8568 MeV
|
||||
0 0 0 0 0 0
|
||||
0 0 0 0 0 1.642
|
||||
0 0 0 0 52.51 24.71
|
||||
0 0 0 0 0 0
|
||||
Event 4607
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -8.49269 1.42467 -15 cm
|
||||
right: 10.2186 3.87926 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 112.132 deg
|
||||
-- mass of the output particle: 547.032 MeV
|
||||
-- mass of the nucleus output particle: 954.769 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 -12.1352 29.1622 367.3304 MeV -- 659.6769 MeV
|
||||
(SCM) : eta -12.1352 29.1622 89.8487 MeV -- 555.2610 MeV
|
||||
Nucleus output particle (LAB) : neutron 12.1352 -29.1622 362.6696 MeV -- 1.0218 GeV
|
||||
(SCM) : neutron 12.1352 -29.1622 -89.8487 MeV -- 959.5077 MeV
|
||||
-- triggered angular ranges:
|
||||
1 [ 1.0000, 0.8000)
|
||||
--- Energy Deposit
|
||||
monitor : 576.582 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 319.126 MeV
|
||||
0 0 0 2.25 1.058 0.7604
|
||||
0 0 0.9012 15.89 232.5 5.75
|
||||
0 0 0 0.3715 53.46 4.844
|
||||
0 0 0 0.4397 0.8548 0
|
||||
cal (r) : 340.551 MeV
|
||||
6.431 24.37 3.518 0 0 0
|
||||
30.14 266.8 1.04 0 0 0
|
||||
4.962 3.28 0 0 0 0
|
||||
0 0 0 0 0 0
|
||||
Event 5534
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -3.84452 -3.99897 -15 cm
|
||||
right: 6.07111 5.79678 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 120.749 deg
|
||||
-- mass of the output particle: 489.982 MeV
|
||||
-- mass of the nucleus output particle: 999.014 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 125.8960 -2.7284 284.6290 MeV -- 580.4765 MeV
|
||||
(SCM) : eta 125.8960 -2.7284 36.2129 MeV -- 507.1989 MeV
|
||||
Nucleus output particle (LAB) : neutron -125.8960 2.7284 445.3710 MeV -- 1.1010 GeV
|
||||
(SCM) : neutron -125.8960 2.7284 -36.2129 MeV -- 1.0076 GeV
|
||||
-- triggered angular ranges:
|
||||
4 [ 0.4000, 0.2000)
|
||||
--- Energy Deposit
|
||||
monitor : 452.439 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 359.58 MeV
|
||||
0 0 0 1.17 0 1.782
|
||||
0 0 1.495 31.65 0.6881 1.163
|
||||
0 0 2.829 57.21 4.651 0
|
||||
0 0 4.086 242.5 10.37 0
|
||||
cal (r) : 220.897 MeV
|
||||
0.4384 168.7 2.704 0 0 0
|
||||
0 21.17 21.93 1.297 3.214 0
|
||||
0 0.569 0.8674 0 0 0
|
||||
0 0 0 0 0 0
|
||||
Event 8028
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 727.2 MeV : 1.59 0.4321 -0.125 cm [-0.000548, -0.02195, 0.9998]
|
||||
target : pi- [1,bp] 725.9 MeV : 4.241 2.649 -0.2809 cm [-0.6432, -0.7653, -0.02504]
|
||||
@@ -1146,212 +1238,120 @@ Event 8031
|
||||
2.085 5.011 5.489 0.2953 0 0
|
||||
1.29 332.2 17.73 0.4702 0.2353 0
|
||||
9.187 4.363 0.7379 0.4034 0 0
|
||||
Event 8453
|
||||
Event 12524
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 734.3 MeV : 1.063 0.3207 -0.125 cm [0.002178, -0.0003897, 1]
|
||||
target : pi- [1,bp] 733.6 MeV : 3.992 3.011 0.3062 cm [-0.641, -0.7676, -0.0008455]
|
||||
: eta [4,op] 324.4 MeV : 3.458 2.371 0.3055 cm [-0.9083, -0.4113, 0.07661]
|
||||
: neutron [5,np] 464.7 MeV : 3.458 2.371 0.3055 cm [-0.3779, -0.9243, -0.05437]
|
||||
: gamma [7,opdp] 237.7 MeV : 3.458 2.371 0.3055 cm [0.3973, -0.9177, 0.001144]
|
||||
: gamma [6,opdp] 398.9 MeV : 3.458 2.371 0.3055 cm [-0.9752, 0.2125, 0.06161]
|
||||
vc (l) : gamma [7,opdp] 237.7 MeV : 2.483 0.3734 -0.25 cm [-0.0278, 0.001144, 0.9996]
|
||||
vc (r) : gamma [6,opdp] 398.9 MeV : -0.2771 4.104 -0.25 cm [0.04716, 0.06161, 0.997]
|
||||
cal (l) : gamma [7,opdp] 237.7 MeV : 2.448 0.3749 -15 cm [-0.0278, 0.001144, 0.9996]
|
||||
cal (r) : gamma [6,opdp] 398.9 MeV : -0.218 4.181 -15 cm [0.04716, 0.06161, 0.997]
|
||||
monitor : pi- [1,bp] 729.2 MeV : 1.125 -0.4654 -0.125 cm [0.00944, -0.01921, 0.9998]
|
||||
target : pi- [1,bp] 728.5 MeV : 4.168 2.762 -0.994 cm [-0.6347, -0.7726, -0.0174]
|
||||
: eta [5,op] 218.1 MeV : -0.2535 -2.616 -1.11 cm [-0.9379, -0.3466, 0.01602]
|
||||
: neutron [6,np] 549.9 MeV : -0.2535 -2.616 -1.11 cm [-0.466, -0.8843, -0.02865]
|
||||
: gamma [8,opdp] 234.6 MeV : -0.2535 -2.616 -1.11 cm [0.5525, -0.8323, 0.04551]
|
||||
: gamma [7,opdp] 355.1 MeV : -0.2535 -2.616 -1.11 cm [-0.9413, 0.337, -0.02023]
|
||||
vc (l) : gamma [8,opdp] 234.6 MeV : 7.183 1.492 -0.25 cm [0.149, 0.04551, 0.9878]
|
||||
vc (r) : gamma [7,opdp] 355.1 MeV : -2.274 -2.312 -0.25 cm [-0.08194, -0.02023, 0.9964]
|
||||
cal (l) : gamma [8,opdp] 234.6 MeV : 7.371 1.55 -15 cm [0.149, 0.04551, 0.9878]
|
||||
cal (r) : gamma [7,opdp] 355.1 MeV : -2.377 -2.337 -15 cm [-0.08194, -0.02023, 0.9964]
|
||||
---
|
||||
angle between the eta decay products : 125.615 deg
|
||||
--- Triggered angular ranges:
|
||||
5 [ 0.2000, 0.0000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- 1.6296 -0.4167 733.4303 MeV -- 746.5941 MeV
|
||||
(SCM) : pi- 1.0080 -0.2578 453.6735 MeV -- 474.6583 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton -1.0080 0.2578 -453.6735 MeV -- 1.0422 GeV
|
||||
Output particle (LAB) : eta -139.9160 24.8483 291.5661 MeV -- 636.6769 MeV
|
||||
(SCM) : eta -140.5283 25.0049 15.9784 MeV -- 566.3758 MeV
|
||||
Nucleus output particle (LAB) : neutron 141.5456 -25.2650 441.8642 MeV -- 1.0482 GeV
|
||||
(SCM) : neutron 140.5283 -25.0049 -15.9784 MeV -- 950.4798 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 2.89261 1.94969 -15 cm
|
||||
right: 0.0704611 3.68174 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 132.412 deg
|
||||
-- mass of the output particle: 541.276 MeV
|
||||
-- mass of the nucleus output particle: 937.661 MeV
|
||||
-- production model data:
|
||||
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
|
||||
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
|
||||
Output particle (LAB) : eta -153.7724 31.4244 251.0538 MeV -- 616.9614 MeV
|
||||
(SCM) : eta -153.7724 31.4244 -18.6406 MeV -- 563.8802 MeV
|
||||
Nucleus output particle (LAB) : neutron 153.7724 -31.4244 478.9462 MeV -- 1.0645 GeV
|
||||
(SCM) : neutron 153.7724 -31.4244 18.6406 MeV -- 950.8885 MeV
|
||||
-- triggered angular ranges:
|
||||
6 [ 0.0000, -0.2000)
|
||||
--- Energy Deposit
|
||||
monitor : 555.52 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 220.874 MeV
|
||||
0.1232 0.1965 1.72 0.3388 0 0
|
||||
0.01192 0 187.3 1.338 0 0
|
||||
0 0.6442 28.41 0.7547 0 0
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 396.088 MeV
|
||||
0 0.8454 14.69 5.46 0.1124 1.135
|
||||
0 0.3678 275.4 88.15 6.208 0
|
||||
0 1.166 1.208 0.9934 0.3767 0
|
||||
0 0 0 0 0 0
|
||||
Event 8814
|
||||
--- Track Points
|
||||
monitor : pi- [1,bp] 725.1 MeV : -0.8739 1.901 -0.125 cm [0.003236, -0.00523, 1]
|
||||
target : pi- [1,bp] 724.6 MeV : 2.65 4.24 1.803 cm [-0.6372, -0.7707, -0.002644]
|
||||
: eta [4,op] 241.2 MeV : -1.215 -0.4384 1.789 cm [-0.6156, -0.6279, -0.4762]
|
||||
: neutron [5,np] 524.4 MeV : -1.215 -0.4384 1.789 cm [-0.5941, -0.7748, 0.2161]
|
||||
: pi0 [8,opdp] 39.97 MeV : -1.215 -0.4384 1.789 cm [-0.689, -0.7116, -0.1376]
|
||||
: pi0 [6,opdp] 195.9 MeV : -1.215 -0.4384 1.789 cm [0.2569, -0.7748, -0.5777]
|
||||
vc (l) : tp is not valid
|
||||
vc (r) : tp is not valid
|
||||
cal (l) : tp is not valid
|
||||
cal (r) : tp is not valid
|
||||
---
|
||||
angle between the eta decay products : 63.0106 deg
|
||||
angle between the eta decay products : 143.269 deg
|
||||
--- Triggered angular ranges:
|
||||
8 [-0.4000, -0.6000)
|
||||
--- Production model data:
|
||||
Incident particle (LAB) : pi- 6.1133 -1.5483 722.9508 MeV -- 736.3270 MeV
|
||||
(SCM) : pi- 3.7974 -0.9618 449.0754 MeV -- 470.2806 MeV
|
||||
Incident particle (LAB) : pi- 8.1896 -12.2615 726.6360 MeV -- 740.0656 MeV
|
||||
(SCM) : pi- 5.0793 -7.6048 450.6722 MeV -- 471.8780 MeV
|
||||
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
|
||||
(SCM) : proton -3.7974 0.9618 -449.0754 MeV -- 1.0402 GeV
|
||||
Output particle (LAB) : eta -16.4024 -114.8730 211.4647 MeV -- 598.6108 MeV
|
||||
(SCM) : eta -18.6307 -114.3086 -52.0576 MeV -- 562.3845 MeV
|
||||
Nucleus output particle (LAB) : neutron 22.5157 113.3247 511.4861 MeV -- 1.0760 GeV
|
||||
(SCM) : neutron 18.6307 114.3086 52.0576 MeV -- 948.1069 MeV
|
||||
(SCM) : proton -5.0793 7.6048 -450.6722 MeV -- 1.0409 GeV
|
||||
Output particle (LAB) : eta -108.1116 3.4945 189.4264 MeV -- 589.6910 MeV
|
||||
(SCM) : eta -111.0720 7.9267 -73.2368 MeV -- 563.8406 MeV
|
||||
Nucleus output particle (LAB) : neutron 116.3012 -15.7560 537.2096 MeV -- 1.0886 GeV
|
||||
(SCM) : neutron 111.0720 -7.9267 73.2368 MeV -- 948.9713 MeV
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 3.70738 3.0377 -15 cm
|
||||
right: -0.263301 6.30713 -15 cm
|
||||
left: 9.56663 3.28627 -15 cm
|
||||
right: -1.81298 -2.60317 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 133.003 deg
|
||||
-- mass of the output particle: 213.984 MeV
|
||||
-- mass of the nucleus output particle: 1.29238 GeV
|
||||
-- the angle: 140.834 deg
|
||||
-- mass of the output particle: 568.087 MeV
|
||||
-- mass of the nucleus output particle: 916.266 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 -51.2188 20.2650 95.6243 MeV -- 240.7637 MeV
|
||||
(SCM) : eta -51.2188 20.2650 -9.8799 MeV -- 221.1804 MeV
|
||||
Nucleus output particle (LAB) : neutron 51.2188 -20.2650 634.3757 MeV -- 1.4407 GeV
|
||||
(SCM) : neutron 51.2188 -20.2650 9.8799 MeV -- 1.2936 GeV
|
||||
Output particle (LAB) : eta -134.7894 -4.3411 217.9352 MeV -- 623.2224 MeV
|
||||
(SCM) : eta -134.7894 -4.3411 -58.4218 MeV -- 586.7908 MeV
|
||||
Nucleus output particle (LAB) : neutron 134.7894 4.3411 512.0648 MeV -- 1.0583 GeV
|
||||
(SCM) : neutron 134.7894 4.3411 58.4218 MeV -- 927.9778 MeV
|
||||
-- triggered angular ranges:
|
||||
6 [ 0.0000, -0.2000)
|
||||
7 [-0.2000, -0.4000)
|
||||
--- Energy Deposit
|
||||
monitor : 411.97 keV
|
||||
monitor : 534.171 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 90.7073 MeV
|
||||
0.449 0.5764 0.5669 1.041 0 0
|
||||
3.519 0.973 61.89 19.29 0 0
|
||||
0.4262 0.5326 0.5577 0.8809 0 0
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 150.056 MeV
|
||||
0.6575 1.975 11.35 82.03 0.3321 0
|
||||
0 0.6641 4.814 47.44 0 0
|
||||
0 0 0 0.786 0 0
|
||||
0 0 0 0 0 0
|
||||
Event 9834
|
||||
vc (r) : 18.8589 keV
|
||||
cal (l) : 232.809 MeV
|
||||
5.584 0.2642 5.859 0.2939 0 0
|
||||
20.89 194.8 1.675 0 0 0
|
||||
1.47 0.8382 0.3423 0 0 0
|
||||
0 0.7497 0 0 0 0
|
||||
cal (r) : 390.413 MeV
|
||||
0 0 1.498 0 0.2013 0
|
||||
0 0.1556 11.92 8.616 2.098 0
|
||||
0.3261 0 4.911 339.7 5.192 0.1387
|
||||
0.5737 1.548 6.118 2.433 4.685 0.3184
|
||||
Event 13675
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: -2.40254 5.40549 -15 cm
|
||||
right: 9.8561 2.4964 -15 cm
|
||||
left: 11.5356 1.52658 -15 cm
|
||||
right: -2.7864 1.96201 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 117.989 deg
|
||||
-- mass of the output particle: 217.764 MeV
|
||||
-- mass of the nucleus output particle: 1.29479 GeV
|
||||
-- the angle: 143.398 deg
|
||||
-- mass of the output particle: 535.815 MeV
|
||||
-- mass of the nucleus output particle: 958.104 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 -7.6121 16.2076 130.8642 MeV -- 254.6902 MeV
|
||||
(SCM) : eta -7.6121 16.2076 22.5272 MeV -- 219.6569 MeV
|
||||
Nucleus output particle (LAB) : neutron 7.6121 -16.2076 599.1358 MeV -- 1.4268 GeV
|
||||
(SCM) : neutron 7.6121 -16.2076 -22.5272 MeV -- 1.2951 GeV
|
||||
-- triggered angular ranges:
|
||||
2 [ 0.8000, 0.6000)
|
||||
--- Energy Deposit
|
||||
monitor : 556.783 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 118.429 MeV
|
||||
0 0 1.436 45.51 1.198 0
|
||||
0 0 5.263 63.68 0.9284 0
|
||||
0 0 0.4215 0 0 0
|
||||
0 0 0 0 0 0
|
||||
cal (r) : 136.262 MeV
|
||||
1.732 9.715 0 0 0 0
|
||||
4.061 110.7 0.8083 0 0 0
|
||||
4.589 2.627 1.47 0 0 0
|
||||
0 0.5151 0 0 0 0
|
||||
Event 9952
|
||||
--- Reconstructed data:
|
||||
-- entry points:
|
||||
left: 9.33026 -3.06906 -15 cm
|
||||
right: 2.60776 6.36359 -15 cm
|
||||
target: 0 0 0 fm
|
||||
-- the angle: 136.381 deg
|
||||
-- mass of the output particle: 458.847 MeV
|
||||
-- mass of the nucleus output particle: 1.05006 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 -50.3787 19.6171 191.0855 MeV -- 499.9774 MeV
|
||||
(SCM) : eta -50.3787 19.6171 -28.8324 MeV -- 462.9201 MeV
|
||||
Nucleus output particle (LAB) : neutron 50.3787 -19.6171 538.9145 MeV -- 1.1815 GeV
|
||||
(SCM) : neutron 50.3787 -19.6171 28.8324 MeV -- 1.0518 GeV
|
||||
Output particle (LAB) : eta -96.6996 17.0437 187.5578 MeV -- 576.1221 MeV
|
||||
(SCM) : eta -96.6996 17.0437 -69.4440 MeV -- 549.1459 MeV
|
||||
Nucleus output particle (LAB) : neutron 96.6996 -17.0437 542.4422 MeV -- 1.1054 GeV
|
||||
(SCM) : neutron 96.6996 -17.0437 69.4440 MeV -- 965.6228 MeV
|
||||
-- triggered angular ranges:
|
||||
8 [-0.4000, -0.6000)
|
||||
--- Energy Deposit
|
||||
monitor : 634.172 keV
|
||||
monitor : 502.144 keV
|
||||
vc (l) : 0 eV
|
||||
vc (r) : 0 eV
|
||||
cal (l) : 212.164 MeV
|
||||
0 0 0 0 0 0
|
||||
0.2423 3.486 1.298 0 0 0
|
||||
7.724 191.7 0.687 0 0 0
|
||||
0.4591 6.182 0.3836 0 0 0
|
||||
cal (r) : 287.814 MeV
|
||||
0 1.098 230.6 12.33 0 0
|
||||
3.567 1.297 15.82 22.16 0 0
|
||||
0 0.5338 0 0.3863 0 0
|
||||
0 0 0 0 0 0
|
||||
cal (l) : 230.151 MeV
|
||||
4.438 6.717 0 0 0 0
|
||||
62.82 114.2 0 0 0 0
|
||||
11.48 26.13 0.6037 0 0 0
|
||||
3.806 0 0 0 0 0
|
||||
cal (r) : 345.971 MeV
|
||||
0 0 4.381 3.798 0.419 0
|
||||
0 0.9081 6.273 277.2 2.056 1.305
|
||||
0 0 0.852 42.47 5.81 0
|
||||
0 0 0.4896 0 0 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 9953, effectively: 10
|
||||
User=8.210000s Real=8.820152s Sys=0.000000s
|
||||
Number of events processed : 13676, effectively: 10
|
||||
User=9.510000s Real=9.838983s Sys=0.010000s
|
||||
|
||||
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
|
||||
1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 274 ) | 0.00000000 ( 0 / 274 / 344 )
|
||||
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 315 ) | 0.00000000 ( 0 / 315 / 383 )
|
||||
3 [ 0.6000, 0.4000) | 0.00349650 ( 1 / 286 ) | 0.00349650 ( 1 / 286 / 359 )
|
||||
4 [ 0.4000, 0.2000) | 0.00000000 ( 0 / 264 ) | 0.00000000 ( 0 / 264 / 336 )
|
||||
5 [ 0.2000, 0.0000) | 0.00364964 ( 1 / 274 ) | 0.00000000 ( 0 / 274 / 348 )
|
||||
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 276 ) | 0.00724638 ( 2 / 276 / 344 )
|
||||
7 [-0.2000, -0.4000) | 0.00000000 ( 0 / 283 ) | 0.00000000 ( 0 / 283 / 335 )
|
||||
8 [-0.4000, -0.6000) | 0.00361011 ( 1 / 277 ) | 0.00000000 ( 0 / 277 / 337 )
|
||||
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 279 ) | 0.00000000 ( 0 / 279 / 360 )
|
||||
10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 321 ) | 0.00000000 ( 0 / 321 / 384 )
|
||||
1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 336 ) | 0.00000000 ( 0 / 336 / 422 )
|
||||
2 [ 0.8000, 0.6000) | 0.00000000 ( 0 / 372 ) | 0.00000000 ( 0 / 372 / 446 )
|
||||
3 [ 0.6000, 0.4000) | 0.00260417 ( 1 / 384 ) | 0.00260417 ( 1 / 384 / 467 )
|
||||
4 [ 0.4000, 0.2000) | 0.00250000 ( 1 / 400 ) | 0.00000000 ( 0 / 400 / 497 )
|
||||
5 [ 0.2000, 0.0000) | 0.00000000 ( 0 / 389 ) | 0.00000000 ( 0 / 389 / 493 )
|
||||
6 [ 0.0000, -0.2000) | 0.00000000 ( 0 / 403 ) | 0.00000000 ( 0 / 403 / 495 )
|
||||
7 [-0.2000, -0.4000) | 0.00000000 ( 0 / 381 ) | 0.00262467 ( 1 / 381 / 471 )
|
||||
8 [-0.4000, -0.6000) | 0.00277778 ( 1 / 360 ) | 0.00000000 ( 0 / 360 / 446 )
|
||||
9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 366 ) | 0.00273224 ( 1 / 366 / 447 )
|
||||
10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 366 ) | 0.00000000 ( 0 / 366 / 463 )
|
||||
---
|
||||
False hits (edt | rec): 7 | 7
|
||||
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 16; of which, static: 3
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.85 MB
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.97 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -253,8 +253,8 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
ooo Run 0 starts (global).
|
||||
|
||||
--------- Ranlux engine status ---------
|
||||
Initial seed = 1606871379
|
||||
float_seed_table[] = 0.939458 0.62324 0.465535 0.0973256 0.406636 0.289566 0.762446 0.616188 0.268306 0.178795 0.36999 0.847358 0.199686 0.353497 0.919378 0.171744 0.360638 0.609156 0.807621 0.281062 0.462247 0.400262 0.252149 0.502587
|
||||
Initial seed = 1612446729
|
||||
float_seed_table[] = 0.262669 0.582216 0.892682 0.831099 0.612249 0.729536 0.675103 0.721679 0.414743 0.60413 0.732873 0.267828 0.920257 0.300895 0.21161 0.38112 0.192683 0.177891 0.163855 0.488504 0.100146 0.399566 0.353986 0.501886
|
||||
i_lag = 23, j_lag = 9
|
||||
carry = 0, count24 = 0
|
||||
luxury = 3 nskip = 199
|
||||
@@ -265,7 +265,7 @@ mu- Mono Plane
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.060000s Real=2.096824s Sys=0.000000s
|
||||
User=2.370000s Real=2.423554s Sys=0.010000s
|
||||
### Run 0 (global) ended.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
@@ -283,22 +283,22 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 10
|
||||
Total navigation history collections cleaned: 9
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0115 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.024 MB
|
||||
Pool ID '7G4Track', size : 0.0471 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.025 MB
|
||||
Pool ID '7G4Track', size : 0.05 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.00481 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.096 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.099 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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=6.870000s Real=7.347390s Sys=0.010000s
|
||||
User=6.740000s Real=6.891389s Sys=0.000000s
|
||||
|
||||
-------------------------------------------------------------
|
||||
---> The calorimeter is 9 Modules
|
||||
@@ -202,106 +202,106 @@ Run Summary
|
||||
|
||||
total Energy (rms/mean) visible Energy (rms/mean)
|
||||
|
||||
layer 1: 1.5519 MeV +- 2.598 MeV (1.7e+02 %) 161.2 keV +- 667.5 keV (4.1e+02 %)
|
||||
layer 2: 1.5491 MeV +- 2.76 MeV (1.8e+02 %) 152.18 keV +- 545.3 keV (3.6e+02 %)
|
||||
layer 3: 1.5335 MeV +- 2.632 MeV (1.7e+02 %) 156.99 keV +- 794 keV (5.1e+02 %)
|
||||
layer 4: 1.522 MeV +- 2.255 MeV (1.5e+02 %) 159.06 keV +- 802.9 keV (5e+02 %)
|
||||
layer 5: 1.537 MeV +- 2.284 MeV (1.5e+02 %) 171.46 keV +- 1.083 MeV (6.3e+02 %)
|
||||
layer 6: 1.5252 MeV +- 2.408 MeV (1.6e+02 %) 154.94 keV +- 515.7 keV (3.3e+02 %)
|
||||
layer 7: 1.508 MeV +- 2.047 MeV (1.4e+02 %) 151.78 keV +- 456 keV (3e+02 %)
|
||||
layer 8: 1.5569 MeV +- 2.458 MeV (1.6e+02 %) 180.89 keV +- 1.081 MeV (6e+02 %)
|
||||
layer 9: 1.5175 MeV +- 2.08 MeV (1.4e+02 %) 149.11 keV +- 256.5 keV (1.7e+02 %)
|
||||
layer 10: 1.4992 MeV +- 2.222 MeV (1.5e+02 %) 159.03 keV +- 730.1 keV (4.6e+02 %)
|
||||
layer 11: 1.4953 MeV +- 1.973 MeV (1.3e+02 %) 158.97 keV +- 745.2 keV (4.7e+02 %)
|
||||
layer 12: 1.5226 MeV +- 2.172 MeV (1.4e+02 %) 163.81 keV +- 961.6 keV (5.9e+02 %)
|
||||
layer 13: 1.5103 MeV +- 1.816 MeV (1.2e+02 %) 150.57 keV +- 491.9 keV (3.3e+02 %)
|
||||
layer 14: 1.5171 MeV +- 1.856 MeV (1.2e+02 %) 153.37 keV +- 452.1 keV (2.9e+02 %)
|
||||
layer 15: 1.5011 MeV +- 2.022 MeV (1.3e+02 %) 162.44 keV +- 695 keV (4.3e+02 %)
|
||||
layer 16: 1.5154 MeV +- 1.948 MeV (1.3e+02 %) 151.68 keV +- 360.3 keV (2.4e+02 %)
|
||||
layer 17: 1.5339 MeV +- 2.14 MeV (1.4e+02 %) 161.37 keV +- 653 keV (4e+02 %)
|
||||
layer 18: 1.5105 MeV +- 2.199 MeV (1.5e+02 %) 161 keV +- 887.2 keV (5.5e+02 %)
|
||||
layer 19: 1.5161 MeV +- 2.533 MeV (1.7e+02 %) 161.1 keV +- 763.5 keV (4.7e+02 %)
|
||||
layer 20: 1.519 MeV +- 2.331 MeV (1.5e+02 %) 178.15 keV +- 1.239 MeV (7e+02 %)
|
||||
layer 21: 1.5267 MeV +- 2.275 MeV (1.5e+02 %) 159.6 keV +- 943.2 keV (5.9e+02 %)
|
||||
layer 22: 1.5193 MeV +- 2.04 MeV (1.3e+02 %) 157.83 keV +- 699.4 keV (4.4e+02 %)
|
||||
layer 23: 1.514 MeV +- 2.057 MeV (1.4e+02 %) 153.08 keV +- 435.9 keV (2.8e+02 %)
|
||||
layer 24: 1.515 MeV +- 2.239 MeV (1.5e+02 %) 152.24 keV +- 400.2 keV (2.6e+02 %)
|
||||
layer 25: 1.5247 MeV +- 2.29 MeV (1.5e+02 %) 158.23 keV +- 509.8 keV (3.2e+02 %)
|
||||
layer 26: 1.4886 MeV +- 1.844 MeV (1.2e+02 %) 151.55 keV +- 350.4 keV (2.3e+02 %)
|
||||
layer 27: 1.4946 MeV +- 1.873 MeV (1.3e+02 %) 149.94 keV +- 606.9 keV (4e+02 %)
|
||||
layer 28: 1.5343 MeV +- 2.611 MeV (1.7e+02 %) 153.51 keV +- 333.9 keV (2.2e+02 %)
|
||||
layer 29: 1.5177 MeV +- 2.184 MeV (1.4e+02 %) 152.38 keV +- 611.1 keV (4e+02 %)
|
||||
layer 30: 1.5025 MeV +- 2.084 MeV (1.4e+02 %) 159.42 keV +- 619.3 keV (3.9e+02 %)
|
||||
layer 31: 1.5345 MeV +- 2.512 MeV (1.6e+02 %) 172.34 keV +- 1.284 MeV (7.5e+02 %)
|
||||
layer 32: 1.5455 MeV +- 2.441 MeV (1.6e+02 %) 164.78 keV +- 785.1 keV (4.8e+02 %)
|
||||
layer 33: 1.5649 MeV +- 2.848 MeV (1.8e+02 %) 169.04 keV +- 756.3 keV (4.5e+02 %)
|
||||
layer 34: 1.5086 MeV +- 2.196 MeV (1.5e+02 %) 148.96 keV +- 351.6 keV (2.4e+02 %)
|
||||
layer 35: 1.5348 MeV +- 2.336 MeV (1.5e+02 %) 167.44 keV +- 713.2 keV (4.3e+02 %)
|
||||
layer 36: 1.5238 MeV +- 2.325 MeV (1.5e+02 %) 163.94 keV +- 961.2 keV (5.9e+02 %)
|
||||
layer 37: 1.5269 MeV +- 2.273 MeV (1.5e+02 %) 168.92 keV +- 877.1 keV (5.2e+02 %)
|
||||
layer 38: 1.5556 MeV +- 2.585 MeV (1.7e+02 %) 152.76 keV +- 741.6 keV (4.9e+02 %)
|
||||
layer 39: 1.495 MeV +- 2.145 MeV (1.4e+02 %) 168.11 keV +- 1.05 MeV (6.2e+02 %)
|
||||
layer 40: 1.4906 MeV +- 1.933 MeV (1.3e+02 %) 149.39 keV +- 418.4 keV (2.8e+02 %)
|
||||
layer 41: 1.5041 MeV +- 2.154 MeV (1.4e+02 %) 157.89 keV +- 826 keV (5.2e+02 %)
|
||||
layer 42: 1.5605 MeV +- 2.803 MeV (1.8e+02 %) 176.43 keV +- 1.284 MeV (7.3e+02 %)
|
||||
layer 43: 1.5142 MeV +- 2.221 MeV (1.5e+02 %) 156.87 keV +- 539.2 keV (3.4e+02 %)
|
||||
layer 44: 1.4932 MeV +- 2.018 MeV (1.4e+02 %) 162.76 keV +- 1.145 MeV (7e+02 %)
|
||||
layer 45: 1.5379 MeV +- 2.478 MeV (1.6e+02 %) 169.57 keV +- 978.8 keV (5.8e+02 %)
|
||||
layer 46: 1.5189 MeV +- 2.342 MeV (1.5e+02 %) 150.39 keV +- 463.8 keV (3.1e+02 %)
|
||||
layer 47: 1.5734 MeV +- 2.737 MeV (1.7e+02 %) 165.56 keV +- 858.9 keV (5.2e+02 %)
|
||||
layer 48: 1.5444 MeV +- 2.431 MeV (1.6e+02 %) 162.51 keV +- 1.027 MeV (6.3e+02 %)
|
||||
layer 49: 1.5027 MeV +- 2.084 MeV (1.4e+02 %) 149.37 keV +- 340.8 keV (2.3e+02 %)
|
||||
layer 50: 1.5209 MeV +- 2.167 MeV (1.4e+02 %) 163.38 keV +- 765.7 keV (4.7e+02 %)
|
||||
layer 51: 1.5264 MeV +- 2.375 MeV (1.6e+02 %) 170.42 keV +- 940.5 keV (5.5e+02 %)
|
||||
layer 52: 1.5051 MeV +- 2.256 MeV (1.5e+02 %) 163.15 keV +- 734.6 keV (4.5e+02 %)
|
||||
layer 53: 1.5356 MeV +- 2.083 MeV (1.4e+02 %) 147.5 keV +- 471 keV (3.2e+02 %)
|
||||
layer 54: 1.5085 MeV +- 1.993 MeV (1.3e+02 %) 154.71 keV +- 447.8 keV (2.9e+02 %)
|
||||
layer 55: 1.5343 MeV +- 2.37 MeV (1.5e+02 %) 156.87 keV +- 573 keV (3.7e+02 %)
|
||||
layer 56: 1.5399 MeV +- 2.438 MeV (1.6e+02 %) 160.06 keV +- 652.1 keV (4.1e+02 %)
|
||||
layer 57: 1.5367 MeV +- 2.452 MeV (1.6e+02 %) 162.09 keV +- 939.1 keV (5.8e+02 %)
|
||||
layer 58: 1.5231 MeV +- 2.372 MeV (1.6e+02 %) 154.97 keV +- 482.9 keV (3.1e+02 %)
|
||||
layer 59: 1.5298 MeV +- 2.272 MeV (1.5e+02 %) 171.43 keV +- 1.132 MeV (6.6e+02 %)
|
||||
layer 60: 1.539 MeV +- 2.44 MeV (1.6e+02 %) 162.38 keV +- 945.9 keV (5.8e+02 %)
|
||||
layer 61: 1.5069 MeV +- 2.151 MeV (1.4e+02 %) 149.07 keV +- 353.2 keV (2.4e+02 %)
|
||||
layer 62: 1.5052 MeV +- 1.982 MeV (1.3e+02 %) 150.47 keV +- 378.8 keV (2.5e+02 %)
|
||||
layer 63: 1.486 MeV +- 1.787 MeV (1.2e+02 %) 151.55 keV +- 355.7 keV (2.3e+02 %)
|
||||
layer 64: 1.486 MeV +- 1.835 MeV (1.2e+02 %) 160.44 keV +- 622.5 keV (3.9e+02 %)
|
||||
layer 65: 1.5208 MeV +- 2.452 MeV (1.6e+02 %) 161.63 keV +- 1.016 MeV (6.3e+02 %)
|
||||
layer 66: 1.4986 MeV +- 1.918 MeV (1.3e+02 %) 166.07 keV +- 765.8 keV (4.6e+02 %)
|
||||
layer 67: 1.4915 MeV +- 2.026 MeV (1.4e+02 %) 147.29 keV +- 300.3 keV (2e+02 %)
|
||||
layer 68: 1.5201 MeV +- 2.363 MeV (1.6e+02 %) 158.54 keV +- 743.9 keV (4.7e+02 %)
|
||||
layer 69: 1.5304 MeV +- 2.368 MeV (1.5e+02 %) 169.13 keV +- 754.2 keV (4.5e+02 %)
|
||||
layer 70: 1.5595 MeV +- 2.442 MeV (1.6e+02 %) 156.01 keV +- 516.9 keV (3.3e+02 %)
|
||||
layer 71: 1.5109 MeV +- 2.042 MeV (1.4e+02 %) 154.37 keV +- 466.6 keV (3e+02 %)
|
||||
layer 72: 1.4949 MeV +- 2.13 MeV (1.4e+02 %) 156.56 keV +- 714.5 keV (4.6e+02 %)
|
||||
layer 73: 1.5168 MeV +- 2.024 MeV (1.3e+02 %) 155.48 keV +- 503.9 keV (3.2e+02 %)
|
||||
layer 74: 1.4984 MeV +- 2.048 MeV (1.4e+02 %) 172.7 keV +- 1.002 MeV (5.8e+02 %)
|
||||
layer 75: 1.5383 MeV +- 2.327 MeV (1.5e+02 %) 158.66 keV +- 989.1 keV (6.2e+02 %)
|
||||
layer 76: 1.5288 MeV +- 2.375 MeV (1.6e+02 %) 149.51 keV +- 437 keV (2.9e+02 %)
|
||||
layer 77: 1.5302 MeV +- 2.163 MeV (1.4e+02 %) 167.14 keV +- 809.9 keV (4.8e+02 %)
|
||||
layer 78: 1.4965 MeV +- 2.026 MeV (1.4e+02 %) 160.58 keV +- 687.3 keV (4.3e+02 %)
|
||||
layer 79: 1.5433 MeV +- 2.122 MeV (1.4e+02 %) 148.23 keV +- 318.7 keV (2.2e+02 %)
|
||||
layer 80: 1.5131 MeV +- 2.121 MeV (1.4e+02 %) 152.18 keV +- 332.3 keV (2.2e+02 %)
|
||||
layer 81: 1.5003 MeV +- 2.307 MeV (1.5e+02 %) 156.09 keV +- 626.6 keV (4e+02 %)
|
||||
layer 82: 1.4789 MeV +- 1.778 MeV (1.2e+02 %) 160.86 keV +- 646 keV (4e+02 %)
|
||||
layer 83: 1.5234 MeV +- 2.224 MeV (1.5e+02 %) 150.58 keV +- 356.3 keV (2.4e+02 %)
|
||||
layer 84: 1.4924 MeV +- 1.928 MeV (1.3e+02 %) 160.44 keV +- 801.1 keV (5e+02 %)
|
||||
layer 85: 1.5111 MeV +- 2.037 MeV (1.3e+02 %) 153.24 keV +- 343.8 keV (2.2e+02 %)
|
||||
layer 86: 1.4823 MeV +- 1.747 MeV (1.2e+02 %) 153.24 keV +- 596 keV (3.9e+02 %)
|
||||
layer 87: 1.4995 MeV +- 1.898 MeV (1.3e+02 %) 157.93 keV +- 470.3 keV (3e+02 %)
|
||||
layer 88: 1.5018 MeV +- 2.01 MeV (1.3e+02 %) 159.38 keV +- 703.1 keV (4.4e+02 %)
|
||||
layer 89: 1.5183 MeV +- 2.236 MeV (1.5e+02 %) 161.45 keV +- 707.2 keV (4.4e+02 %)
|
||||
layer 90: 1.4782 MeV +- 1.709 MeV (1.2e+02 %) 152.32 keV +- 449.1 keV (2.9e+02 %)
|
||||
layer 1: 1.5508 MeV +- 2.69 MeV (1.7e+02 %) 156.35 keV +- 562.9 keV (3.6e+02 %)
|
||||
layer 2: 1.5289 MeV +- 2.393 MeV (1.6e+02 %) 156.19 keV +- 591.1 keV (3.8e+02 %)
|
||||
layer 3: 1.5557 MeV +- 2.591 MeV (1.7e+02 %) 162.19 keV +- 908.3 keV (5.6e+02 %)
|
||||
layer 4: 1.5666 MeV +- 2.757 MeV (1.8e+02 %) 161.07 keV +- 766.7 keV (4.8e+02 %)
|
||||
layer 5: 1.5664 MeV +- 2.845 MeV (1.8e+02 %) 171.62 keV +- 1.277 MeV (7.4e+02 %)
|
||||
layer 6: 1.5135 MeV +- 2.211 MeV (1.5e+02 %) 155.41 keV +- 627 keV (4e+02 %)
|
||||
layer 7: 1.4965 MeV +- 2.033 MeV (1.4e+02 %) 150.95 keV +- 558.4 keV (3.7e+02 %)
|
||||
layer 8: 1.486 MeV +- 1.674 MeV (1.1e+02 %) 156.96 keV +- 486.3 keV (3.1e+02 %)
|
||||
layer 9: 1.5342 MeV +- 2.526 MeV (1.6e+02 %) 166.25 keV +- 690.8 keV (4.2e+02 %)
|
||||
layer 10: 1.5147 MeV +- 2.162 MeV (1.4e+02 %) 159.25 keV +- 632.6 keV (4e+02 %)
|
||||
layer 11: 1.5277 MeV +- 2.071 MeV (1.4e+02 %) 160.17 keV +- 616.2 keV (3.8e+02 %)
|
||||
layer 12: 1.5055 MeV +- 2.012 MeV (1.3e+02 %) 153.68 keV +- 466 keV (3e+02 %)
|
||||
layer 13: 1.5389 MeV +- 2.335 MeV (1.5e+02 %) 148.16 keV +- 335.8 keV (2.3e+02 %)
|
||||
layer 14: 1.5262 MeV +- 2.289 MeV (1.5e+02 %) 149.94 keV +- 357.9 keV (2.4e+02 %)
|
||||
layer 15: 1.5514 MeV +- 2.475 MeV (1.6e+02 %) 160.34 keV +- 686.2 keV (4.3e+02 %)
|
||||
layer 16: 1.5002 MeV +- 2.031 MeV (1.4e+02 %) 160.8 keV +- 816.3 keV (5.1e+02 %)
|
||||
layer 17: 1.5181 MeV +- 2.3 MeV (1.5e+02 %) 161.81 keV +- 687.5 keV (4.2e+02 %)
|
||||
layer 18: 1.5208 MeV +- 2.133 MeV (1.4e+02 %) 149.24 keV +- 352 keV (2.4e+02 %)
|
||||
layer 19: 1.4829 MeV +- 2 MeV (1.3e+02 %) 158.19 keV +- 784.3 keV (5e+02 %)
|
||||
layer 20: 1.4784 MeV +- 1.956 MeV (1.3e+02 %) 161.71 keV +- 779.7 keV (4.8e+02 %)
|
||||
layer 21: 1.5142 MeV +- 1.969 MeV (1.3e+02 %) 153.58 keV +- 623.7 keV (4.1e+02 %)
|
||||
layer 22: 1.5313 MeV +- 2.372 MeV (1.5e+02 %) 158.96 keV +- 1.027 MeV (6.5e+02 %)
|
||||
layer 23: 1.5151 MeV +- 2.052 MeV (1.4e+02 %) 148.51 keV +- 555 keV (3.7e+02 %)
|
||||
layer 24: 1.502 MeV +- 1.811 MeV (1.2e+02 %) 148.73 keV +- 310.2 keV (2.1e+02 %)
|
||||
layer 25: 1.5397 MeV +- 2.522 MeV (1.6e+02 %) 161.68 keV +- 738 keV (4.6e+02 %)
|
||||
layer 26: 1.5223 MeV +- 2.301 MeV (1.5e+02 %) 154.53 keV +- 467.8 keV (3e+02 %)
|
||||
layer 27: 1.5161 MeV +- 2.288 MeV (1.5e+02 %) 162.98 keV +- 1.096 MeV (6.7e+02 %)
|
||||
layer 28: 1.5495 MeV +- 2.479 MeV (1.6e+02 %) 151.65 keV +- 372.4 keV (2.5e+02 %)
|
||||
layer 29: 1.5563 MeV +- 2.577 MeV (1.7e+02 %) 157.03 keV +- 631.1 keV (4e+02 %)
|
||||
layer 30: 1.5536 MeV +- 2.439 MeV (1.6e+02 %) 160.37 keV +- 663.7 keV (4.1e+02 %)
|
||||
layer 31: 1.5185 MeV +- 2.348 MeV (1.5e+02 %) 158.95 keV +- 838.2 keV (5.3e+02 %)
|
||||
layer 32: 1.5119 MeV +- 2.254 MeV (1.5e+02 %) 168.3 keV +- 916.9 keV (5.4e+02 %)
|
||||
layer 33: 1.5364 MeV +- 2.475 MeV (1.6e+02 %) 152.38 keV +- 464.2 keV (3e+02 %)
|
||||
layer 34: 1.5171 MeV +- 2.005 MeV (1.3e+02 %) 157.01 keV +- 671.5 keV (4.3e+02 %)
|
||||
layer 35: 1.5646 MeV +- 2.573 MeV (1.6e+02 %) 158.25 keV +- 591.3 keV (3.7e+02 %)
|
||||
layer 36: 1.5258 MeV +- 2.41 MeV (1.6e+02 %) 159.55 keV +- 615.2 keV (3.9e+02 %)
|
||||
layer 37: 1.5511 MeV +- 2.3 MeV (1.5e+02 %) 165.54 keV +- 947.7 keV (5.7e+02 %)
|
||||
layer 38: 1.4941 MeV +- 1.952 MeV (1.3e+02 %) 154.35 keV +- 742.8 keV (4.8e+02 %)
|
||||
layer 39: 1.5384 MeV +- 2.549 MeV (1.7e+02 %) 172.61 keV +- 1.124 MeV (6.5e+02 %)
|
||||
layer 40: 1.5093 MeV +- 2.136 MeV (1.4e+02 %) 154.45 keV +- 545 keV (3.5e+02 %)
|
||||
layer 41: 1.498 MeV +- 2.056 MeV (1.4e+02 %) 172.96 keV +- 1.125 MeV (6.5e+02 %)
|
||||
layer 42: 1.5057 MeV +- 2.2 MeV (1.5e+02 %) 164.89 keV +- 901.1 keV (5.5e+02 %)
|
||||
layer 43: 1.5453 MeV +- 2.377 MeV (1.5e+02 %) 156.21 keV +- 520.8 keV (3.3e+02 %)
|
||||
layer 44: 1.5199 MeV +- 2.255 MeV (1.5e+02 %) 167.19 keV +- 973.9 keV (5.8e+02 %)
|
||||
layer 45: 1.5438 MeV +- 2.378 MeV (1.5e+02 %) 165.1 keV +- 737.7 keV (4.5e+02 %)
|
||||
layer 46: 1.5195 MeV +- 2.232 MeV (1.5e+02 %) 160.48 keV +- 699.8 keV (4.4e+02 %)
|
||||
layer 47: 1.5114 MeV +- 1.929 MeV (1.3e+02 %) 156.62 keV +- 784.9 keV (5e+02 %)
|
||||
layer 48: 1.548 MeV +- 2.54 MeV (1.6e+02 %) 169.11 keV +- 1.008 MeV (6e+02 %)
|
||||
layer 49: 1.5218 MeV +- 2.266 MeV (1.5e+02 %) 152.86 keV +- 544 keV (3.6e+02 %)
|
||||
layer 50: 1.5364 MeV +- 2.399 MeV (1.6e+02 %) 148.25 keV +- 455.2 keV (3.1e+02 %)
|
||||
layer 51: 1.5323 MeV +- 2.525 MeV (1.6e+02 %) 161.74 keV +- 751.8 keV (4.6e+02 %)
|
||||
layer 52: 1.5506 MeV +- 2.696 MeV (1.7e+02 %) 162.55 keV +- 666.4 keV (4.1e+02 %)
|
||||
layer 53: 1.5114 MeV +- 2.271 MeV (1.5e+02 %) 156.36 keV +- 675.8 keV (4.3e+02 %)
|
||||
layer 54: 1.4903 MeV +- 1.705 MeV (1.1e+02 %) 153.12 keV +- 451.6 keV (2.9e+02 %)
|
||||
layer 55: 1.5098 MeV +- 2.123 MeV (1.4e+02 %) 152.19 keV +- 365.7 keV (2.4e+02 %)
|
||||
layer 56: 1.5258 MeV +- 2.154 MeV (1.4e+02 %) 156.68 keV +- 555.5 keV (3.5e+02 %)
|
||||
layer 57: 1.5323 MeV +- 2.116 MeV (1.4e+02 %) 161.62 keV +- 784.2 keV (4.9e+02 %)
|
||||
layer 58: 1.5085 MeV +- 2.179 MeV (1.4e+02 %) 155.54 keV +- 716.9 keV (4.6e+02 %)
|
||||
layer 59: 1.5132 MeV +- 2.083 MeV (1.4e+02 %) 155.11 keV +- 645.5 keV (4.2e+02 %)
|
||||
layer 60: 1.5083 MeV +- 2.114 MeV (1.4e+02 %) 153.15 keV +- 489 keV (3.2e+02 %)
|
||||
layer 61: 1.5001 MeV +- 1.947 MeV (1.3e+02 %) 155.52 keV +- 450.7 keV (2.9e+02 %)
|
||||
layer 62: 1.5226 MeV +- 2.371 MeV (1.6e+02 %) 151.2 keV +- 639.9 keV (4.2e+02 %)
|
||||
layer 63: 1.4871 MeV +- 1.9 MeV (1.3e+02 %) 158.97 keV +- 686.5 keV (4.3e+02 %)
|
||||
layer 64: 1.525 MeV +- 2.203 MeV (1.4e+02 %) 151.31 keV +- 364 keV (2.4e+02 %)
|
||||
layer 65: 1.5251 MeV +- 2.174 MeV (1.4e+02 %) 165.36 keV +- 752.5 keV (4.6e+02 %)
|
||||
layer 66: 1.5155 MeV +- 2.276 MeV (1.5e+02 %) 165.28 keV +- 910.9 keV (5.5e+02 %)
|
||||
layer 67: 1.5484 MeV +- 2.521 MeV (1.6e+02 %) 153.7 keV +- 469.8 keV (3.1e+02 %)
|
||||
layer 68: 1.5344 MeV +- 2.39 MeV (1.6e+02 %) 175.1 keV +- 1.072 MeV (6.1e+02 %)
|
||||
layer 69: 1.5053 MeV +- 2.267 MeV (1.5e+02 %) 160.33 keV +- 681.3 keV (4.2e+02 %)
|
||||
layer 70: 1.5524 MeV +- 2.521 MeV (1.6e+02 %) 156.32 keV +- 537.7 keV (3.4e+02 %)
|
||||
layer 71: 1.5188 MeV +- 2.193 MeV (1.4e+02 %) 165.24 keV +- 813.5 keV (4.9e+02 %)
|
||||
layer 72: 1.5033 MeV +- 1.865 MeV (1.2e+02 %) 154.21 keV +- 448.4 keV (2.9e+02 %)
|
||||
layer 73: 1.4944 MeV +- 1.985 MeV (1.3e+02 %) 155.37 keV +- 557.9 keV (3.6e+02 %)
|
||||
layer 74: 1.4685 MeV +- 1.593 MeV (1.1e+02 %) 152.02 keV +- 424.9 keV (2.8e+02 %)
|
||||
layer 75: 1.544 MeV +- 2.223 MeV (1.4e+02 %) 183.62 keV +- 1.319 MeV (7.2e+02 %)
|
||||
layer 76: 1.4886 MeV +- 1.782 MeV (1.2e+02 %) 158.08 keV +- 686.9 keV (4.3e+02 %)
|
||||
layer 77: 1.5473 MeV +- 2.242 MeV (1.4e+02 %) 171.72 keV +- 901.3 keV (5.2e+02 %)
|
||||
layer 78: 1.5025 MeV +- 2.003 MeV (1.3e+02 %) 169.16 keV +- 838.8 keV (5e+02 %)
|
||||
layer 79: 1.5382 MeV +- 2.402 MeV (1.6e+02 %) 154.96 keV +- 848.1 keV (5.5e+02 %)
|
||||
layer 80: 1.5218 MeV +- 2.285 MeV (1.5e+02 %) 164.31 keV +- 580.6 keV (3.5e+02 %)
|
||||
layer 81: 1.5227 MeV +- 2.325 MeV (1.5e+02 %) 161.52 keV +- 953.7 keV (5.9e+02 %)
|
||||
layer 82: 1.4884 MeV +- 1.886 MeV (1.3e+02 %) 151.25 keV +- 358.1 keV (2.4e+02 %)
|
||||
layer 83: 1.5611 MeV +- 2.525 MeV (1.6e+02 %) 150.44 keV +- 682.4 keV (4.5e+02 %)
|
||||
layer 84: 1.5163 MeV +- 2.175 MeV (1.4e+02 %) 164.31 keV +- 845.3 keV (5.1e+02 %)
|
||||
layer 85: 1.4761 MeV +- 1.591 MeV (1.1e+02 %) 157.99 keV +- 564.6 keV (3.6e+02 %)
|
||||
layer 86: 1.5181 MeV +- 1.922 MeV (1.3e+02 %) 158.79 keV +- 653.8 keV (4.1e+02 %)
|
||||
layer 87: 1.5137 MeV +- 2.253 MeV (1.5e+02 %) 167.04 keV +- 927.1 keV (5.6e+02 %)
|
||||
layer 88: 1.5165 MeV +- 1.881 MeV (1.2e+02 %) 159.1 keV +- 647.4 keV (4.1e+02 %)
|
||||
layer 89: 1.5052 MeV +- 2.1 MeV (1.4e+02 %) 165.94 keV +- 842.6 keV (5.1e+02 %)
|
||||
layer 90: 1.5036 MeV +- 2.048 MeV (1.4e+02 %) 150 keV +- 372.1 keV (2.5e+02 %)
|
||||
|
||||
total calor : 149.17 MeV +- 21.61 MeV ( 14 %) 14.302 MeV +- 6.869 MeV ( 48 %)
|
||||
total calor : 149.4 MeV +- 21.8 MeV ( 15 %) 14.31 MeV +- 6.794 MeV ( 47 %)
|
||||
------------------------------------------------------------
|
||||
|
||||
Leakage : 850.83 MeV +- 21.61 MeV
|
||||
Leakage : 850.6 MeV +- 21.8 MeV
|
||||
Eleak/Ebeam =85.1 % ( forward =85.1 % backward = 0 % lateral = 0 %)
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1287339941, 160147517
|
||||
Current couple of seeds = 1486711846, 115419582
|
||||
----------------------------------------
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -956,7 +956,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=17.690000s Real=18.415288s Sys=0.000000s
|
||||
User=15.780000s Real=16.358217s Sys=0.010000s
|
||||
### Run 0 end.
|
||||
... write file : ccal.root - done
|
||||
... close file : ccal.root - done
|
||||
@@ -972,23 +972,23 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 52
|
||||
Total navigation history collections cleaned: 51
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0769 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0759 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.0567 MB
|
||||
Pool ID '7G4Track', size : 0.113 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00673 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.111 MB
|
||||
Pool ID '7G4Track', size : 0.22 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0135 MB
|
||||
Pool ID '10G4Fragment', size : 0.00481 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0144 MB
|
||||
Pool ID '10G4Fragment', size : 0.00577 MB
|
||||
Number of memory pools allocated: 13 of which, static: 0
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.28 MB
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.44 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -1,31 +1,42 @@
|
||||
0.00257852
|
||||
0.0381311
|
||||
0.0430097
|
||||
0.08542
|
||||
0.0669049
|
||||
0.0704032
|
||||
0.0735815
|
||||
0.060237
|
||||
0.0455586
|
||||
0.038144
|
||||
0.0334445
|
||||
0.00814799
|
||||
0.0383568
|
||||
0.0392975
|
||||
0.0537235
|
||||
0.0733877
|
||||
0.0894659
|
||||
0.0800805
|
||||
0.122537
|
||||
0.0665959
|
||||
0.132245
|
||||
0.0216388
|
||||
0.0441139
|
||||
0.0711842
|
||||
0.0786428
|
||||
0.00658416
|
||||
0.00480005
|
||||
0.00812528
|
||||
0.0743474
|
||||
0.0806116
|
||||
0.00835588
|
||||
0.102054
|
||||
0.0693703
|
||||
0.0664721
|
||||
0.0753301
|
||||
0.00764178
|
||||
0.0893407
|
||||
0.0644211
|
||||
0.0827408
|
||||
0.0937174
|
||||
0.0809442
|
||||
0.0614875
|
||||
0.0722825
|
||||
0.079557
|
||||
0.129524
|
||||
0.0313974
|
||||
0.0438175
|
||||
0.0958102
|
||||
0.0541895
|
||||
0.0557067
|
||||
0.139514
|
||||
0.0118613
|
||||
0.0585896
|
||||
0.0367565
|
||||
0.0602155
|
||||
0.0534311
|
||||
0.0483238
|
||||
0.105154
|
||||
0.000828162
|
||||
0.00152534
|
||||
0.0359019
|
||||
0.0359019
|
||||
0.00372687
|
||||
0.0271057
|
||||
0.0844591
|
||||
0.101218
|
||||
0.127563
|
||||
0.044721
|
||||
0.0395376
|
||||
0.00533344
|
||||
0.00667947
|
||||
0.0740221
|
||||
0.0537061
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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=35.220000s Real=37.440691s Sys=0.010000s
|
||||
User=30.760000s Real=31.940029s Sys=0.020000s
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -504,7 +504,7 @@ Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=9.100000s Real=11.759469s Sys=0.190000s
|
||||
User=8.140000s Real=8.906370s Sys=0.160000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -514,6 +514,6 @@ Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 11 of which, static: 0
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.17 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.16 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -919,13 +919,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.27 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
|
||||
55.56 0.15 0.00 152k EmModuleLogical
|
||||
44.44 0.12 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
|
||||
@@ -936,8 +936,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Voxelisation: top memory users:
|
||||
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
|
||||
60.17 238k 1385 2370 3792 0.12 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.15 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
|
||||
@@ -1088,219 +1088,219 @@ HadEdep is=0.598729 MeV
|
||||
Edep in FCAL1 FCAl2 : 10409.2 0.598729
|
||||
**** Primary : 8
|
||||
Vertex : (10.9757,-1.49585,32740)
|
||||
Number of F1 Tiles with Positive energy : 47
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.91619 1.61862 1.65682
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7.55802
|
||||
9.47685
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
0.0155369 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 3
|
||||
N Tracks out of world 6
|
||||
N Secondaries 138
|
||||
EmEdep is=19737.5 MeV
|
||||
HadEdep is=0.0695529 MeV
|
||||
Edep in FCAL1 FCAl2 : 19737.5 0.0695529
|
||||
EmEdep is=19732.7 MeV
|
||||
HadEdep is=2.97703 MeV
|
||||
Edep in FCAL1 FCAl2 : 19732.7 2.97703
|
||||
**** Primary : 9
|
||||
Vertex : (-27.7734,3.36444,32740)
|
||||
Number of F1 Tiles with Positive energy : 75
|
||||
Number of F1 Tiles with Positive energy : 67
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.47406 1.65148 2.84712
|
||||
1.63615 1.99083 2.64945
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 182.533
|
||||
0 177.529
|
||||
Visible Energy in Upstream Dead Materials
|
||||
6559.38
|
||||
6518.18
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 187
|
||||
N Secondaries 201
|
||||
EmEdep is=10601.1 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 10601.1 0
|
||||
N Tracks out of world 219
|
||||
N Secondaries 88
|
||||
EmEdep is=10865.8 MeV
|
||||
HadEdep is=1.14846 MeV
|
||||
Edep in FCAL1 FCAl2 : 10865.8 1.14846
|
||||
**** Primary : 10
|
||||
Vertex : (-22.5474,4.1006,32740)
|
||||
Number of F1 Tiles with Positive energy : 47
|
||||
Number of F1 Tiles with Positive energy : 51
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.56708 2.90071 3.40503
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 8.25986
|
||||
Visible Energy in Upstream Dead Materials
|
||||
702.961
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 22
|
||||
N Secondaries 133
|
||||
EmEdep is=19091.3 MeV
|
||||
HadEdep is=0.362852 MeV
|
||||
Edep in FCAL1 FCAl2 : 19091.3 0.362852
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,32740)
|
||||
Number of F1 Tiles with Positive energy : 49
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.66901 1.54846 1.97867
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 90.2259
|
||||
Visible Energy in Upstream Dead Materials
|
||||
992.163
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 51
|
||||
N Secondaries 189
|
||||
EmEdep is=17887.4 MeV
|
||||
HadEdep is=1.11466 MeV
|
||||
Edep in FCAL1 FCAl2 : 17887.4 1.11466
|
||||
**** Primary : 12
|
||||
Vertex : (17.1015,6.30557,32740)
|
||||
Number of F1 Tiles with Positive energy : 52
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.80598 1.6025 1.41442
|
||||
2.79794 1.56228 1.51144
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3.97333
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0.0322714 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 4
|
||||
N Secondaries 190
|
||||
EmEdep is=19690.6 MeV
|
||||
HadEdep is=6.4729 MeV
|
||||
Edep in FCAL1 FCAl2 : 19690.6 6.4729
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 34
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.67457 1.78769 1.73725
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 63.0895
|
||||
Visible Energy in Upstream Dead Materials
|
||||
17561.2
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 193
|
||||
N Secondaries 216
|
||||
EmEdep is=971.775 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 971.775 0
|
||||
**** Primary : 14
|
||||
Vertex : (-0.133696,18.3151,32740)
|
||||
Number of F1 Tiles with Positive energy : 47
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.79273 1.8285 3.74908
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3.9163
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 1
|
||||
N Secondaries 159
|
||||
EmEdep is=19868.3 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19868.3 0
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,32740)
|
||||
Number of F1 Tiles with Positive energy : 41
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.19884 1.74236 1.54607
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3.57927
|
||||
3.07244
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 5
|
||||
N Secondaries 150
|
||||
EmEdep is=19805.5 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19805.5 0
|
||||
**** Primary : 16
|
||||
Vertex : (-20.8489,10.8988,32740)
|
||||
Number of F1 Tiles with Positive energy : 71
|
||||
N Secondaries 148
|
||||
EmEdep is=19825.7 MeV
|
||||
HadEdep is=2.38288 MeV
|
||||
Edep in FCAL1 FCAl2 : 19825.7 2.38288
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,32740)
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.85468 2.84319 5.7566
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 188.031
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7456.88
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 243
|
||||
N Secondaries 289
|
||||
EmEdep is=9803.69 MeV
|
||||
HadEdep is=0.484625 MeV
|
||||
Edep in FCAL1 FCAl2 : 9803.69 0.484625
|
||||
**** Primary : 17
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 50
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.05069 4.06838 4.38148
|
||||
2.37211 2.07064 1.89618
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.38
|
||||
0.552666
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 3
|
||||
N Secondaries 214
|
||||
EmEdep is=19773 MeV
|
||||
HadEdep is=6.03239 MeV
|
||||
Edep in FCAL1 FCAl2 : 19773 6.03239
|
||||
**** Primary : 18
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 50
|
||||
N Tracks out of world 2
|
||||
N Secondaries 256
|
||||
EmEdep is=19854.1 MeV
|
||||
HadEdep is=18.3455 MeV
|
||||
Edep in FCAL1 FCAl2 : 19854.1 18.3455
|
||||
**** Primary : 12
|
||||
Vertex : (17.1015,6.30557,32740)
|
||||
Number of F1 Tiles with Positive energy : 47
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.71302 1.469 1.76247
|
||||
1.89077 1.62659 1.66722
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 4.01464
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1096.6
|
||||
5.20023
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 26
|
||||
N Secondaries 166
|
||||
EmEdep is=17933.9 MeV
|
||||
HadEdep is=6.89984 MeV
|
||||
Edep in FCAL1 FCAl2 : 17933.9 6.89984
|
||||
N Tracks out of world 5
|
||||
N Secondaries 153
|
||||
EmEdep is=19819.7 MeV
|
||||
HadEdep is=2.47311 MeV
|
||||
Edep in FCAL1 FCAl2 : 19819.7 2.47311
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 8
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.5796 1.69073 1.49161
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 42.4312
|
||||
Visible Energy in Upstream Dead Materials
|
||||
18933.5
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 85
|
||||
N Secondaries 60
|
||||
EmEdep is=352.749 MeV
|
||||
HadEdep is=0.676638 MeV
|
||||
Edep in FCAL1 FCAl2 : 352.749 0.676638
|
||||
**** Primary : 14
|
||||
Vertex : (-0.133696,18.3151,32740)
|
||||
Number of F1 Tiles with Positive energy : 48
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.57816 2.35347 1.55095
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7.54888
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 5
|
||||
N Secondaries 182
|
||||
EmEdep is=19720.7 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19720.7 0
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,32740)
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.89643 2.96344 2.36511
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 15.4898
|
||||
Visible Energy in Upstream Dead Materials
|
||||
67.8872
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 4
|
||||
N Secondaries 94
|
||||
EmEdep is=19797.2 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19797.2 0
|
||||
**** Primary : 16
|
||||
Vertex : (-20.8489,10.8988,32740)
|
||||
Number of F1 Tiles with Positive energy : 63
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.62504 1.92594 1.73865
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 111.331
|
||||
Visible Energy in Upstream Dead Materials
|
||||
6807.06
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 144
|
||||
N Secondaries 194
|
||||
EmEdep is=11235.8 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 11235.8 0
|
||||
**** Primary : 17
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.47896 1.56692 1.56648
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 3.9527
|
||||
Visible Energy in Upstream Dead Materials
|
||||
65.1162
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 10
|
||||
N Secondaries 238
|
||||
EmEdep is=19545.9 MeV
|
||||
HadEdep is=1.38583 MeV
|
||||
Edep in FCAL1 FCAl2 : 19545.9 1.38583
|
||||
**** Primary : 18
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 42
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.98604 2.25129 4.0928
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
12.5131
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 2
|
||||
N Secondaries 130
|
||||
EmEdep is=19855.1 MeV
|
||||
HadEdep is=2.61536 MeV
|
||||
Edep in FCAL1 FCAl2 : 19855.1 2.61536
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 18
|
||||
User=8.040000s Real=8.263799s Sys=0.000000s
|
||||
User=7.350000s Real=7.510802s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1317,22 +1317,22 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 44
|
||||
Total navigation history collections cleaned: 43
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0625 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0586 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 '17G4DynamicParticle', size : 0.0981 MB
|
||||
Pool ID '7G4Track', size : 0.196 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0827 MB
|
||||
Pool ID '7G4Track', size : 0.165 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00481 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.00288 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.00288 MB
|
||||
Pool ID '10G4Fragment', size : 0.00192 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.00192 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.37 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.32 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -64,7 +64,7 @@ sigma+ sigma- sigma0 sigma_b+ sigma_b- sigma_b0 sigma_c+ sigma_c++ sigma_c0 ss1_
|
||||
su0_diquark su1_diquark t_quark tau+ tau- triton u_quark ud0_diquark ud1_diquark uu1_diquark
|
||||
xi(1530)- xi(1530)0 xi(1690)- xi(1690)0 xi(1820)- xi(1820)0 xi(1950)- xi(1950)0 xi(2030)- xi(2030)0
|
||||
xi- xi0 xi_b- xi_b0 xi_c+ xi_c0
|
||||
/control/execute /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc9/LABEL/centos7/THREAD/Seq/build/examples/advanced/medical_linac/batch.mac
|
||||
/control/execute /build/jenkins/workspace/examples/advanced/medical_linac/batch.mac
|
||||
########### Launch parameters #########
|
||||
###
|
||||
### Visualization
|
||||
@@ -889,10 +889,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=16.420000s Real=18.202365s Sys=0.010000s
|
||||
User=14.400000s Real=14.597300s Sys=0.010000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 137
|
||||
loop elapsed time [s] : 16.47
|
||||
loop elapsed time [s] : 14.44
|
||||
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||
@@ -1116,10 +1116,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=16.430000s Real=17.183352s Sys=0.020000s
|
||||
User=14.250000s Real=14.502926s Sys=0.030000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 206
|
||||
loop elapsed time [s] : 16.47
|
||||
loop elapsed time [s] : 14.29
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
/run/geometryModified
|
||||
@@ -1413,10 +1413,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=16.660000s Real=18.976479s Sys=0.020000s
|
||||
User=14.180000s Real=14.309413s Sys=0.010000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 102
|
||||
loop elapsed time [s] : 16.7
|
||||
loop elapsed time [s] : 14.22
|
||||
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||
@@ -1640,13 +1640,13 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.220000s Real=19.530983s Sys=0.050000s
|
||||
User=14.390000s Real=14.777959s Sys=0.030000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 117
|
||||
loop elapsed time [s] : 17.26
|
||||
loop elapsed time [s] : 14.43
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
loop elapsed time [s] : 70.17
|
||||
loop elapsed time [s] : 60.51
|
||||
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -773,7 +773,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 0x1147c00
|
||||
##### Create analysis manager 0x154bac0
|
||||
Using Root analysis manager
|
||||
All Ntuples have been created
|
||||
-> Event # 1 generated
|
||||
@@ -781,8 +781,8 @@ All Ntuples have been created
|
||||
|
||||
-> Event # 2 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.29742495970773
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.037565763424155
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.29742504062042
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.037565765905129
|
||||
|
||||
-> Event # 3 generated
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
@@ -798,8 +798,8 @@ All Ntuples have been created
|
||||
|
||||
-> Event # 7 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.32122858198003
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.058497168531552
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.32122858192571
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.058497168523494
|
||||
|
||||
-> Event # 8 generated
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
@@ -809,8 +809,8 @@ All Ntuples have been created
|
||||
|
||||
-> Event # 10 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.30452574139331
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.048417545393397
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.30452573909279
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.048417545311347
|
||||
|
||||
-> Total number of particles detected by the gas detector : 3
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -208,14 +208,14 @@ 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 0x2589460
|
||||
##### Create analysis manager 0x117c790
|
||||
Using Root analysis manager
|
||||
... create file : microelectronics.root - done
|
||||
... open analysis file : microelectronics.root - done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.000000s Real=0.005601s Sys=0.000000s
|
||||
User=0.000000s Real=0.004988s Sys=0.000000s
|
||||
... write file : microelectronics.root - done
|
||||
... close file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -209,7 +209,7 @@ Index : 0 used in the geometry : Yes
|
||||
|
||||
==================================================================
|
||||
|
||||
##### Create analysis manager 0x1c02ac0
|
||||
##### Create analysis manager 0x24d8970
|
||||
Using Root analysis manager
|
||||
Ntuple-1 created
|
||||
Ntuple-2 created
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -2922,7 +2922,7 @@ Created histos
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.730000s Real=0.749298s Sys=0.000000s
|
||||
User=0.600000s Real=0.610514s Sys=0.000000s
|
||||
Going to save histograms
|
||||
... write file : xrayfluo.root - done
|
||||
... close file : xrayfluo.root - done
|
||||
@@ -2957,12 +2957,12 @@ 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.321 MB
|
||||
Pool ID '7G4Track', size : 0.642 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.319 MB
|
||||
Pool ID '7G4Track', size : 0.637 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Number of memory pools allocated: 11 of which, static: 0
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.98 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.97 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -388,7 +388,7 @@ Opening output file xraytel ... done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.010000s Real=0.021192s Sys=0.000000s
|
||||
User=0.010000s Real=0.009567s Sys=0.000000s
|
||||
##########################################
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -493,11 +493,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: ionInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 25.6 PeV
|
||||
|
||||
Process: ionElastic
|
||||
Model: NNDiffuseElastic: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -509,7 +509,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -521,7 +521,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -630,7 +630,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -774,7 +774,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
@@ -837,7 +837,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
Cumulated dose per run, in scoring volume : 4.75061 nanoGy rms = 147.024 picoGy
|
||||
Cumulated dose per run, in scoring volume : 5.07974 nanoGy rms = 146.797 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1109,169 +1109,169 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
>>> Event: 17
|
||||
65 hits stored in this event
|
||||
>>> Event: 18
|
||||
73 hits stored in this event
|
||||
>>> Event: 19
|
||||
83 hits stored in this event
|
||||
>>> Event: 20
|
||||
454 hits stored in this event
|
||||
>>> Event: 21
|
||||
86 hits stored in this event
|
||||
>>> Event: 22
|
||||
69 hits stored in this event
|
||||
>>> Event: 23
|
||||
337 hits stored in this event
|
||||
>>> Event: 24
|
||||
112 hits stored in this event
|
||||
>>> Event: 25
|
||||
107 hits stored in this event
|
||||
>>> Event: 26
|
||||
94 hits stored in this event
|
||||
>>> Event: 27
|
||||
128 hits stored in this event
|
||||
>>> Event: 28
|
||||
74 hits stored in this event
|
||||
>>> Event: 29
|
||||
77 hits stored in this event
|
||||
>>> Event: 30
|
||||
60 hits stored in this event
|
||||
>>> Event: 31
|
||||
50 hits stored in this event
|
||||
>>> Event: 32
|
||||
83 hits stored in this event
|
||||
>>> Event: 33
|
||||
460 hits stored in this event
|
||||
>>> Event: 34
|
||||
59 hits stored in this event
|
||||
>>> Event: 35
|
||||
68 hits stored in this event
|
||||
>>> Event: 36
|
||||
196 hits stored in this event
|
||||
>>> Event: 37
|
||||
175 hits stored in this event
|
||||
>>> Event: 38
|
||||
80 hits stored in this event
|
||||
>>> Event: 39
|
||||
397 hits stored in this event
|
||||
>>> Event: 40
|
||||
104 hits stored in this event
|
||||
>>> Event: 41
|
||||
233 hits stored in this event
|
||||
>>> Event: 42
|
||||
106 hits stored in this event
|
||||
>>> Event: 43
|
||||
97 hits stored in this event
|
||||
>>> Event: 44
|
||||
90 hits stored in this event
|
||||
>>> Event: 45
|
||||
796 hits stored in this event
|
||||
>>> Event: 46
|
||||
19250 hits stored in this event
|
||||
>>> Event: 47
|
||||
102 hits stored in this event
|
||||
>>> Event: 48
|
||||
116 hits stored in this event
|
||||
>>> Event: 49
|
||||
84 hits stored in this event
|
||||
>>> Event: 50
|
||||
122 hits stored in this event
|
||||
>>> Event: 51
|
||||
157 hits stored in this event
|
||||
>>> Event: 52
|
||||
126 hits stored in this event
|
||||
>>> Event: 53
|
||||
83 hits stored in this event
|
||||
>>> Event: 54
|
||||
68 hits stored in this event
|
||||
>>> Event: 55
|
||||
76 hits stored in this event
|
||||
>>> Event: 56
|
||||
69 hits stored in this event
|
||||
>>> Event: 57
|
||||
217 hits stored in this event
|
||||
>>> Event: 58
|
||||
86 hits stored in this event
|
||||
>>> Event: 59
|
||||
154 hits stored in this event
|
||||
>>> Event: 60
|
||||
78 hits stored in this event
|
||||
>>> Event: 61
|
||||
71 hits stored in this event
|
||||
>>> Event: 62
|
||||
683 hits stored in this event
|
||||
>>> Event: 63
|
||||
896 hits stored in this event
|
||||
>>> Event: 64
|
||||
92 hits stored in this event
|
||||
>>> Event: 65
|
||||
100 hits stored in this event
|
||||
>>> Event: 66
|
||||
2254 hits stored in this event
|
||||
>>> Event: 67
|
||||
90 hits stored in this event
|
||||
>>> Event: 68
|
||||
89 hits stored in this event
|
||||
>>> Event: 69
|
||||
94 hits stored in this event
|
||||
>>> Event: 70
|
||||
53 hits stored in this event
|
||||
>>> Event: 71
|
||||
420 hits stored in this event
|
||||
>>> Event: 72
|
||||
113 hits stored in this event
|
||||
>>> Event: 73
|
||||
245 hits stored in this event
|
||||
>>> Event: 74
|
||||
78 hits stored in this event
|
||||
>>> Event: 75
|
||||
87 hits stored in this event
|
||||
>>> Event: 76
|
||||
60 hits stored in this event
|
||||
>>> Event: 77
|
||||
86 hits stored in this event
|
||||
>>> Event: 78
|
||||
63 hits stored in this event
|
||||
>>> Event: 79
|
||||
80 hits stored in this event
|
||||
>>> Event: 80
|
||||
53 hits stored in this event
|
||||
>>> Event: 81
|
||||
60 hits stored in this event
|
||||
>>> Event: 82
|
||||
60 hits stored in this event
|
||||
>>> Event: 83
|
||||
59 hits stored in this event
|
||||
>>> Event: 84
|
||||
81 hits stored in this event
|
||||
>>> Event: 85
|
||||
119 hits stored in this event
|
||||
>>> Event: 86
|
||||
54 hits stored in this event
|
||||
>>> Event: 87
|
||||
262 hits stored in this event
|
||||
>>> Event: 88
|
||||
71 hits stored in this event
|
||||
>>> Event: 89
|
||||
147 hits stored in this event
|
||||
>>> Event: 90
|
||||
506 hits stored in this event
|
||||
>>> Event: 91
|
||||
474 hits stored in this event
|
||||
>>> Event: 92
|
||||
>>> Event: 19
|
||||
532 hits stored in this event
|
||||
>>> Event: 20
|
||||
58 hits stored in this event
|
||||
>>> Event: 21
|
||||
67 hits stored in this event
|
||||
>>> Event: 22
|
||||
51 hits stored in this event
|
||||
>>> Event: 23
|
||||
83 hits stored in this event
|
||||
>>> Event: 24
|
||||
130 hits stored in this event
|
||||
>>> Event: 25
|
||||
110 hits stored in this event
|
||||
>>> Event: 26
|
||||
61 hits stored in this event
|
||||
>>> Event: 27
|
||||
104 hits stored in this event
|
||||
>>> Event: 28
|
||||
501 hits stored in this event
|
||||
>>> Event: 29
|
||||
27 hits stored in this event
|
||||
>>> Event: 30
|
||||
72 hits stored in this event
|
||||
>>> Event: 31
|
||||
581 hits stored in this event
|
||||
>>> Event: 32
|
||||
1449 hits stored in this event
|
||||
>>> Event: 33
|
||||
164 hits stored in this event
|
||||
>>> Event: 34
|
||||
43 hits stored in this event
|
||||
>>> Event: 35
|
||||
76 hits stored in this event
|
||||
>>> Event: 36
|
||||
205 hits stored in this event
|
||||
>>> Event: 37
|
||||
49 hits stored in this event
|
||||
>>> Event: 38
|
||||
99 hits stored in this event
|
||||
>>> Event: 39
|
||||
68 hits stored in this event
|
||||
>>> Event: 40
|
||||
186 hits stored in this event
|
||||
>>> Event: 41
|
||||
96 hits stored in this event
|
||||
>>> Event: 42
|
||||
63 hits stored in this event
|
||||
>>> Event: 43
|
||||
78 hits stored in this event
|
||||
>>> Event: 44
|
||||
534 hits stored in this event
|
||||
>>> Event: 45
|
||||
286 hits stored in this event
|
||||
>>> Event: 46
|
||||
57 hits stored in this event
|
||||
>>> Event: 47
|
||||
75 hits stored in this event
|
||||
>>> Event: 48
|
||||
336 hits stored in this event
|
||||
>>> Event: 49
|
||||
51 hits stored in this event
|
||||
>>> Event: 50
|
||||
663 hits stored in this event
|
||||
>>> Event: 51
|
||||
76 hits stored in this event
|
||||
>>> Event: 52
|
||||
190 hits stored in this event
|
||||
>>> Event: 53
|
||||
80 hits stored in this event
|
||||
>>> Event: 54
|
||||
139 hits stored in this event
|
||||
>>> Event: 55
|
||||
62 hits stored in this event
|
||||
>>> Event: 56
|
||||
66 hits stored in this event
|
||||
>>> Event: 57
|
||||
63 hits stored in this event
|
||||
>>> Event: 58
|
||||
79 hits stored in this event
|
||||
>>> Event: 59
|
||||
85 hits stored in this event
|
||||
>>> Event: 60
|
||||
101 hits stored in this event
|
||||
>>> Event: 61
|
||||
64 hits stored in this event
|
||||
>>> Event: 62
|
||||
98 hits stored in this event
|
||||
>>> Event: 63
|
||||
101 hits stored in this event
|
||||
>>> Event: 64
|
||||
322 hits stored in this event
|
||||
>>> Event: 65
|
||||
53 hits stored in this event
|
||||
>>> Event: 66
|
||||
308 hits stored in this event
|
||||
>>> Event: 67
|
||||
207 hits stored in this event
|
||||
>>> Event: 68
|
||||
1472 hits stored in this event
|
||||
>>> Event: 69
|
||||
56 hits stored in this event
|
||||
>>> Event: 70
|
||||
134 hits stored in this event
|
||||
>>> Event: 71
|
||||
454 hits stored in this event
|
||||
>>> Event: 72
|
||||
1389 hits stored in this event
|
||||
>>> Event: 73
|
||||
88 hits stored in this event
|
||||
>>> Event: 74
|
||||
200 hits stored in this event
|
||||
>>> Event: 75
|
||||
60 hits stored in this event
|
||||
>>> Event: 76
|
||||
136 hits stored in this event
|
||||
>>> Event: 77
|
||||
127 hits stored in this event
|
||||
>>> Event: 78
|
||||
71 hits stored in this event
|
||||
>>> Event: 79
|
||||
49 hits stored in this event
|
||||
>>> Event: 80
|
||||
90 hits stored in this event
|
||||
>>> Event: 81
|
||||
166 hits stored in this event
|
||||
>>> Event: 82
|
||||
95 hits stored in this event
|
||||
>>> Event: 83
|
||||
122 hits stored in this event
|
||||
>>> Event: 84
|
||||
47 hits stored in this event
|
||||
>>> Event: 85
|
||||
112 hits stored in this event
|
||||
>>> Event: 86
|
||||
63 hits stored in this event
|
||||
>>> Event: 87
|
||||
37 hits stored in this event
|
||||
>>> Event: 88
|
||||
522 hits stored in this event
|
||||
>>> Event: 89
|
||||
50 hits stored in this event
|
||||
>>> Event: 90
|
||||
142 hits stored in this event
|
||||
>>> Event: 91
|
||||
665 hits stored in this event
|
||||
>>> Event: 92
|
||||
232 hits stored in this event
|
||||
>>> Event: 93
|
||||
92 hits stored in this event
|
||||
480 hits stored in this event
|
||||
>>> Event: 94
|
||||
119 hits stored in this event
|
||||
384 hits stored in this event
|
||||
>>> Event: 95
|
||||
52 hits stored in this event
|
||||
234 hits stored in this event
|
||||
>>> Event: 96
|
||||
125 hits stored in this event
|
||||
52 hits stored in this event
|
||||
>>> Event: 97
|
||||
109 hits stored in this event
|
||||
668 hits stored in this event
|
||||
>>> Event: 98
|
||||
304 hits stored in this event
|
||||
68 hits stored in this event
|
||||
>>> Event: 99
|
||||
609 hits stored in this event
|
||||
209 hits stored in this event
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1207,67 +1207,67 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
>>> Event: 68
|
||||
81 hits stored in this event
|
||||
>>> Event: 69
|
||||
76 hits stored in this event
|
||||
86 hits stored in this event
|
||||
>>> Event: 70
|
||||
53 hits stored in this event
|
||||
358 hits stored in this event
|
||||
>>> Event: 71
|
||||
74 hits stored in this event
|
||||
68 hits stored in this event
|
||||
>>> Event: 72
|
||||
61 hits stored in this event
|
||||
305 hits stored in this event
|
||||
>>> Event: 73
|
||||
85 hits stored in this event
|
||||
295 hits stored in this event
|
||||
>>> Event: 74
|
||||
217 hits stored in this event
|
||||
45 hits stored in this event
|
||||
>>> Event: 75
|
||||
63 hits stored in this event
|
||||
296 hits stored in this event
|
||||
>>> Event: 76
|
||||
69 hits stored in this event
|
||||
48 hits stored in this event
|
||||
>>> Event: 77
|
||||
72 hits stored in this event
|
||||
68 hits stored in this event
|
||||
>>> Event: 78
|
||||
248 hits stored in this event
|
||||
110 hits stored in this event
|
||||
>>> Event: 79
|
||||
94 hits stored in this event
|
||||
126 hits stored in this event
|
||||
>>> Event: 80
|
||||
1352 hits stored in this event
|
||||
>>> Event: 81
|
||||
2476 hits stored in this event
|
||||
>>> Event: 82
|
||||
138 hits stored in this event
|
||||
>>> Event: 83
|
||||
80 hits stored in this event
|
||||
>>> Event: 84
|
||||
72 hits stored in this event
|
||||
>>> Event: 85
|
||||
97 hits stored in this event
|
||||
>>> Event: 86
|
||||
91 hits stored in this event
|
||||
>>> Event: 87
|
||||
149 hits stored in this event
|
||||
>>> Event: 88
|
||||
310 hits stored in this event
|
||||
>>> Event: 89
|
||||
75 hits stored in this event
|
||||
>>> Event: 90
|
||||
90 hits stored in this event
|
||||
>>> Event: 91
|
||||
94 hits stored in this event
|
||||
>>> Event: 92
|
||||
105 hits stored in this event
|
||||
>>> Event: 93
|
||||
108 hits stored in this event
|
||||
>>> Event: 94
|
||||
1445 hits stored in this event
|
||||
>>> Event: 95
|
||||
65 hits stored in this event
|
||||
>>> Event: 81
|
||||
39 hits stored in this event
|
||||
>>> Event: 82
|
||||
73 hits stored in this event
|
||||
>>> Event: 83
|
||||
81 hits stored in this event
|
||||
>>> Event: 84
|
||||
83 hits stored in this event
|
||||
>>> Event: 85
|
||||
233 hits stored in this event
|
||||
>>> Event: 86
|
||||
160 hits stored in this event
|
||||
>>> Event: 87
|
||||
91 hits stored in this event
|
||||
>>> Event: 88
|
||||
62 hits stored in this event
|
||||
>>> Event: 89
|
||||
439 hits stored in this event
|
||||
>>> Event: 90
|
||||
148 hits stored in this event
|
||||
>>> Event: 91
|
||||
60 hits stored in this event
|
||||
>>> Event: 92
|
||||
186 hits stored in this event
|
||||
>>> Event: 93
|
||||
69 hits stored in this event
|
||||
>>> Event: 94
|
||||
119 hits stored in this event
|
||||
>>> Event: 95
|
||||
88 hits stored in this event
|
||||
>>> Event: 96
|
||||
66 hits stored in this event
|
||||
110 hits stored in this event
|
||||
>>> Event: 97
|
||||
149 hits stored in this event
|
||||
>>> Event: 98
|
||||
103 hits stored in this event
|
||||
>>> Event: 98
|
||||
954 hits stored in this event
|
||||
>>> Event: 99
|
||||
102 hits stored in this event
|
||||
139 hits stored in this event
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -217,8 +217,7 @@
|
||||
\verbatim
|
||||
% cd B4/B4[a,b,c,d]
|
||||
% ln -s ../macros/visTutor visTutor
|
||||
% exampleB4[a,b,c,d]
|
||||
Idle > /control/execute visTutor/exN03VisX.mac
|
||||
% exampleB4[a,b,c,d] -m visTutor/exN03VisX.mac
|
||||
\endverbatim
|
||||
For details, see comment lines described in the macro files.
|
||||
These macros are designed to help your understanding of the User's Guide.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1699,4 +1699,4 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
### deleting chargedFilter 0x100a060
|
||||
### deleting chargedFilter 0xef1c20
|
||||
|
||||
@@ -14,6 +14,9 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
18/01/21 J. Allison (exampleB4-V10-06-05)
|
||||
- Fix README: Update VISUALIZATION TUTORIAL to follow smart parsing.
|
||||
|
||||
06/11/20 I. Hrivnacova (exampleB4-V10-06-04)
|
||||
- Updated B4Analysis.hh with commented lines for using new generic analysis manager
|
||||
- Added "ignoreThreadsExcept 0" setting in run2.mac (commented)
|
||||
|
||||
@@ -192,8 +192,7 @@
|
||||
subdirectory. They can be tried as:
|
||||
% cd B4/B4[a,b,c,d]
|
||||
% ln -s ../macros/visTutor visTutor
|
||||
% exampleB4[a,b,c,d]
|
||||
Idle > /control/execute visTutor/exN03VisX.mac
|
||||
% exampleB4[a,b,c,d] -m visTutor/exN03VisX.mac
|
||||
For details, see comment lines described in the macro files.
|
||||
These macros are designed to help your understanding of the User's Guide.
|
||||
|
||||
|
||||
+234
-281
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -952,148 +952,116 @@ Setting was ignored.
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (0,0,100000)
|
||||
Hodoscope 1 has 5 hits.
|
||||
Hodoscope 1 has 2 hits.
|
||||
Hodoscope[7] 4.9870027260872 (nsec)
|
||||
Hodoscope[14] 7.2448864539246 (nsec)
|
||||
Hodoscope[3] 42.462858133338 (nsec)
|
||||
Hodoscope[12] 6.6437866640662 (nsec)
|
||||
Hodoscope[13] 6.9033255615942 (nsec)
|
||||
Hodoscope 2 has 0 hits.
|
||||
Drift Chamber 1 has 131 hits.
|
||||
Layer[0] : time 8.3219299395741 (nsec) --- local (x,y) 372.02334871086, -289.68758575273
|
||||
Layer[0] : time 6.6894434711511 (nsec) --- local (x,y) 52.168105754942, 49.803929032904
|
||||
Layer[0] : time 6.6780679630494 (nsec) --- local (x,y) 3.1892065828707, -42.792676644112
|
||||
Layer[0] : time 6.8735075262109 (nsec) --- local (x,y) 100.31280015755, 176.09282433894
|
||||
Layer[0] : time 7.3050130493383 (nsec) --- local (x,y) 371.03015215419, 4.175509828231
|
||||
Layer[0] : time 6.7003558450509 (nsec) --- local (x,y) -34.060477562379, 62.025576889823
|
||||
Layer[0] : time 6.6974203973329 (nsec) --- local (x,y) 7.4118978978207, -89.05468250264
|
||||
Layer[0] : time 6.6948299309499 (nsec) --- local (x,y) 25.872111767864, -80.765400225554
|
||||
Layer[0] : time 7.1690806334948 (nsec) --- local (x,y) 241.38933202166, 54.544742307022
|
||||
Layer[0] : time 6.8407841254743 (nsec) --- local (x,y) -177.12018170439, 82.957397640925
|
||||
Layer[0] : time 6.6759633223697 (nsec) --- local (x,y) 10.877761185656, 7.6831425233694
|
||||
Layer[0] : time 41.019572340664 (nsec) --- local (x,y) 654.21881232109, 165.19110198813
|
||||
Layer[0] : time 6.6756475061797 (nsec) --- local (x,y) 8.8688685900449, 30.979955136027
|
||||
Layer[0] : time 6.6839214255333 (nsec) --- local (x,y) 15.684033225054, 46.827247181047
|
||||
Layer[0] : time 6.6876539473304 (nsec) --- local (x,y) 37.586095385661, 37.083267660331
|
||||
Layer[0] : time 6.6717094718954 (nsec) --- local (x,y) 0.14206342076317, 11.375303832467
|
||||
Layer[0] : time 6.6713860276552 (nsec) --- local (x,y) -5.1792151840917, -3.0802168713589
|
||||
Layer[0] : time 6.7751789611508 (nsec) --- local (x,y) 105.55149550869, 89.992118334057
|
||||
Layer[0] : time 6.9473327377988 (nsec) --- local (x,y) 120.38991125414, 187.79053746762
|
||||
Layer[0] : time 6.6801379510467 (nsec) --- local (x,y) 26.1625476015, 40.429698260424
|
||||
Layer[0] : time 6.8421771147668 (nsec) --- local (x,y) 152.89578334038, 60.314858527738
|
||||
Layer[0] : time 6.8651496801925 (nsec) --- local (x,y) -144.52802346595, 172.15955233503
|
||||
Layer[0] : time 6.9130284243888 (nsec) --- local (x,y) -5.5545990593387, 174.82417912253
|
||||
Layer[0] : time 7.0973727999711 (nsec) --- local (x,y) 229.57729880475, 281.95525985854
|
||||
Layer[0] : time 7.4746925361198 (nsec) --- local (x,y) -69.082459892363, 103.44579730238
|
||||
Layer[0] : time 6.7006508569527 (nsec) --- local (x,y) -27.604099184534, -44.387425404196
|
||||
Layer[0] : time 6.7023240668237 (nsec) --- local (x,y) 16.756449527263, 53.202782804292
|
||||
Layer[0] : time 6.758695879515 (nsec) --- local (x,y) -2.1286183430872, -151.9192847876
|
||||
Layer[0] : time 6.7389584766016 (nsec) --- local (x,y) 100.85477058146, 3.4159354445234
|
||||
Layer[0] : time 6.7280078034071 (nsec) --- local (x,y) 9.5238855236391, -117.39212852481
|
||||
Layer[0] : time 6.8035262152832 (nsec) --- local (x,y) -61.95506242562, -40.059170440469
|
||||
Layer[0] : time 6.6779320125981 (nsec) --- local (x,y) -7.7273702918383, -4.2605088339714
|
||||
Layer[0] : time 40.800119981778 (nsec) --- local (x,y) -360.03396985402, -96.047480695174
|
||||
Layer[0] : time 41.697436445803 (nsec) --- local (x,y) -689.70046338034, -140.04756788261
|
||||
Layer[0] : time 6.7506514398177 (nsec) --- local (x,y) 29.111739950945, -79.219466030769
|
||||
Layer[0] : time 6.7693108978428 (nsec) --- local (x,y) -77.817298757083, -76.771817869252
|
||||
Layer[1] : time 8.3754245964294 (nsec) --- local (x,y) 103.98651380303, 99.271300791016
|
||||
Layer[1] : time 8.352695460411 (nsec) --- local (x,y) 6.555518261023, -85.121356343318
|
||||
Layer[1] : time 9.6001892193585 (nsec) --- local (x,y) 738.41255797694, 8.93124245504
|
||||
Layer[1] : time 8.3972578725325 (nsec) --- local (x,y) -67.897594795389, 123.83664184469
|
||||
Layer[1] : time 8.3913023681658 (nsec) --- local (x,y) 14.80266093167, -177.48237903757
|
||||
Layer[1] : time 8.386171846615 (nsec) --- local (x,y) 51.424691600717, -161.06695348812
|
||||
Layer[1] : time 9.3322561292104 (nsec) --- local (x,y) 481.47865632542, 108.32793645796
|
||||
Layer[1] : time 8.6763648593226 (nsec) --- local (x,y) -352.55465294144, 164.99296661407
|
||||
Layer[1] : time 8.3485451494172 (nsec) --- local (x,y) 21.602996488186, 15.381369529952
|
||||
Layer[1] : time 39.33264795741 (nsec) --- local (x,y) 587.72580814466, 157.50193111037
|
||||
Layer[1] : time 8.3479077561875 (nsec) --- local (x,y) 17.605382612641, 61.712749795608
|
||||
Layer[1] : time 8.3644619055566 (nsec) --- local (x,y) 31.296525254824, 93.482417677272
|
||||
Layer[1] : time 8.3718014984566 (nsec) --- local (x,y) 74.816034379717, 73.805210405843
|
||||
Layer[1] : time 8.3400676624241 (nsec) --- local (x,y) 0.3656856139623, 22.662524653797
|
||||
Layer[1] : time 8.339422960729 (nsec) --- local (x,y) -10.325576326138, -6.1528428650018
|
||||
Layer[1] : time 8.5462658925584 (nsec) --- local (x,y) 210.21642029489, 179.46039316184
|
||||
Layer[1] : time 8.3568424129437 (nsec) --- local (x,y) 52.060141882974, 80.527068088821
|
||||
Layer[1] : time 8.7970096933627 (nsec) --- local (x,y) 440.31392272836, 82.720315563819
|
||||
Layer[1] : time 9.9507623535976 (nsec) --- local (x,y) -138.51691410206, 205.5234658383
|
||||
Layer[1] : time 8.3977495656969 (nsec) --- local (x,y) -55.101491614636, -88.422975135055
|
||||
Layer[1] : time 8.4011505272342 (nsec) --- local (x,y) 33.179313590761, 106.26526013804
|
||||
Layer[1] : time 8.4742703856605 (nsec) --- local (x,y) 201.24836514753, 6.4268707864644
|
||||
Layer[1] : time 8.4523545390445 (nsec) --- local (x,y) 19.067377919916, -234.07473010685
|
||||
Layer[1] : time 8.6028372633319 (nsec) --- local (x,y) -123.61068613441, -79.790663034956
|
||||
Layer[1] : time 8.3524714152619 (nsec) --- local (x,y) -15.469640581817, -8.4125398819454
|
||||
Layer[1] : time 39.120912395177 (nsec) --- local (x,y) -322.08612952714, -90.945843999291
|
||||
Layer[1] : time 8.4974052918449 (nsec) --- local (x,y) 58.058947941227, -157.87707214159
|
||||
Layer[1] : time 8.5348770426582 (nsec) --- local (x,y) -154.33186442021, -154.27470003271
|
||||
Layer[1] : time 8.5350563810033 (nsec) --- local (x,y) -154.33962221833, -154.28256705233
|
||||
Layer[1] : time 8.5350563810033 (nsec) --- local (x,y) -154.33962221833, -154.28256705233
|
||||
Layer[1] : time 8.5363239495629 (nsec) --- local (x,y) -154.40716093881, -154.28076727912
|
||||
Layer[1] : time 8.5376006546804 (nsec) --- local (x,y) -154.47515556104, -154.2865757132
|
||||
Layer[1] : time 8.538893912609 (nsec) --- local (x,y) -154.54197866244, -154.2831265858
|
||||
Layer[2] : time 10.06142382778 (nsec) --- local (x,y) 155.81526457003, 148.78304075689
|
||||
Layer[2] : time 10.02729864177 (nsec) --- local (x,y) 9.9657264789543, -127.36010308057
|
||||
Layer[2] : time 10.094285765017 (nsec) --- local (x,y) -101.95382053943, 185.82727281437
|
||||
Layer[2] : time 10.085159924479 (nsec) --- local (x,y) 22.397385513154, -265.85053390667
|
||||
Layer[2] : time 10.077477559108 (nsec) --- local (x,y) 76.87222651662, -241.3333192603
|
||||
Layer[2] : time 11.497305235466 (nsec) --- local (x,y) 722.16184469932, 163.5381615878
|
||||
Layer[2] : time 10.511595881967 (nsec) --- local (x,y) -527.59725437555, 247.17230151976
|
||||
Layer[2] : time 10.021134181234 (nsec) --- local (x,y) 32.3891643856, 23.124874821087
|
||||
Layer[2] : time 37.645720251688 (nsec) --- local (x,y) 521.22360316108, 149.81858966058
|
||||
Layer[2] : time 10.020163186239 (nsec) --- local (x,y) 26.317036841585, 92.428824150849
|
||||
Layer[2] : time 10.044989561365 (nsec) --- local (x,y) 46.942559431561, 140.0836686204
|
||||
Layer[2] : time 10.055988570902 (nsec) --- local (x,y) 112.09196851999, 110.63908722639
|
||||
Layer[2] : time 10.008429120383 (nsec) --- local (x,y) 0.60009844308239, 33.992824722369
|
||||
Layer[2] : time 10.007459782389 (nsec) --- local (x,y) -15.469906838505, -9.2233668202928
|
||||
Layer[2] : time 10.317654294153 (nsec) --- local (x,y) 315.13393940544, 269.12728461801
|
||||
Layer[2] : time 10.033540279559 (nsec) --- local (x,y) 77.955751515532, 120.60071248499
|
||||
Layer[2] : time 10.718972488955 (nsec) --- local (x,y) 705.82694453088, 122.72611163328
|
||||
Layer[2] : time 10.094826381602 (nsec) --- local (x,y) -82.599270191941, -132.38094180393
|
||||
Layer[2] : time 10.099979310943 (nsec) --- local (x,y) 49.516077803296, 159.34733868225
|
||||
Layer[2] : time 10.210223056213 (nsec) --- local (x,y) 302.54916658582, 9.8086103529724
|
||||
Layer[2] : time 10.402198714506 (nsec) --- local (x,y) -185.36914178043, -119.50544282838
|
||||
Layer[2] : time 10.027013166407 (nsec) --- local (x,y) -23.244564025618, -12.563808677952
|
||||
Layer[2] : time 37.441685057774 (nsec) --- local (x,y) -284.0270633511, -86.018563569992
|
||||
Layer[2] : time 10.244165890164 (nsec) --- local (x,y) 86.965575821147, -236.55550121965
|
||||
Layer[2] : time 10.300224239373 (nsec) --- local (x,y) -230.65776780411, -231.48543321625
|
||||
Layer[3] : time 11.747414934007 (nsec) --- local (x,y) 207.63699038167, 198.27713321867
|
||||
Layer[3] : time 11.701897699736 (nsec) --- local (x,y) 13.374654514637, -169.58418001113
|
||||
Layer[3] : time 11.791455662691 (nsec) --- local (x,y) -136.23129806078, 248.03566232219
|
||||
Layer[3] : time 13.661043991706 (nsec) --- local (x,y) 962.50998951526, 215.71962132703
|
||||
Layer[3] : time 11.693726673357 (nsec) --- local (x,y) 43.18279824159, 30.917070126605
|
||||
Layer[3] : time 35.958852949458 (nsec) --- local (x,y) 454.85687351931, 142.13991869595
|
||||
Layer[3] : time 11.692428158191 (nsec) --- local (x,y) 34.968719102473, 123.20799193183
|
||||
Layer[3] : time 11.725477127892 (nsec) --- local (x,y) 62.658576226741, 186.53057368828
|
||||
Layer[3] : time 11.740214153518 (nsec) --- local (x,y) 149.5174322188, 147.47619905331
|
||||
Layer[3] : time 11.676790240438 (nsec) --- local (x,y) 0.84484534881939, 45.318405414698
|
||||
Layer[3] : time 11.675495517709 (nsec) --- local (x,y) -20.58997027824, -12.281314928143
|
||||
Layer[3] : time 11.837668515094 (nsec) --- local (x,y) -16.463381444533, -14.795287181151
|
||||
Layer[3] : time 11.710229463771 (nsec) --- local (x,y) 103.90170443574, 160.6087217737
|
||||
Layer[3] : time 11.791906751786 (nsec) --- local (x,y) -110.08004639523, -176.35966208441
|
||||
Layer[3] : time 11.798760291625 (nsec) --- local (x,y) 65.768158045716, 212.29948073067
|
||||
Layer[3] : time 11.946214673663 (nsec) --- local (x,y) 403.86168256452, 13.519190413819
|
||||
Layer[3] : time 12.201577929172 (nsec) --- local (x,y) -247.13532186772, -159.23106718389
|
||||
Layer[3] : time 11.701555312325 (nsec) --- local (x,y) -31.058438988669, -16.628496137139
|
||||
Layer[3] : time 11.70178431669 (nsec) --- local (x,y) -31.059497933911, -16.629056939259
|
||||
Layer[3] : time 35.762409231026 (nsec) --- local (x,y) -245.75336519237, -81.256499216551
|
||||
Layer[3] : time 11.70178431669 (nsec) --- local (x,y) -31.059497933911, -16.629056939259
|
||||
Layer[4] : time 13.433562975916 (nsec) --- local (x,y) 259.80178290258, 247.89006012623
|
||||
Layer[4] : time 13.376496880805 (nsec) --- local (x,y) 16.829022742418, -211.80491048316
|
||||
Layer[4] : time 13.366331796898 (nsec) --- local (x,y) 54.055927007096, 38.824189971822
|
||||
Layer[4] : time 34.271991272884 (nsec) --- local (x,y) 388.50188844158, 134.45573739026
|
||||
Layer[4] : time 13.364695289121 (nsec) --- local (x,y) 43.611701983896, 153.99983989542
|
||||
Layer[4] : time 13.405979794663 (nsec) --- local (x,y) 78.404248524713, 233.01471950535
|
||||
Layer[4] : time 13.424499790917 (nsec) --- local (x,y) 187.14240797397, 184.35041048461
|
||||
Layer[4] : time 13.345151006524 (nsec) --- local (x,y) 1.0957820359101, 56.639134612872
|
||||
Layer[4] : time 13.34353158406 (nsec) --- local (x,y) -25.735728723708, -15.312061018056
|
||||
Layer[4] : time 13.386918763922 (nsec) --- local (x,y) 129.84453675532, 200.6188570373
|
||||
Layer[4] : time 13.488988937323 (nsec) --- local (x,y) -137.54203526055, -220.35370670384
|
||||
Layer[4] : time 13.497492077208 (nsec) --- local (x,y) 81.807900760517, 265.16622571508
|
||||
Layer[4] : time 13.682168027361 (nsec) --- local (x,y) 505.11716536453, 16.850026637575
|
||||
Layer[4] : time 14.000924579822 (nsec) --- local (x,y) -308.85700774706, -198.86665371013
|
||||
Layer[4] : time 13.376095837154 (nsec) --- local (x,y) -38.756437993682, -20.81880563142
|
||||
Layer[4] : time 34.083159801808 (nsec) --- local (x,y) -207.59803265574, -76.363141153998
|
||||
Drift Chamber 2 has 0 hits.
|
||||
EM Calorimeter has 4 hits. Total Edep is 207.71695512202 (MeV)
|
||||
Hadron Calorimeter has 7 hits. Total Edep is 85.102265651913 (MeV)
|
||||
Hodoscope[8] 5.5935221313475 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 41.861378661594 (nsec)
|
||||
Drift Chamber 1 has 96 hits.
|
||||
Layer[0] : time 8.321949352922 (nsec) --- local (x,y) 372.07463018535, -289.62504970056
|
||||
Layer[0] : time 6.6809560568123 (nsec) --- local (x,y) 40.882271715541, 29.630578040492
|
||||
Layer[0] : time 6.7134352880171 (nsec) --- local (x,y) -113.46087209939, -6.7330792041207
|
||||
Layer[0] : time 6.7283819203789 (nsec) --- local (x,y) -132.10740827702, -8.508213391568
|
||||
Layer[0] : time 6.6722279292202 (nsec) --- local (x,y) -6.9543997819172, 4.6174704651789
|
||||
Layer[0] : time 6.8833408531705 (nsec) --- local (x,y) 67.287624154209, 218.68928853766
|
||||
Layer[0] : time 6.7563679280057 (nsec) --- local (x,y) -44.749982010864, 148.66701500199
|
||||
Layer[0] : time 7.4191579300869 (nsec) --- local (x,y) 460.68404544019, 111.28979239928
|
||||
Layer[0] : time 6.8214998289424 (nsec) --- local (x,y) 35.444660878033, 160.89448411903
|
||||
Layer[0] : time 6.6774331008174 (nsec) --- local (x,y) -12.701139808488, 24.105480913893
|
||||
Layer[0] : time 12.255755720666 (nsec) --- local (x,y) -100.99673503402, -151.67909860862
|
||||
Layer[0] : time 6.8229207527169 (nsec) --- local (x,y) -182.67428638961, -74.125017318991
|
||||
Layer[0] : time 6.6722923786857 (nsec) --- local (x,y) -5.9522205438397, -5.8677669209003
|
||||
Layer[0] : time 41.609829153023 (nsec) --- local (x,y) 884.44501307455, -108.61094091398
|
||||
Layer[0] : time 6.6715523237923 (nsec) --- local (x,y) 7.3053784485911, -3.47015516056
|
||||
Layer[0] : time 6.7786106021905 (nsec) --- local (x,y) -136.53763508149, -26.812980919385
|
||||
Layer[0] : time 6.9677247005085 (nsec) --- local (x,y) -197.50365922624, -104.82097638658
|
||||
Layer[0] : time 6.6795615801885 (nsec) --- local (x,y) -40.592536306353, -21.935783142968
|
||||
Layer[0] : time 6.6835046516562 (nsec) --- local (x,y) -34.116058219225, -49.289546562444
|
||||
Layer[0] : time 6.7006848554661 (nsec) --- local (x,y) 45.392583072069, 30.534262876598
|
||||
Layer[0] : time 6.6777154302076 (nsec) --- local (x,y) -30.511134500706, -3.7088651730294
|
||||
Layer[0] : time 6.7414686630778 (nsec) --- local (x,y) 44.842193870077, 134.91060433118
|
||||
Layer[0] : time 6.8036354950335 (nsec) --- local (x,y) 60.423678079039, 45.754417228378
|
||||
Layer[0] : time 6.6780615722249 (nsec) --- local (x,y) 6.943895895408, 8.5070133597309
|
||||
Layer[0] : time 6.7511755288263 (nsec) --- local (x,y) -39.134380098298, -76.696804573888
|
||||
Layer[1] : time 8.3585084513131 (nsec) --- local (x,y) 81.471831750478, 59.110906142636
|
||||
Layer[1] : time 8.4233402911597 (nsec) --- local (x,y) -226.23438494885, -14.343933245652
|
||||
Layer[1] : time 8.4560717468321 (nsec) --- local (x,y) -267.07063009776, -12.779213938661
|
||||
Layer[1] : time 8.3411003307092 (nsec) --- local (x,y) -13.842917953558, 9.2095638502041
|
||||
Layer[1] : time 8.5088293979608 (nsec) --- local (x,y) -89.160256513927, 296.33886856607
|
||||
Layer[1] : time 9.8296459972478 (nsec) --- local (x,y) 918.12257951277, 221.54347631854
|
||||
Layer[1] : time 8.3514898996198 (nsec) --- local (x,y) -25.32480121494, 48.122630375519
|
||||
Layer[1] : time 8.6433107584516 (nsec) --- local (x,y) -365.83520656339, -148.94880703267
|
||||
Layer[1] : time 8.3412230619588 (nsec) --- local (x,y) -11.760464148056, -11.64902036543
|
||||
Layer[1] : time 39.926028487441 (nsec) --- local (x,y) 816.51888981703, -104.12749315777
|
||||
Layer[1] : time 8.3397560863977 (nsec) --- local (x,y) 14.575915680856, -6.9501946697579
|
||||
Layer[1] : time 8.5533109136438 (nsec) --- local (x,y) -272.33096695979, -53.354458938561
|
||||
Layer[1] : time 8.9289766198829 (nsec) --- local (x,y) -392.92392496625, -208.55343495899
|
||||
Layer[1] : time 8.3557173446938 (nsec) --- local (x,y) -80.899956826555, -43.746296173553
|
||||
Layer[1] : time 8.3635765534563 (nsec) --- local (x,y) -67.983983106608, -98.259535228142
|
||||
Layer[1] : time 8.3977928914634 (nsec) --- local (x,y) 90.425963042752, 60.780207979858
|
||||
Layer[1] : time 8.3520128530852 (nsec) --- local (x,y) -60.709522995112, -7.250559839824
|
||||
Layer[1] : time 8.4793071569796 (nsec) --- local (x,y) 89.369354943625, 269.11366649589
|
||||
Layer[1] : time 8.602984838294 (nsec) --- local (x,y) 120.35094853127, 91.164002051074
|
||||
Layer[1] : time 8.3527451521573 (nsec) --- local (x,y) 13.941027486191, 17.148763044216
|
||||
Layer[1] : time 8.4984853767528 (nsec) --- local (x,y) -77.985305503559, -152.94119783228
|
||||
Layer[2] : time 10.036059259516 (nsec) --- local (x,y) 122.04976571914, 88.598690752801
|
||||
Layer[2] : time 10.137455952752 (nsec) --- local (x,y) -342.79758278637, -31.881102873516
|
||||
Layer[2] : time 10.180471927121 (nsec) --- local (x,y) -398.23452083643, -16.953145573076
|
||||
Layer[2] : time 10.009972222007 (nsec) --- local (x,y) -20.737126889901, 13.775275477291
|
||||
Layer[2] : time 10.025547506446 (nsec) --- local (x,y) -37.999853230479, 72.11551157604
|
||||
Layer[2] : time 10.463995927858 (nsec) --- local (x,y) -549.16084519017, -223.98051968972
|
||||
Layer[2] : time 10.010152036907 (nsec) --- local (x,y) -17.566247945947, -17.387062744495
|
||||
Layer[2] : time 38.242262415586 (nsec) --- local (x,y) 748.66953608432, -99.647724669042
|
||||
Layer[2] : time 10.00796226352 (nsec) --- local (x,y) 21.839692957492, -10.546108894698
|
||||
Layer[2] : time 10.327584832503 (nsec) --- local (x,y) -407.71981733767, -79.438572164669
|
||||
Layer[2] : time 10.031862487226 (nsec) --- local (x,y) -121.13079827015, -65.624264181357
|
||||
Layer[2] : time 10.043655682367 (nsec) --- local (x,y) -101.87648599721, -147.23473413069
|
||||
Layer[2] : time 10.09491360523 (nsec) --- local (x,y) 135.48082356572, 91.049709332538
|
||||
Layer[2] : time 10.026316640262 (nsec) --- local (x,y) -90.938374532779, -10.788243960166
|
||||
Layer[2] : time 10.402471732323 (nsec) --- local (x,y) 180.54129587357, 136.63544760474
|
||||
Layer[2] : time 10.027442701362 (nsec) --- local (x,y) 21.023312730713, 25.943501531997
|
||||
Layer[2] : time 10.245800250126 (nsec) --- local (x,y) -116.8239059724, -229.19724095636
|
||||
Layer[3] : time 11.713638230818 (nsec) --- local (x,y) 162.69369552336, 118.13886472571
|
||||
Layer[3] : time 11.858457527469 (nsec) --- local (x,y) -465.39265949013, -66.055262825105
|
||||
Layer[3] : time 11.908523005019 (nsec) --- local (x,y) -533.61861213858, -21.997972035185
|
||||
Layer[3] : time 11.67884391714 (nsec) --- local (x,y) -27.625816848817, 18.341813936233
|
||||
Layer[3] : time 11.69959719796 (nsec) --- local (x,y) -50.568209940271, 96.112055788416
|
||||
Layer[3] : time 12.285043456117 (nsec) --- local (x,y) -732.62769410757, -299.40765365198
|
||||
Layer[3] : time 11.679081027778 (nsec) --- local (x,y) -23.413272271871, -23.082163182561
|
||||
Layer[3] : time 36.558539672587 (nsec) --- local (x,y) 680.91394540376, -95.210467363599
|
||||
Layer[3] : time 11.676167317594 (nsec) --- local (x,y) 29.078882696178, -14.144835795507
|
||||
Layer[3] : time 12.101710166238 (nsec) --- local (x,y) -542.9162051799, -105.55417625058
|
||||
Layer[3] : time 11.708007696996 (nsec) --- local (x,y) -161.36573981732, -87.494663406536
|
||||
Layer[3] : time 11.723733781455 (nsec) --- local (x,y) -135.77088244292, -196.20541642902
|
||||
Layer[3] : time 11.792052213568 (nsec) --- local (x,y) 180.5778234595, 121.33791075075
|
||||
Layer[3] : time 11.700644952578 (nsec) --- local (x,y) -121.29469605489, -14.2576530508
|
||||
Layer[3] : time 12.201994916522 (nsec) --- local (x,y) 240.79700730111, 182.11407711734
|
||||
Layer[3] : time 11.70214139096 (nsec) --- local (x,y) 28.082122819346, 34.75985845452
|
||||
Layer[4] : time 13.391224477033 (nsec) --- local (x,y) 203.32278934402, 147.7362077291
|
||||
Layer[4] : time 13.579389652093 (nsec) --- local (x,y) -588.02217217996, -99.788846590856
|
||||
Layer[4] : time 13.634093880814 (nsec) --- local (x,y) -666.1575005109, -25.690959571253
|
||||
Layer[4] : time 13.347717530319 (nsec) --- local (x,y) -34.543711034645, 22.925955156757
|
||||
Layer[4] : time 13.373629385516 (nsec) --- local (x,y) -63.027265668218, 120.05391865067
|
||||
Layer[4] : time 13.348010528464 (nsec) --- local (x,y) -29.272767612959, -28.776501734558
|
||||
Layer[4] : time 34.874802672035 (nsec) --- local (x,y) 613.12208623344, -90.840749035614
|
||||
Layer[4] : time 13.344372359232 (nsec) --- local (x,y) 36.339865303943, -17.698704020956
|
||||
Layer[4] : time 13.484830559681 (nsec) --- local (x,y) 33.569153376523, -2.5018109705555
|
||||
Layer[4] : time 13.56237911672 (nsec) --- local (x,y) 34.316045659414, -5.7766241445426
|
||||
Layer[4] : time 13.876010773824 (nsec) --- local (x,y) -678.33921042276, -131.43273303145
|
||||
Layer[4] : time 13.384150794391 (nsec) --- local (x,y) -201.61573471158, -109.32184503376
|
||||
Layer[4] : time 13.403818756682 (nsec) --- local (x,y) -169.69701547456, -245.17524603897
|
||||
Layer[4] : time 13.489202390643 (nsec) --- local (x,y) 225.71794256336, 151.61600295157
|
||||
Layer[4] : time 13.374991803196 (nsec) --- local (x,y) -151.7369364329, -17.760446079519
|
||||
Layer[4] : time 14.001509461664 (nsec) --- local (x,y) 301.05487956212, 227.54070357698
|
||||
Layer[4] : time 13.376841866932 (nsec) --- local (x,y) 35.171044156672, 43.571418389924
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 33.233392229618 (nsec) --- local (x,y) -903.13315480955, -16.286652113631
|
||||
Layer[1] : time 34.965539726852 (nsec) --- local (x,y) -763.11017767513, -20.09394546982
|
||||
Layer[2] : time 36.695784673371 (nsec) --- local (x,y) -625.23028642714, -24.577985395736
|
||||
Layer[3] : time 38.423224324716 (nsec) --- local (x,y) -490.66011704513, -31.568919503802
|
||||
Layer[4] : time 40.152322018677 (nsec) --- local (x,y) -353.997572552, -33.19232998557
|
||||
EM Calorimeter has 10 hits. Total Edep is 347.99113272099 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1110,25 +1078,28 @@ Hadron Calorimeter has 7 hits. Total Edep is 85.102265651913 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867880803409 (nsec)
|
||||
Hodoscope 2 has 3 hits.
|
||||
Hodoscope[10] 42.694786460572 (nsec)
|
||||
Hodoscope[12] 464.36688550841 (nsec)
|
||||
Hodoscope[17] 227.90743470914 (nsec)
|
||||
Hodoscope[7] 4.9867880803625 (nsec)
|
||||
Hodoscope 2 has 5 hits.
|
||||
Hodoscope[10] 42.694196022308 (nsec)
|
||||
Hodoscope[6] 2712.0248697294 (nsec)
|
||||
Hodoscope[3] 512.80189055541 (nsec)
|
||||
Hodoscope[4] 55.938686545556 (nsec)
|
||||
Hodoscope[14] 617.2547311769 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.670954837777 (nsec) --- local (x,y) 0.014374186995306, 0.0016904633957184
|
||||
Layer[1] : time 8.3387769386408 (nsec) --- local (x,y) 0.024819947410655, 0.0012149965419307
|
||||
Layer[2] : time 10.006599039761 (nsec) --- local (x,y) 0.037789503212208, -0.0017057307818501
|
||||
Layer[3] : time 11.674421141025 (nsec) --- local (x,y) 0.052481163824864, -0.0051113213589585
|
||||
Layer[4] : time 13.342243242516 (nsec) --- local (x,y) 0.069066710402967, -0.009396563863963
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.367446582368 (nsec) --- local (x,y) -82.628088808706, -0.094589895835362
|
||||
Layer[1] : time 36.036185159872 (nsec) --- local (x,y) -99.206028424542, -0.09801612125946
|
||||
Layer[2] : time 37.704923670234 (nsec) --- local (x,y) -115.7833609481, -0.09731992147312
|
||||
Layer[3] : time 39.373662218472 (nsec) --- local (x,y) -132.36103594442, -0.098536328012051
|
||||
Layer[4] : time 41.042401049337 (nsec) --- local (x,y) -148.9412677891, -0.09791013108737
|
||||
EM Calorimeter has 67 hits. Total Edep is 2293.2573847598 (MeV)
|
||||
Hadron Calorimeter has 17 hits. Total Edep is 3722.2689932584 (MeV)
|
||||
Layer[0] : time 6.6709548375129 (nsec) --- local (x,y) 0.0090119673826799, -0.0035240339704669
|
||||
Layer[1] : time 8.3387769380803 (nsec) --- local (x,y) 0.013402295065732, -0.0027956524071196
|
||||
Layer[2] : time 10.006599038649 (nsec) --- local (x,y) 0.016867469242626, -0.00032305442031954
|
||||
Layer[3] : time 11.674421139201 (nsec) --- local (x,y) 0.020105544415725, 0.0011821680884779
|
||||
Layer[4] : time 13.342243239785 (nsec) --- local (x,y) 0.024388515466025, 0.0030732083950382
|
||||
Drift Chamber 2 has 6 hits.
|
||||
Layer[0] : time 34.366877095497 (nsec) --- local (x,y) -82.662180674851, -0.036484735633946
|
||||
Layer[1] : time 36.035611545704 (nsec) --- local (x,y) -99.20273751824, -0.044598361170938
|
||||
Layer[2] : time 37.704346172613 (nsec) --- local (x,y) -115.74489649284, -0.052636821003492
|
||||
Layer[3] : time 39.373080560754 (nsec) --- local (x,y) -132.2848903879, -0.060808234979961
|
||||
Layer[3] : time 39.789023330856 (nsec) --- local (x,y) -22.687006798422, 8.3753208168082
|
||||
Layer[4] : time 41.041815171473 (nsec) --- local (x,y) -148.82690034193, -0.07235520335332
|
||||
EM Calorimeter has 65 hits. Total Edep is 71496.058399343 (MeV)
|
||||
Hadron Calorimeter has 15 hits. Total Edep is 670.29319189515 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1145,23 +1116,24 @@ Hadron Calorimeter has 17 hits. Total Edep is 3722.2689932584 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832232337 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.185965714274 (nsec)
|
||||
Hodoscope[7] 4.9867832232956 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.185822433653 (nsec)
|
||||
Hodoscope[11] 56.444826224453 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709483400656 (nsec) --- local (x,y) -0.0048840958355261, -0.0057162009442672
|
||||
Layer[1] : time 8.3387688161326 (nsec) --- local (x,y) -0.0071321957926361, -0.0097698086910614
|
||||
Layer[2] : time 10.006589292198 (nsec) --- local (x,y) -0.0087608019245764, -0.014154272270479
|
||||
Layer[3] : time 11.674409768268 (nsec) --- local (x,y) -0.012185571281507, -0.017594467658009
|
||||
Layer[4] : time 13.342230244346 (nsec) --- local (x,y) -0.014943705030338, -0.021843001403842
|
||||
Layer[0] : time 6.6709483408646 (nsec) --- local (x,y) -0.020319911379571, -0.011307806822227
|
||||
Layer[1] : time 8.3387688176418 (nsec) --- local (x,y) -0.032372445418449, -0.020801299654419
|
||||
Layer[2] : time 10.006589294556 (nsec) --- local (x,y) -0.046274050359483, -0.029928940651713
|
||||
Layer[3] : time 11.674409770823 (nsec) --- local (x,y) -0.045831628791546, -0.038790973071574
|
||||
Layer[4] : time 13.342230247213 (nsec) --- local (x,y) -0.047835165782786, -0.049530425019764
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.848593374549 (nsec) --- local (x,y) -148.22171592962, -0.073559872418172
|
||||
Layer[1] : time 36.519342688437 (nsec) --- local (x,y) -177.86652101751, -0.071600812452987
|
||||
Layer[2] : time 38.190092008217 (nsec) --- local (x,y) -207.51135593581, -0.069692028401123
|
||||
Layer[3] : time 39.860841428016 (nsec) --- local (x,y) -237.15669750689, -0.068052975036924
|
||||
Layer[4] : time 41.531590827088 (nsec) --- local (x,y) -266.80193391688, -0.064643297102022
|
||||
EM Calorimeter has 45 hits. Total Edep is 89207.251965643 (MeV)
|
||||
Hadron Calorimeter has 7 hits. Total Edep is 49.050133900306 (MeV)
|
||||
Layer[0] : time 34.848585244905 (nsec) --- local (x,y) -147.55487903002, -0.16924444759472
|
||||
Layer[1] : time 36.519306906334 (nsec) --- local (x,y) -177.05928501042, -0.16604558420713
|
||||
Layer[2] : time 38.190028928037 (nsec) --- local (x,y) -206.56552419474, -0.16071361536283
|
||||
Layer[3] : time 39.860751146921 (nsec) --- local (x,y) -236.0727669925, -0.15637214440378
|
||||
Layer[4] : time 41.531473379476 (nsec) --- local (x,y) -265.58007941515, -0.15247098161345
|
||||
EM Calorimeter has 45 hits. Total Edep is 89609.566489227 (MeV)
|
||||
Hadron Calorimeter has 8 hits. Total Edep is 72.120204913719 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1178,24 +1150,23 @@ Hadron Calorimeter has 7 hits. Total Edep is 49.050133900306 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0086870593255 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.376285565383 (nsec)
|
||||
Hodoscope[20] 146.02132159158 (nsec)
|
||||
Hodoscope[7] 5.0086863655084 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.372701834398 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7002536147477 (nsec) --- local (x,y) 0.029986951958968, 0.097432310106192
|
||||
Layer[1] : time 8.3754039586784 (nsec) --- local (x,y) 0.080198913060444, 0.17525847369326
|
||||
Layer[2] : time 10.050554438979 (nsec) --- local (x,y) 0.11847565885133, 0.25507502419578
|
||||
Layer[3] : time 11.725705041787 (nsec) --- local (x,y) 0.15233689185912, 0.32765839631968
|
||||
Layer[4] : time 13.400855769404 (nsec) --- local (x,y) 0.15823599980624, 0.38692004138514
|
||||
Layer[0] : time 6.7002531118894 (nsec) --- local (x,y) -0.13101795912701, -0.029381547224537
|
||||
Layer[1] : time 8.3754036618387 (nsec) --- local (x,y) -0.21875022652134, -0.048366228953557
|
||||
Layer[2] : time 10.050554347399 (nsec) --- local (x,y) -0.30570324075723, -0.084320755777674
|
||||
Layer[3] : time 11.725705135667 (nsec) --- local (x,y) -0.39691746392256, -0.12886751607533
|
||||
Layer[4] : time 13.400856018946 (nsec) --- local (x,y) -0.46304657693516, -0.14550228230833
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 35.002071104019 (nsec) --- local (x,y) -148.67624410277, 0.41497691047761
|
||||
Layer[1] : time 36.680196879876 (nsec) --- local (x,y) -178.47713703279, 0.37172154193224
|
||||
Layer[2] : time 38.358326357012 (nsec) --- local (x,y) -208.29601183663, 0.34592357074414
|
||||
Layer[3] : time 40.036460240549 (nsec) --- local (x,y) -238.13640118239, 0.30826749200858
|
||||
Layer[4] : time 41.714594059709 (nsec) --- local (x,y) -267.97577799805, 0.28859893189953
|
||||
EM Calorimeter has 40 hits. Total Edep is 3695.2421609469 (MeV)
|
||||
Hadron Calorimeter has 11 hits. Total Edep is 240.41855719607 (MeV)
|
||||
Layer[0] : time 34.998569568724 (nsec) --- local (x,y) -150.33407100262, 0.88513767334187
|
||||
Layer[1] : time 36.676669996325 (nsec) --- local (x,y) -180.00771994343, 1.0662013511011
|
||||
Layer[2] : time 38.354774130669 (nsec) --- local (x,y) -209.69940237617, 1.2325173544005
|
||||
Layer[3] : time 40.032897383599 (nsec) --- local (x,y) -239.48656195884, 1.3842705562144
|
||||
Layer[4] : time 41.711021609842 (nsec) --- local (x,y) -269.27804786018, 1.4993505116827
|
||||
EM Calorimeter has 29 hits. Total Edep is 220.09028768821 (MeV)
|
||||
Hadron Calorimeter has 10 hits. Total Edep is 594.42320235417 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1210,25 +1181,26 @@ Hadron Calorimeter has 11 hits. Total Edep is 240.41855719607 (MeV)
|
||||
... open analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,10000)
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9872689310717 (nsec)
|
||||
Hodoscope[7] 4.9872689251917 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 42.703271073219 (nsec)
|
||||
Hodoscope[10] 42.701236491409 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6715981858426 (nsec) --- local (x,y) 0.086334604923717, 0.044078676675813
|
||||
Layer[1] : time 8.3395812350917 (nsec) --- local (x,y) 0.21429148487059, 0.010752318528263
|
||||
Layer[2] : time 10.007564295616 (nsec) --- local (x,y) 0.35591111356628, -0.0065730693560991
|
||||
Layer[3] : time 11.675547335646 (nsec) --- local (x,y) 0.46933520465195, -0.0074475933979333
|
||||
Layer[4] : time 13.343530379259 (nsec) --- local (x,y) 0.5778646755618, 0.016765916412075
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.37488911915 (nsec) --- local (x,y) -83.058114534785, 0.2845533118211
|
||||
Layer[1] : time 36.0438334784 (nsec) --- local (x,y) -100.03573577586, 0.18879916945713
|
||||
Layer[2] : time 37.712777916343 (nsec) --- local (x,y) -117.01408791381, 0.10443356638372
|
||||
Layer[3] : time 39.381726172123 (nsec) --- local (x,y) -134.0260554731, 0.015645064234873
|
||||
Layer[4] : time 41.050676188231 (nsec) --- local (x,y) -151.05357777194, -0.060766902334357
|
||||
EM Calorimeter has 4 hits. Total Edep is 185.29721908126 (MeV)
|
||||
Hadron Calorimeter has 4 hits. Total Edep is 177.29494289352 (MeV)
|
||||
Layer[0] : time 6.6715981316549 (nsec) --- local (x,y) -0.013051399346541, -0.020051633433066
|
||||
Layer[1] : time 8.3395811124152 (nsec) --- local (x,y) 0.018595714744988, -0.024245157064065
|
||||
Layer[2] : time 10.00756409738 (nsec) --- local (x,y) 0.056144865643624, -0.023155832524179
|
||||
Layer[3] : time 11.675547094766 (nsec) --- local (x,y) 0.11747355665766, -0.025568604496403
|
||||
Layer[4] : time 13.343530114112 (nsec) --- local (x,y) 0.21138937452661, -0.052633384688109
|
||||
Drift Chamber 2 has 6 hits.
|
||||
Layer[0] : time 34.372937534028 (nsec) --- local (x,y) -83.055338469784, 0.60884036849331
|
||||
Layer[1] : time 36.041870698757 (nsec) --- local (x,y) -99.933597106929, 0.74610990535414
|
||||
Layer[2] : time 37.710802235179 (nsec) --- local (x,y) -116.79720554111, 0.89802873715968
|
||||
Layer[3] : time 39.379735311534 (nsec) --- local (x,y) -133.67446108602, 1.0487428938735
|
||||
Layer[4] : time 41.048664754251 (nsec) --- local (x,y) -150.51912454038, 1.2134125378822
|
||||
Layer[4] : time 41.459159261501 (nsec) --- local (x,y) -350.8099816989, -67.065704017117
|
||||
EM Calorimeter has 18 hits. Total Edep is 314.43212538834 (MeV)
|
||||
Hadron Calorimeter has 10 hits. Total Edep is 362.15073898743 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1243,33 +1215,25 @@ Hadron Calorimeter has 4 hits. Total Edep is 177.29494289352 (MeV)
|
||||
... open analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,10000)
|
||||
>>> Event 0 >>> Simulation truth : e+ (-0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832345473 (nsec)
|
||||
Hodoscope[7] 4.9867832354409 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[5] 43.253138378076 (nsec)
|
||||
Drift Chamber 1 has 13 hits.
|
||||
Layer[0] : time 6.6709484232547 (nsec) --- local (x,y) 0.038488751051262, 0.085395706053151
|
||||
Layer[0] : time 7.0868070470494 (nsec) --- local (x,y) -321.66394556644, 47.548186172922
|
||||
Layer[1] : time 8.3387689792851 (nsec) --- local (x,y) 0.18695143977491, 0.12852447969726
|
||||
Layer[1] : time 9.0215293711672 (nsec) --- local (x,y) -536.1383379965, 136.56293427389
|
||||
Layer[1] : time 9.022108943936 (nsec) --- local (x,y) -536.20863830569, 136.56345986502
|
||||
Layer[1] : time 9.022108943936 (nsec) --- local (x,y) -536.20863830569, 136.56345986502
|
||||
Layer[1] : time 9.0230024694894 (nsec) --- local (x,y) -536.21200161438, 136.54279533512
|
||||
Layer[1] : time 9.0240087873392 (nsec) --- local (x,y) -536.22712336251, 136.53343971751
|
||||
Layer[2] : time 10.006589554488 (nsec) --- local (x,y) 0.35754709225492, 0.15236727775874
|
||||
Layer[2] : time 11.06177213832 (nsec) --- local (x,y) -817.65864083819, 163.01182498938
|
||||
Layer[3] : time 11.674410152648 (nsec) --- local (x,y) 0.54860784362149, 0.146557079419
|
||||
Layer[3] : time 12.868286921344 (nsec) --- local (x,y) -821.19691727132, 137.45094268111
|
||||
Layer[4] : time 13.342230763209 (nsec) --- local (x,y) 0.74914712348409, 0.14133331589417
|
||||
Hodoscope[9] 43.189018719946 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709484025457 (nsec) --- local (x,y) 0.08091330607161, 0.18966276277257
|
||||
Layer[1] : time 8.3387689435565 (nsec) --- local (x,y) 0.19652453985638, 0.26792072673928
|
||||
Layer[2] : time 10.00658949998 (nsec) --- local (x,y) 0.32365440824475, 0.35677709808758
|
||||
Layer[3] : time 11.674410338932 (nsec) --- local (x,y) 0.47781327117265, 0.64834611871461
|
||||
Layer[4] : time 13.342231195473 (nsec) --- local (x,y) 0.61764475239636, 0.95577749997415
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.859577933344 (nsec) --- local (x,y) -324.51055537179, -1.3034640036202
|
||||
Layer[1] : time 36.541591675309 (nsec) --- local (x,y) -389.87959266698, -1.4717564664295
|
||||
Layer[2] : time 38.223611256627 (nsec) --- local (x,y) -455.26217129225, -1.6241932345234
|
||||
Layer[3] : time 39.905618518339 (nsec) --- local (x,y) -520.61619503141, -1.8022987381915
|
||||
Layer[4] : time 41.587620465371 (nsec) --- local (x,y) -585.95787527518, -1.9974042191237
|
||||
EM Calorimeter has 17 hits. Total Edep is 8572.0632815154 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 0.58633521636629 (MeV)
|
||||
Layer[0] : time 34.851655008621 (nsec) --- local (x,y) -146.3980959007, 4.0019929557807
|
||||
Layer[1] : time 36.522402544855 (nsec) --- local (x,y) -176.03330285709, 4.1892269088456
|
||||
Layer[2] : time 38.193149768811 (nsec) --- local (x,y) -205.66680819147, 4.394565147932
|
||||
Layer[3] : time 39.86389393307 (nsec) --- local (x,y) -235.28471804977, 4.6121444793681
|
||||
Layer[4] : time 41.534640001204 (nsec) --- local (x,y) -264.91214049875, 4.8476396056941
|
||||
EM Calorimeter has 15 hits. Total Edep is 9603.0575910575 (MeV)
|
||||
Hadron Calorimeter has 3 hits. Total Edep is 2.5048694513192 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1286,23 +1250,23 @@ Hadron Calorimeter has 2 hits. Total Edep is 0.58633521636629 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (-0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 6.8404969894099 (nsec)
|
||||
Hodoscope[7] 6.839307405055 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 59.375923623088 (nsec)
|
||||
Hodoscope[9] 59.409749504545 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 9.1553076589262 (nsec) --- local (x,y) -1.6929652148303, -5.7091360488551
|
||||
Layer[1] : time 11.447960468074 (nsec) --- local (x,y) -2.3419547890363, -7.9016238607817
|
||||
Layer[2] : time 13.74083543237 (nsec) --- local (x,y) -2.5638030808702, -10.317266298763
|
||||
Layer[3] : time 16.033895156997 (nsec) --- local (x,y) -2.9216744773845, -12.664221279455
|
||||
Layer[4] : time 18.327178376945 (nsec) --- local (x,y) -3.4136138861673, -15.217082831743
|
||||
Layer[0] : time 9.1543962184373 (nsec) --- local (x,y) -1.2065357844235, -0.52211063188947
|
||||
Layer[1] : time 11.447259783876 (nsec) --- local (x,y) -1.8180499982614, -1.5680557417753
|
||||
Layer[2] : time 13.740309399543 (nsec) --- local (x,y) -2.4514180152068, -2.8048220877035
|
||||
Layer[3] : time 16.033556127771 (nsec) --- local (x,y) -3.1579383760823, -4.3338495840796
|
||||
Layer[4] : time 18.326999717054 (nsec) --- local (x,y) -3.6290380762273, -5.9704280650574
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 47.894116558768 (nsec) --- local (x,y) -167.72187924283, -32.566489682848
|
||||
Layer[1] : time 50.194665048673 (nsec) --- local (x,y) -198.96518311334, -33.783333404985
|
||||
Layer[2] : time 52.495353328915 (nsec) --- local (x,y) -229.99465639818, -35.629565418799
|
||||
Layer[3] : time 54.796190488981 (nsec) --- local (x,y) -260.87775052467, -37.263801878705
|
||||
Layer[4] : time 57.097213707617 (nsec) --- local (x,y) -291.65864654475, -39.086614029131
|
||||
EM Calorimeter has 1 hits. Total Edep is 296.50032832861 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
Layer[0] : time 47.925404835662 (nsec) --- local (x,y) -146.81900258051, -28.98445661692
|
||||
Layer[1] : time 50.226152083058 (nsec) --- local (x,y) -177.80823877557, -31.158208645504
|
||||
Layer[2] : time 52.527216763016 (nsec) --- local (x,y) -209.10072977013, -33.263006832241
|
||||
Layer[3] : time 54.828707838009 (nsec) --- local (x,y) -240.78260955991, -35.545701195824
|
||||
Layer[4] : time 57.130443482516 (nsec) --- local (x,y) -272.60549462285, -38.001160805675
|
||||
EM Calorimeter has 7 hits. Total Edep is 372.11741215346 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 1.3867200765056 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1317,29 +1281,19 @@ Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... open analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,1000)
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0351333254013 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 43.147361784842 (nsec)
|
||||
Hodoscope[7] 5.0351325594242 (nsec)
|
||||
Hodoscope 2 has 0 hits.
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7357002393968 (nsec) --- local (x,y) 1.403054821702, -2.0300980448904
|
||||
Layer[1] : time 8.4197664336677 (nsec) --- local (x,y) 2.6314680393983, -3.0115742900775
|
||||
Layer[2] : time 10.103832125501 (nsec) --- local (x,y) 3.6325597517103, -3.73766727203
|
||||
Layer[3] : time 11.787903389636 (nsec) --- local (x,y) 4.5024724838869, -4.6026452482534
|
||||
Layer[4] : time 13.471977780492 (nsec) --- local (x,y) 5.5281668522208, -4.7655797915379
|
||||
Drift Chamber 2 has 9 hits.
|
||||
Layer[0] : time 34.73636070506 (nsec) --- local (x,y) -90.244772844079, -15.699739219058
|
||||
Layer[1] : time 36.42187338331 (nsec) --- local (x,y) -110.54421555139, -16.996474424229
|
||||
Layer[1] : time 36.422311164929 (nsec) --- local (x,y) -110.54947146332, -16.996733662971
|
||||
Layer[1] : time 36.422311164929 (nsec) --- local (x,y) -110.54947146332, -16.996733662971
|
||||
Layer[1] : time 36.423470128621 (nsec) --- local (x,y) -110.52433194548, -17.019852291994
|
||||
Layer[1] : time 36.424678157501 (nsec) --- local (x,y) -110.51662566869, -17.054330945122
|
||||
Layer[2] : time 38.107390262517 (nsec) --- local (x,y) -130.86908700026, -17.848165749128
|
||||
Layer[3] : time 39.792909381578 (nsec) --- local (x,y) -151.20403678734, -18.451871337781
|
||||
Layer[4] : time 41.478409233334 (nsec) --- local (x,y) -171.35636441898, -19.269663023791
|
||||
EM Calorimeter has 3 hits. Total Edep is 178.15823375337 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 23.812697590249 (MeV)
|
||||
Layer[0] : time 6.7356839693392 (nsec) --- local (x,y) 1.00337368462, -2.2283876808188
|
||||
Layer[1] : time 8.4197344667151 (nsec) --- local (x,y) 1.3539249287424, -3.089066754209
|
||||
Layer[2] : time 10.103786052866 (nsec) --- local (x,y) 1.708741195911, -3.7373761142023
|
||||
Layer[3] : time 11.787840681386 (nsec) --- local (x,y) 1.9574729449871, -4.5472477265237
|
||||
Layer[4] : time 13.471897486677 (nsec) --- local (x,y) 2.2906886508009, -5.232252399317
|
||||
Drift Chamber 2 has 0 hits.
|
||||
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
... close file : B5.root - done
|
||||
@@ -1356,23 +1310,22 @@ Hadron Calorimeter has 2 hits. Total Edep is 23.812697590249 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867843621864 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.198872804479 (nsec)
|
||||
Hodoscope[11] 339.49750014424 (nsec)
|
||||
Hodoscope[7] 4.9867844012223 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.166246428738 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709534152651 (nsec) --- local (x,y) -1.3238319647763, -0.95890350055006
|
||||
Layer[1] : time 8.3387765546036 (nsec) --- local (x,y) -1.7720308511042, -1.7223515788165
|
||||
Layer[2] : time 10.006599780114 (nsec) --- local (x,y) -2.0562308860004, -2.5830080178486
|
||||
Layer[3] : time 11.674423322826 (nsec) --- local (x,y) -2.105171886712, -3.5204674049499
|
||||
Layer[4] : time 13.342248066494 (nsec) --- local (x,y) -1.6528433173052, -4.5187468244154
|
||||
Layer[0] : time 6.6709548267412 (nsec) --- local (x,y) -1.893880659789, -0.88243507827056
|
||||
Layer[1] : time 8.3387785757587 (nsec) --- local (x,y) -2.7894324066329, -1.30110659956
|
||||
Layer[2] : time 10.006601383772 (nsec) --- local (x,y) -3.5702204800556, -1.5913265653949
|
||||
Layer[3] : time 11.674424780232 (nsec) --- local (x,y) -4.4913713282755, -1.5340449008143
|
||||
Layer[4] : time 13.342247752488 (nsec) --- local (x,y) -5.3339674286131, -1.3450081549838
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.859511463551 (nsec) --- local (x,y) -153.01856237232, -13.892895410658
|
||||
Layer[1] : time 36.530771459711 (nsec) --- local (x,y) -185.14623913488, -13.932679715637
|
||||
Layer[2] : time 38.201913458571 (nsec) --- local (x,y) -216.70423119237, -13.012116594602
|
||||
Layer[3] : time 39.873062889848 (nsec) --- local (x,y) -248.29460251796, -11.992883736508
|
||||
Layer[4] : time 41.544158974461 (nsec) --- local (x,y) -279.6276773147, -10.903351881781
|
||||
EM Calorimeter has 10 hits. Total Edep is 965.10165267599 (MeV)
|
||||
Layer[0] : time 34.827944308765 (nsec) --- local (x,y) -166.2123855287, -0.13863845450075
|
||||
Layer[1] : time 36.498904505291 (nsec) --- local (x,y) -196.90648553304, -0.22683592471634
|
||||
Layer[2] : time 38.169895113697 (nsec) --- local (x,y) -227.74906842514, -0.32828482182389
|
||||
Layer[3] : time 39.840799013293 (nsec) --- local (x,y) -258.1666479774, -0.41877488429128
|
||||
Layer[4] : time 41.511714410872 (nsec) --- local (x,y) -288.64069287519, -0.29972129283062
|
||||
EM Calorimeter has 7 hits. Total Edep is 969.71073513552 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write file : B5.root - done
|
||||
... write file : B5ntuple.root - done
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -865,7 +865,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
mean Energy in Absorber : 452.725 MeV +- 15.8845 MeV
|
||||
mean Energy in Gap : 24.7025 MeV +- 7.34604 MeV
|
||||
|
||||
mean trackLength in Absorber : 32.576 cm +- 1.26658 cm
|
||||
mean trackLength in Absorber : 32.576 cm +- 1.26659 cm
|
||||
mean trackLength in Gap : 12.2313 cm +- 3.75875 cm
|
||||
------------------------------------------------------------
|
||||
|
||||
@@ -874,7 +874,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
|
||||
EAbs: mean = 452.725 MeV rms = 15.8845 MeV
|
||||
EGap: mean = 24.7025 MeV rms = 7.34604 MeV
|
||||
LAbs: mean = 32.576 cm rms = 1.26658 cm
|
||||
LAbs: mean = 32.576 cm rms = 1.26659 cm
|
||||
LGap: mean = 12.2313 cm rms = 3.75875 cm
|
||||
... write file : AnaEx01.root - done
|
||||
... close file : AnaEx01.root - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -862,7 +862,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
mean Energy in Absorber : 452.725 MeV +- 15.8845 MeV
|
||||
mean Energy in Gap : 24.7025 MeV +- 7.34604 MeV
|
||||
|
||||
mean trackLength in Absorber : 32.576 cm +- 1.26658 cm
|
||||
mean trackLength in Absorber : 32.576 cm +- 1.26659 cm
|
||||
mean trackLength in Gap : 12.2313 cm +- 3.75875 cm
|
||||
------------------------------------------------------------
|
||||
|
||||
@@ -871,7 +871,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
|
||||
EAbs: mean = 452.725 MeV rms = 15.8845 MeV
|
||||
EGap: mean = 24.7025 MeV rms = 7.34604 MeV
|
||||
LAbs: mean = 32.576 cm rms = 1.26658 cm
|
||||
LAbs: mean = 32.576 cm rms = 1.26659 cm
|
||||
LGap: mean = 12.2313 cm rms = 3.75875 cm
|
||||
|
||||
----> Histograms and ntuples are saved
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -493,11 +493,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: ionInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 25.6 PeV
|
||||
|
||||
Process: ionElastic
|
||||
Model: NNDiffuseElastic: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -509,7 +509,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -521,7 +521,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -630,7 +630,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -774,7 +774,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
Model: FTFP: 3 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 25.6 PeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
@@ -901,53 +901,53 @@ i/16 till_ith mean var sd r vov
|
||||
---> Begin of event: 900
|
||||
|
||||
G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
EFFICIENCY = 0.642
|
||||
MEAN = 5.14718e-12
|
||||
VAR = 2.08772e-23
|
||||
SD = 4.56916e-12
|
||||
R = 0.0280716
|
||||
SHIFT = -9.60659e-14
|
||||
VOV = 0.000195338
|
||||
FOM = 4880.82
|
||||
THE LARGEST SCORE = 1.06991e-11 and it happened at 20th event
|
||||
Affected Mean = 5.15273e-12 and its ratio to original is 1.00108
|
||||
Affected VAR = 2.08872e-23 and its ratio to original is 1.00047
|
||||
Affected R = 0.028034 and its ratio to original is 0.998662
|
||||
Affected SHIFT = -1.00143e-13 and its ratio to original is 1.04244
|
||||
Affected FOM = 4880.82 and its ratio to original is 1
|
||||
MEAN distribution is not RANDOM
|
||||
EFFICIENCY = 0.643
|
||||
MEAN = 5.0758e-12
|
||||
VAR = 2.12811e-23
|
||||
SD = 4.61314e-12
|
||||
R = 0.0287404
|
||||
SHIFT = -2.35477e-14
|
||||
VOV = 0.000169324
|
||||
FOM = 5044.34
|
||||
THE LARGEST SCORE = 1.06635e-11 and it happened at 111th event
|
||||
Affected Mean = 5.08139e-12 and its ratio to original is 1.0011
|
||||
Affected VAR = 2.1291e-23 and its ratio to original is 1.00047
|
||||
Affected R = 0.0287011 and its ratio to original is 0.998635
|
||||
Affected SHIFT = -2.7785e-14 and its ratio to original is 1.17995
|
||||
Affected FOM = 5044.34 and its ratio to original is 1
|
||||
MEAN distribution is RANDOM
|
||||
r follows 1/std::sqrt(N)
|
||||
r is monotonically decrease
|
||||
r is less than 0.1. r = 0.0280716
|
||||
r is less than 0.1. r = 0.0287404
|
||||
VOV follows 1/std::sqrt(N)
|
||||
VOV is monotonically decrease
|
||||
FOM distribution is not RANDOM
|
||||
SLOPE is not large enough
|
||||
This result passes 5 / 8 Convergence Test.
|
||||
This result passes 6 / 8 Convergence Test.
|
||||
|
||||
|
||||
G4ConvergenceTester Output History of DOSE_TALLY
|
||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||
1 62 4.5253e-12 2.34085e-23 4.83823e-12 0.1347 0.0022136 211.977 5.15321e-13 0.603175 0.0104428 0.00741344
|
||||
2 124 5.07914e-12 2.24777e-23 4.74106e-12 0.0834893 0.00110103 551.779 -2.27529e-14 0.648 0.00434568 0.00256902
|
||||
3 187 5.00811e-12 2.20288e-23 4.69348e-12 0.0683506 0.000830051 823.27 3.22726e-14 0.62234 0.00322786 0.00141909
|
||||
4 249 4.92216e-12 2.15564e-23 4.64289e-12 0.0596572 0.000658972 1080.69 8.75362e-14 0.612 0.00253595 0.0010088
|
||||
5 312 5.06441e-12 2.17141e-23 4.65984e-12 0.052008 0.000521823 1421.96 -2.82951e-14 0.619808 0.00195975 0.00073644
|
||||
6 374 5.10571e-12 2.16318e-23 4.651e-12 0.0470408 0.000439654 1738.11 -6.06809e-14 0.626667 0.00158865 0.000618279
|
||||
7 437 5.11358e-12 2.142e-23 4.62817e-12 0.0432461 0.000391003 2056.52 -8.02445e-14 0.625571 0.00136653 0.000499424
|
||||
8 499 5.04846e-12 2.12203e-23 4.60654e-12 0.0408067 0.000357707 2309.74 -2.29392e-14 0.624 0.00120513 0.000456729
|
||||
9 562 4.84078e-12 2.11742e-23 4.60154e-12 0.0400621 0.000326485 2396.39 1.70206e-13 0.605684 0.00115635 0.000445772
|
||||
10 624 4.87931e-12 2.10272e-23 4.58554e-12 0.0375917 0.000301029 2721.71 1.34783e-13 0.6128 0.00101097 0.00039991
|
||||
11 687 4.95198e-12 2.09917e-23 4.58167e-12 0.0352737 0.000273146 3091.19 7.24355e-14 0.619186 0.000893929 0.000348493
|
||||
12 749 4.97479e-12 2.1078e-23 4.59108e-12 0.0336984 0.00024486 3386.94 5.48528e-14 0.621333 0.000812589 0.000321481
|
||||
13 812 5.07739e-12 2.11261e-23 4.59632e-12 0.0317486 0.000223897 3815.73 -3.22864e-14 0.630996 0.000719305 0.000287428
|
||||
14 874 5.10773e-12 2.09814e-23 4.58054e-12 0.0303169 0.000215807 4184.63 -5.5276e-14 0.636571 0.000652475 0.000265589
|
||||
15 937 5.112e-12 2.09475e-23 4.57684e-12 0.0292331 0.000203931 4500.68 -5.62272e-14 0.636461 0.000608944 0.000244717
|
||||
16 999 5.14718e-12 2.08772e-23 4.56916e-12 0.0280716 0.000195338 4880.82 -9.60659e-14 0.642 0.000557632 0.000229594
|
||||
1 62 4.37449e-12 2.16748e-23 4.65562e-12 0.134085 0.00314837 231.755 5.98369e-13 0.603175 0.0104428 0.0072506
|
||||
2 124 5.30852e-12 2.19309e-23 4.68304e-12 0.0789041 0.00122164 669.252 -2.23085e-13 0.656 0.00419512 0.00198092
|
||||
3 187 5.21472e-12 2.1841e-23 4.67344e-12 0.0653622 0.000779056 975.293 -1.60104e-13 0.643617 0.00294531 0.00130418
|
||||
4 249 5.23485e-12 2.14264e-23 4.62887e-12 0.0559242 0.000667286 1332.26 -1.88309e-13 0.656 0.00209756 0.00101745
|
||||
5 312 5.26538e-12 2.15932e-23 4.64685e-12 0.0498836 0.000522109 1674.46 -1.93913e-13 0.664537 0.0016128 0.000867615
|
||||
6 374 5.20583e-12 2.14579e-23 4.63226e-12 0.0459502 0.000449323 1973.39 -1.38156e-13 0.658667 0.00138192 0.000723876
|
||||
7 437 5.17281e-12 2.11817e-23 4.60236e-12 0.0425125 0.000416551 2305.44 -1.06981e-13 0.659817 0.0011771 0.000626087
|
||||
8 499 5.19066e-12 2.12951e-23 4.61466e-12 0.0397587 0.000352038 2635.88 -1.26331e-13 0.658 0.00103951 0.000538077
|
||||
9 562 5.17133e-12 2.12575e-23 4.61059e-12 0.0375751 0.000314757 2951.13 -1.13654e-13 0.653641 0.000941192 0.000468186
|
||||
10 624 5.11484e-12 2.14343e-23 4.62972e-12 0.0362062 0.000266212 3178.51 -6.11577e-14 0.6432 0.000887562 0.000421226
|
||||
11 687 5.10216e-12 2.12589e-23 4.61073e-12 0.0344526 0.000252678 3510.31 -4.92328e-14 0.645349 0.000798764 0.00038649
|
||||
12 749 5.10234e-12 2.12147e-23 4.60595e-12 0.0329624 0.00023361 3834.88 -4.77397e-14 0.646667 0.000728522 0.000356546
|
||||
13 812 5.08453e-12 2.13209e-23 4.61746e-12 0.0318498 0.000207767 4107.48 -3.23568e-14 0.642066 0.000685697 0.000327464
|
||||
14 874 5.11715e-12 2.13103e-23 4.61631e-12 0.0304974 0.000195137 4479.85 -5.8673e-14 0.645714 0.000627054 0.000301973
|
||||
15 937 5.08501e-12 2.12979e-23 4.61497e-12 0.029633 0.000180768 4745.02 -3.26192e-14 0.643923 0.000589531 0.000287647
|
||||
16 999 5.0758e-12 2.12811e-23 4.61314e-12 0.0287404 0.000169324 5044.34 -2.35477e-14 0.643 0.00055521 0.000269972
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
Dose in scoring volume : 5.14718 nanoGy +- 144.417 picoGy
|
||||
Dose in scoring volume : 5.0758 nanoGy +- 145.807 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -832,24 +832,24 @@ Max 2J for sampling of angular correlations 10
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 43 | 135 | 43 | 43 | 0.0265346 | 3.26696 | 1 | 8600.56 | 8600.56 | 33965.6 | 28097.7 | 901.263 |
|
||||
cell_01 | 160 | 193 | 709 | 709 | 0.00714699 | 3.69104 | 1 | 26890.5 | 26890.5 | 401920 | 99253.9 | 2872.52 |
|
||||
cell_02 | 167 | 276 | 1360 | 680 | 0.00966465 | 2.47181 | 0.5 | 47653 | 23826.5 | 199903 | 58894.5 | 1931.99 |
|
||||
cell_03 | 204 | 313 | 1802 | 450.5 | 0.00470968 | 2.00375 | 0.25 | 54143.5 | 13535.9 | 192468 | 27122.5 | 906.464 |
|
||||
cell_04 | 251 | 340 | 2078 | 259.75 | 0.00471143 | 1.86693 | 0.125 | 65163.4 | 8145.43 | 113148 | 15206.9 | 533.088 |
|
||||
cell_05 | 250 | 381 | 2426 | 151.625 | 0.00384781 | 1.52464 | 0.0625 | 73185.4 | 4574.09 | 67826 | 6973.82 | 260.982 |
|
||||
cell_06 | 221 | 339 | 2042 | 63.8125 | 0.00356722 | 1.34279 | 0.03125 | 58814.9 | 1837.97 | 26895.1 | 2468.01 | 95.9407 |
|
||||
cell_07 | 179 | 291 | 1586 | 24.7812 | 0.00433113 | 1.42051 | 0.015625 | 49959.6 | 780.618 | 10490.9 | 1108.88 | 45.4374 |
|
||||
cell_08 | 175 | 243 | 1585 | 12.3828 | 0.00330705 | 1.10187 | 0.0078125 | 48082.8 | 375.647 | 5697.56 | 413.916 | 18.8421 |
|
||||
cell_09 | 182 | 263 | 1949 | 7.61328 | 0.00278889 | 0.856874 | 0.00390625 | 56004.5 | 218.768 | 3404.26 | 187.456 | 9.49412 |
|
||||
cell_10 | 167 | 232 | 1628 | 3.17969 | 0.00259748 | 0.867633 | 0.00195312 | 49097.4 | 95.8933 | 1655.54 | 83.2002 | 4.30023 |
|
||||
cell_11 | 162 | 234 | 1615 | 1.57715 | 0.00213198 | 0.712255 | 0.000976562 | 44714.2 | 43.6662 | 755.673 | 31.1015 | 1.61108 |
|
||||
cell_12 | 132 | 180 | 1331 | 0.649902 | 0.00277106 | 0.725705 | 0.000488281 | 38332.5 | 18.717 | 276.055 | 13.583 | 0.764966 |
|
||||
cell_13 | 100 | 145 | 1035 | 0.252686 | 0.00141925 | 0.528448 | 0.000244141 | 25831.1 | 6.30643 | 136.507 | 3.33262 | 0.193738 |
|
||||
cell_14 | 79 | 104 | 810 | 0.098877 | 0.00192308 | 0.630622 | 0.00012207 | 22260.9 | 2.71739 | 50.8406 | 1.71365 | 0.0977703 |
|
||||
cell_15 | 75 | 98 | 732 | 0.0446777 | 0.00135246 | 0.443984 | 6.10352e-05 | 20917.3 | 1.27669 | 27.2311 | 0.56683 | 0.0368291 |
|
||||
cell_16 | 47 | 70 | 465 | 0.0141907 | 0.000991746 | 0.441644 | 3.05176e-05 | 11676.5 | 0.356337 | 10.0858 | 0.157374 | 0.0100025 |
|
||||
cell_17 | 18 | 29 | 197 | 0.00300598 | 0.00165601 | 0.579703 | 1.52588e-05 | 5085.96 | 0.0776056 | 1.53803 | 0.0449882 | 0.00254699 |
|
||||
cell_18 | 6 | 12 | 61 | 0.000465393 | 0.00297842 | 0.905377 | 7.62939e-06 | 1516.71 | 0.0115716 | 0.195658 | 0.0104766 | 0.000582751 |
|
||||
cell_19 | 2 | 2 | 2 | 1.52588e-05 | 2.74336 | 2.92761 | 7.62939e-06 | 206.53 | 0.0015757 | 7.00956e-05 | 0.00461303 | 0.000192298 |
|
||||
cell_00 | 41 | 133 | 41 | 41 | 0.035689 | 2.89118 | 1 | 7844.25 | 7844.25 | 21722.9 | 22679.1 | 775.269 |
|
||||
cell_01 | 145 | 176 | 498 | 498 | 0.0184015 | 4.41251 | 1 | 22158.5 | 22158.5 | 147695 | 97774.3 | 2717.8 |
|
||||
cell_02 | 160 | 268 | 1165 | 582.5 | 0.0120834 | 2.97607 | 0.5 | 43742 | 21871 | 170271 | 65089.6 | 2057.45 |
|
||||
cell_03 | 211 | 330 | 1725 | 431.25 | 0.00882102 | 2.17717 | 0.25 | 60187.1 | 15046.8 | 128092 | 32759.3 | 1129.9 |
|
||||
cell_04 | 274 | 403 | 2524 | 315.5 | 0.00382076 | 1.60321 | 0.125 | 77393.8 | 9674.23 | 147613 | 15509.9 | 563.993 |
|
||||
cell_05 | 291 | 449 | 2762 | 172.625 | 0.00546828 | 1.61634 | 0.0625 | 85818.8 | 5363.67 | 59556.8 | 8669.5 | 325.673 |
|
||||
cell_06 | 297 | 461 | 2722 | 85.0625 | 0.00331763 | 1.39466 | 0.03125 | 82985.3 | 2593.29 | 41778.3 | 3616.77 | 138.605 |
|
||||
cell_07 | 270 | 400 | 2390 | 37.3438 | 0.00429577 | 1.4622 | 0.015625 | 75048.6 | 1172.63 | 15272.8 | 1714.62 | 65.6085 |
|
||||
cell_08 | 233 | 363 | 2341 | 18.2891 | 0.00295776 | 1.39597 | 0.0078125 | 68665.7 | 536.451 | 9756.82 | 748.872 | 28.8584 |
|
||||
cell_09 | 232 | 352 | 2154 | 8.41406 | 0.00454696 | 1.46807 | 0.00390625 | 68036.3 | 265.767 | 3451.77 | 390.163 | 15.6951 |
|
||||
cell_10 | 257 | 368 | 2469 | 4.82227 | 0.00465319 | 1.26371 | 0.00195312 | 73627.5 | 143.804 | 1642.74 | 181.725 | 7.64397 |
|
||||
cell_11 | 228 | 348 | 2338 | 2.2832 | 0.00308991 | 1.29483 | 0.000976562 | 68040.6 | 66.4459 | 1111.58 | 86.036 | 3.43468 |
|
||||
cell_12 | 197 | 317 | 2024 | 0.988281 | 0.00295427 | 1.23837 | 0.000488281 | 57155.3 | 27.9079 | 463.147 | 34.5604 | 1.36826 |
|
||||
cell_13 | 199 | 289 | 1817 | 0.443604 | 0.00232076 | 1.34599 | 0.000244141 | 52621.6 | 12.8471 | 295.488 | 17.292 | 0.685756 |
|
||||
cell_14 | 167 | 254 | 1599 | 0.19519 | 0.00311863 | 1.15896 | 0.00012207 | 47438.2 | 5.79079 | 89.0521 | 6.71129 | 0.27772 |
|
||||
cell_15 | 164 | 243 | 1484 | 0.0905762 | 0.0046512 | 1.46923 | 6.10352e-05 | 47391 | 2.89252 | 35.2865 | 4.24977 | 0.164125 |
|
||||
cell_16 | 185 | 281 | 1700 | 0.0518799 | 0.00403125 | 1.31117 | 3.05176e-05 | 50289.1 | 1.5347 | 19.9617 | 2.01225 | 0.0804705 |
|
||||
cell_17 | 180 | 277 | 1755 | 0.0267792 | 0.00304722 | 1.32023 | 1.52588e-05 | 53864.6 | 0.821908 | 14.0298 | 1.08511 | 0.0427518 |
|
||||
cell_18 | 110 | 218 | 1098 | 0.00837708 | 0.00488417 | 1.68138 | 7.62939e-06 | 36069.7 | 0.27519 | 3.61455 | 0.462698 | 0.0176541 |
|
||||
cell_19 | 82 | 82 | 82 | 0.00062561 | 0.00636231 | 2.37287 | 7.62939e-06 | 12140.2 | 0.0926223 | 1.23287 | 0.219781 | 0.00784393 |
|
||||
=============================================
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -859,24 +859,24 @@ Max 2J for sampling of angular correlations 10
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 34 | 128 | 0 | 0 | 0.0121994 | 2.84693 | 1 | 6087.68 | 6087.68 | 45991.2 | 17331.2 | 561.065 |
|
||||
cell_01 | 141 | 160 | 455 | 455 | 0.0285801 | 4.84519 | 1 | 22969.6 | 22969.6 | 106983 | 111292 | 3057.59 |
|
||||
cell_02 | 190 | 298 | 1297 | 648.5 | 0.0126788 | 3.1286 | 0.5 | 51321.7 | 25660.8 | 193526 | 80282.5 | 2453.68 |
|
||||
cell_03 | 277 | 429 | 2366 | 591.5 | 0.00675282 | 2.14138 | 0.25 | 73783.5 | 18445.9 | 193128 | 39499.6 | 1304.16 |
|
||||
cell_04 | 301 | 461 | 2621 | 327.625 | 0.00415471 | 1.8577 | 0.125 | 83305.8 | 10413.2 | 161506 | 19344.6 | 671.01 |
|
||||
cell_05 | 334 | 481 | 2533 | 158.312 | 0.00487269 | 1.9127 | 0.0625 | 83384.5 | 5211.53 | 72698 | 9968.12 | 354.235 |
|
||||
cell_06 | 396 | 561 | 3568 | 111.5 | 0.00423494 | 1.44554 | 0.03125 | 109664 | 3427 | 45543.8 | 4953.88 | 192.875 |
|
||||
cell_07 | 419 | 605 | 3870 | 60.4688 | 0.00353646 | 1.22324 | 0.015625 | 113973 | 1780.82 | 25157.5 | 2178.37 | 88.9683 |
|
||||
cell_08 | 409 | 589 | 3808 | 29.75 | 0.00276421 | 1.06666 | 0.0078125 | 111241 | 869.069 | 14298.1 | 927.001 | 39.523 |
|
||||
cell_09 | 346 | 520 | 3407 | 13.3086 | 0.00225956 | 1.01633 | 0.00390625 | 94399.6 | 368.748 | 7158.37 | 374.771 | 16.1748 |
|
||||
cell_10 | 309 | 422 | 3220 | 6.28906 | 0.00245712 | 0.988833 | 0.00195312 | 89796.7 | 175.384 | 3175.84 | 173.426 | 7.80342 |
|
||||
cell_11 | 271 | 390 | 2687 | 2.62402 | 0.00275 | 1.03314 | 0.000976562 | 76617.6 | 74.8219 | 1232.76 | 77.3015 | 3.39008 |
|
||||
cell_12 | 235 | 354 | 2121 | 1.03564 | 0.00293566 | 0.981251 | 0.000488281 | 60092.3 | 29.342 | 434.672 | 28.7918 | 1.27605 |
|
||||
cell_13 | 214 | 314 | 2003 | 0.489014 | 0.0023436 | 1.00819 | 0.000244141 | 57793.6 | 14.1098 | 259.76 | 14.2254 | 0.608773 |
|
||||
cell_14 | 206 | 302 | 1906 | 0.232666 | 0.00229392 | 0.981399 | 0.00012207 | 56141.8 | 6.85324 | 134.413 | 6.72576 | 0.308332 |
|
||||
cell_15 | 200 | 273 | 1803 | 0.110046 | 0.00240158 | 0.856882 | 6.10352e-05 | 52415 | 3.19916 | 56.1727 | 2.7413 | 0.134903 |
|
||||
cell_16 | 162 | 230 | 1597 | 0.0487366 | 0.00244791 | 0.808782 | 3.05176e-05 | 45532.3 | 1.38954 | 23.073 | 1.12383 | 0.0564807 |
|
||||
cell_17 | 142 | 216 | 1396 | 0.0213013 | 0.00255549 | 1.00471 | 1.52588e-05 | 41172.6 | 0.628245 | 10.9254 | 0.631205 | 0.0279199 |
|
||||
cell_18 | 95 | 179 | 1120 | 0.00854492 | 0.00387415 | 1.21765 | 7.62939e-06 | 36134 | 0.27568 | 3.94027 | 0.335682 | 0.0152652 |
|
||||
cell_19 | 75 | 75 | 0 | 0 | 0.0268231 | 1.84002 | 7.62939e-06 | 13788.5 | 0.105198 | 0.28126 | 0.193566 | 0.00754426 |
|
||||
cell_00 | 45 | 139 | 0 | 0 | 0.00857927 | 2.51129 | 1 | 8009.81 | 8009.81 | 83285.1 | 20115 | 714.525 |
|
||||
cell_01 | 148 | 172 | 494 | 494 | 0.0311879 | 4.70215 | 1 | 24807.4 | 24807.4 | 105277 | 116648 | 3283.35 |
|
||||
cell_02 | 194 | 285 | 1390 | 695 | 0.0127932 | 2.93384 | 0.5 | 52870.5 | 26435.3 | 192124 | 77556.9 | 2457.87 |
|
||||
cell_03 | 264 | 404 | 2335 | 583.75 | 0.00598524 | 2.0972 | 0.25 | 73657.6 | 18414.4 | 215918 | 38618.8 | 1292.32 |
|
||||
cell_04 | 272 | 414 | 2338 | 292.25 | 0.00548476 | 1.99217 | 0.125 | 73947.7 | 9243.47 | 115292 | 18414.6 | 632.35 |
|
||||
cell_05 | 301 | 446 | 2489 | 155.562 | 0.00463676 | 1.798 | 0.0625 | 77402.4 | 4837.65 | 65705.3 | 8698.11 | 304.66 |
|
||||
cell_06 | 312 | 475 | 3145 | 98.2812 | 0.00361072 | 1.4819 | 0.03125 | 92620.9 | 2894.4 | 43808.3 | 4289.22 | 158.18 |
|
||||
cell_07 | 297 | 462 | 2972 | 46.4375 | 0.00317216 | 1.39354 | 0.015625 | 87029.3 | 1359.83 | 21811.1 | 1894.99 | 69.1884 |
|
||||
cell_08 | 332 | 484 | 2969 | 23.1953 | 0.00292959 | 1.43197 | 0.0078125 | 90049.6 | 703.513 | 12904.4 | 1007.41 | 37.8046 |
|
||||
cell_09 | 294 | 461 | 2584 | 10.0938 | 0.00408266 | 1.65131 | 0.00390625 | 80354.3 | 313.884 | 4745.85 | 518.319 | 19.3757 |
|
||||
cell_10 | 288 | 424 | 2611 | 5.09961 | 0.00327842 | 1.41534 | 0.00195312 | 77934 | 152.215 | 2518.88 | 215.436 | 8.25793 |
|
||||
cell_11 | 292 | 419 | 2649 | 2.58691 | 0.00356193 | 1.32707 | 0.000976562 | 79563.4 | 77.6987 | 1150.11 | 103.111 | 4.09662 |
|
||||
cell_12 | 279 | 408 | 2507 | 1.22412 | 0.00397392 | 1.45629 | 0.000488281 | 76900.3 | 37.549 | 527.013 | 54.682 | 2.09431 |
|
||||
cell_13 | 285 | 416 | 2651 | 0.647217 | 0.00312866 | 1.19073 | 0.000244141 | 78974.6 | 19.2809 | 301.475 | 22.9583 | 0.943215 |
|
||||
cell_14 | 280 | 417 | 2580 | 0.314941 | 0.0031579 | 1.14882 | 0.00012207 | 74797.7 | 9.13058 | 143.285 | 10.4894 | 0.452482 |
|
||||
cell_15 | 286 | 419 | 2631 | 0.160583 | 0.00277366 | 1.08006 | 6.10352e-05 | 75851.7 | 4.62962 | 75.444 | 5.00026 | 0.209256 |
|
||||
cell_16 | 268 | 384 | 2664 | 0.0812988 | 0.00267912 | 1.02055 | 3.05176e-05 | 76833.6 | 2.34478 | 39.4307 | 2.39296 | 0.10564 |
|
||||
cell_17 | 240 | 379 | 2511 | 0.0383148 | 0.00282159 | 1.14976 | 1.52588e-05 | 70846.3 | 1.08103 | 17.8053 | 1.24293 | 0.0502395 |
|
||||
cell_18 | 139 | 267 | 1734 | 0.0132294 | 0.00352327 | 1.28376 | 7.62939e-06 | 50999.3 | 0.389094 | 5.80018 | 0.499503 | 0.0204356 |
|
||||
cell_19 | 106 | 106 | 0 | 0 | 0.017527 | 2.19557 | 7.62939e-06 | 19549.3 | 0.14915 | 0.68906 | 0.327468 | 0.0120772 |
|
||||
=============================================
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -571,24 +571,24 @@ ipre_over_ipost = 1024.
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 50 | 150 | 0 | 0 | 0.000572435 | 1.13863 | 1 | 8289.91 | 8289.91 | 853622 | 9439.1 | 488.643 |
|
||||
cell_01 | 151 | 201 | 385 | 385 | 0.00155376 | 4.02942 | 1 | 25476.8 | 25476.8 | 1.86856e+06 | 102657 | 2903.28 |
|
||||
cell_02 | 182 | 272 | 872 | 436 | 0.000576059 | 2.48285 | 0.5 | 50561.7 | 25280.9 | 3.39266e+06 | 62768.6 | 1954.37 |
|
||||
cell_03 | 297 | 435 | 1681 | 420.25 | 0.000512095 | 1.81689 | 0.25 | 85195.9 | 21299 | 2.44471e+06 | 38697.8 | 1251.92 |
|
||||
cell_04 | 420 | 608 | 2355 | 294.375 | 0.000409911 | 1.72758 | 0.125 | 123340 | 15417.5 | 2.17919e+06 | 26635 | 893.277 |
|
||||
cell_05 | 549 | 789 | 3242 | 202.625 | 0.000221909 | 1.40566 | 0.0625 | 160853 | 10053.3 | 2.21366e+06 | 14131.5 | 491.23 |
|
||||
cell_06 | 694 | 993 | 3992 | 124.75 | 0.000247495 | 1.23858 | 0.03125 | 196787 | 6149.58 | 1.12124e+06 | 7616.72 | 277.502 |
|
||||
cell_07 | 944 | 1272 | 5369 | 83.8906 | 0.000221925 | 0.965789 | 0.015625 | 258873 | 4044.89 | 690296 | 3906.51 | 153.194 |
|
||||
cell_08 | 1156 | 1605 | 7132 | 55.7188 | 0.000142652 | 0.868004 | 0.0078125 | 325050 | 2539.45 | 617169 | 2204.25 | 88.0406 |
|
||||
cell_09 | 1367 | 1908 | 8293 | 32.3945 | 0.000126322 | 0.733395 | 0.00390625 | 382405 | 1493.77 | 366140 | 1095.52 | 46.2516 |
|
||||
cell_10 | 1687 | 2322 | 10416 | 20.3438 | 0.000131752 | 0.722761 | 0.00195312 | 480030 | 937.56 | 219100 | 677.631 | 28.8669 |
|
||||
cell_11 | 2035 | 2820 | 12556 | 12.2617 | 0.000121446 | 0.672399 | 0.000976562 | 577253 | 563.724 | 135865 | 379.047 | 16.5002 |
|
||||
cell_12 | 2385 | 3274 | 14531 | 7.09521 | 0.000106975 | 0.584826 | 0.000488281 | 659911 | 322.222 | 80305.6 | 188.444 | 8.59073 |
|
||||
cell_13 | 2748 | 3794 | 17686 | 4.31787 | 8.78157e-05 | 0.527393 | 0.000244141 | 780803 | 190.626 | 54017.8 | 100.535 | 4.74362 |
|
||||
cell_14 | 3099 | 4233 | 19665 | 2.40051 | 9.0948e-05 | 0.490706 | 0.00012207 | 874376 | 106.735 | 27849.6 | 52.3757 | 2.53287 |
|
||||
cell_15 | 3558 | 4921 | 22657 | 1.38287 | 7.60335e-05 | 0.476441 | 6.10352e-05 | 992197 | 60.5589 | 18275.4 | 28.8527 | 1.38954 |
|
||||
cell_16 | 3853 | 5352 | 24988 | 0.762573 | 6.59712e-05 | 0.429342 | 3.05176e-05 | 1.09127e+06 | 33.3029 | 10747.2 | 14.2983 | 0.709006 |
|
||||
cell_17 | 3835 | 5606 | 25812 | 0.39386 | 6.59833e-05 | 0.42243 | 1.52588e-05 | 1.12673e+06 | 17.1926 | 5441.49 | 7.26266 | 0.359048 |
|
||||
cell_18 | 2770 | 5208 | 21406 | 0.163315 | 8.16843e-05 | 0.504267 | 7.62939e-06 | 948924 | 7.23972 | 2164.34 | 3.65075 | 0.176793 |
|
||||
cell_19 | 2425 | 2425 | 0 | 0 | 0.000134196 | 0.728058 | 7.62939e-06 | 385053 | 2.93772 | 730.039 | 2.13883 | 0.0979681 |
|
||||
cell_00 | 45 | 145 | 0 | 0 | 0.000551284 | 1.30764 | 1 | 7552.27 | 7552.27 | 849403 | 9875.63 | 468.262 |
|
||||
cell_01 | 159 | 204 | 384 | 384 | 0.00140752 | 4.24505 | 1 | 24729.7 | 24729.7 | 2.08821e+06 | 104979 | 2939.21 |
|
||||
cell_02 | 198 | 298 | 928 | 464 | 0.000596288 | 2.53888 | 0.5 | 54452.7 | 27226.3 | 3.60981e+06 | 69124.4 | 2152.49 |
|
||||
cell_03 | 317 | 462 | 1780 | 445 | 0.000539381 | 1.85847 | 0.25 | 90719.4 | 22679.8 | 2.52689e+06 | 42149.8 | 1362.96 |
|
||||
cell_04 | 460 | 670 | 2620 | 327.5 | 0.00037911 | 1.66914 | 0.125 | 134734 | 16841.7 | 2.52629e+06 | 28111.2 | 957.741 |
|
||||
cell_05 | 610 | 865 | 3547 | 221.688 | 0.000263689 | 1.40527 | 0.0625 | 175209 | 10950.6 | 2.03217e+06 | 15388.5 | 535.861 |
|
||||
cell_06 | 838 | 1186 | 5152 | 161 | 0.000227679 | 1.15362 | 0.03125 | 242759 | 7586.22 | 1.39207e+06 | 8751.61 | 316.946 |
|
||||
cell_07 | 1086 | 1503 | 6657 | 104.016 | 0.000184877 | 0.884108 | 0.015625 | 310108 | 4845.44 | 908912 | 4283.89 | 168.037 |
|
||||
cell_08 | 1295 | 1780 | 8085 | 63.1641 | 0.000124794 | 0.808462 | 0.0078125 | 362552 | 2832.44 | 718055 | 2289.92 | 89.6091 |
|
||||
cell_09 | 1499 | 2109 | 9426 | 36.8203 | 0.000117783 | 0.760441 | 0.00390625 | 425987 | 1664.01 | 433184 | 1265.38 | 51.0218 |
|
||||
cell_10 | 1787 | 2485 | 11222 | 21.918 | 0.000117969 | 0.742782 | 0.00195312 | 508682 | 993.52 | 254646 | 737.969 | 30.0403 |
|
||||
cell_11 | 2114 | 2944 | 13230 | 12.9199 | 0.000111288 | 0.692888 | 0.000976562 | 607029 | 592.802 | 154022 | 410.746 | 17.1408 |
|
||||
cell_12 | 2386 | 3289 | 14859 | 7.25537 | 9.93052e-05 | 0.610255 | 0.000488281 | 671212 | 327.74 | 88736.2 | 200.005 | 8.81197 |
|
||||
cell_13 | 2669 | 3746 | 16845 | 4.11255 | 8.85235e-05 | 0.57494 | 0.000244141 | 752417 | 183.695 | 53506.3 | 105.614 | 4.73656 |
|
||||
cell_14 | 3010 | 4136 | 18985 | 2.3175 | 8.37327e-05 | 0.539994 | 0.00012207 | 846747 | 103.363 | 30307 | 55.8152 | 2.53768 |
|
||||
cell_15 | 3373 | 4693 | 21414 | 1.30701 | 8.38929e-05 | 0.539843 | 6.10352e-05 | 945456 | 57.7061 | 17152.9 | 31.1522 | 1.439 |
|
||||
cell_16 | 3691 | 5142 | 23853 | 0.727936 | 7.38363e-05 | 0.495779 | 3.05176e-05 | 1.04602e+06 | 31.922 | 10253.6 | 15.8263 | 0.757086 |
|
||||
cell_17 | 3719 | 5483 | 24567 | 0.374863 | 7.73824e-05 | 0.46524 | 1.52588e-05 | 1.08801e+06 | 16.6017 | 4903.43 | 7.72375 | 0.379439 |
|
||||
cell_18 | 2747 | 5142 | 21250 | 0.162125 | 8.30381e-05 | 0.506341 | 7.62939e-06 | 942877 | 7.19358 | 2116.73 | 3.6424 | 0.175769 |
|
||||
cell_19 | 2361 | 2361 | 0 | 0 | 0.000154435 | 0.79481 | 7.62939e-06 | 376035 | 2.86892 | 658.219 | 2.28024 | 0.101652 |
|
||||
=============================================
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -3850,10 +3850,10 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 -2.39 -4.97 34.7 2.53 0 0 0 test.phys initStep
|
||||
1 -2.27 -5.03 34.8 0.678 1.85 0.141 0.141 test.phys hIoni
|
||||
2 -2.25 -5.04 34.8 0.0442 0.633 0.0194 0.161 test.phys hIoni
|
||||
3 -2.25 -5.04 34.8 0.019 0.0252 0.00135 0.162 test.phys hIoni
|
||||
4 -2.25 -5.04 34.8 0.00881 0.0102 0.000831 0.163 test.phys hIoni
|
||||
1 -2.27 -5.03 34.8 0.679 1.85 0.141 0.141 test.phys hIoni
|
||||
2 -2.25 -5.04 34.8 0.0443 0.635 0.0194 0.161 test.phys hIoni
|
||||
3 -2.25 -5.04 34.8 0.019 0.0253 0.00135 0.162 test.phys hIoni
|
||||
4 -2.25 -5.04 34.8 0.00881 0.0102 0.000832 0.163 test.phys hIoni
|
||||
5 -2.25 -5.04 34.8 0.00721 0.0016 0.000579 0.164 test.phys hIoni
|
||||
6 -2.25 -5.04 34.8 0 0.00721 0.000526 0.164 test.phys hIoni
|
||||
|
||||
@@ -3863,30 +3863,30 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 38 81.7 0 0 0 test.phys initStep
|
||||
1 1.47 8.36 50.5 71.9 9.86 15.2 15.2 test.phys hIoni
|
||||
1 1.47 8.36 50.6 71.9 9.86 15.2 15.2 test.phys hIoni
|
||||
2 2.63 15.1 60.5 63.3 8.55 12.1 27.2 test.phys hIoni
|
||||
3 3.54 20.5 68.5 56.1 7.24 9.66 36.9 test.phys hIoni
|
||||
4 4.18 24.7 75 49.3 6.78 7.79 44.7 test.phys hIoni
|
||||
5 4.54 28.1 80.2 43.5 5.76 6.21 50.9 test.phys hIoni
|
||||
6 4.72 30.8 84.4 38.3 5.21 5 55.9 test.phys hIoni
|
||||
4 4.18 24.8 75 49.3 6.78 7.8 44.7 test.phys hIoni
|
||||
5 4.54 28.1 80.2 43.5 5.77 6.21 50.9 test.phys hIoni
|
||||
6 4.72 30.8 84.4 38.3 5.22 5 55.9 test.phys hIoni
|
||||
7 4.85 33 87.7 33.5 4.77 4 59.9 test.phys hIoni
|
||||
8 4.88 34.8 90.3 29.1 4.43 3.18 63.1 test.phys hIoni
|
||||
9 4.87 36.2 92.4 25.4 3.67 2.5 65.6 test.phys hIoni
|
||||
10 4.85 37.4 94 22.3 3.11 1.99 67.6 test.phys hIoni
|
||||
11 4.8 38.3 95.3 19.4 2.91 1.61 69.2 test.phys hIoni
|
||||
11 4.81 38.3 95.4 19.4 2.91 1.61 69.2 test.phys hIoni
|
||||
12 4.79 39 96.4 16.9 2.54 1.29 70.5 test.phys hIoni
|
||||
13 4.79 39.4 97 15.2 1.5 0.673 71.1 test.phys hadElastic
|
||||
14 5.1 40 97.5 13.1 2.06 0.882 72 test.phys hIoni
|
||||
15 5.37 40.5 97.9 11.1 1.96 0.714 72.7 test.phys hIoni
|
||||
16 5.58 40.9 98.3 9.22 1.91 0.573 73.3 test.phys hIoni
|
||||
17 5.74 41.2 98.6 7.5 1.72 0.453 73.8 test.phys hIoni
|
||||
18 5.87 41.5 98.8 5.85 1.66 0.36 74.1 test.phys hIoni
|
||||
19 5.96 41.7 99 4.29 1.56 0.282 74.4 test.phys hIoni
|
||||
20 6.05 41.8 99.1 2.63 1.65 0.218 74.6 test.phys hIoni
|
||||
21 6.11 41.9 99.2 0.717 1.92 0.147 74.8 test.phys hIoni
|
||||
22 6.11 41.9 99.2 0.0392 0.678 0.0211 74.8 test.phys hIoni
|
||||
23 6.11 41.9 99.2 0.00515 0.034 0.00126 74.8 test.phys hIoni
|
||||
24 6.11 41.9 99.2 0 0.00515 0.000444 74.8 test.phys hIoni
|
||||
13 4.79 39.4 97 15.2 1.46 0.654 71.1 test.phys hadElastic
|
||||
14 5.11 40 97.5 13.1 2.07 0.886 72 test.phys hIoni
|
||||
15 5.37 40.5 97.9 11.2 1.97 0.717 72.7 test.phys hIoni
|
||||
16 5.58 40.9 98.3 9.24 1.92 0.576 73.3 test.phys hIoni
|
||||
17 5.75 41.2 98.6 7.52 1.72 0.455 73.8 test.phys hIoni
|
||||
18 5.87 41.5 98.8 5.86 1.66 0.362 74.1 test.phys hIoni
|
||||
19 5.97 41.7 99 4.31 1.56 0.283 74.4 test.phys hIoni
|
||||
20 6.05 41.8 99.1 2.67 1.64 0.219 74.6 test.phys hIoni
|
||||
21 6.11 41.9 99.2 0.759 1.91 0.149 74.8 test.phys hIoni
|
||||
22 6.12 41.9 99.2 0.0408 0.718 0.023 74.8 test.phys hIoni
|
||||
23 6.12 41.9 99.2 0.00505 0.0358 0.00129 74.8 test.phys hIoni
|
||||
24 6.12 41.9 99.2 0 0.00505 0.00044 74.8 test.phys hIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = N14, Track ID = 20, Parent ID = 2
|
||||
@@ -4030,7 +4030,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 60.7 4.46 0 0 0 test.phys initStep
|
||||
1 0.023 -0.0272 60.7 0 4.46 0.0408 0.0408 test.phys ionIoni
|
||||
1 0.023 -0.0273 60.7 0 4.46 0.0408 0.0408 test.phys ionIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = alpha, Track ID = 6, Parent ID = 1
|
||||
@@ -4038,8 +4038,8 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 60.7 10.2 0 0 0 test.phys initStep
|
||||
1 -0.0255 0.13 60.8 2.49 7.76 0.143 0.143 test.phys ionIoni
|
||||
2 -0.0287 0.145 60.8 0 2.49 0.0169 0.16 test.phys ionIoni
|
||||
1 -0.0255 0.13 60.8 2.5 7.75 0.143 0.143 test.phys ionIoni
|
||||
2 -0.0288 0.146 60.8 0 2.5 0.017 0.16 test.phys ionIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = gamma, Track ID = 5, Parent ID = 1
|
||||
@@ -4110,13 +4110,13 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 2.1 -2.44 65.8 5.9 0 0 0 test.phys initStep
|
||||
1 2.01 -2.63 66 4.28 1.62 0.284 0.284 test.phys hIoni
|
||||
2 1.95 -2.76 66.2 2.66 1.62 0.218 0.502 test.phys hIoni
|
||||
3 1.9 -2.85 66.3 0.846 1.82 0.149 0.651 test.phys hIoni
|
||||
4 1.9 -2.87 66.3 0.0612 0.785 0.0271 0.678 test.phys hIoni
|
||||
5 1.9 -2.87 66.3 0.0141 0.0471 0.00164 0.679 test.phys hIoni
|
||||
6 1.9 -2.87 66.3 0.014 0.000114 0.00071 0.68 test.phys hIoni
|
||||
7 1.9 -2.87 66.3 0 0.014 0.000707 0.681 test.phys hIoni
|
||||
1 2.01 -2.63 66 4.28 1.62 0.285 0.285 test.phys hIoni
|
||||
2 1.95 -2.76 66.2 2.67 1.61 0.218 0.503 test.phys hIoni
|
||||
3 1.9 -2.85 66.3 0.864 1.81 0.149 0.652 test.phys hIoni
|
||||
4 1.9 -2.87 66.3 0.0621 0.802 0.028 0.68 test.phys hIoni
|
||||
5 1.9 -2.87 66.3 0.0141 0.048 0.00166 0.682 test.phys hIoni
|
||||
6 1.9 -2.87 66.3 0.014 0.000119 0.000711 0.683 test.phys hIoni
|
||||
7 1.9 -2.87 66.3 0 0.014 0.000708 0.684 test.phys hIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = neutron, Track ID = 3, Parent ID = 1
|
||||
@@ -4287,19 +4287,19 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 60.7 30.3 0 0 0 test.phys initStep
|
||||
1 -0.409 1.31 63 26.6 3.65 2.67 2.67 test.phys hIoni
|
||||
2 -0.719 2.41 64.8 23.4 3.25 2.15 4.82 test.phys hIoni
|
||||
3 -0.95 3.32 66.3 20.2 3.2 1.74 6.56 test.phys hIoni
|
||||
4 -1.13 4.03 67.4 17.7 2.48 1.37 7.93 test.phys hIoni
|
||||
5 -1.27 4.59 68.4 15.5 2.19 1.11 9.04 test.phys hIoni
|
||||
6 -1.38 5.06 69.2 13.4 2.13 0.912 9.95 test.phys hIoni
|
||||
7 -1.45 5.45 69.8 11.3 2.05 0.736 10.7 test.phys hIoni
|
||||
8 -1.54 5.76 70.3 9.46 1.88 0.586 11.3 test.phys hIoni
|
||||
9 -1.6 5.99 70.7 7.72 1.73 0.467 11.7 test.phys hIoni
|
||||
2 -0.72 2.41 64.8 23.4 3.25 2.15 4.83 test.phys hIoni
|
||||
3 -0.95 3.32 66.3 20.2 3.2 1.74 6.57 test.phys hIoni
|
||||
4 -1.13 4.03 67.4 17.7 2.48 1.37 7.94 test.phys hIoni
|
||||
5 -1.28 4.59 68.4 15.5 2.2 1.12 9.05 test.phys hIoni
|
||||
6 -1.38 5.07 69.2 13.4 2.14 0.913 9.96 test.phys hIoni
|
||||
7 -1.45 5.46 69.8 11.3 2.05 0.737 10.7 test.phys hIoni
|
||||
8 -1.54 5.77 70.3 9.45 1.88 0.587 11.3 test.phys hIoni
|
||||
9 -1.6 6 70.7 7.72 1.73 0.467 11.8 test.phys hIoni
|
||||
10 -1.65 6.19 71 6.11 1.61 0.371 12.1 test.phys hIoni
|
||||
11 -1.68 6.34 71.2 4.45 1.66 0.294 12.4 test.phys hIoni
|
||||
12 -1.69 6.44 71.4 2.88 1.57 0.224 12.6 test.phys hIoni
|
||||
13 -1.71 6.52 71.6 1.11 1.77 0.159 12.8 test.phys hIoni
|
||||
14 -1.71 6.54 71.6 0 1.11 0.0413 12.8 test.phys hIoni
|
||||
11 -1.68 6.34 71.2 4.44 1.66 0.294 12.4 test.phys hIoni
|
||||
12 -1.7 6.45 71.4 2.88 1.56 0.225 12.6 test.phys hIoni
|
||||
13 -1.71 6.53 71.6 1.12 1.77 0.16 12.8 test.phys hIoni
|
||||
14 -1.71 6.55 71.6 0 1.12 0.0418 12.8 test.phys hIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = neutron, Track ID = 1, Parent ID = 0
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -4062,10 +4062,10 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 21.7 5.19 0 0 0 test.phys initStep
|
||||
1 -0.133 -0.147 21.6 3.56 1.63 0.254 0.254 test.phys hIoni
|
||||
2 -0.237 -0.26 21.5 1.9 1.66 0.189 0.443 test.phys hIoni
|
||||
3 -0.293 -0.315 21.4 0.225 1.68 0.0987 0.542 test.phys hIoni
|
||||
4 -0.295 -0.318 21.4 0 0.225 0.0046 0.546 test.phys hIoni
|
||||
1 -0.133 -0.148 21.6 3.56 1.62 0.255 0.255 test.phys hIoni
|
||||
2 -0.238 -0.261 21.5 1.92 1.65 0.189 0.444 test.phys hIoni
|
||||
3 -0.294 -0.317 21.4 0.226 1.69 0.1 0.544 test.phys hIoni
|
||||
4 -0.297 -0.319 21.4 0 0.226 0.00463 0.549 test.phys hIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = neutron, Track ID = 3, Parent ID = 2
|
||||
@@ -4262,28 +4262,28 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 109 76.3 0 0 0 test.phys initStep
|
||||
1 -3.63 -2.38 122 67 9.37 13.4 13.4 test.phys hIoni
|
||||
2 -6.74 -4.3 132 58.8 8.15 10.7 24.1 test.phys hIoni
|
||||
3 -9.17 -5.78 140 51.8 7.05 8.48 32.6 test.phys hIoni
|
||||
4 -11.2 -6.98 146 45.7 6.03 6.77 39.3 test.phys hIoni
|
||||
1 -3.64 -2.38 122 67 9.37 13.4 13.4 test.phys hIoni
|
||||
2 -6.75 -4.3 132 58.8 8.15 10.7 24.1 test.phys hIoni
|
||||
3 -9.18 -5.79 140 51.8 7.05 8.48 32.6 test.phys hIoni
|
||||
4 -11.2 -6.98 146 45.7 6.03 6.77 39.4 test.phys hIoni
|
||||
5 -12.9 -7.86 151 40.2 5.53 5.45 44.8 test.phys hIoni
|
||||
6 -14.1 -8.52 155 35.2 4.97 4.35 49.1 test.phys hIoni
|
||||
6 -14.1 -8.53 155 35.2 4.97 4.35 49.2 test.phys hIoni
|
||||
7 -15.2 -9.03 158 31.1 4.13 3.46 52.6 test.phys hIoni
|
||||
8 -16.1 -9.41 161 27.4 3.69 2.8 55.4 test.phys hIoni
|
||||
9 -16.9 -9.72 163 24 3.41 2.26 57.7 test.phys hIoni
|
||||
8 -16.1 -9.42 161 27.4 3.69 2.8 55.4 test.phys hIoni
|
||||
9 -16.9 -9.73 163 24 3.41 2.26 57.7 test.phys hIoni
|
||||
10 -17.5 -10 165 21 3.04 1.81 59.5 test.phys hIoni
|
||||
11 -17.9 -10.2 166 18.2 2.75 1.45 60.9 test.phys hIoni
|
||||
12 -18.3 -10.4 167 15.8 2.4 1.16 62.1 test.phys hIoni
|
||||
13 -18.6 -10.5 168 13.6 2.27 0.939 63 test.phys hIoni
|
||||
14 -18.8 -10.6 169 11.6 1.96 0.749 63.8 test.phys hIoni
|
||||
15 -19 -10.7 169 9.71 1.88 0.604 64.4 test.phys hIoni
|
||||
16 -19.1 -10.8 170 7.92 1.79 0.482 64.9 test.phys hIoni
|
||||
17 -19.2 -10.9 170 6.36 1.56 0.381 65.2 test.phys hIoni
|
||||
18 -19.3 -10.9 170 4.8 1.56 0.305 65.5 test.phys hIoni
|
||||
19 -19.4 -11 171 3.19 1.61 0.238 65.8 test.phys hIoni
|
||||
20 -19.4 -11.1 171 1.43 1.76 0.173 66 test.phys hIoni
|
||||
21 -19.5 -11.1 171 0.0206 1.4 0.0617 66 test.phys hIoni
|
||||
22 -19.5 -11.1 171 0.0104 0.0102 0.000867 66 test.phys hIoni
|
||||
13 -18.6 -10.5 168 13.5 2.27 0.939 63.1 test.phys hIoni
|
||||
14 -18.8 -10.6 169 11.6 1.96 0.75 63.8 test.phys hIoni
|
||||
15 -19 -10.7 169 9.7 1.88 0.605 64.4 test.phys hIoni
|
||||
16 -19.1 -10.8 170 7.91 1.79 0.482 64.9 test.phys hIoni
|
||||
17 -19.2 -10.9 170 6.35 1.56 0.382 65.3 test.phys hIoni
|
||||
18 -19.3 -11 171 4.79 1.56 0.305 65.6 test.phys hIoni
|
||||
19 -19.4 -11 171 3.18 1.6 0.238 65.8 test.phys hIoni
|
||||
20 -19.4 -11.1 171 1.43 1.75 0.173 66 test.phys hIoni
|
||||
21 -19.5 -11.1 171 0.0206 1.41 0.062 66 test.phys hIoni
|
||||
22 -19.5 -11.1 171 0.0104 0.0102 0.000868 66 test.phys hIoni
|
||||
23 -19.5 -11.1 171 0.00822 0.00218 0.000616 66 test.phys hIoni
|
||||
24 -19.5 -11.1 171 0 0.00822 0.000562 66 test.phys hIoni
|
||||
|
||||
@@ -4387,7 +4387,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 7.12 14.9 173 96.4 0 0 0 test.phys initStep
|
||||
1 10.8 6.78 192 85.1 11.3 20.3 20.3 test.phys hIoni
|
||||
2 12.6 3.13 200 79.6 5.52 9.34 29.6 World Transportation
|
||||
2 12.6 3.13 200 79.6 5.51 9.33 29.6 World Transportation
|
||||
3 2.29e+03 -4.19e+03 1e+04 79.6 1.4e-21 1.09e+04 1.09e+04 OutOfWorld Transportation
|
||||
|
||||
*********************************************************************************************************
|
||||
@@ -4457,16 +4457,16 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
|
||||
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
|
||||
0 0 0 17.9 9.48 0 0 0 test.phys initStep
|
||||
1 0.303 -0.206 18.2 7.64 1.84 0.468 0.468 test.phys hIoni
|
||||
2 0.534 -0.363 18.5 6.06 1.58 0.367 0.835 test.phys hIoni
|
||||
3 0.723 -0.479 18.6 4.44 1.62 0.291 1.13 test.phys hIoni
|
||||
4 0.864 -0.572 18.8 2.81 1.63 0.224 1.35 test.phys hIoni
|
||||
5 0.96 -0.639 18.9 1.05 1.76 0.156 1.51 test.phys hIoni
|
||||
6 0.984 -0.656 18.9 0.0598 0.991 0.038 1.54 test.phys hIoni
|
||||
7 0.985 -0.657 18.9 0.0158 0.044 0.00162 1.55 test.phys hIoni
|
||||
8 0.985 -0.657 18.9 0.0145 0.0013 0.000754 1.55 test.phys hIoni
|
||||
9 0.985 -0.657 18.9 0.00442 0.0101 0.000721 1.55 test.phys hIoni
|
||||
10 0.985 -0.657 18.9 0 0.00442 0.000412 1.55 test.phys hIoni
|
||||
1 0.303 -0.207 18.2 7.64 1.84 0.469 0.469 test.phys hIoni
|
||||
2 0.535 -0.364 18.5 6.06 1.58 0.367 0.837 test.phys hIoni
|
||||
3 0.725 -0.48 18.7 4.44 1.62 0.292 1.13 test.phys hIoni
|
||||
4 0.866 -0.574 18.8 2.82 1.62 0.225 1.35 test.phys hIoni
|
||||
5 0.962 -0.64 18.9 1.07 1.75 0.157 1.51 test.phys hIoni
|
||||
6 0.987 -0.658 18.9 0.0606 1.01 0.039 1.55 test.phys hIoni
|
||||
7 0.988 -0.659 18.9 0.0159 0.0448 0.00163 1.55 test.phys hIoni
|
||||
8 0.988 -0.659 18.9 0.0146 0.00132 0.000755 1.55 test.phys hIoni
|
||||
9 0.988 -0.659 18.9 0.00445 0.0101 0.000722 1.55 test.phys hIoni
|
||||
10 0.988 -0.659 18.9 0 0.00445 0.000413 1.55 test.phys hIoni
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = neutron, Track ID = 3, Parent ID = 2
|
||||
@@ -4679,11 +4679,11 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
1 -7.66 -2.65 158 76.3 11.1 17.1 17.1 test.phys hIoni
|
||||
2 -14 -4.75 169 67 9.25 13.4 30.5 test.phys hIoni
|
||||
3 -19 -6.44 179 59 8.08 10.7 41.2 test.phys hIoni
|
||||
4 -23 -7.82 186 52.1 6.89 8.51 49.7 test.phys hIoni
|
||||
5 -26.1 -9.1 192 45.9 6.2 6.84 56.5 test.phys hIoni
|
||||
6 -28.7 -10.3 197 40.3 5.61 5.47 62 test.phys hIoni
|
||||
7 -30.5 -11 200 36 4.23 3.87 65.9 World Transportation
|
||||
8 -5.48e+03 -1.93e+03 1e+04 36 2.86e-21 1.14e+04 1.14e+04 OutOfWorld Transportation
|
||||
4 -23 -7.82 186 52.1 6.89 8.52 49.7 test.phys hIoni
|
||||
5 -26.2 -9.1 192 45.9 6.2 6.84 56.5 test.phys hIoni
|
||||
6 -28.7 -10.3 197 40.3 5.61 5.48 62 test.phys hIoni
|
||||
7 -30.5 -11 200 36.1 4.2 3.85 65.9 World Transportation
|
||||
8 -5.48e+03 -1.93e+03 1e+04 36.1 2.86e-21 1.14e+04 1.14e+04 OutOfWorld Transportation
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = neutron, Track ID = 1, Parent ID = 0
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -866,7 +866,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.110000s Real=0.181399s Sys=0.000000s
|
||||
User=0.100000s Real=0.099628s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -929,7 +929,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.130000s Real=0.142235s Sys=0.000000s
|
||||
User=0.110000s Real=0.115526s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1159,7 +1159,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.002431s Sys=0.000000s
|
||||
User=0.000000s Real=0.002200s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -2269,7 +2269,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.016643s Sys=0.000000s
|
||||
User=0.000000s Real=0.007326s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -3645,7 +3645,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.006459s Sys=0.000000s
|
||||
User=0.010000s Real=0.008273s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -905,198 +905,251 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
neutron, kinetic energy (MeV) = 36.5444, position (cm) = (18.093,-23.0131,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 35.6515, position (cm) = (9.43235,-16.3068,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.00634, position (cm) = (-133.068,37.6346,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.140266, position (cm) = (-86.8871,114.269,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.741197, position (cm) = (-90.1457,108.569,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.54199, position (cm) = (-91.5792,113.017,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.189765, position (cm) = (-93.5402,118.701,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.25138, position (cm) = (-91.887,118.41,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.40002, position (cm) = (-93.4914,125.238,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00180304, position (cm) = (-97.4856,113.277,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.85095, position (cm) = (-91.4698,114.81,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.94666, position (cm) = (-90.5971,112.848,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.20643, position (cm) = (-93.2718,106.2,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.234302, position (cm) = (-98.6074,132.514,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.33745e-06, position (cm) = (-55.2799,90.9239,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 79.2589, position (cm) = (-101.696,123.628,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.164731, position (cm) = (-77.5766,109.465,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 2.25657, position (cm) = (-104.911,84.8053,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00796669, position (cm) = (47.0284,-114.633,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.46948, position (cm) = (144.89,-133.801,500), weight = 7.62939e-06
|
||||
neutron, kinetic energy (MeV) = 74.4637, position (cm) = (113.877,-116.402,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 73.4213, position (cm) = (141.609,-112.545,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.1049, position (cm) = (-27.0619,-102.857,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.352376, position (cm) = (-13.7394,-101.663,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0583845, position (cm) = (-9.1709,-104.035,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.200616, position (cm) = (-7.16072,-101.025,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0962154, position (cm) = (-51.0591,-75.2406,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.70262, position (cm) = (35.9984,-69.1106,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 75.6254, position (cm) = (-83.8098,-0.0869977,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.75808, position (cm) = (-48.6671,-70.3474,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.811314, position (cm) = (-69.2231,-53.9733,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.94302, position (cm) = (-63.9206,-67.2034,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.29389, position (cm) = (-67.5016,-55.8743,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.353891, position (cm) = (-51.7188,-72.9788,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.456521, position (cm) = (-31.6668,-109.551,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.741631, position (cm) = (-54.3923,-90.2974,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.124942, position (cm) = (-55.7817,-84.0729,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.55329, position (cm) = (-57.5752,-85.5576,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.71973, position (cm) = (-58.411,-85.5962,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.857401, position (cm) = (-1.54652,-18.9678,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 62.5649, position (cm) = (-2.48942,-44.5934,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.197001, position (cm) = (21.4525,-41.9632,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 7.43959, position (cm) = (-3.82082,-42.1668,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.12769, position (cm) = (-9.2345,-26.988,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 54.3379, position (cm) = (14.5449,-19.8315,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 67.1668, position (cm) = (12.2484,-37.0492,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.14502, position (cm) = (0.633118,76.8,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00378502, position (cm) = (33.1862,68.303,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0617276, position (cm) = (15.5466,74.7144,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.02647, position (cm) = (-0.109115,59.0027,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0788408, position (cm) = (-6.34341,51.627,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 85.7497, position (cm) = (-5.33715,49.7166,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00825623, position (cm) = (-59.8088,74.0176,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 73.2103, position (cm) = (-47.066,56.2491,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.21589, position (cm) = (-44.238,52.1233,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.460548, position (cm) = (-36.5809,105.298,500), weight = 3.05176e-05
|
||||
neutron, kinetic energy (MeV) = 60.6311, position (cm) = (-42.8237,126.13,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.4671, position (cm) = (-30.0125,89.5887,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.3876, position (cm) = (-20.332,104.835,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.738, position (cm) = (-20.02,108.587,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.7043, position (cm) = (17.4251,134.51,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.95744, position (cm) = (-4.20811,140.846,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 61.0057, position (cm) = (-54.1889,43.0762,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0835954, position (cm) = (-104.23,-4.57756,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.38715, position (cm) = (-25.0031,12.7836,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 28.328, position (cm) = (-17.2171,12.9128,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.179114, position (cm) = (-33.5447,29.2242,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 19.5391, position (cm) = (-27.3544,27.114,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.18709, position (cm) = (-38.0728,9.14094,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 21.3212, position (cm) = (-45.2936,21.0072,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 48.1265, position (cm) = (-1.8033,19.0092,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 48.3704, position (cm) = (-3.79368,10.24,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.40354, position (cm) = (-27.7116,10.8148,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.685357, position (cm) = (-28.7408,15.78,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 18.5237, position (cm) = (-25.3173,9.90241,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 8.64489e-05, position (cm) = (-55.1529,-10.0393,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.2747, position (cm) = (-37.0796,12.219,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.43134, position (cm) = (-8.68839,2.93237,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.22455, position (cm) = (-45.5311,13.202,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 55.6451, position (cm) = (-17.435,113.694,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.148123, position (cm) = (-19.1393,76.5436,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.45796, position (cm) = (-107.649,39.4305,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00079923, position (cm) = (24.4061,46.8457,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.50904, position (cm) = (28.8647,27.1153,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.68819, position (cm) = (-11.3927,37.7699,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 31.3114, position (cm) = (-13.6508,38.0261,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 54.5221, position (cm) = (-2.59691,39.9243,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.158785, position (cm) = (77.2997,39.4874,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.447676, position (cm) = (70.4525,65.3927,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 22.0395, position (cm) = (84.6409,-4.90098,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.69169, position (cm) = (116.119,10.401,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 15.6456, position (cm) = (102.564,-9.7192,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.963031, position (cm) = (80.5989,2.12419,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.358108, position (cm) = (76.4396,-0.389241,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.120232, position (cm) = (89.5324,-20.4989,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.898715, position (cm) = (65.8176,-1.18168,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.3886, position (cm) = (69.4156,20.204,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.140245, position (cm) = (70.2975,9.16221,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.22305, position (cm) = (76.806,100.797,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.23779, position (cm) = (56.5274,89.0454,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 10.5377, position (cm) = (64.9263,142.648,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.614788, position (cm) = (107.269,132.387,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.32974, position (cm) = (101.787,137.237,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.95693, position (cm) = (-134.407,-97.894,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 63.6501, position (cm) = (111.068,20.618,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.399102, position (cm) = (122.709,12.9871,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 27.4534, position (cm) = (98.3732,30.6102,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.364823, position (cm) = (-94.0562,-40.0382,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.225969, position (cm) = (-97.9486,-43.5543,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 45.9556, position (cm) = (33.6363,-83.5267,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.124725, position (cm) = (4.24166,-82.6664,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.04235e-06, position (cm) = (9.43655,-73.472,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.589198, position (cm) = (-1.00575,-77.4012,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 11.9745, position (cm) = (25.4112,-83.0829,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0391018, position (cm) = (66.667,-10.7262,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.26074, position (cm) = (50.4986,-32.1246,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 66.2366, position (cm) = (52.1285,-47.7817,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.267639, position (cm) = (3.44574,-7.90013,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.51865, position (cm) = (9.19819,17.9985,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.1768, position (cm) = (80.3844,38.5272,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.85588, position (cm) = (78.3658,38.2986,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.43375, position (cm) = (71.5394,37.1557,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.83165, position (cm) = (1.46423,-2.22651,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 65.0491, position (cm) = (58.9841,-4.59886,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.08576, position (cm) = (9.52526,-39.2211,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.90562, position (cm) = (39.5463,-89.1447,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.15036, position (cm) = (34.5827,-95.7524,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.22263, position (cm) = (3.94171,-49.2991,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 32.9631, position (cm) = (40.2989,-61.8989,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 40.3076, position (cm) = (41.3757,-54.6807,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.207456, position (cm) = (-72.9046,-83.812,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 57.1021, position (cm) = (81.2641,-122.597,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 28.6719, position (cm) = (82.0222,-94.905,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 86.3579, position (cm) = (125.256,-110.359,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.755743, position (cm) = (127.996,-107.124,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.20851, position (cm) = (122.053,-106.031,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 15.3873, position (cm) = (124.714,-111.15,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.414058, position (cm) = (138.654,-108.684,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.723892, position (cm) = (-25.5858,-90.8814,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.93291, position (cm) = (-8.87922,-108.387,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.74882, position (cm) = (5.09155,-113.326,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 32.6469, position (cm) = (-19.0241,-94.66,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.54383e-05, position (cm) = (0.0506394,-143.963,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 41.3908, position (cm) = (-0.817772,-132.705,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 47.3005, position (cm) = (-58.8984,-125.392,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 57.0904, position (cm) = (-64.3907,-128.457,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.11117, position (cm) = (-5.16719,-119.83,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.268189, position (cm) = (-5.95676,-120.3,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.118757, position (cm) = (-5.11108,-120.107,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 70.928, position (cm) = (1.56742,-127.411,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 82.1287, position (cm) = (-37.5273,-122.782,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0895505, position (cm) = (-39.3261,-104.83,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.157805, position (cm) = (-29.4958,-100.135,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 75.5764, position (cm) = (-12.812,-126.099,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.445138, position (cm) = (9.3862,-81.0817,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.159984, position (cm) = (-1.46289,-127.516,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.0343, position (cm) = (-28.2419,-114.284,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.6306, position (cm) = (-15.2973,-114.499,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 75.028, position (cm) = (-11.0035,-120.496,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0775395, position (cm) = (30.4671,-136.052,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0800591, position (cm) = (-1.75344,-72.1743,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 39.4357, position (cm) = (13.7316,21.825,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.66513, position (cm) = (8.68105,24.4116,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.85506, position (cm) = (24.6502,-3.20907,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.17181, position (cm) = (21.9921,0.363178,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0673287, position (cm) = (28.0123,-0.164477,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.260558, position (cm) = (-19.6477,33.96,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 16.2084, position (cm) = (9.6735,31.6694,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0485432, position (cm) = (-2.29431,-20.7069,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.246523, position (cm) = (-15.1824,27.7816,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.05168, position (cm) = (-37.2279,26.5569,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.575923, position (cm) = (-1.21356,35.7014,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.075279, position (cm) = (8.76327,-116.698,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 8.85506, position (cm) = (7.6226,-109.117,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0866945, position (cm) = (13.7792,-102.43,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.864611, position (cm) = (11.7915,-102.58,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.75192, position (cm) = (5.90111,-90.0575,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.8574, position (cm) = (4.74639,-138.198,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.361087, position (cm) = (-3.78604,-99.1869,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.176892, position (cm) = (-4.15714,-89.3218,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.690912, position (cm) = (-13.6369,-89.1682,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00165956, position (cm) = (93.2127,-59.2764,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.116554, position (cm) = (63.7372,-70.9673,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 6.97355e-09, position (cm) = (73.4477,-42.2169,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.6485, position (cm) = (49.0255,-19.4276,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 1.76855, position (cm) = (58.3438,-50.895,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.788392, position (cm) = (72.8726,-55.8395,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0644889, position (cm) = (76.0227,-70.9543,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.552571, position (cm) = (68.8104,-70.3221,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.295702, position (cm) = (71.4652,-67.105,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.157142, position (cm) = (56.8129,-19.3375,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 36.1489, position (cm) = (72.5443,-47.0942,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.633954, position (cm) = (76.3932,2.6359,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 53.5083, position (cm) = (-94.6165,-76.5466,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.648331, position (cm) = (-47.423,21.3802,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.1049, position (cm) = (-82.6104,121.726,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 16.403, position (cm) = (-98.6579,110.085,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.8422, position (cm) = (-88.3023,138.328,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.06396, position (cm) = (-88.4741,139.866,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.29694, position (cm) = (-111.296,125.453,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.04618, position (cm) = (-113.374,55.4978,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.3157, position (cm) = (-121.064,69.6969,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000332875, position (cm) = (141.289,-88.7741,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.121524, position (cm) = (91.2276,-131.641,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.148561, position (cm) = (121.819,-127.749,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.15731, position (cm) = (86.5288,-138.36,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.946184, position (cm) = (134.422,-68.3782,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.153768, position (cm) = (110.347,-68.4716,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000148128, position (cm) = (101.496,-107.242,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.408906, position (cm) = (46.3696,-95.8863,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 3.38321, position (cm) = (7.69697,-90.5819,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.14655, position (cm) = (-2.97876,-100.066,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.697217, position (cm) = (13.6087,-123.267,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.275355, position (cm) = (17.6359,-103.436,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.16977e-06, position (cm) = (8.91868,-80.1425,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.182477, position (cm) = (8.76418,-107.139,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.04725, position (cm) = (17.3541,-90.3785,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0931695, position (cm) = (52.8147,-105.068,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.696981, position (cm) = (26.4995,-138.502,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 86.0702, position (cm) = (31.4905,-94.0431,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.08112, position (cm) = (33.605,-97.9527,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.23068, position (cm) = (32.1021,-97.4124,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.206176, position (cm) = (40.0353,-96.3426,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 18.2439, position (cm) = (37.813,-108.173,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 86.0702, position (cm) = (31.4905,-94.0431,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.01677, position (cm) = (32.0828,-93.6042,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 26.4128, position (cm) = (29.6486,-92.3537,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 84.9869, position (cm) = (85.241,-138.44,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 84.6233, position (cm) = (86.2339,-127.12,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.85585, position (cm) = (-98.9649,-130.899,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 64.7859, position (cm) = (-32.5634,-139.904,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.77439, position (cm) = (-29.5098,-147.541,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.109401, position (cm) = (-39.4346,-134.827,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0649692, position (cm) = (-11.6922,-132.336,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.781164, position (cm) = (-10.4698,-124.948,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.72863, position (cm) = (-11.6151,-127.695,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 52.1131, position (cm) = (-25.3254,-123.27,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.137853, position (cm) = (23.1229,-134.551,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 81.4534, position (cm) = (-98.9251,-54.725,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.766515, position (cm) = (-83.6153,-9.66834,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.13551, position (cm) = (-93.627,33.4017,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 64.431, position (cm) = (-62.5806,-36.0344,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.147875, position (cm) = (-16.2863,-130.678,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.170635, position (cm) = (-16.1594,-128.357,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 55.2832, position (cm) = (-12.0848,-118.522,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 88.3785, position (cm) = (-3.28647,-149.504,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 89.0564, position (cm) = (-23.4311,-133.51,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 64.1217, position (cm) = (-24.0783,-126.993,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 88.9208, position (cm) = (-31.6337,-136.523,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.194852, position (cm) = (-50.8953,-140.399,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 54.8666, position (cm) = (-42.6638,-133.365,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 60.7731, position (cm) = (3.85903,-23.2633,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.178173, position (cm) = (5.02277,-26.3181,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.68959, position (cm) = (6.28761,-27.3591,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.13415, position (cm) = (35.7911,-5.07658,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 6.46297, position (cm) = (-5.64534,-54.008,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 61.7158, position (cm) = (19.4682,-31.3299,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.801538, position (cm) = (22.5289,43.1609,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 65.07, position (cm) = (21.3599,47.1426,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 65.361, position (cm) = (19.5906,47.3045,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0609698, position (cm) = (-95.2599,-29.3966,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 53.7218, position (cm) = (-104.062,-23.025,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0879862, position (cm) = (-60.229,-24.2788,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.86069, position (cm) = (-77.8181,-37.1908,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.55781, position (cm) = (-48.1397,-32.6303,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.249491, position (cm) = (-34.3465,-27.6672,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0867745, position (cm) = (-30.8746,-19.765,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.115566, position (cm) = (-49.6158,-25.6432,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.44511, position (cm) = (-30.1423,-18.6613,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.27852, position (cm) = (-37.9147,-14.144,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.769104, position (cm) = (-92.9579,16.4134,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.414866, position (cm) = (-112.991,8.68056,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 38.3485, position (cm) = (-101.699,20.1677,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.174619, position (cm) = (-100.735,20.1046,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.213143, position (cm) = (-122.051,-8.79805,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.792031, position (cm) = (-139.81,17.0882,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 7.14546, position (cm) = (-133.061,45.7558,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.35529, position (cm) = (-122.553,-3.49537,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.52963, position (cm) = (-134.429,-28.0457,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 6.31203e-06, position (cm) = (-115.588,17.9207,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.18648, position (cm) = (-104.025,-6.22148,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.71304, position (cm) = (-107.386,-5.86032,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 36.684, position (cm) = (-83.5695,-36.2497,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 37.2378, position (cm) = (-84.3475,-34.6733,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.703188, position (cm) = (-20.2292,-13.4644,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.13833, position (cm) = (-24.6177,-8.86502,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.36273e-06, position (cm) = (-18.5101,-21.0488,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 58.36, position (cm) = (-23.8626,-15.7835,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.64778, position (cm) = (-45.4775,-19.1085,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 63.6494, position (cm) = (17.9512,15.8317,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.239528, position (cm) = (32.7296,35.5136,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.526727, position (cm) = (25.707,21.7946,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.430711, position (cm) = (27.2425,33.9609,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 63.8835, position (cm) = (18.0035,28.3395,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 63.8242, position (cm) = (14.6427,27.7241,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.36153, position (cm) = (34.3461,17.7398,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.779888, position (cm) = (-5.74734,81.4177,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 76.6483, position (cm) = (54.3654,80.1626,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 76.6909, position (cm) = (48.3913,66.2636,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.84245e-08, position (cm) = (-15.3573,33.7504,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 92.0686, position (cm) = (0.995072,-22.2712,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 94.466, position (cm) = (-5.03299,-12.2313,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 67.9481, position (cm) = (-10.5667,-0.798321,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.43024, position (cm) = (-10.0502,-3.48037,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.90481, position (cm) = (13.8959,0.689755,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 43.91, position (cm) = (-9.37399,-1.85668,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.15682e-07, position (cm) = (-19.8512,-10.0879,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.265505, position (cm) = (6.3319,-0.948721,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.207201, position (cm) = (1.74269,-8.59924,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 8.94196e-07, position (cm) = (-16.3739,-16.0518,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.112872, position (cm) = (-2.84498,12.4508,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000624108, position (cm) = (14.232,-4.56992,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0913903, position (cm) = (12.461,3.43149,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.5594, position (cm) = (4.58286,-7.82462,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.5051, position (cm) = (4.43732,-8.19624,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 93.9661, position (cm) = (7.45749,-2.72252,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.860034, position (cm) = (24.0469,-35.9097,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.4242, position (cm) = (28.9231,-30.3274,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0538608, position (cm) = (15.7013,-31.5147,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.697829, position (cm) = (113.263,-116.543,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000138887, position (cm) = (113.572,-118.317,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.39832, position (cm) = (106.435,-122.21,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.83983, position (cm) = (119.634,-116.143,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.21667, position (cm) = (134.16,-132.785,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.188292, position (cm) = (118.657,-123.345,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.77942, position (cm) = (130.663,-123.582,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.92954, position (cm) = (123.13,-118.794,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.406494, position (cm) = (103.599,-70.5102,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 68.2023, position (cm) = (105.447,-106.029,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.553165, position (cm) = (73.7929,-60.9813,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 23.9514, position (cm) = (22.659,59.0507,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.90873, position (cm) = (-7.51766,55.4748,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0734428, position (cm) = (28.1893,16.1316,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.37871, position (cm) = (24.5969,16.3118,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.3583, position (cm) = (14.5242,27.9735,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.8026, position (cm) = (-0.213336,36.4042,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.80781, position (cm) = (-28.1908,32.4681,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.9414, position (cm) = (-43.0751,35.7523,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.61397, position (cm) = (-71.5282,44.2313,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.265, position (cm) = (4.24119,35.4507,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.265, position (cm) = (4.24119,35.4507,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.66064, position (cm) = (-25.7616,64.2866,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 4.01867, position (cm) = (27.5987,-2.92038,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 3.36898e-07, position (cm) = (15.3979,7.17369,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.22305, position (cm) = (-9.03318,27.7361,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.129249, position (cm) = (25.2333,-12.1795,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.0473, position (cm) = (20.8629,-18.7336,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (91.2887,-22.2106,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.140181, position (cm) = (33.9463,-34.6061,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.66235, position (cm) = (39.9397,-45.2584,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.581481, position (cm) = (22.3879,-20.1192,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.298727, position (cm) = (11.5886,-22.0191,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0963863, position (cm) = (18.7711,-13.3805,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.101948, position (cm) = (-9.93393,-43.5486,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.05954e-08, position (cm) = (-9.04247,-17.689,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.69388, position (cm) = (40.5601,-11.8433,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.05136, position (cm) = (36.3756,-27.2572,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.39336, position (cm) = (36.6425,-26.9904,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.0307, position (cm) = (-1.04358,-11.1412,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00123783, position (cm) = (17.5918,0.0647508,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.50924, position (cm) = (35.387,-28.0867,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 19.9267, position (cm) = (29.9659,-22.1505,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.4948, position (cm) = (32.9948,-12.9352,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.01266, position (cm) = (26.1523,-3.21258,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.48479, position (cm) = (16.9574,-8.08798,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.142099, position (cm) = (41.7371,87.1589,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.2643, position (cm) = (27.2142,75.6588,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 91.8618, position (cm) = (39.8968,32.8144,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 92.1556, position (cm) = (39.6807,33.1978,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 92.0256, position (cm) = (26.8778,24.5551,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 77.5927, position (cm) = (26.7554,21.7761,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.3396, position (cm) = (5.92206,140.905,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 69.8382, position (cm) = (7.82782,134.983,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.5969, position (cm) = (0.74147,122.904,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.22306, position (cm) = (12.761,130.771,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.117856, position (cm) = (10.3862,118.268,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 67.3525, position (cm) = (-21.9061,146.049,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.21, position (cm) = (-16.2027,137.181,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.841, position (cm) = (-30.0233,134.278,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 56.1224, position (cm) = (-35.417,137.46,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.3131, position (cm) = (-31.1958,146.647,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 9.07523e-07, position (cm) = (-10.1939,114.305,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.45664, position (cm) = (-2.61881,108.831,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 46.5756, position (cm) = (-47.6472,110.986,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.115078, position (cm) = (-46.0419,104.823,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.4077, position (cm) = (-47.7372,116.304,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.449283, position (cm) = (-33.428,130.188,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.53298, position (cm) = (-31.8097,112.504,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.613564, position (cm) = (-40.7241,118.983,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.39077, position (cm) = (-19.6118,131.177,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0591101, position (cm) = (29.8376,31.5927,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0938814, position (cm) = (30.1668,61.4893,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.3067, position (cm) = (28.847,61.3403,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.49689, position (cm) = (35.3231,63.7048,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.08294e-10, position (cm) = (7.35236,-33.3543,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 19.7361, position (cm) = (66.8688,-15.2116,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 64.4951, position (cm) = (65.7949,-8.18845,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.99738, position (cm) = (4.99447,114.263,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.931255, position (cm) = (44.6485,107.958,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 10.7309, position (cm) = (41.5907,108.79,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 76.4893, position (cm) = (51.9262,123.241,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0715896, position (cm) = (-7.01057,87.0583,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.523748, position (cm) = (-42.9483,94.5013,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 8.77886, position (cm) = (-10.1191,94.7235,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.546223, position (cm) = (23.586,106.927,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.382008, position (cm) = (-44.0456,127.466,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.401764, position (cm) = (-47.3779,89.4641,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.695616, position (cm) = (-44.3179,98.5539,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 14.306, position (cm) = (-53.0802,107.97,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.173868, position (cm) = (-47.1955,114.951,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 86.1527, position (cm) = (-46.7853,108.603,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.6718, position (cm) = (-47.678,118.048,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.04252, position (cm) = (49.4306,116.004,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.25543, position (cm) = (48.8405,89.6611,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.91604, position (cm) = (46.0131,73.5764,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 82.3708, position (cm) = (-8.8913,110.118,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.130613, position (cm) = (-55.3679,125.704,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 36.499, position (cm) = (-10.916,117.224,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.7834, position (cm) = (-0.89277,127.986,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.6758, position (cm) = (-0.996055,127.839,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.73946, position (cm) = (-54.6041,122.23,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.74876, position (cm) = (-7.78144,-6.60264,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.18638, position (cm) = (1.48387,2.98227,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.816854, position (cm) = (-4.59952,3.74594,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.26531, position (cm) = (7.63962,-27.8335,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.92618, position (cm) = (-14.7962,-40.3848,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.0207, position (cm) = (19.9949,-20.9553,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.332949, position (cm) = (17.9754,-24.5631,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.75859, position (cm) = (37.0332,-18.6234,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000290872, position (cm) = (61.5434,-11.923,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 33.0814, position (cm) = (19.3792,-23.952,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.192788, position (cm) = (47.0939,-30.8709,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.61888, position (cm) = (39.1294,-30.6576,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 67.0615, position (cm) = (57.146,-23.9225,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 72.3824, position (cm) = (39.4597,-17.452,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.02832, position (cm) = (2.3876,-14.3866,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.82092, position (cm) = (-8.17552,-26.5076,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.186063, position (cm) = (12.6306,-39.4128,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 60.6009, position (cm) = (15.8571,-47.4046,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 59.9046, position (cm) = (14.358,-47.5265,500), weight = 1.90735e-06
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -329,7 +329,7 @@ nb event 170000
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Run Aborted after 173590 events processed.
|
||||
User=72.770000s Real=78.555971s Sys=0.110000s
|
||||
User=64.670000s Real=68.937973s Sys=0.180000s
|
||||
Results of reverse/adjoint simulation!
|
||||
normalised edep [MeV] = 0.00165068
|
||||
error[MeV] = 1.65068e-05
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -375,7 +375,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000471s Sys=0.000000s
|
||||
User=0.000000s Real=0.000556s Sys=0.000000s
|
||||
|
||||
========= Table of registered couples ============================
|
||||
|
||||
@@ -430,7 +430,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000242s Sys=0.000000s
|
||||
User=0.000000s Real=0.000208s 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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -425,7 +425,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=1.610000s Real=1.619178s Sys=0.000000s
|
||||
User=1.100000s Real=1.126079s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -494,37 +494,37 @@ N=17 V[N]={511862276547668598, 1471172288461575206, 1128851390031159049, 9861769
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=0.070000s Real=0.071886s Sys=0.000000s
|
||||
User=0.060000s Real=0.064040s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
The run is: 2000 proton of 100 MeV through 10 m of Aluminium (density: 2.7 g/cm3 )
|
||||
|
||||
Total energy deposit: 100 MeV
|
||||
NIEL energy calculated: 230.53 eV
|
||||
NIEL energy calculated: 226.62 eV
|
||||
|
||||
Nb tracks/event neutral: 0 charged: 1.011
|
||||
Nb steps/event neutral: 0 charged: 19.311
|
||||
Nb tracks/event neutral: 0 charged: 1.0095
|
||||
Nb steps/event neutral: 0 charged: 19.299
|
||||
|
||||
Process calls frequency :
|
||||
CoulombScat= 55 RadioactiveDecayBase= 22 hIoni= 38524
|
||||
ionIoni= 22
|
||||
CoulombScat= 50 RadioactiveDecayBase= 19 hIoni= 38509
|
||||
ionIoni= 19
|
||||
|
||||
---------------------------------------------------------
|
||||
Primary particle :
|
||||
true Range = 3.7132 cm rms = 412.14 um
|
||||
proj Range = 3.7048 cm rms = 425.83 um
|
||||
proj/true = 0.99775
|
||||
transverse dispersion at end = 1.1239 mm
|
||||
true Range = 3.7133 cm rms = 409.61 um
|
||||
proj Range = 3.7049 cm rms = 435.36 um
|
||||
proj/true = 0.99774
|
||||
transverse dispersion at end = 1.1429 mm
|
||||
mass true Range from simulation = 10.026 g/cm2
|
||||
from PhysicsTable (csda range) = 10.013 g/cm2
|
||||
from PhysicsTable (csda range) = 10.011 g/cm2
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={2242478760734191844, 367404330490087245, 45194397492864290, 1268791187056359920, 1662323814748851017, 1464932188731583832, 562075691796711105, 1863622584876278003, 1704574723025588234, 963592955979266590, 543515433432620312, 464598867962878693, 641770506223233834, 2042532019127553785, 346259490809042034, 998315733089559582, 244586720294023349} counter= 8sumtot= 1285668341374836012
|
||||
N=17 V[N]={913425094942195650, 1669804377416371868, 676410091410990968, 1285517587114154658, 125323819510907687, 1370135114624171332, 1168103701194230878, 2238977698225572169, 1302655875947126391, 2300980640291497885, 1798177981595136014, 402371273733732173, 1760031994401657307, 997255217082257182, 1964862088753589191, 1126655732531703662, 431701229884682265} counter= 7sumtot= 779802435736731721
|
||||
---------------------------------------
|
||||
#
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -145,7 +145,7 @@ Build angle for energy distribution according the current radiator
|
||||
Lorentz Factor XTR photon number
|
||||
|
||||
|
||||
total time for build XTR angle for given energy tables = 0.12 s
|
||||
total time for build XTR angle for given energy tables = 0.13 s
|
||||
|
||||
msc: for e+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
@@ -232,7 +232,7 @@ Lorentz Factor XTR photon number
|
||||
8.085e+04 3.156
|
||||
9.283e+04 3.157
|
||||
|
||||
total time for build X-ray TR energy loss tables = 0.13 s
|
||||
total time for build X-ray TR energy loss tables = 0.14 s
|
||||
Build angle for energy distribution according the current radiator
|
||||
|
||||
Lorentz Factor XTR photon number
|
||||
@@ -563,7 +563,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.230000s Real=0.229898s Sys=0.000000s
|
||||
User=0.200000s Real=0.261069s Sys=0.000000s
|
||||
================== run summary =====================
|
||||
End of Run TotNbofEvents = 1000
|
||||
Mean energy deposit in absorber = 0.0488395 +-0.0194561 MeV
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -432,7 +432,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20000
|
||||
User=0.670000s Real=0.712145s Sys=0.000000s
|
||||
User=0.600000s Real=0.612273s Sys=0.000000s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -160,7 +160,7 @@ Screening factor 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.770000s Real=0.834812s Sys=0.000000s
|
||||
User=0.680000s Real=0.733497s Sys=0.000000s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -176,7 +176,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.120000s Real=2.315627s Sys=0.000000s
|
||||
User=2.010000s Real=2.025244s Sys=0.010000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -243,7 +243,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.300000s Real=2.517891s Sys=0.000000s
|
||||
User=2.100000s Real=2.110349s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -176,7 +176,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=3.770000s Real=3.872863s Sys=0.000000s
|
||||
User=3.770000s Real=3.859980s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -246,7 +246,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.920000s Real=2.958576s Sys=0.000000s
|
||||
User=2.940000s Real=2.998871s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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.039196s Sys=0.000000s
|
||||
User=0.040000s Real=0.034457s 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.057450s Sys=0.000000s
|
||||
User=0.050000s Real=0.050836s 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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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.238092s Sys=0.000000s
|
||||
User=0.150000s Real=0.154824s Sys=0.000000s
|
||||
Summary for synchrotron radiation :
|
||||
Number of photons = 65086
|
||||
Emean = 20.39 +/- 0.1444 keV
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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.530000s Real=1.635862s Sys=0.010000s
|
||||
User=1.300000s Real=1.323472s Sys=0.010000s
|
||||
|
||||
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
@@ -246,13 +246,13 @@ N=17 V[N]={390989001462590597, 2165133204863311347, 854974819548217897, 21264851
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=1.330000s Real=1.421897s Sys=0.000000s
|
||||
User=1.270000s Real=1.345879s Sys=0.000000s
|
||||
|
||||
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
Number of process calls ---> hIoni : 428839 hPairProd : 59634 CoulombScat : 5677 hBrems : 339
|
||||
Number of process calls ---> hIoni : 434607 hPairProd : 59197 CoulombScat : 5635 hBrems : 365
|
||||
|
||||
Simulation: total CrossSection = 0.49449 /cm MeanFreePath = 2.0223 cm massicCrossSection = 0.062832 cm2/g
|
||||
Simulation: total CrossSection = 0.4998 /cm MeanFreePath = 2.0008 cm massicCrossSection = 0.063507 cm2/g
|
||||
#
|
||||
/gun/particle proton
|
||||
/run/beamOn 10000
|
||||
@@ -287,7 +287,7 @@ Index : 0 used in the geometry : Yes
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={189834841800119698, 933698143446158285, 303366963357487890, 1657727968765643003, 1931848314084735928, 528222828093349202, 2266763837204729526, 844778916719660478, 1553452260019614839, 701305615943610690, 1877080332352109664, 482776174036698067, 1692678699103286550, 1672171112634157092, 1348922200906541837, 2269046978341506103, 1319329630900893632} counter= 17sumtot= 820417734787056925
|
||||
N=17 V[N]={2298238080532625205, 1178087240650624566, 1997045959359451701, 1839152004624977817, 17394026815102248, 750372274557854376, 1884977897583905302, 992851946312358541, 2003537805941153099, 1052213940802144931, 1875254901294267785, 667592037758835967, 830020360070016604, 582202057381135542, 1032263805990655081, 2204166422926943861, 1021198113789617211} counter= 8sumtot= 1473981793468424278
|
||||
---------------------------------------
|
||||
--> Event 0 starts.
|
||||
--> Event 1000 starts.
|
||||
@@ -302,13 +302,13 @@ N=17 V[N]={189834841800119698, 933698143446158285, 303366963357487890, 165772796
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=1.240000s Real=1.400102s Sys=0.000000s
|
||||
User=1.110000s Real=1.126027s Sys=0.000000s
|
||||
|
||||
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
Number of process calls ---> hIoni : 427382 hPairProd : 33807 CoulombScat : 5516 hBrems : 10
|
||||
Number of process calls ---> hIoni : 435051 hPairProd : 34071 CoulombScat : 5507 hBrems : 6
|
||||
|
||||
Simulation: total CrossSection = 0.46671 /cm MeanFreePath = 2.1426 cm massicCrossSection = 0.059303 cm2/g
|
||||
Simulation: total CrossSection = 0.47463 /cm MeanFreePath = 2.1069 cm massicCrossSection = 0.060309 cm2/g
|
||||
#
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -212,7 +212,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.490000s Real=0.560180s Sys=0.000000s
|
||||
User=0.440000s Real=0.445556s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -542,7 +542,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.420000s Real=2.458125s Sys=0.000000s
|
||||
User=2.120000s Real=2.163868s Sys=0.000000s
|
||||
LOGITUDINAL PROFILE CUMULATIVE LOGITUDINAL PROFILE
|
||||
|
||||
bin Mean rms bin Mean rms
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -510,7 +510,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=1.570000s Real=1.583600s Sys=0.000000s
|
||||
User=1.340000s Real=1.355080s Sys=0.000000s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
@@ -962,7 +962,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=1.250000s Real=1.255681s Sys=0.000000s
|
||||
User=1.120000s Real=1.160115s Sys=0.000000s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -142,7 +142,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.650000s Real=0.655895s Sys=0.000000s
|
||||
User=0.580000s Real=0.658346s Sys=0.010000s
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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.002540s Sys=0.000000s
|
||||
User=0.000000s Real=0.000762s Sys=0.000000s
|
||||
|
||||
Number of process calls ---> GammaToMuPair : 5... write file : testem6_0.root - done
|
||||
... write files - done
|
||||
@@ -301,7 +301,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 5
|
||||
User=0.000000s Real=0.000677s Sys=0.000000s
|
||||
User=0.000000s Real=0.000562s Sys=0.000000s
|
||||
|
||||
Number of process calls ---> ee2hadr : 5 AnnihiToMuPair : 1... write file : testem6_1.root - done
|
||||
... write files - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -504,28 +504,28 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=4.810000s Real=5.187354s Sys=0.000000s
|
||||
User=4.500000s Real=5.022504s Sys=0.000000s
|
||||
|
||||
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
Projected Range= 17.5295 cm rms= 3.2213 mm
|
||||
Mean number of primary steps = 186.178
|
||||
Total energy deposit= 159.994 MeV
|
||||
niel energy deposit = 123.79 eV
|
||||
Projected Range= 17.5344 cm rms= 2.55406 mm
|
||||
Mean number of primary steps = 186.222
|
||||
Total energy deposit= 159.997 MeV
|
||||
niel energy deposit = 130.222 eV
|
||||
|
||||
---------------------------------------------------------
|
||||
Cumulated Doses : Edep Edep/Ebeam Dose
|
||||
tally 0: 4.66235 GeV 0.291397 % 9.33739e-05 Gy
|
||||
tally 1: 4.95252 GeV 0.309533 % 9.91852e-05 Gy
|
||||
tally 2: 3.01408 GeV 0.18838 % 6.03635e-05 Gy
|
||||
tally 3: 1.81309 GeV 0.113318 % 3.63111e-05 Gy
|
||||
tally 0: 4.5701 GeV 0.285631 % 9.15263e-05 Gy
|
||||
tally 1: 4.8993 GeV 0.306206 % 9.81192e-05 Gy
|
||||
tally 2: 3.08891 GeV 0.193057 % 6.18623e-05 Gy
|
||||
tally 3: 1.91816 GeV 0.119885 % 3.84153e-05 Gy
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1392699262, 2045459836
|
||||
Current couple of seeds = 468391201, 748130611
|
||||
----------------------------------------
|
||||
/gun/particle ion
|
||||
/gun/ion 6 12 6
|
||||
@@ -556,34 +556,34 @@ Index : 1 used in the geometry : Yes
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1392699262, 2045459836
|
||||
Current couple of seeds = 468391201, 748130611
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=1.640000s Real=1.944537s Sys=0.010000s
|
||||
User=1.550000s Real=1.643049s Sys=0.010000s
|
||||
|
||||
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
Projected Range= 16.4816 cm rms= 469.313 um
|
||||
Mean number of primary steps = 149.781
|
||||
Total energy deposit= 3.49998 GeV
|
||||
niel energy deposit = 202.639 keV
|
||||
Projected Range= 16.4826 cm rms= 481.505 um
|
||||
Mean number of primary steps = 149.738
|
||||
Total energy deposit= 3.49997 GeV
|
||||
niel energy deposit = 202.622 keV
|
||||
|
||||
---------------------------------------------------------
|
||||
Cumulated Doses : Edep Edep/Ebeam Dose
|
||||
tally 0: 11.6014 GeV 0.33147 % 0.000232344 Gy
|
||||
tally 1: 13.3449 GeV 0.381282 % 0.000267261 Gy
|
||||
tally 2: 16.3974 GeV 0.468498 % 0.000328395 Gy
|
||||
tally 3: 23.4595 GeV 0.67027 % 0.000469827 Gy
|
||||
tally 0: 11.3614 GeV 0.324612 % 0.000227537 Gy
|
||||
tally 1: 13.1037 GeV 0.374391 % 0.00026243 Gy
|
||||
tally 2: 16.165 GeV 0.461858 % 0.000323741 Gy
|
||||
tally 3: 23.3353 GeV 0.666723 % 0.000467341 Gy
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 691829801, 1496686629
|
||||
Current couple of seeds = 250781368, 278382690
|
||||
----------------------------------------
|
||||
/testem/det/tallyNumber 0
|
||||
/testem/det/setMat G4_Cu
|
||||
@@ -952,24 +952,24 @@ Index : 2 used in the geometry : Yes
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 691829801, 1496686629
|
||||
Current couple of seeds = 250781368, 278382690
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=1.140000s Real=1.414891s Sys=0.000000s
|
||||
User=0.870000s Real=0.883063s Sys=0.000000s
|
||||
|
||||
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
|
||||
|
||||
Projected Range= 2.15117 cm rms= 1.68877 mm
|
||||
Mean number of primary steps = 20.041
|
||||
Total energy deposit= 288.099 MeV
|
||||
Projected Range= 2.14096 cm rms= 1.9424 mm
|
||||
Mean number of primary steps = 20.081
|
||||
Total energy deposit= 284.869 MeV
|
||||
niel energy deposit = 0 eV
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1858636379, 1175175466
|
||||
Current couple of seeds = 2126551535, 898419559
|
||||
----------------------------------------
|
||||
/testem/det/setMat TechVacuum
|
||||
/gun/particle alpha
|
||||
@@ -1342,13 +1342,13 @@ Index : 3 used in the geometry : Yes
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1858636379, 1175175466
|
||||
Current couple of seeds = 2126551535, 898419559
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.000000s Real=0.000418s Sys=0.000000s
|
||||
User=0.000000s Real=0.000420s Sys=0.000000s
|
||||
|
||||
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 mg/cm3)
|
||||
|
||||
@@ -1359,7 +1359,7 @@ Run Summary
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1895685533, 835558847
|
||||
Current couple of seeds = 1033050473, 1846758419
|
||||
----------------------------------------
|
||||
/testem/det/setMat G4_WATER
|
||||
/gun/particle alpha
|
||||
@@ -1730,24 +1730,24 @@ Index : 3 used in the geometry : No
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1895685533, 835558847
|
||||
Current couple of seeds = 1033050473, 1846758419
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.000000s Real=0.012698s Sys=0.000000s
|
||||
User=0.010000s Real=0.006600s Sys=0.000000s
|
||||
|
||||
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
Projected Range= 2.84785 mm rms= 14.4282 um
|
||||
Mean number of primary steps = 23.39
|
||||
Projected Range= 2.8433 mm rms= 13.7499 um
|
||||
Mean number of primary steps = 23.31
|
||||
Total energy deposit= 100 MeV
|
||||
niel energy deposit = 1.17913 keV
|
||||
niel energy deposit = 1.13112 keV
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1952693323, 1405646907
|
||||
Current couple of seeds = 1730152157, 434008448
|
||||
----------------------------------------
|
||||
/testem/det/setMat G4_Si
|
||||
/gun/particle ion
|
||||
@@ -2127,24 +2127,24 @@ Index : 4 used in the geometry : Yes
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1952693323, 1405646907
|
||||
Current couple of seeds = 1730152157, 434008448
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=5.080000s Real=5.670416s Sys=0.040000s
|
||||
User=2.810000s Real=2.993660s Sys=0.030000s
|
||||
|
||||
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
|
||||
|
||||
Projected Range= 108.692 um rms= 27.3643 um
|
||||
Mean number of primary steps = 78490.6
|
||||
Total energy deposit= 1.21695 GeV
|
||||
niel energy deposit = 1.9309 MeV
|
||||
Projected Range= 86.5055 um rms= 22.5072 um
|
||||
Mean number of primary steps = 45837.4
|
||||
Total energy deposit= 1.21692 GeV
|
||||
niel energy deposit = 1.66291 MeV
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1472728336, 1304828150
|
||||
Current couple of seeds = 1743431246, 151870296
|
||||
----------------------------------------
|
||||
/testem/det/setMat Water_1.05
|
||||
/gun/particle proton
|
||||
@@ -2530,28 +2530,28 @@ Index : 5 used in the geometry : Yes
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1472728336, 1304828150
|
||||
Current couple of seeds = 1743431246, 151870296
|
||||
----------------------------------------
|
||||
--> Event 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.510000s Real=0.566470s Sys=0.000000s
|
||||
User=0.450000s Real=0.480069s Sys=0.000000s
|
||||
|
||||
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
|
||||
|
||||
Projected Range= 16.7007 cm rms= 1.79408 mm
|
||||
Mean number of primary steps = 177.839
|
||||
Projected Range= 16.6909 cm rms= 1.88527 mm
|
||||
Mean number of primary steps = 177.732
|
||||
Total energy deposit= 160 MeV
|
||||
niel energy deposit = 122.2 eV
|
||||
niel energy deposit = 100.234 eV
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1069193241, 357105894
|
||||
Current couple of seeds = 1350910630, 1651845335
|
||||
----------------------------------------
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 10 of which, static: 0
|
||||
Dynamic pools deleted: 10 / Total memory freed: 46 MB
|
||||
Dynamic pools deleted: 10 / Total memory freed: 45 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -548,8 +548,8 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.070000s Real=0.189282s Sys=0.000000s
|
||||
RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0166175
|
||||
User=0.060000s Real=0.064127s Sys=0.000000s
|
||||
RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0162092
|
||||
====================================================
|
||||
Beam Particle: proton
|
||||
Ekin(MeV) = 200000
|
||||
@@ -558,31 +558,31 @@ RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0166175
|
||||
End of Run TotNbofEvents = 1000
|
||||
Energy(keV) per ADC channel = 3.0769
|
||||
|
||||
Mean energy deposit in absorber = 16.618 +- 0.44107 keV RMS/Emean = 0.83934
|
||||
Mean number of steps in absorber= 1.255 mean number of ion-clusters = 829.9 MeanCluster= 830.82
|
||||
Mean energy deposit in absorber = 16.209 +- 0.39819 keV RMS/Emean = 0.77684
|
||||
Mean number of steps in absorber= 1.255 mean number of ion-clusters = 810.07 MeanCluster= 810.39
|
||||
|
||||
====== Energy deposit distribution Noverflows= 0.017 ======
|
||||
====== Energy deposit distribution Noverflows= 0.01 ======
|
||||
bin nb Elow entries normalized
|
||||
0 0 0 0
|
||||
1 3 3 0.003
|
||||
2 6 93 0.093
|
||||
3 9 259 0.259
|
||||
4 12 268 0.268
|
||||
1 3 2 0.002
|
||||
2 6 87 0.087
|
||||
3 9 271 0.271
|
||||
4 12 259 0.259
|
||||
5 15 143 0.143
|
||||
6 18 84 0.084
|
||||
6 18 91 0.091
|
||||
7 21 42 0.042
|
||||
8 24 28 0.028
|
||||
9 27 20 0.02
|
||||
10 30 10 0.01
|
||||
11 33 3 0.003
|
||||
9 27 23 0.023
|
||||
10 30 5 0.005
|
||||
11 33 10 0.01
|
||||
12 36 5 0.005
|
||||
13 39 2 0.002
|
||||
14 42 5 0.005
|
||||
15 45 6 0.006
|
||||
16 48 7 0.007
|
||||
17 51 2 0.002
|
||||
18 54 2 0.002
|
||||
19 57 1 0.001
|
||||
13 39 3 0.003
|
||||
14 42 10 0.01
|
||||
15 45 4 0.004
|
||||
16 48 4 0.004
|
||||
17 51 3 0.003
|
||||
18 54 0 0
|
||||
19 57 0 0
|
||||
================== run end ==========================
|
||||
... write file : testem8.root - done
|
||||
... close file : testem8.root - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -517,38 +517,39 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.830000s Real=0.844588s Sys=0.000000s
|
||||
User=0.600000s Real=0.610035s Sys=0.000000s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 0
|
||||
=================================================================
|
||||
Number of events 100
|
||||
Average number of e- 403.4
|
||||
Average number of gamma 636.7
|
||||
Average number of e+ 47.52
|
||||
Average number of steps 2951
|
||||
Edep 1x1 = 0.8356 +- 0.002941 res= 3.519 % 100
|
||||
Edep 3x3 = 0.9609 +- 0.001152 res= 1.198 % 100
|
||||
Edep 5x5 = 0.9814 +- 0.0009949 res= 1.014 % 100
|
||||
Average number of e- 401.8
|
||||
Average number of gamma 639.1
|
||||
Average number of e+ 48.23
|
||||
Average number of steps 2973
|
||||
Edep 1x1 = 0.8298 +- 0.003446 res= 4.153 % 100
|
||||
Edep 3x3 = 0.9566 +- 0.002515 res= 2.629 % 100
|
||||
Edep 5x5 = 0.977 +- 0.00228 res= 2.333 % 100
|
||||
=========== Ratios without trancating ===========================
|
||||
E1/E9 = 0.8695 +- 0.002724
|
||||
E1/E25 = 0.8515 +- 0.002911
|
||||
E9/E25 = 0.9792 +- 0.0007693
|
||||
E1/E9 = 0.8674 +- 0.00272
|
||||
E1/E25 = 0.8493 +- 0.002768
|
||||
E9/E25 = 0.9791 +- 0.0007921
|
||||
Beam Energy 1 GeV
|
||||
==================================================================
|
||||
|
||||
|
||||
<<<<<ACCEPTANCE>>>>> 100 events for Crystal Calorimeter
|
||||
Edep1x1: 0.8356 delEdep1x1= -0.1644 nrms= -1.644
|
||||
Erms1x1: 0.02941 delErms1x1= -0.9706 nrms= -9.706
|
||||
Edep3x3: 0.9609 delEdep3x3= -0.03906 nrms= -0.3906
|
||||
Erms3x3: 0.01152 delErms3x3= -0.9885 nrms= -9.885
|
||||
Edep5x5: 0.9814 delEdep5x5= -0.01859 nrms= -0.1859
|
||||
Erms5x5: 0.009949 delErms5x5= -0.9901 nrms= -9.901
|
||||
Edep1x1: 0.8298 delEdep1x1= -0.1702 nrms= -1.702
|
||||
Erms1x1: 0.03446 delErms1x1= -0.9655 nrms= -9.655
|
||||
Edep3x3: 0.9566 delEdep3x3= -0.04342 nrms= -0.4342
|
||||
Erms3x3: 0.02515 delErms3x3= -0.9748 nrms= -9.748
|
||||
Edep5x5: 0.977 delEdep5x5= -0.02302 nrms= -0.2302
|
||||
Erms5x5: 0.0228 delErms5x5= -0.9772 nrms= -9.772
|
||||
<<<<<END>>>>> IS ACCEPTED
|
||||
|
||||
Z bremsstrahlung photoeffect compton conversion
|
||||
53 255 0 0 0
|
||||
55 285 0 0 0
|
||||
26 1 0 0 0
|
||||
53 263 0 0 0
|
||||
55 278 0 0 0
|
||||
#
|
||||
/testem/det/acceptance1 0.0136 0.0001 500
|
||||
/testem/det/acceptance9 0.0139 0.0001 500
|
||||
@@ -626,22 +627,22 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=1.240000s Real=1.364826s Sys=0.000000s
|
||||
User=1.000000s Real=1.150900s Sys=0.000000s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 1
|
||||
=================================================================
|
||||
Number of events 1000
|
||||
Average number of e- 77.11
|
||||
Average number of gamma 74.12
|
||||
Average number of e+ 4.251
|
||||
Average number of steps 484.4
|
||||
Edep 1x1 = 0.01495 +- 0.0005982
|
||||
Edep 3x3 = 0.0154 +- 0.000655
|
||||
Edep 5x5 = 0.01548 +- 0.0006657
|
||||
Average number of e- 72.94
|
||||
Average number of gamma 67.13
|
||||
Average number of e+ 3.748
|
||||
Average number of steps 451.6
|
||||
Edep 1x1 = 0.01448 +- 0.0002165
|
||||
Edep 3x3 = 0.01487 +- 0.0002446
|
||||
Edep 5x5 = 0.01494 +- 0.0002489
|
||||
=========== Ratios without trancating ===========================
|
||||
E1/E9 = 0.9822 +- 0.0007694
|
||||
E1/E25 = 0.9792 +- 0.0008629
|
||||
E9/E25 = 0.9969 +- 0.0001996
|
||||
E1/E9 = 0.9823 +- 0.0007515
|
||||
E1/E25 = 0.9795 +- 0.0008452
|
||||
E9/E25 = 0.9971 +- 0.0001699
|
||||
Beam Energy 20 GeV
|
||||
==================================================================
|
||||
|
||||
@@ -722,7 +723,7 @@ msc: for e- SubType= 10
|
||||
StepLim=SafetyPlus Rfact=0.08 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=3 Llimit=1
|
||||
===== EM models for the G4Region MuonDetector ======
|
||||
UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
|
||||
StepLim=UseSafety Rfact=0.04 Gfact=2.5 Sfact=0.6 DispFlag:0 Skin=1 Llimit=1
|
||||
StepLim=UseSafety Rfact=0.04 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=1 Llimit=1
|
||||
WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
|
||||
StepLim=UseSafety Rfact=0.04 Gfact=2.5 Sfact=0.6 DispFlag:1 Skin=1 Llimit=1
|
||||
|
||||
@@ -1150,22 +1151,22 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.480000s Real=0.481198s Sys=0.000000s
|
||||
User=0.400000s Real=0.448526s Sys=0.000000s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 2
|
||||
=================================================================
|
||||
Number of events 100
|
||||
Average number of e- 172.2
|
||||
Average number of gamma 220
|
||||
Average number of e+ 46.86
|
||||
Average number of steps 1844
|
||||
Edep 1x1 = 0.8319 +- 0.004461 res= 5.362 % 100
|
||||
Edep 3x3 = 0.9546 +- 0.003086 res= 3.233 % 100
|
||||
Edep 5x5 = 0.9768 +- 0.002906 res= 2.975 % 100
|
||||
Average number of e- 171.5
|
||||
Average number of gamma 220.6
|
||||
Average number of e+ 47.14
|
||||
Average number of steps 1829
|
||||
Edep 1x1 = 0.8346 +- 0.003747 res= 4.489 % 100
|
||||
Edep 3x3 = 0.9589 +- 0.003572 res= 3.725 % 100
|
||||
Edep 5x5 = 0.9806 +- 0.003573 res= 3.644 % 100
|
||||
=========== Ratios without trancating ===========================
|
||||
E1/E9 = 0.8715 +- 0.003802
|
||||
E1/E25 = 0.8519 +- 0.004131
|
||||
E9/E25 = 0.9773 +- 0.001253
|
||||
E1/E9 = 0.8706 +- 0.002647
|
||||
E1/E25 = 0.8513 +- 0.002762
|
||||
E9/E25 = 0.9779 +- 0.001249
|
||||
Beam Energy 1 GeV
|
||||
==================================================================
|
||||
|
||||
@@ -1674,22 +1675,22 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.740000s Real=0.876265s Sys=0.000000s
|
||||
User=0.610000s Real=0.654097s Sys=0.000000s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 3
|
||||
=================================================================
|
||||
Number of events 100
|
||||
Average number of e- 173.5
|
||||
Average number of gamma 363
|
||||
Average number of e+ 47.79
|
||||
Average number of steps 2012
|
||||
Edep 1x1 = 0.8332 +- 0.003619 res= 4.344 % 100
|
||||
Edep 3x3 = 0.9575 +- 0.003176 res= 3.317 % 100
|
||||
Edep 5x5 = 0.9788 +- 0.003053 res= 3.119 % 100
|
||||
Average number of e- 170.8
|
||||
Average number of gamma 361.3
|
||||
Average number of e+ 47.01
|
||||
Average number of steps 1988
|
||||
Edep 1x1 = 0.8354 +- 0.003587 res= 4.294 % 100
|
||||
Edep 3x3 = 0.9587 +- 0.003249 res= 3.389 % 100
|
||||
Edep 5x5 = 0.9798 +- 0.003233 res= 3.3 % 100
|
||||
=========== Ratios without trancating ===========================
|
||||
E1/E9 = 0.8703 +- 0.002709
|
||||
E1/E25 = 0.8513 +- 0.002835
|
||||
E9/E25 = 0.9783 +- 0.001052
|
||||
E1/E9 = 0.8716 +- 0.003055
|
||||
E1/E25 = 0.853 +- 0.003365
|
||||
E9/E25 = 0.9785 +- 0.00107
|
||||
Beam Energy 1 GeV
|
||||
==================================================================
|
||||
|
||||
@@ -1697,6 +1698,6 @@ Beam Energy 1 GeV
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 9 of which, static: 0
|
||||
Dynamic pools deleted: 9 / Total memory freed: 0.085 MB
|
||||
Dynamic pools deleted: 9 / Total memory freed: 0.081 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -12,7 +12,7 @@
|
||||
WWW : http://geant4.org/
|
||||
**************************************************************
|
||||
|
||||
creating G4RunManagerKernel 0x931080
|
||||
creating G4RunManagerKernel 0x1997040
|
||||
|
||||
The materials defined are :
|
||||
|
||||
@@ -87,15 +87,15 @@ G4Transportation: Current values for thresholds related to the killing of loop
|
||||
Important Energy = 250 ( above this tracks are given multiple chances )
|
||||
Extra Trials = 10 'important' tracks, i.e. those above 'important' energy
|
||||
G4Transportation constructor> set fShortStepOptimisation to false
|
||||
0xb45610G4ErrorPhysicsList:: particle process manager e+ = 0xb47d60
|
||||
0xb45480G4ErrorPhysicsList:: particle process manager e- = 0xb49930
|
||||
0xb44f10G4ErrorPhysicsList:: particle process manager gamma = 0xb49b60
|
||||
0xb46a90G4ErrorPhysicsList:: particle process manager geantino = 0xb49db0
|
||||
0xb457f0G4ErrorPhysicsList:: particle process manager mu+ = 0xb4a000
|
||||
0xb45be0G4ErrorPhysicsList:: particle process manager mu- = 0xb4a250
|
||||
0xb45ff0G4ErrorPhysicsList:: particle process manager pi+ = 0xb4a4a0
|
||||
0xb46440G4ErrorPhysicsList:: particle process manager pi- = 0xb4a6f0
|
||||
0xb46860G4ErrorPhysicsList:: particle process manager proton = 0xb4a940
|
||||
0x1bab570G4ErrorPhysicsList:: particle process manager e+ = 0x1badbf0
|
||||
0x1bab390G4ErrorPhysicsList:: particle process manager e- = 0x1baf7c0
|
||||
0x1bab1f0G4ErrorPhysicsList:: particle process manager gamma = 0x1baf9f0
|
||||
0x1bac920G4ErrorPhysicsList:: particle process manager geantino = 0x1bafc40
|
||||
0x1bab750G4ErrorPhysicsList:: particle process manager mu+ = 0x1bafe90
|
||||
0x1baba70G4ErrorPhysicsList:: particle process manager mu- = 0x1bb00e0
|
||||
0x1babe80G4ErrorPhysicsList:: particle process manager pi+ = 0x1bb0330
|
||||
0x1bac2d0G4ErrorPhysicsList:: particle process manager pi- = 0x1bb0580
|
||||
0x1bac6f0G4ErrorPhysicsList:: particle process manager proton = 0x1bb07d0
|
||||
physicsList->CheckParticleList() start.
|
||||
physicsList->setCut() start.
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -60,7 +60,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000417s Sys=0.000000s
|
||||
User=0.000000s Real=0.000393s Sys=0.000000s
|
||||
#
|
||||
/tracking/verbose 0
|
||||
/run/beamOn 5
|
||||
@@ -80,7 +80,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 5
|
||||
User=0.000000s Real=0.000035s Sys=0.000000s
|
||||
User=0.000000s Real=0.000030s 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-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -41,7 +41,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.170000s Real=0.181199s Sys=0.000000s
|
||||
User=0.160000s Real=0.167688s Sys=0.000000s
|
||||
... write file : run2.root - done
|
||||
... close file : run2.root - done
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -42,7 +42,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.180000s Real=0.247204s Sys=0.000000s
|
||||
User=0.190000s Real=0.186943s Sys=0.000000s
|
||||
... write file : run3.root - done
|
||||
... close file : run3.root - done
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -57,7 +57,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.850000s Real=2.899118s Sys=0.000000s
|
||||
User=3.470000s Real=3.857087s Sys=0.000000s
|
||||
... write file : run4.root - done
|
||||
... close file : run4.root - done
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -44,7 +44,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.350000s Real=0.385281s Sys=0.000000s
|
||||
User=0.320000s Real=0.321742s Sys=0.000000s
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 9 of which, static: 0
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -870,19 +870,19 @@ Index : 1 used in the geometry : Yes
|
||||
31. 1.26 35.3 35.3 22.5-1.43e-14 0 0
|
||||
32. 1.58 30.4 30.4 25.2-1.61e-14 0 0
|
||||
33. 2 26.1 26.1 28.3-1.81e-14 0 0
|
||||
34. 2.51 22.2 22.3 31.7-2.03e-14 0 0
|
||||
35. 3.16 18.9 18.9 35.6-2.27e-14 0 0
|
||||
36. 3.98 16.1 16 39.9-2.55e-14 0 0
|
||||
34. 2.51 22.3 22.3 31.7-2.03e-14 0 0
|
||||
35. 3.16 19 19 35.6-2.27e-14 0 0
|
||||
36. 3.98 16.1 16.1 39.9-2.55e-14 0 0
|
||||
37. 5.01 13.6 13.6 44.5 0.0264 0 0
|
||||
38. 6.31 11.4 11.4 47.7 3.1 0 0
|
||||
39. 7.94 9.59 9.61 50.4 7.11 0 0
|
||||
39. 7.94 9.6 9.6 50.4 7.11 0 0
|
||||
40. 10 8.05 8.05 54.9 12.2 0 0
|
||||
41. 12.6 6.7 6.69 60.4 18.5 0 0
|
||||
42. 15.8 5.57 5.58 67.1 26.3 0 0
|
||||
43. 20 4.66 4.66 75.6 35.8 0 0
|
||||
41. 12.6 6.72 6.74 60.4 18.5 0 0
|
||||
42. 15.8 5.6 5.59 67.1 26.3 0 0
|
||||
43. 20 4.66 4.67 75.6 35.8 0 0
|
||||
44. 25.1 3.91 3.91 85.8 47.2 0 0
|
||||
45. 31.6 3.27 3.27 98 60.8 0 0
|
||||
46. 39.8 2.74 2.74 113 77 0 0
|
||||
45. 31.6 3.28 3.27 98 60.8 0 0
|
||||
46. 39.8 2.73 2.74 113 77 0 0
|
||||
47. 50.1 2.29 2.29 130 96.2 0 0
|
||||
48. 63.1 1.92 1.92 151 119 0 0
|
||||
49. 79.4 1.61 1.61 175 145 0 0
|
||||
@@ -900,7 +900,7 @@ Index : 1 used in the geometry : Yes
|
||||
61. 1.26e+03 0.369 0.405 748 747 0.0373 0
|
||||
62. 1.58e+03 0.355 0.395 785 786 0.0379 0
|
||||
63. 2e+03 0.346 0.39 825 825 0.0385 0
|
||||
64. 2.51e+03 0.34 0.388 864 864 0.0391 0
|
||||
64. 2.51e+03 0.34 0.389 864 864 0.0391 0
|
||||
65. 3.16e+03 0.337 0.39 902 903 0.0396 0
|
||||
66. 3.98e+03 0.336 0.395 942 942 0.0401 0
|
||||
67. 5.01e+03 0.336 0.401 981 981 0.0406 0
|
||||
@@ -910,32 +910,32 @@ Index : 1 used in the geometry : Yes
|
||||
71. 1.26e+04 0.342 0.435 1.14e+03 1.14e+03 0.0416 0
|
||||
72. 1.58e+04 0.344 0.445 1.18e+03 1.18e+03 0.0417 0
|
||||
73. 2e+04 0.346 0.454 1.22e+03 1.22e+03 0.0418 8.23
|
||||
74. 2.51e+04 0.348 0.457 1.24e+03 1.26e+03 0.0418 50.2
|
||||
75. 3.16e+04 0.349 0.459 1.25e+03 1.3e+03 0.0417 83.6
|
||||
76. 3.98e+04 0.351 0.46 1.28e+03 1.35e+03 0.0417 111
|
||||
77. 5.01e+04 0.352 0.462 1.3e+03 1.39e+03 0.0417 132
|
||||
78. 6.31e+04 0.353 0.463 1.32e+03 1.43e+03 0.0417 148
|
||||
79. 7.94e+04 0.354 0.464 1.34e+03 1.48e+03 0.0417 160
|
||||
80. 1e+05 0.354 0.466 1.36e+03 1.52e+03 0.0417 170
|
||||
81. 1.26e+05 0.355 0.467 1.38e+03 1.57e+03 0.0417 177
|
||||
82. 1.58e+05 0.355 0.469 1.4e+03 1.62e+03 0.0417 183
|
||||
83. 2e+05 0.355 0.471 1.41e+03 1.66e+03 0.0417 187
|
||||
84. 2.51e+05 0.355 0.474 1.43e+03 1.71e+03 0.0417 190
|
||||
85. 3.16e+05 0.356 0.478 1.44e+03 1.75e+03 0.0417 192
|
||||
86. 3.98e+05 0.356 0.482 1.45e+03 1.79e+03 0.0417 194
|
||||
87. 5.01e+05 0.356 0.489 1.46e+03 1.83e+03 0.0417 195
|
||||
88. 6.31e+05 0.356 0.497 1.46e+03 1.86e+03 0.0417 196
|
||||
89. 7.94e+05 0.356 0.507 1.46e+03 1.9e+03 0.0417 196
|
||||
90. 1e+06 0.356 0.521 1.45e+03 1.93e+03 0.0417 196
|
||||
91. 1.26e+06 0.356 0.539 1.44e+03 1.95e+03 0.0417 197
|
||||
92. 1.58e+06 0.356 0.562 1.43e+03 1.98e+03 0.0417 197
|
||||
93. 2e+06 0.356 0.591 1.42e+03 2e+03 0.0417 197
|
||||
94. 2.51e+06 0.356 0.63 1.4e+03 2.02e+03 0.0417 197
|
||||
95. 3.16e+06 0.356 0.679 1.38e+03 2.04e+03 0.0417 197
|
||||
96. 3.98e+06 0.356 0.741 1.36e+03 2.05e+03 0.0417 197
|
||||
97. 5.01e+06 0.356 0.821 1.33e+03 2.06e+03 0.0417 197
|
||||
98. 6.31e+06 0.356 0.924 1.3e+03 2.07e+03 0.0417 197
|
||||
99. 7.94e+06 0.356 1.05 1.27e+03 2.08e+03 0.0417 197
|
||||
74. 2.51e+04 0.348 0.464 1.24e+03 1.26e+03 0.0418 50.2
|
||||
75. 3.16e+04 0.349 0.473 1.25e+03 1.3e+03 0.0419 83.6
|
||||
76. 3.98e+04 0.351 0.483 1.28e+03 1.35e+03 0.0419 111
|
||||
77. 5.01e+04 0.352 0.492 1.3e+03 1.39e+03 0.0419 132
|
||||
78. 6.31e+04 0.353 0.501 1.32e+03 1.43e+03 0.042 148
|
||||
79. 7.94e+04 0.354 0.51 1.34e+03 1.48e+03 0.042 160
|
||||
80. 1e+05 0.354 0.52 1.36e+03 1.52e+03 0.042 170
|
||||
81. 1.26e+05 0.355 0.529 1.38e+03 1.57e+03 0.042 177
|
||||
82. 1.58e+05 0.355 0.538 1.4e+03 1.62e+03 0.042 183
|
||||
83. 2e+05 0.355 0.548 1.41e+03 1.66e+03 0.042 187
|
||||
84. 2.51e+05 0.355 0.558 1.43e+03 1.71e+03 0.042 190
|
||||
85. 3.16e+05 0.356 0.569 1.44e+03 1.75e+03 0.042 192
|
||||
86. 3.98e+05 0.356 0.581 1.45e+03 1.79e+03 0.042 194
|
||||
87. 5.01e+05 0.356 0.594 1.46e+03 1.83e+03 0.042 195
|
||||
88. 6.31e+05 0.356 0.609 1.46e+03 1.86e+03 0.042 196
|
||||
89. 7.94e+05 0.356 0.626 1.46e+03 1.9e+03 0.042 196
|
||||
90. 1e+06 0.356 0.646 1.45e+03 1.93e+03 0.042 196
|
||||
91. 1.26e+06 0.356 0.67 1.44e+03 1.95e+03 0.042 197
|
||||
92. 1.58e+06 0.356 0.699 1.43e+03 1.98e+03 0.042 197
|
||||
93. 2e+06 0.356 0.735 1.42e+03 2e+03 0.042 197
|
||||
94. 2.51e+06 0.356 0.776 1.4e+03 2.02e+03 0.042 197
|
||||
95. 3.16e+06 0.356 0.828 1.38e+03 2.04e+03 0.042 197
|
||||
96. 3.98e+06 0.356 0.893 1.36e+03 2.05e+03 0.042 197
|
||||
97. 5.01e+06 0.356 0.975 1.33e+03 2.06e+03 0.042 197
|
||||
98. 6.31e+06 0.356 1.08 1.3e+03 2.07e+03 0.042 197
|
||||
99. 7.94e+06 0.356 1.21 1.27e+03 2.08e+03 0.042 197
|
||||
##################################################################
|
||||
... write file : monopole.root - done
|
||||
... close file : monopole.root - done
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1488,7 +1488,7 @@ Terminate current event processing.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.030000s Real=0.037779s Sys=0.000000s
|
||||
User=0.020000s Real=0.029114s Sys=0.000000s
|
||||
Sum NoMT: 0
|
||||
Sum NoMRT: 0
|
||||
Sum NoMRCondition: 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -664,7 +664,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.001360s Sys=0.000000s
|
||||
User=0.000000s Real=0.000877s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -698,7 +698,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000168s Sys=0.000000s
|
||||
User=0.000000s Real=0.000151s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -732,7 +732,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000144s Sys=0.000000s
|
||||
User=0.000000s Real=0.000143s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -766,7 +766,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000185s Sys=0.000000s
|
||||
User=0.000000s Real=0.000139s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -800,7 +800,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000136s Sys=0.000000s
|
||||
User=0.010000s Real=0.000133s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -841,7 +841,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000161s Sys=0.000000s
|
||||
User=0.000000s Real=0.000127s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -875,7 +875,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.010000s Real=0.008762s Sys=0.000000s
|
||||
User=0.000000s Real=0.007030s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
@@ -945,7 +945,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.010000s Real=0.008322s Sys=0.000000s
|
||||
User=0.000000s Real=0.006071s Sys=0.000000s
|
||||
G4Transportation: Statistics for looping particles
|
||||
No looping tracks found or killed.
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -5588,7 +5588,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.020000s Real=0.043931s Sys=0.020000s
|
||||
User=0.030000s Real=0.044414s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -6051,7 +6051,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000504s Sys=0.000000s
|
||||
User=0.000000s Real=0.000492s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1035,7 +1035,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.001946s Sys=0.000000s
|
||||
User=0.000000s Real=0.001075s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1057,7 +1057,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.010000s Real=0.009951s Sys=0.000000s
|
||||
User=0.010000s Real=0.009208s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1079,7 +1079,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.000000s Real=0.001373s Sys=0.000000s
|
||||
User=0.000000s Real=0.001254s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1125,7 +1125,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000285s Sys=0.000000s
|
||||
User=0.000000s Real=0.000245s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1568,7 +1568,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.270000s Real=0.347599s Sys=0.000000s
|
||||
User=0.270000s Real=0.282041s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
+7035
-6584
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -5,7 +5,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -2314,7 +2314,7 @@ Terminate current event processing.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.010000s Real=0.018566s Sys=0.000000s
|
||||
User=0.010000s Real=0.023276s Sys=0.010000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
argc 4
|
||||
Geometry data file: /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc9/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat
|
||||
Geometry data file: /geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat
|
||||
evaluating -m
|
||||
Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type...
|
||||
|
||||
@@ -8,7 +8,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -16,7 +16,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
WWW : http://geant4.org/
|
||||
**************************************************************
|
||||
|
||||
Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc9/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
|
||||
Instantiated G3toG4DetectorConstruction using call list file "/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
|
||||
<<< Geant4 Physics List simulation engine: FTFP_BERT
|
||||
|
||||
Visualization Manager instantiating with verbosity "warnings (3)"...
|
||||
@@ -74,7 +74,7 @@ Some /vis commands (optionally) take a string to specify colour.
|
||||
"/vis/list" to see available colours.
|
||||
userDetector->Construct() start.
|
||||
Instantiated unit rotation matrix irot=0
|
||||
Reading the call List file /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc9/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
|
||||
Reading the call List file /geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
|
||||
G4ggclos: setting top-level VolTableEntry
|
||||
Dump of VTD - 26 entries:
|
||||
Instantiated 26 volume table entries
|
||||
@@ -908,7 +908,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000510s Sys=0.000000s
|
||||
User=0.000000s Real=0.000435s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -941,7 +941,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000047s Sys=0.000000s
|
||||
User=0.000000s Real=0.000058s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -974,7 +974,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000077s Sys=0.000000s
|
||||
User=0.000000s Real=0.000070s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1007,7 +1007,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000030s Sys=0.000000s
|
||||
User=0.000000s Real=0.000043s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1040,7 +1040,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000093s Sys=0.000000s
|
||||
User=0.000000s Real=0.000074s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1073,7 +1073,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000049s Sys=0.000000s
|
||||
User=0.000000s Real=0.000042s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1106,7 +1106,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000046s Sys=0.000000s
|
||||
User=0.000000s Real=0.000038s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
@@ -1139,7 +1139,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000043s Sys=0.000000s
|
||||
User=0.000000s Real=0.000033s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -146,7 +146,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000440s Sys=0.000000s
|
||||
User=0.000000s Real=0.000342s Sys=0.000000s
|
||||
0 events have been kept for refreshing and/or reviewing.
|
||||
"/vis/reviewKeptEvents" to review them one by one.
|
||||
"/vis/enable", then "/vis/viewer/flush" or "/vis/viewer/rebuild" to see them accumulated.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#### Starting: /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc9/LABEL/centos7/THREAD/Seq/build/examples/extended/hadronic/FissionFragment/FissionFragment ####
|
||||
#### Starting: /build/jenkins/workspace/examples/extended/hadronic/FissionFragment/FissionFragment ####
|
||||
Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type...
|
||||
|
||||
############################################
|
||||
@@ -6,7 +6,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
############################################
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-07-ref-00 (4-December-2020)
|
||||
Geant4 version Name: geant4-10-07-patch-01 (5-February-2021)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -835,7 +835,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: ionElastic
|
||||
Model: NNDiffuseElastic: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 25.6 PeV
|
||||
|
||||
Process: ionInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 6 GeV/n
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user