Import Geant4 11.2.2 source tree
This commit is contained in:
+1
-1
@@ -31,7 +31,7 @@ project(Geant4
|
||||
HOMEPAGE_URL "https://geant4.cern.ch")
|
||||
set(${PROJECT_NAME}_VERSION_MAJOR 11)
|
||||
set(${PROJECT_NAME}_VERSION_MINOR 2)
|
||||
set(${PROJECT_NAME}_VERSION_PATCH 1)
|
||||
set(${PROJECT_NAME}_VERSION_PATCH 2)
|
||||
set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}")
|
||||
|
||||
# - Prepend our own CMake Modules to the search path
|
||||
|
||||
@@ -0,0 +1,261 @@
|
||||
|
||||
Geant4 11.2 - patch-02 Release Notes
|
||||
------------------------------------
|
||||
|
||||
21 June 2024
|
||||
|
||||
List of fixes included in this public patch since the public release 11.2.1:
|
||||
|
||||
o Configuration
|
||||
-------------
|
||||
+ CMake:
|
||||
o Fix to do not export HDF5 version to Geant4Config.
|
||||
o Fixed find_package(SoXt) and find_package(SoWin).
|
||||
o In main CMake source script, VTK driver library requires the application
|
||||
of VTK's vtk_module_autoinit cmake function, but the existence of the
|
||||
target was not checked, leading to configure time errors. Check for the
|
||||
existence of both G4visVTK and G4visVTK-static targets before applying
|
||||
vtk_module_autoinit. Addressing problem report #2600.
|
||||
o Mention the possibility of using cvmfs datasets in the cmake configuration.
|
||||
o Updated FindPythia6 module to account for lib64.
|
||||
Applies GitHub PR#63 (https://github.com/Geant4/geant4/pull/63).
|
||||
o Disabled use of FindPythia6 outside of internal Geant4 examples.
|
||||
o Updated FindPythia8 module to reduce capability to only that required by
|
||||
py8decayer example and emit error if used in project outside Geant4 or
|
||||
py8decayer. Applies GitHub PR#68 (https://github.com/Geant4/geant4/pull/68).
|
||||
o Fixed escaping of regex in geant4_module_check to satisfy latest Python3.
|
||||
o Updated dataset: G4NDL-4.7.1.
|
||||
|
||||
o Analysis
|
||||
--------
|
||||
+ Do not delete G4Accumulable<T> default constructor, as it prevents from
|
||||
using it in an array without an explicit initialization in the header.
|
||||
+ Fixed wrong conversion to G4String in G4THnToolsManager, leading to
|
||||
compilation error on gcc compiler with C++23 Standard enabled.
|
||||
|
||||
o Digits_Hits
|
||||
-----------
|
||||
+ Fixed compilation error in G4THitsMap on macOS/clang with C++23 Standard
|
||||
enabled.
|
||||
|
||||
o Externals
|
||||
---------
|
||||
+ g4tools:
|
||||
o Fixed compilation warnings on gcc when LTO settings are enabled.
|
||||
o Fixed string assignments in 'window' and 'pixwin', to support either
|
||||
UNICODE or UTF-16 encoding on Windows. Addressing problem report #2599.
|
||||
+ ptl:
|
||||
o Changed Windows.h to windows.h, to allow build Windows/MinGW.
|
||||
Not relevant for native VC++ builds.
|
||||
|
||||
o Geometry
|
||||
--------
|
||||
+ magnetic_field:
|
||||
o Fixed potential uninitialised data, detected in ATLAS LTO builds.
|
||||
+ navigation:
|
||||
o Fixed compilation error in G4Navigator on Windows VC++ with C++20 Standard
|
||||
enabled. Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
+ solids/specific:
|
||||
o Use std::size_t for array sizes in G4PolyhedraSide and G4PolyPhiFace,
|
||||
fixing compilation warnings on gcc when LTO settings are enabled.
|
||||
+ volumes:
|
||||
o Use std::map instead of std::vector to define G4LogicalSkinSurfaceTable,
|
||||
to speedup search of skin surfaces in large tables, as already done
|
||||
previously for G4LogicalBorderSurface. Addressing problem report #2598.
|
||||
|
||||
o Global
|
||||
------
|
||||
+ Changed Windows.h to windows.h, to allow build Windows/MinGW.
|
||||
Not relevant for native VC++ builds. Use _WIN32 to detect Windows system.
|
||||
+ Fixed compilation error in G4PhysicsModelCatalog on Windows VC++ with
|
||||
C++20 Standard enabled.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
+ Provide helpful error message when GEANT4_DATA_DIR is set to an invalid
|
||||
location.
|
||||
+ Updated date and version for 11.2.2.
|
||||
|
||||
o Intercoms
|
||||
---------
|
||||
+ G4UIparsing: checking either 'int' or 'long int' parameter value are
|
||||
within range of G4int or G4long.
|
||||
+ Fix in G4GenericMessenger::DeclareMethod() which was wrongly converting
|
||||
valid Boolean parameters. Improved SetNewValue() function.
|
||||
Addressing problem report #2606.
|
||||
|
||||
o Interfaces
|
||||
----------
|
||||
+ Use std::size_t as arrays size in G4InteractorMessenger and G4UIArrayString,
|
||||
fixing compilation warnings on gcc when LTO settings are enabled
|
||||
+ Fixed string assignments in G4Win32 and G4UIWin32, to support either
|
||||
UNICODE or UTF-16 encoding on Windows. Addressing problem report #2599.
|
||||
|
||||
o Materials
|
||||
---------
|
||||
+ Fix in G4NistMaterialBuilder::HepAndNuclearMaterials(): G4_BRASS,
|
||||
G4_BRONZE and G4_STAILESS_STEEL are now defined using mass fractions
|
||||
of components instead of number of atoms, in order to have more natural
|
||||
description. Addressing problem report #2601.
|
||||
Results may be changed on level of 10^-5 due to numerical differences.
|
||||
|
||||
o Persistency
|
||||
-----------
|
||||
+ GDML:
|
||||
o Disabled schema validation on Windows platforms, as XercesC currently does
|
||||
support only 'http'.
|
||||
o Fix in schema module gdml_solids.xsd for tessellated solid semantics, to
|
||||
correctly reference facet types. Fixes schema validation errors which may
|
||||
occur on some custom XSD validation tools (fix included in GDML-3.1.7).
|
||||
o Use std::map instead of std::vector to iterate on logical-skin surfaces
|
||||
in G4GDMLWriteStructure::GetSkinSurface().
|
||||
Part of fix addressing problem report #2598.
|
||||
|
||||
o Physics Lists
|
||||
-------------
|
||||
+ lists:
|
||||
o G4PhysListFactory: added three new variants of 'Shielding' physics list,
|
||||
using the model G4LightIonQMDReaction: 'ShieldingLIQMD', 'ShieldingLIQMD_HP'
|
||||
and 'ShieldingLIQMD_HPT'. Addressing problem report #2615.
|
||||
Note that 'ShieldingLIQMD' and 'ShieldingLIQMD_HP' refer to the same
|
||||
configuration, the latter is introduced only for consistency.
|
||||
|
||||
o Processes - Electromagnetic
|
||||
---------------------------
|
||||
+ dna:
|
||||
o Fixed compilation error on Windows VC++ with C++20 Standard enabled.
|
||||
Added missing declarations for TG4MoleculeShoot specialisations on G4Track.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
o Fixed compilation error on macOS/clang with C++23 enabled, for the use
|
||||
of std::function in G4OctreeFinder.
|
||||
+ standard:
|
||||
o G4BetheHeitler5DModel: fixed computation of sinTheta sampling and added
|
||||
checks on arguments of G4Exp in SampleSecondaries() method, to avoid FPE
|
||||
problems in the case of -O3 optimisation on alma9.
|
||||
+ utils:
|
||||
o G4EmUtility: simplified computation of cross-section maximum for
|
||||
discrete processes to fix FPE issues on alma9 when -O3 compiler
|
||||
option is used.
|
||||
o Fixed compilation error in G4EmConfigurator on Windows VC++ with
|
||||
C++20 Standard enabled.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
|
||||
o Processes - Hadronic
|
||||
--------------------
|
||||
+ models/binary_cascade:
|
||||
o Removed throwing of exception if momentum cannot be corrected in rare
|
||||
cases for D + H around 1600 MeV; the initial state is now kept unchanged
|
||||
instead.
|
||||
+ models/coherent_elastic:
|
||||
o Fixed compilation warnings for potentially initialised local variables
|
||||
in SampleThetaCMS() for G4DiffuseElastic and G4NuclNuclDiffuseElastic.
|
||||
+ models/lend:
|
||||
o Fixed compilation warnings for potentially initialised local variables
|
||||
in ptwXY_createFromFunctionZeroCrossing().
|
||||
o Define _USE_MATH_DEFINES before inclusion of <cmath> to define
|
||||
non-standard math macros such as M_PI on Windows. Use _WIN32 instead of
|
||||
WIN32 to detect Windows system. Use basetsd.h instead of BaseTsd.h to
|
||||
allow for compilation on Windows/MinGW.
|
||||
+ models/inclxx:
|
||||
o Fix in G4INCLInteractionAvatar to not use local energy for all antibaryons.
|
||||
+ models/particle_hp:
|
||||
o G4CrossSectionHP: fixed method taking into account temperature effect
|
||||
(the difference due to this fix is small).
|
||||
Fixed elastic and capture cross-sections in Argon, by using only the main
|
||||
isotope Z=18, A=40 (there was up to 50% overestimation of cross-sections
|
||||
due to wrong data for rare isotopes of argon).
|
||||
Fixed cross-sections for rare target atoms Promethium, Astatine, Radon
|
||||
and Francium.
|
||||
o Fixed compilation error in G4ParticleHPManager and G4ParticleHPNames on
|
||||
Windows VC++ with C++20 Standard enabled.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
o Fixed remaining compilation warnings on gcc compiler when LTO settings
|
||||
are enabled.
|
||||
+ radioactive_decay:
|
||||
o G4BetaPlusDecay, G4BetaMinusDecay: added extra numerical protection on
|
||||
level of 1 eV to avoid precision lost and production of neutrino with
|
||||
negative kinetic energy. In case Q-value is bigger than mass difference,
|
||||
betas in the tail of the spectrum may have more energy than residual free
|
||||
energy. To minimize the non-conservation of 4-momentum, in such cases,
|
||||
neutrino and daughter nucleus are given 1 eV, leading to non conservation
|
||||
of linear momentum because momentum of beta is not counterbalanced.
|
||||
|
||||
o processes - solidstate/phonon
|
||||
-----------------------------
|
||||
+ Fixed compilation error in G4LatticeManager on Windows VC++ with
|
||||
C++20 Standard enabled.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
|
||||
o processes/optical
|
||||
-----------------
|
||||
+ G4OpBoundaryProcess: correctly calculate Fresnel reflection/refraction,
|
||||
when material property TRANSMITTANCE is specified. The ratio of Fresnel
|
||||
reflection/refraction now does not change when a non-zero transmission is
|
||||
specified. Previously, if transmission of X% was specified, there would be
|
||||
transmission of X% as expected, but the ratio of Fresnel refraction to
|
||||
Fresnel reflection would be set to X%. Addressing problem report #2578.
|
||||
|
||||
o Track
|
||||
-----
|
||||
+ Fixed compilation error in G4VParticleChange on Windows VC++ with
|
||||
C++20 Standard enabled.
|
||||
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
|
||||
|
||||
o Visualization
|
||||
-------------
|
||||
+ management:
|
||||
o G4VisExecutive: fixed use of static symbol 'fVerbosity' and replaced
|
||||
with call to dedicated static method, to avoid linkage problems on Windows.
|
||||
+ Qt3D:
|
||||
o Fixed compilation error on Windows for ambiguous string assignment in
|
||||
G4Qt3DSceneHandler::CreateNewNode().
|
||||
+ Vtk:
|
||||
o Porting code to compile on Windows Visual-Studio.
|
||||
o Fixed Ubuntu 22 & VTK 9.1 compilation error.
|
||||
|
||||
o Data
|
||||
----
|
||||
+ G4NDL-4.7.1:
|
||||
o Removed all files for Argon-36 and Argon-38 as significantly different
|
||||
from those of ENDF/B-VIII.0.
|
||||
o Reprocessed thermal scattering files after fixing a problem in NJOY.
|
||||
Addressing problem report #2552.
|
||||
|
||||
o Examples
|
||||
--------
|
||||
+ advanced/ChargeExchangeMC
|
||||
o Disabled GDML schema validation.
|
||||
+ advanced/hadrontherapy:
|
||||
o Fixed compilation error on Windows VC++ with C++20 Standard enabled.
|
||||
+ medical_linac:
|
||||
o Fixed geometry of medical linear accelerator's collimator.
|
||||
+ extended/biasing:
|
||||
o Fixed URls in documentation.
|
||||
+ extended/eventgenerator:
|
||||
o Updated CMake scripts to use new Pythia8 setup/build variables.
|
||||
+ extended/hadronic/FlukaCern/ProcessLevel/FinalState:
|
||||
+ extended/hadronic/Hadr09:
|
||||
o Fixed compilation error on Windows VC++ with C++20 Standard enabled.
|
||||
+ extended/medical/DICOM:
|
||||
o Corrected symbols for Chlorine and Potassium elements in function
|
||||
InitialisationOfMaterials().
|
||||
+ extended/parameterisations/Par04
|
||||
o Bump scipy version according to
|
||||
GitHub Dependabot PR#66(https://github.com/Geant4/geant4/pull/66).
|
||||
o Bump pymysql version according to
|
||||
GitHub Dependabot PR#72 (https://github.com/Geant4/geant4/pull/72).
|
||||
o Bump scikit-learn version according to
|
||||
GitHub Dependabot PR#73 (https://github.com/Geant4/geant4/pull/73).
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o This patch should be applied on top of release 11.2 series.
|
||||
o Technical notes distributed for release 11.2 are also applicable and
|
||||
valid for this patch.
|
||||
|
||||
The code and rebuilt binary libraries for release 11.2.2 are available
|
||||
through the Geant4 "Download" Web page.
|
||||
|
||||
Please refer to the Geant4 User Documentation for further information about
|
||||
using Geant4.
|
||||
@@ -6,6 +6,35 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-06-07 Ben Morgan (cmake-V11-01-33)
|
||||
- Do not export HDF5 version to Geant4Config
|
||||
- Fixes Issue #214
|
||||
|
||||
## 2024-05-17 Gunter Folger
|
||||
- Use patched G4NDL 4.7.1 dataset.
|
||||
|
||||
## 2024-03-26 Ben Morgan
|
||||
- Disable use of FindPythia6 outside of internal Geant4 examples.
|
||||
|
||||
## 2024-04-17 Stephan Hageboeck
|
||||
- Mention the possibility of using cvmfs datasets in the cmake configure warning
|
||||
|
||||
## 2024-04-08 Guilherme Amadio
|
||||
- Fix also find_package(SoXt) and find_package(SoWin)
|
||||
|
||||
## 2024-04-20 Ben Morgan
|
||||
- Update FindPythia8 module to:
|
||||
- Apply [GitHub PR 68](https://github.com/Geant4/geant4/pull/68)
|
||||
- Reduce capability to only that required by py8decayer example
|
||||
- Emit error if used in project outside Geant4 or py8decayer
|
||||
|
||||
## 2024-03-12 Ben Morgan
|
||||
- Update FindPythia6 module to account for lib64
|
||||
- Applies [GitHub PR 63](https://github.com/Geant4/geant4/pull/63)
|
||||
|
||||
## 2024-03-11 Ben Morgan
|
||||
- Fix escaping of regex in geant4_module_check to satisfy latest Python3.
|
||||
|
||||
## 2024-01-29 Ben Morgan (cmake-V11-01-32)
|
||||
- Manually check versions of found SoXX packages to workaround their use of
|
||||
the `ExactVersionOnly` version checking strategy in find_package. Geant4
|
||||
|
||||
@@ -1,19 +1,56 @@
|
||||
# Locate Pythia6 library
|
||||
# in a directory defined via PYTHIA6 environment variable
|
||||
#
|
||||
# Defines:
|
||||
# PYTHIA6_FOUND
|
||||
# PYTHIA6_LIBRARIES
|
||||
|
||||
find_library(PYTHIA6_LIBRARY NAMES Pythia6 pythia6-$ENV{PYTHIA6_VERSION}
|
||||
HINTS $ENV{PYTHIA6} $ENV{PYTHIA6}/lib)
|
||||
|
||||
set(PYTHIA6_LIBRARIES ${PYTHIA6_LIBRARY})
|
||||
#message(STATUS PYTHIA6_LIBRARIES ${PYTHIA6_LIBRARIES} )
|
||||
|
||||
# handle the QUIETLY and REQUIRED arguments and set PYTHIA6_FOUND to TRUE if
|
||||
# all listed variables are TRUE
|
||||
INCLUDE(FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Pythia6 DEFAULT_MSG PYTHIA6_LIBRARIES)
|
||||
|
||||
mark_as_advanced(PYTHIA6_FOUND PYTHIA6_LIBRARIES)
|
||||
#[=======================================================================[.rst:
|
||||
FindPythia6
|
||||
---------
|
||||
|
||||
Find the Pythia6 event generator library.
|
||||
|
||||
Imported Targets
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
This module defines the following :prop_tgt:`IMPORTED` targets:
|
||||
|
||||
``Pythia6::Pythia6``
|
||||
The Pythia6 ``pythia6`` library, if found.
|
||||
|
||||
Result Variables
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
This module will set the following variables in your project:
|
||||
|
||||
``Pythia6_FOUND``
|
||||
true if the Pythia6 headers and libraries were found.
|
||||
|
||||
Hints
|
||||
^^^^^
|
||||
|
||||
A user may set ``Pythia6_ROOT`` to a Pythia6 installation root to tell this
|
||||
module where to look.
|
||||
|
||||
#]=======================================================================]
|
||||
|
||||
# WE DO NOT ALLOW USE OF THIS MODULE OUTSIDE GEANT4 AND EXAMPLES
|
||||
if(NOT PROJECT_NAME MATCHES "Geant4|HepMCEx0[1-2]|decayer6")
|
||||
message(FATAL_ERROR "This FindPythia6.cmake module is only supported for use in Geant4's HepMCEx0{1,2} "
|
||||
"and decayer6 extended examples. No support or extension of this module for use outside of these examples "
|
||||
"will be provided.")
|
||||
endif()
|
||||
|
||||
find_library(Pythia6_LIBRARY
|
||||
NAMES Pythia6 pythia6 pythia6-$ENV{PYTHIA6_VERSION}
|
||||
HINTS $ENV{PYTHIA6} $ENV{PYTHIA6}/lib $ENV{PYTHIA6}/lib64 ${Pythia6_ROOT}/lib ${Pythia6_ROOT}/lib64)
|
||||
|
||||
# handle the QUIETLY and REQUIRED arguments and set Pythia6_FOUND to TRUE if
|
||||
# all listed variables are TRUE
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(Pythia6 DEFAULT_MSG Pythia6_LIBRARY)
|
||||
|
||||
mark_as_advanced(Pythia6_LIBRARY)
|
||||
|
||||
if(Pythia6_FOUND)
|
||||
set(Pythia6_LIBRARIES ${Pythia6_LIBRARY})
|
||||
if(NOT TARGET Pythia6::Pythia6)
|
||||
add_library(Pythia6::Pythia6 UNKNOWN IMPORTED)
|
||||
set_target_properties(Pythia6::Pythia6 PROPERTIES
|
||||
IMPORTED_LOCATION ${Pythia6_LIBRARY})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
@@ -1,24 +1,76 @@
|
||||
# Locate Pythia8 library
|
||||
# in a directory defined via PYTHIA8 environment variable
|
||||
#
|
||||
# Defines:
|
||||
# PYTHIA8_FOUND
|
||||
# PYTHIA8_LIBRARIES
|
||||
# PYTHIA8_INCLUDES
|
||||
|
||||
find_library(PYTHIA8_LIBRARY NAMES pythia8
|
||||
HINTS $ENV{PYTHIA8} $ENV{PYTHIA8}/lib)
|
||||
|
||||
set(PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARY})
|
||||
#message(STATUS PYTHIA8_LIBRARIES ${PYTHIA8_LIBRARIES} )
|
||||
|
||||
find_path( PYTHIA8_INCLUDES Pythia8/Pythia.h
|
||||
HINTS $ENV{PYTHIA8} $ENV{PYTHIA8}/include $ENV{PYTHIA8}/include/Pythia8 )
|
||||
set(PYTHIA8_INCLUDES ${PYTHIA8_INCLUDES})
|
||||
|
||||
# handle the QUIETLY and REQUIRED arguments and set PYTHIA8_FOUND to TRUE if
|
||||
# all listed variables are TRUE
|
||||
INCLUDE(FindPackageHandleStandardArgs)
|
||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Pythia8 DEFAULT_MSG PYTHIA8_LIBRARIES)
|
||||
|
||||
mark_as_advanced(PYTHIA8_FOUND PYTHIA8_LIBRARIES PYTHIA8_INCLUDES)
|
||||
#[=======================================================================[.rst:
|
||||
FindPythia8
|
||||
---------
|
||||
|
||||
Find the Pythia8 event generator headers and library.
|
||||
|
||||
Imported Targets
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
This module defines the following :prop_tgt:`IMPORTED` targets:
|
||||
|
||||
``Pythia8::Pythia8``
|
||||
The Pythia8 ``pythia8`` library, if found.
|
||||
|
||||
Result Variables
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
This module will set the following variables in your project:
|
||||
|
||||
``Pythia8_FOUND``
|
||||
true if the Pythia8 headers and libraries were found.
|
||||
|
||||
Hints
|
||||
^^^^^
|
||||
|
||||
A user may set ``Pythia8_ROOT`` to a Pythia8 installation root to tell this
|
||||
module where to look.
|
||||
|
||||
#]=======================================================================]
|
||||
|
||||
# WE ONLY ALLOW USE OF THIS MODULE IN GEANT4 OR py8decayer EXAMPLE
|
||||
if(NOT PROJECT_NAME MATCHES "Geant4|py8decayer")
|
||||
message(FATAL_ERROR "This FindPythia8.cmake module is only supported for use in Geant4's py8decayer "
|
||||
"extended example. No support or extension of this module for use outside of this example "
|
||||
"will be provided.")
|
||||
endif()
|
||||
|
||||
# Look for the header file
|
||||
find_path(Pythia8_INCLUDE_DIR
|
||||
NAMES Pythia8/Pythia.h
|
||||
HINTS ${Pythia8_ROOT}/include)
|
||||
|
||||
if(NOT Pythia8_LIBRARY)
|
||||
find_library(Pythia8_LIBRARY
|
||||
NAMES pythia8 Pythia8
|
||||
HINTS ${Pythia8_ROOT}/lib ${Pythia8_ROOT}/lib64)
|
||||
endif()
|
||||
|
||||
# Determine the version
|
||||
if(Pythia8_INCLUDE_DIR AND EXISTS "${Pythia8_INCLUDE_DIR}/Pythia8/Pythia.h")
|
||||
file(STRINGS "${Pythia8_INCLUDE_DIR}/Pythia8/Pythia.h" PYTHIA8_H REGEX "^#define PYTHIA_VERSION.*$")
|
||||
if(PYTHIA8_H MATCHES "PYTHIA_VERSION ([0-9]\\.[0-9]+)$")
|
||||
set(Pythia8_VERSION "${CMAKE_MATCH_1}")
|
||||
else()
|
||||
set(Pythia8_VERSION "")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# handle the QUIETLY and REQUIRED arguments and set Pythia8_FOUND to TRUE if
|
||||
# all listed variables are TRUE
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(Pythia8
|
||||
REQUIRED_VARS Pythia8_INCLUDE_DIR Pythia8_LIBRARY
|
||||
VERSION_VAR Pythia8_VERSION)
|
||||
|
||||
mark_as_advanced(Pythia8_INCLUDE_DIR Pythia8_LIBRARY)
|
||||
|
||||
# Create imported target
|
||||
if(Pythia8_FOUND)
|
||||
if(NOT TARGET Pythia8::Pythia8)
|
||||
add_library(Pythia8::Pythia8 UNKNOWN IMPORTED)
|
||||
set_target_properties(Pythia8::Pythia8 PROPERTIES
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${Pythia8_INCLUDE_DIR}"
|
||||
IMPORTED_LOCATION ${Pythia8_LIBRARY})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
@@ -8,11 +8,11 @@
|
||||
# - NDL
|
||||
geant4_add_dataset(
|
||||
NAME G4NDL
|
||||
VERSION 4.7
|
||||
VERSION 4.7.1
|
||||
FILENAME G4NDL
|
||||
EXTENSION tar.gz
|
||||
ENVVAR G4NEUTRONHPDATA
|
||||
MD5SUM b001a2091bf9392e6833830347672ea2
|
||||
MD5SUM 54f0ed3995856f02433d42ec96d70bc6
|
||||
)
|
||||
|
||||
# - Low energy electromagnetics
|
||||
|
||||
@@ -333,20 +333,21 @@ function(geant4_configure_datasets)
|
||||
message(" ${_missing} (${_vers})")
|
||||
endforeach()
|
||||
message(" ")
|
||||
message(" If you want to have these datasets installed automatically")
|
||||
message(" simply re-run cmake and set the GEANT4_INSTALL_DATA")
|
||||
message(" variable to ON. This will configure the build to download")
|
||||
message(" and install these datasets for you. For example, on the")
|
||||
message(" command line, do:")
|
||||
message(" - If you have access to cvmfs, you can use standard datasets")
|
||||
message(" by reconfiguring with:")
|
||||
message(" cmake -DGEANT4_INSTALL_DATADIR=/cvmfs/geant4.cern.ch/share/data <...>")
|
||||
message(" The variable can also be set in ccmake or cmake-gui.")
|
||||
message(" - If you want to have these datasets installed by Geant4,")
|
||||
message(" simply re-run cmake with GEANT4_INSTALL_DATA=ON. This will")
|
||||
message(" configure the build to download and install these datasets for you.")
|
||||
message(" For example, use:")
|
||||
message(" cmake -DGEANT4_INSTALL_DATA=ON <otherargs>")
|
||||
message(" ")
|
||||
message(" cmake -DGEANT4_INSTALL_DATA=ON <otherargs>")
|
||||
message(" ")
|
||||
message(" The variable can also be toggled in ccmake or cmake-gui.")
|
||||
message(" If you're running on a Windows system, this is the best")
|
||||
message(" solution as CMake will unpack the datasets for you")
|
||||
message(" without any further software being required")
|
||||
message(" ")
|
||||
message(" Alternatively, you can install these datasets manually")
|
||||
message(" - Alternatively, you can install these datasets manually")
|
||||
message(" now or after you have installed Geant4. To do this,")
|
||||
message(" download the following files:")
|
||||
message(" ")
|
||||
|
||||
@@ -153,12 +153,12 @@ if(GEANT4_USE_INVENTOR)
|
||||
geant4_save_package_variables(Inventor SoQt_DIR)
|
||||
else()
|
||||
if(UNIX)
|
||||
find_package(SoXt 1.4.0 REQUIRED)
|
||||
find_package(SoXt REQUIRED)
|
||||
check_sobind_version(SoXt 1.4.0)
|
||||
geant4_save_package_variables(Inventor SoXt_DIR)
|
||||
set(GEANT4_USE_INVENTOR_XT ON)
|
||||
elseif(WIN32)
|
||||
find_package(SoWin 1.4.0 REQUIRED)
|
||||
find_package(SoWin REQUIRED)
|
||||
check_sobind_version(SoWin 1.4.0)
|
||||
geant4_save_package_variables(Inventor SoWin_DIR)
|
||||
set(GEANT4_USE_INVENTOR_WIN ON)
|
||||
|
||||
@@ -142,7 +142,7 @@ def scan_includes(input_file, settings):
|
||||
m = re.search("^ *# *include *\"(.*)\"(.*)$", line)
|
||||
if m:
|
||||
c = re.search(
|
||||
"\s*//\s*no_geant4_module_check\s*(\((.*)\))?.*$", m.group(2))
|
||||
"\\s*//\\s*no_geant4_module_check\\s*(\\((.*)\\))?.*$", m.group(2))
|
||||
if c:
|
||||
conds = set()
|
||||
if c.group(2):
|
||||
|
||||
@@ -339,7 +339,7 @@ endif()
|
||||
# - HDF5
|
||||
set(Geant4_hdf5_FOUND @GEANT4_USE_HDF5@)
|
||||
if(Geant4_hdf5_FOUND)
|
||||
find_dependency(HDF5 @HDF5_VERSION@)
|
||||
find_dependency(HDF5)
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/G4HDF5Shim.cmake")
|
||||
endif()
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -778,4 +778,4 @@ Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
writing Event: 0
|
||||
TimeTotal> 16.268 2.600
|
||||
TimeTotal> 9.063 2.990
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1494,7 +1494,7 @@ Event 16980
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 16981, effectively: 10
|
||||
User=11.800000s Real=11.977712s Sys=0.010000s
|
||||
User=13.120000s Real=13.822806s Sys=0.010000s
|
||||
|
||||
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
|
||||
1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 1308 ) | 0.00000000 ( 0 / 1308 / 1633 )
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
# Example ChargeExchangeMC History
|
||||
|
||||
See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
|
||||
which **must** added in reverse chronological order (newest at the top). It must **not**
|
||||
be used as a substitute for writing good git commit messages!
|
||||
which **must** added in reverse chronological order (newest at the top).
|
||||
It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-06-21 Gabriele Cosmo (ChargeExchangeMC-V11-01-00)
|
||||
- Disabled GDML schema validation.
|
||||
|
||||
## 2022-05-20 Vladimir Ivanchenko (ChargeExchangeMC-V11-00-01)
|
||||
- CexmcHadronicProcess - disable integral method not applicable to this test
|
||||
|
||||
@@ -87,7 +87,7 @@ class CexmcSetup : public G4VUserDetectorConstruction
|
||||
|
||||
public:
|
||||
explicit CexmcSetup( const G4String & gdmlFile = "default.gdml",
|
||||
G4bool validateGDMLFile = true );
|
||||
G4bool validateGDMLFile = false );
|
||||
|
||||
G4VPhysicalVolume * Construct( void );
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -132,7 +132,7 @@ Number of X,Y,Z voxels = 254, 127, 30
|
||||
placing voxel container volume at (0,0,0)
|
||||
Phantom Material Colours set via ColourMap.dat data file
|
||||
--- G4CoupledTransportation is used
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1
|
||||
/tracking/verbose 0
|
||||
/run/verbose 0
|
||||
/event/verbose 0
|
||||
@@ -608,7 +608,7 @@ CoulombScat: for mu- XStype:1 SubType=1 BuildTable=1
|
||||
Enable DEBUG 0
|
||||
=======================================================
|
||||
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7/Inelastic
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1/Inelastic
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -295,7 +295,7 @@ Some /vis commands (optionally) take a string to specify colour.
|
||||
Phantom box position (max) 270.750 mm, 155.232 mm, 881.445 mm
|
||||
Number of tetrahedrons 8233413
|
||||
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1
|
||||
=======================================================================
|
||||
====== Electromagnetic Physics Parameters ========
|
||||
=======================================================================
|
||||
@@ -744,7 +744,7 @@ CoulombScat: for mu- XStype:1 SubType=1 BuildTable=1
|
||||
Enable DEBUG 0
|
||||
=======================================================
|
||||
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7/Inelastic
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1/Inelastic
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -156,7 +156,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=20.930000s Real=21.166970s Sys=0.000000s
|
||||
User=21.520000s Real=22.534877s Sys=0.010000s
|
||||
... write file : SolidTargetCyclotron.root - done
|
||||
... close file : SolidTargetCyclotron.root - done
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -768,8 +768,8 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
ooo Run 0 starts (global).
|
||||
|
||||
--------- Ranlux engine status ---------
|
||||
Initial seed = 1707932508
|
||||
float_seed_table[] = 0.788761 0.669246 0.424286 0.522021 0.280473 0.948221 0.106564 0.200429 0.0242301 0.664527 0.572897 0.0248976 0.336361 0.244251 0.61169 0.331917 0.535976 0.646344 0.939989 0.812095 0.356999 0.979121 0.706451 0.999465
|
||||
Initial seed = 1718963691
|
||||
float_seed_table[] = 0.384708 0.791556 0.379241 0.0881719 0.137439 0.669364 0.116514 0.38971 0.0279332 0.778502 0.161113 0.808408 0.636664 0.508096 0.0943652 0.0820693 0.0437461 0.492691 0.58593 0.435996 0.0672431 0.823854 0.880108 0.809899
|
||||
i_lag = 23, j_lag = 9
|
||||
carry = 0, count24 = 0
|
||||
luxury = 3 nskip = 199
|
||||
@@ -780,7 +780,7 @@ mu- Mono Plane
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=1.340000s Real=1.358161s Sys=0.000000s
|
||||
User=1.330000s Real=1.462425s Sys=0.000000s
|
||||
### Run 0 (global) ended.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
@@ -797,12 +797,12 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 9
|
||||
Total navigation history collections cleaned: 10
|
||||
G4RNGHelper object is deleted.
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0115 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.025 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.026 MB
|
||||
Pool ID '16G4SmartVoxelNode', size : 0.00192 MB
|
||||
Pool ID '17G4SmartVoxelProxy', size : 0.000961 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
@@ -810,12 +810,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 '7G4Track', size : 0.049 MB
|
||||
Pool ID '7G4Track', size : 0.0509 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.00481 MB
|
||||
Number of memory pools allocated: 14 of which, static: 0
|
||||
Dynamic pools deleted: 14 / Total memory freed: 0.1 MB
|
||||
Dynamic pools deleted: 14 / Total memory freed: 0.11 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -187,7 +187,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=6.040000s Real=6.080548s Sys=0.010000s
|
||||
User=7.040000s Real=7.232194s Sys=0.000000s
|
||||
|
||||
-------------------------------------------------------------
|
||||
---> The calorimeter is 9 Modules
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -952,7 +952,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=15.200000s Real=15.392174s Sys=0.010000s
|
||||
User=16.030000s Real=17.059184s Sys=0.000000s
|
||||
### Run 0 end.
|
||||
... write file : ccal.root - done
|
||||
... close file : ccal.root - done
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -801,18 +801,18 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 475 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0.01 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
100.00 0.01 0.00 406k airBox_logicalV
|
||||
0.00 0.00 0.00 69k world_logicalV
|
||||
0.00 0.00 0.00 406k airBox_logicalV
|
||||
|
||||
Voxelisation: top memory users:
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
85.51 406k 931 5788 8898 0.00 airBox_logicalV
|
||||
85.51 406k 931 5788 8898 0.01 airBox_logicalV
|
||||
14.49 68k 182 683 3080 0.00 world_logicalV
|
||||
### Run 0 starts.
|
||||
### Begin of Run 0 start.
|
||||
@@ -855,7 +855,7 @@ N=17 V[N]={87900885656017340, 2136126672992718976, 110623987125446578, 176001763
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=121.380000s Real=125.884998s Sys=1.860000s
|
||||
User=131.120000s Real=142.438038s Sys=1.930000s
|
||||
|
||||
### End of Run (1000000 events)
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Initial Seed for random engine: 1707932573
|
||||
Initial Seed for random engine: 1718963771
|
||||
Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Forcing G4RunManager type...
|
||||
|
||||
############################################
|
||||
@@ -12,7 +12,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -812,7 +812,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 500000
|
||||
User=922.950000s Real=980.045498s Sys=6.350000s
|
||||
User=948.300000s Real=995.402995s Sys=6.060000s
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run was 500000 events /score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -524,9 +524,9 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=3.330000s Real=3.352407s Sys=0.000000s
|
||||
User=3.800000s Real=4.046556s Sys=0.000000s
|
||||
--- Run 0 (master) end. Total number of events: 1000.
|
||||
User=3.330000s Real=3.352755s Sys=0.000000s
|
||||
User=3.800000s Real=4.046847s Sys=0.000000s
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
UserPhysicsList deleted.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -97,7 +97,7 @@ Checking overlaps for volume AlStrip_phys:0 (G4Box) ... OK!
|
||||
Checking overlaps for volume GoldCylinder1_phys:0 (G4Tubs) ... OK!
|
||||
Checking overlaps for volume GoldCylinder2_phys:0 (G4Tubs) ... OK!
|
||||
Checking overlaps for volume GoldCylinder3_phys:0 (G4Tubs) ... OK!
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1
|
||||
=======================================================================
|
||||
====== Electromagnetic Physics Parameters ========
|
||||
=======================================================================
|
||||
@@ -559,7 +559,7 @@ CoulombScat: for mu- XStype:1 SubType=1 BuildTable=1
|
||||
Enable DEBUG 0
|
||||
=======================================================
|
||||
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7/Inelastic
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1/Inelastic
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -863,7 +863,7 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 2 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0.01 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
@@ -13744,7 +13744,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=1.270000s Real=1.324148s Sys=0.030000s
|
||||
User=1.450000s Real=1.766809s Sys=0.050000s
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 10 proton of 50 MeV
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -52,11 +52,6 @@ Creating FTFP_BERT physics list ################ 1
|
||||
Adding G4GenericBiasingPhysics for GeomBias ################
|
||||
Using
|
||||
G4GDML: Reading 'simpleCone.gdml'...
|
||||
G4GDML: VALIDATION ERROR! ID attribute 'G4_Ni' is referenced but was never declared at line: 48
|
||||
G4GDML: VALIDATION ERROR! ID attribute 'G4_Fe' is referenced but was never declared at line: 48
|
||||
G4GDML: VALIDATION ERROR! ID attribute 'G4_Cr' is referenced but was never declared at line: 48
|
||||
G4GDML: VALIDATION ERROR! ID attribute 'G4_AIR' is referenced but was never declared at line: 48
|
||||
G4GDML: VALIDATION ERROR! ID attribute 'G4_Galactic' is referenced but was never declared at line: 48
|
||||
G4GDML: Reading definitions...
|
||||
G4GDML: Reading materials...
|
||||
G4GDML: Reading solids...
|
||||
@@ -225,7 +220,7 @@ Index : 3 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=136.470000s Real=137.754628s Sys=0.000000s
|
||||
User=153.380000s Real=163.747664s Sys=0.100000s
|
||||
/control/doifBatch /score/dumpAllQuantitiesToFile Probes Probes.csv
|
||||
/score/dumpAllQuantitiesToFile Probes Probes.csv
|
||||
# Mesh or volume name: Probes -- # Primitive scorer name: dose
|
||||
|
||||
@@ -1,8 +1,14 @@
|
||||
# Example hadrontherapy History
|
||||
|
||||
See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
|
||||
which **must** added in reverse chronological order (newest at the top). It must **not**
|
||||
be used as a substitute for writing good git commit messages!
|
||||
which **must** added in reverse chronological order (newest at the top).
|
||||
It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-04-24 Gabriele Cosmo (hadrontherapy-V11-01-02)
|
||||
- Fixed compilation error on Windows VC++ with C++20 Standard enabled.
|
||||
Make proper use of G4String in HadrontherapyInteractionParameters.
|
||||
|
||||
## 2023-11-15 I. Hrivnacova (hadrontherapy-V11-01-01)
|
||||
- Updated macros using /vis/open:
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -694,12 +694,12 @@ Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 500
|
||||
User=4.680000s Real=4.805444s Sys=0.050000s
|
||||
User=5.450000s Real=6.219716s Sys=0.070000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
The simulation took: 7.127 s to run (real time)
|
||||
The simulation took: 9.17605 s to run (real time)
|
||||
Dose is being written to Dose.out
|
||||
i j k Dose(Gy)================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 14 of which, static: 0
|
||||
Dynamic pools deleted: 14 / Total memory freed: 0.24 MB
|
||||
Dynamic pools deleted: 14 / Total memory freed: 0.28 MB
|
||||
============================================================
|
||||
|
||||
@@ -117,7 +117,7 @@ bool HadrontherapyInteractionParameters::GetStoppingTable(const G4String& vararg
|
||||
// This will plot
|
||||
|
||||
// Info to user
|
||||
G4String ofName = (filename == "") ? "User terminal": filename;
|
||||
G4String ofName = (filename == "") ? G4String("User terminal"): filename;
|
||||
G4cout << "User choice:\n";
|
||||
G4cout << "Kinetic energy lower limit= "<< G4BestUnit(kinEmin,"Energy") <<
|
||||
", Kinetic energy upper limit= " << G4BestUnit(kinEmax,"Energy") <<
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -596,7 +596,7 @@ Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=9.240000s Real=9.555099s Sys=0.180000s
|
||||
User=10.160000s Real=11.616344s Sys=0.290000s
|
||||
/score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -923,13 +923,13 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 395 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0.23 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0.24 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
52.17 0.12 0.00 152k EmModuleLogical
|
||||
47.83 0.11 0.00 238k HadModuleLogical
|
||||
54.17 0.13 0.00 152k EmModuleLogical
|
||||
45.83 0.11 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
|
||||
@@ -941,7 +941,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
60.17 238k 1385 2370 3792 0.11 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.12 EmModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.13 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
|
||||
@@ -1304,7 +1304,7 @@ Edep in FCAL1 FCAl2 : 19838.2 3.89468
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 18
|
||||
User=6.680000s Real=6.734801s Sys=0.000000s
|
||||
User=7.660000s Real=8.185956s Sys=0.000000s
|
||||
There are histograms that can be viewed with visualization:
|
||||
4 h1 histograms(s)
|
||||
List them with "/analysis/list".
|
||||
|
||||
@@ -4,6 +4,9 @@ See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
|
||||
which **must** added in reverse chronological order (newest at the top).
|
||||
It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
## 2024-04-22 D. Konstantinov (medical_linac-V11-01-02)
|
||||
- Fixed a critical bug in the geometry of the medical linear accelerator's collimator.
|
||||
- Reduced the cut for TargetR in the medical linear accelerator from 1 cm to 1 mm.
|
||||
|
||||
## 2023-11-15 I. Hrivnacova (medical_linac-V11-01-01)
|
||||
- Updated vis.mac:
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -262,7 +262,7 @@ void DetectorConstruction::ConstructTarget()
|
||||
G4Region *regVol;
|
||||
regVol = new G4Region("TargetR");
|
||||
G4ProductionCuts* cuts = new G4ProductionCuts;
|
||||
cuts -> SetProductionCut(1.*cm);
|
||||
cuts -> SetProductionCut(1.*mm);
|
||||
regVol -> SetProductionCuts(cuts);
|
||||
BoxMinusTubeLV -> SetRegion(regVol);
|
||||
regVol -> AddRootLogicalVolume(BoxMinusTubeLV);
|
||||
@@ -292,7 +292,7 @@ void DetectorConstruction::ConstructPrimaryCollimator()
|
||||
tube1HalfLengthZ = 15.86/2. * mm;
|
||||
cone1RadiusMin = 34./2.*mm; // upper cone
|
||||
cone1RadiusMax = 54./2.*mm;
|
||||
cone1HalfLengthZ = (bigTube1HalfLengthZ - tube1HalfLengthZ)/2.*mm; //(79.-15.86)/2.*mm;
|
||||
cone1HalfLengthZ = (bigTube1HalfLengthZ - tube1HalfLengthZ)*mm; //(79.-15.86)/2.*mm;
|
||||
|
||||
// middle principal tube = bigTube2
|
||||
bigTube2Radius = 141./2. * mm;
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -804,7 +804,7 @@ CoulombScat: for pi- XStype:1 SubType=1 BuildTable=1
|
||||
ThetaMin(p) < Theta(degree) < 180, pLimit(GeV^1)= 0.139531
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||
##### Create analysis manager 0x1a65190
|
||||
##### Create analysis manager 0x11b7150
|
||||
Using analysis manager
|
||||
All Ntuples have been created
|
||||
-> Event # 1 generated
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -343,7 +343,7 @@ 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 0x10a44b0
|
||||
##### Create analysis manager 0x1b5c470
|
||||
Using analysis manager
|
||||
... set ntuple merging row mode : row-wise - done
|
||||
... create file : microelectronics.root - done
|
||||
@@ -365,7 +365,7 @@ Elastic Cumulated Diff Cross : /cvmfs/geant4.cern.ch/share/data/G4EMLOW8.5/micro
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.340000s Real=0.416159s Sys=0.010000s
|
||||
User=0.350000s Real=0.577205s Sys=0.020000s
|
||||
... write file : microelectronics.root - done
|
||||
... close file : microelectronics.root - done
|
||||
... clear all data - done
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -294,7 +294,7 @@ Index : 0 used in the geometry : Yes
|
||||
|
||||
==================================================================
|
||||
|
||||
##### Create analysis manager 0x1458d10
|
||||
##### Create analysis manager 0x6cccd0
|
||||
Using analysis manager
|
||||
Ntuple-1 created
|
||||
Ntuple-2 created
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -899,7 +899,7 @@ Projection_index 0 Slice_index 0 Pixel_index 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000622s Sys=0.000000s
|
||||
User=0.000000s Real=0.000552s Sys=0.000000s
|
||||
/gps/direction 1.000000 0.000000 0.000000
|
||||
/gps/pos/centre -36.000000 -14.400000 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -929,7 +929,7 @@ Projection_index 0 Slice_index 0 Pixel_index 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.009401s Sys=0.000000s
|
||||
User=0.010000s Real=0.009963s Sys=0.000000s
|
||||
/gps/direction 1.000000 0.000000 0.000000
|
||||
/gps/pos/centre -36.000000 0.000000 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -959,7 +959,7 @@ Projection_index 0 Slice_index 0 Pixel_index 2
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.009584s Sys=0.000000s
|
||||
User=0.010000s Real=0.009136s Sys=0.000000s
|
||||
/gps/direction 1.000000 0.000000 0.000000
|
||||
/gps/pos/centre -36.000000 14.400000 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -989,7 +989,7 @@ Projection_index 0 Slice_index 0 Pixel_index 3
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.009320s Sys=0.000000s
|
||||
User=0.010000s Real=0.007740s Sys=0.000000s
|
||||
/gps/direction 1.000000 0.000000 0.000000
|
||||
/gps/pos/centre -36.000000 28.800000 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1019,7 +1019,7 @@ Projection_index 0 Slice_index 0 Pixel_index 4
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000212s Sys=0.000000s
|
||||
User=0.000000s Real=0.000141s Sys=0.000000s
|
||||
/gps/direction 0.809017 0.587785 0.000000
|
||||
/gps/pos/centre -12.196397 -44.459959 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1049,7 +1049,7 @@ Projection_index 1 Slice_index 0 Pixel_index 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000189s Sys=0.000000s
|
||||
User=0.000000s Real=0.000128s Sys=0.000000s
|
||||
/gps/direction 0.809017 0.587785 0.000000
|
||||
/gps/pos/centre -20.660504 -32.810114 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1079,7 +1079,7 @@ Projection_index 1 Slice_index 0 Pixel_index 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.007491s Sys=0.000000s
|
||||
User=0.000000s Real=0.006587s Sys=0.000000s
|
||||
/gps/direction 0.809017 0.587785 0.000000
|
||||
/gps/pos/centre -29.124612 -21.160269 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1109,7 +1109,7 @@ Projection_index 1 Slice_index 0 Pixel_index 2
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.011607s Sys=0.000000s
|
||||
User=0.010000s Real=0.009768s Sys=0.000000s
|
||||
/gps/direction 0.809017 0.587785 0.000000
|
||||
/gps/pos/centre -37.588719 -9.510424 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1139,7 +1139,7 @@ Projection_index 1 Slice_index 0 Pixel_index 3
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.007064s Sys=0.000000s
|
||||
User=0.010000s Real=0.006431s Sys=0.000000s
|
||||
/gps/direction 0.809017 0.587785 0.000000
|
||||
/gps/pos/centre -46.052827 2.139420 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1169,7 +1169,7 @@ Projection_index 1 Slice_index 0 Pixel_index 4
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000211s Sys=0.000000s
|
||||
User=0.000000s Real=0.000299s Sys=0.000000s
|
||||
/gps/direction 0.309017 0.951057 0.000000
|
||||
/gps/pos/centre 16.265816 -43.137724 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1199,7 +1199,7 @@ Projection_index 2 Slice_index 0 Pixel_index 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000187s Sys=0.000000s
|
||||
User=0.000000s Real=0.002744s Sys=0.000000s
|
||||
/gps/direction 0.309017 0.951057 0.000000
|
||||
/gps/pos/centre 2.570602 -38.687879 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1229,7 +1229,7 @@ Projection_index 2 Slice_index 0 Pixel_index 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.008738s Sys=0.000000s
|
||||
User=0.010000s Real=0.014268s Sys=0.000000s
|
||||
/gps/direction 0.309017 0.951057 0.000000
|
||||
/gps/pos/centre -11.124612 -34.238035 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1259,7 +1259,7 @@ Projection_index 2 Slice_index 0 Pixel_index 2
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.009402s Sys=0.000000s
|
||||
User=0.010000s Real=0.009077s Sys=0.000000s
|
||||
/gps/direction 0.309017 0.951057 0.000000
|
||||
/gps/pos/centre -24.819826 -29.788190 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1289,7 +1289,7 @@ Projection_index 2 Slice_index 0 Pixel_index 3
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.008923s Sys=0.000000s
|
||||
User=0.010000s Real=0.007457s Sys=0.000000s
|
||||
/gps/direction 0.309017 0.951057 0.000000
|
||||
/gps/pos/centre -38.515039 -25.338345 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1319,7 +1319,7 @@ Projection_index 2 Slice_index 0 Pixel_index 4
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000192s Sys=0.000000s
|
||||
User=0.000000s Real=0.000287s Sys=0.000000s
|
||||
/gps/direction -0.309017 0.951057 0.000000
|
||||
/gps/pos/centre 38.515039 -25.338345 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1349,7 +1349,7 @@ Projection_index 3 Slice_index 0 Pixel_index 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000188s Sys=0.000000s
|
||||
User=0.000000s Real=0.000142s Sys=0.000000s
|
||||
/gps/direction -0.309017 0.951057 0.000000
|
||||
/gps/pos/centre 24.819826 -29.788190 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1379,7 +1379,7 @@ Projection_index 3 Slice_index 0 Pixel_index 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.008859s Sys=0.000000s
|
||||
User=0.010000s Real=0.014141s Sys=0.000000s
|
||||
/gps/direction -0.309017 0.951057 0.000000
|
||||
/gps/pos/centre 11.124612 -34.238035 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1409,7 +1409,7 @@ Projection_index 3 Slice_index 0 Pixel_index 2
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.009838s Sys=0.000000s
|
||||
User=0.010000s Real=0.013377s Sys=0.000000s
|
||||
/gps/direction -0.309017 0.951057 0.000000
|
||||
/gps/pos/centre -2.570602 -38.687879 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1439,7 +1439,7 @@ Projection_index 3 Slice_index 0 Pixel_index 3
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.008988s Sys=0.000000s
|
||||
User=0.010000s Real=0.013318s Sys=0.000000s
|
||||
/gps/direction -0.309017 0.951057 0.000000
|
||||
/gps/pos/centre -16.265816 -43.137724 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1469,7 +1469,7 @@ Projection_index 3 Slice_index 0 Pixel_index 4
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000194s Sys=0.000000s
|
||||
User=0.000000s Real=0.000141s Sys=0.000000s
|
||||
/gps/direction -0.809017 0.587785 0.000000
|
||||
/gps/pos/centre 46.052827 2.139420 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1499,7 +1499,7 @@ Projection_index 4 Slice_index 0 Pixel_index 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000208s Sys=0.000000s
|
||||
User=0.000000s Real=0.000153s Sys=0.000000s
|
||||
/gps/direction -0.809017 0.587785 0.000000
|
||||
/gps/pos/centre 37.588719 -9.510424 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1529,7 +1529,7 @@ Projection_index 4 Slice_index 0 Pixel_index 1
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.007138s Sys=0.000000s
|
||||
User=0.010000s Real=0.009238s Sys=0.000000s
|
||||
/gps/direction -0.809017 0.587785 0.000000
|
||||
/gps/pos/centre 29.124612 -21.160269 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1559,7 +1559,7 @@ Projection_index 4 Slice_index 0 Pixel_index 2
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.012344s Sys=0.000000s
|
||||
User=0.010000s Real=0.015879s Sys=0.000000s
|
||||
/gps/direction -0.809017 0.587785 0.000000
|
||||
/gps/pos/centre 20.660504 -32.810114 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1589,7 +1589,7 @@ Projection_index 4 Slice_index 0 Pixel_index 3
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.010000s Real=0.007297s Sys=0.000000s
|
||||
User=0.010000s Real=0.007178s Sys=0.000000s
|
||||
/gps/direction -0.809017 0.587785 0.000000
|
||||
/gps/pos/centre 12.196397 -44.459959 0.000000 um
|
||||
/run/beamOn 20
|
||||
@@ -1619,7 +1619,7 @@ Projection_index 4 Slice_index 0 Pixel_index 4
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=0.000000s Real=0.000207s Sys=0.000000s
|
||||
User=0.000000s Real=0.000149s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
================== Deleting memory pools ===================
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -95,7 +95,7 @@ User Limits:
|
||||
|
||||
OpAbsorption is created
|
||||
OpBoundary is created
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1
|
||||
DMXPhysicsList::SetCuts:CutLength : 1 um
|
||||
/run/verbose 1
|
||||
/tracking/verbose 0
|
||||
@@ -622,7 +622,7 @@ muPairProd: for mu- XStype:1 SubType=4
|
||||
Enable DEBUG 0
|
||||
=======================================================
|
||||
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7/Inelastic
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1/Inelastic
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
@@ -800,7 +800,7 @@ WARNING: G4VisManager::IsValidView(): Attempt to draw when no graphics system
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=1.320000s Real=1.379114s Sys=0.060000s
|
||||
User=1.470000s Real=1.725469s Sys=0.060000s
|
||||
There are histograms that can be viewed with visualization:
|
||||
12 h1 histograms(s)
|
||||
2 h2 histograms(s)
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -95,7 +95,7 @@ User Limits:
|
||||
|
||||
OpAbsorption is created
|
||||
OpBoundary is created
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1
|
||||
DMXPhysicsList::SetCuts:CutLength : 1 um
|
||||
Verbosity Set to: 0
|
||||
=======================================================================
|
||||
@@ -595,7 +595,7 @@ muPairProd: for mu- XStype:1 SubType=4
|
||||
Enable DEBUG 0
|
||||
=======================================================
|
||||
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7/Inelastic
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron/n data directory is /cvmfs/geant4.cern.ch/share/data/G4NDL4.7.1/Inelastic
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -869,7 +869,7 @@ Setting was ignored.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 5000
|
||||
User=25.390000s Real=25.569772s Sys=0.010000s
|
||||
User=28.380000s Real=30.248397s Sys=0.020000s
|
||||
... write file : output.root - done
|
||||
... close file : output.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1282,7 +1282,7 @@ Setting was ignored.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.890000s Real=0.898432s Sys=0.000000s
|
||||
User=1.000000s Real=1.035226s Sys=0.000000s
|
||||
... write file : output.root - done
|
||||
... close file : output.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -2979,7 +2979,7 @@ Created histos
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.010000s Real=0.002909s Sys=0.000000s
|
||||
User=0.000000s Real=0.002953s Sys=0.000000s
|
||||
Going to save histograms
|
||||
... write file : xrayfluo.root - done
|
||||
... close file : xrayfluo.root - done
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -458,7 +458,7 @@ Opening output file xraytel ... done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.010000s Real=0.012601s Sys=0.000000s
|
||||
User=0.020000s Real=0.021804s Sys=0.000000s
|
||||
##########################################
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -989,4 +989,4 @@ There are histograms that can be viewed with visualization:
|
||||
EndOfRunAction and Reset() in your BeginOfRunAction.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
### deleting chargedFilter 0x18bbf40
|
||||
### deleting chargedFilter 0x1f5cf00
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -864,13 +864,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
R = 0.0290868
|
||||
SHIFT = 2.0878e-15
|
||||
VOV = 0.000156804
|
||||
FOM = 5139.03
|
||||
FOM = 4727.91
|
||||
THE LARGEST SCORE = 1.0851e-11 and it happened at 802th event
|
||||
Affected Mean = 5.06247e-12 and its ratio to original is 1.00114
|
||||
Affected VAR = 2.16452e-23 and its ratio to original is 1.00055
|
||||
Affected R = 0.029047 and its ratio to original is 0.998632
|
||||
Affected SHIFT = -2.10021e-15 and its ratio to original is -1.00595
|
||||
Affected FOM = 5139.03 and its ratio to original is 1
|
||||
Affected FOM = 4727.91 and its ratio to original is 1
|
||||
MEAN distribution is RANDOM
|
||||
r follows 1/std::sqrt(N)
|
||||
r is monotonically decrease
|
||||
@@ -884,22 +884,22 @@ This result passes 6 / 8 Convergence Test.
|
||||
|
||||
G4ConvergenceTester Output History of DOSE_TALLY
|
||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||
1 62 5.51905e-12 2.10641e-23 4.58956e-12 0.10477 0.00349254 396.095 -6.31268e-13 0.619048 0.00976801 0.00103449
|
||||
2 124 5.24443e-12 2.19131e-23 4.68114e-12 0.079836 0.00119948 682.142 -2.32561e-13 0.632 0.00465823 0.00166456
|
||||
3 187 5.19533e-12 2.17828e-23 4.6672e-12 0.0655187 0.000810324 1012.84 -1.46253e-13 0.638298 0.00301418 0.00125568
|
||||
4 249 5.24762e-12 2.17577e-23 4.66451e-12 0.0562178 0.000628242 1375.7 -1.88828e-13 0.64 0.00225 0.000897804
|
||||
5 312 5.05818e-12 2.13264e-23 4.61805e-12 0.0516051 0.000543135 1632.62 -1.61673e-14 0.632588 0.00185562 0.000798965
|
||||
6 374 4.94544e-12 2.13069e-23 4.61595e-12 0.0481992 0.000456237 1871.51 8.7396e-14 0.626667 0.00158865 0.000728316
|
||||
7 437 5.00127e-12 2.121e-23 4.60543e-12 0.044 0.000391269 2245.77 4.18245e-14 0.636986 0.00130112 0.000630458
|
||||
8 499 5.08953e-12 2.13598e-23 4.62167e-12 0.0406103 0.000326214 2636.34 -4.35334e-14 0.646 0.00109598 0.000549919
|
||||
9 562 5.16829e-12 2.14152e-23 4.62765e-12 0.0377363 0.000291332 3053.18 -1.0866e-13 0.653641 0.000941192 0.000480309
|
||||
10 624 5.18124e-12 2.14591e-23 4.63239e-12 0.0357628 0.000258743 3399.45 -1.18512e-13 0.6544 0.000844988 0.000431944
|
||||
11 687 5.17908e-12 2.13659e-23 4.62233e-12 0.0340262 0.000239275 3755.3 -1.19679e-13 0.655523 0.000763807 0.000392296
|
||||
12 749 5.17742e-12 2.13375e-23 4.61926e-12 0.0325783 0.00022047 4096.53 -1.13831e-13 0.658667 0.000690958 0.000368972
|
||||
13 812 5.18358e-12 2.12092e-23 4.60534e-12 0.0311592 0.000212735 4478.15 -1.23029e-13 0.661747 0.000628724 0.000340981
|
||||
14 874 5.13529e-12 2.13621e-23 4.62192e-12 0.0304266 0.000190414 4696.41 -7.65616e-14 0.651429 0.000611529 0.00031319
|
||||
15 937 5.10108e-12 2.15153e-23 4.63846e-12 0.02969 0.000170897 4932.31 -4.15281e-14 0.646055 0.000584067 0.000296492
|
||||
16 999 5.05669e-12 2.16333e-23 4.65116e-12 0.0290868 0.000156804 5139.03 2.0878e-15 0.638 0.000567398 0.000277796
|
||||
1 62 5.51905e-12 2.10641e-23 4.58956e-12 0.10477 0.00349254 379.591 -6.31268e-13 0.619048 0.00976801 0.00103449
|
||||
2 124 5.24443e-12 2.19131e-23 4.68114e-12 0.079836 0.00119948 627.571 -2.32561e-13 0.632 0.00465823 0.00166456
|
||||
3 187 5.19533e-12 2.17828e-23 4.6672e-12 0.0655187 0.000810324 931.816 -1.46253e-13 0.638298 0.00301418 0.00125568
|
||||
4 249 5.24762e-12 2.17577e-23 4.66451e-12 0.0562178 0.000628242 1265.64 -1.88828e-13 0.64 0.00225 0.000897804
|
||||
5 312 5.05818e-12 2.13264e-23 4.61805e-12 0.0516051 0.000543135 1502.01 -1.61673e-14 0.632588 0.00185562 0.000798965
|
||||
6 374 4.94544e-12 2.13069e-23 4.61595e-12 0.0481992 0.000456237 1721.79 8.7396e-14 0.626667 0.00158865 0.000728316
|
||||
7 437 5.00127e-12 2.121e-23 4.60543e-12 0.044 0.000391269 2066.11 4.18245e-14 0.636986 0.00130112 0.000630458
|
||||
8 499 5.08953e-12 2.13598e-23 4.62167e-12 0.0406103 0.000326214 2425.43 -4.35334e-14 0.646 0.00109598 0.000549919
|
||||
9 562 5.16829e-12 2.14152e-23 4.62765e-12 0.0377363 0.000291332 2808.93 -1.0866e-13 0.653641 0.000941192 0.000480309
|
||||
10 624 5.18124e-12 2.14591e-23 4.63239e-12 0.0357628 0.000258743 3127.5 -1.18512e-13 0.6544 0.000844988 0.000431944
|
||||
11 687 5.17908e-12 2.13659e-23 4.62233e-12 0.0340262 0.000239275 3454.87 -1.19679e-13 0.655523 0.000763807 0.000392296
|
||||
12 749 5.17742e-12 2.13375e-23 4.61926e-12 0.0325783 0.00022047 3768.8 -1.13831e-13 0.658667 0.000690958 0.000368972
|
||||
13 812 5.18358e-12 2.12092e-23 4.60534e-12 0.0311592 0.000212735 4119.89 -1.23029e-13 0.661747 0.000628724 0.000340981
|
||||
14 874 5.13529e-12 2.13621e-23 4.62192e-12 0.0304266 0.000190414 4320.69 -7.65616e-14 0.651429 0.000611529 0.00031319
|
||||
15 937 5.10108e-12 2.15153e-23 4.63846e-12 0.02969 0.000170897 4537.73 -4.15281e-14 0.646055 0.000584067 0.000296492
|
||||
16 999 5.05669e-12 2.16333e-23 4.65116e-12 0.0290868 0.000156804 4727.91 2.0878e-15 0.638 0.000567398 0.000277796
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
|
||||
@@ -44,7 +44,7 @@ importance of the current volumes.
|
||||
\subsection biasing_sub_14 Further information:
|
||||
|
||||
Short description of importance sampling and scoring:
|
||||
http://cern.ch/geant4/working_groups/geometry/biasing/Sampling.html
|
||||
https://geant4.web.cern.ch/collaboration/working_groups/geometryTransport/#development-documents (Under the Event Biasing & Tallies Section)
|
||||
|
||||
\subsection biasing_sub_15 Example B01
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -870,7 +870,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.140000s Real=0.136254s Sys=0.000000s
|
||||
User=0.130000s Real=0.138565s Sys=0.000000s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -930,7 +930,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.160000s Real=0.164234s Sys=0.000000s
|
||||
User=0.170000s Real=0.187149s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -1247,7 +1247,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.002581s Sys=0.000000s
|
||||
User=0.000000s Real=0.002714s Sys=0.000000s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -2333,7 +2333,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.004231s Sys=0.000000s
|
||||
User=0.010000s Real=0.010265s Sys=0.000000s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -3746,7 +3746,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.005533s Sys=0.000000s
|
||||
User=0.000000s Real=0.015940s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -4,6 +4,10 @@ See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
|
||||
which **must** added in reverse chronological order (newest at the top). It must **not**
|
||||
be used as a substitute for writing good git commit messages!
|
||||
|
||||
## 2024-03-20 L.G. Sarmiento (exbiasing-V11-01-01)
|
||||
- Fixed broken link from "Further information:"
|
||||
- updated from old `http://cern.ch/geant4/working_groups` site.
|
||||
Triggerred by [user forum](https://geant4-forum.web.cern.ch/t/help-me-find-information-on-biasing/11922/5)
|
||||
|
||||
## 2023-11-15 I. Hrivnacova (exbiasing-V11-01-00)
|
||||
- Updated vis.mac macros:
|
||||
|
||||
@@ -40,7 +40,7 @@ importance of the current volumes.
|
||||
Further information:
|
||||
--------------------
|
||||
Short description of importance sampling and scoring:
|
||||
http://cern.ch/geant4/working_groups/geometry/biasing/Sampling.html
|
||||
https://geant4.web.cern.ch/collaboration/working_groups/geometryTransport/#development-documents (Under the Event Biasing & Tallies Section)
|
||||
|
||||
Example B01
|
||||
===========
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -419,7 +419,7 @@ nb event 195000
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 200000
|
||||
User=69.390000s Real=87.557870s Sys=0.100000s
|
||||
User=75.730000s Real=95.126132s Sys=0.110000s
|
||||
Results of reverse/adjoint simulation!
|
||||
normalised edep [MeV] = 0.00163827
|
||||
error[MeV] = 1.70862e-05
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -120,7 +120,7 @@ See commands in /vis/modeling/trajectories/ for other options.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.000000s Real=0.000346s Sys=0.000000s
|
||||
User=0.000000s Real=0.000295s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -156,7 +156,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000345s Sys=0.000000s
|
||||
User=0.000000s Real=0.000407s Sys=0.000000s
|
||||
|
||||
Material: Water density: 1.000 g/cm3 RadL: 36.092 cm Nucl.Int.Length: 75.356 cm
|
||||
Imean: 78.000 eV temperature: 293.15 K pressure: 1.00 atm
|
||||
@@ -225,7 +225,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000180s Sys=0.000000s
|
||||
User=0.000000s Real=0.000200s Sys=0.000000s
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 9 of which, static: 0
|
||||
Dynamic pools deleted: 9 / Total memory freed: 0.012 MB
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -630,7 +630,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=1.180000s Real=1.274505s Sys=0.000000s
|
||||
User=1.270000s Real=1.338860s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -699,7 +699,7 @@ N=17 V[N]={1812789365238166452, 2069525414984418818, 563533851721436893, 5846823
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=0.060000s Real=0.065395s Sys=0.000000s
|
||||
User=0.080000s Real=0.085164s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -215,10 +215,10 @@ Lorentz Factor XTR photon number
|
||||
8.085e+04 3.154
|
||||
9.283e+04 3.154
|
||||
|
||||
total time for build X-ray TR energy loss tables = 0.36 s
|
||||
total time for build X-ray TR energy loss tables = 0.43 s
|
||||
Build angle for energy distribution according the current radiator
|
||||
|
||||
total time for build X-ray TR angle for energy loss tables = 1.41 s
|
||||
total time for build X-ray TR angle for energy loss tables = 1.43 s
|
||||
|
||||
msc: for e+ SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
@@ -305,10 +305,10 @@ Lorentz Factor XTR photon number
|
||||
8.085e+04 3.154
|
||||
9.283e+04 3.154
|
||||
|
||||
total time for build X-ray TR energy loss tables = 0.36 s
|
||||
total time for build X-ray TR energy loss tables = 0.38 s
|
||||
Build angle for energy distribution according the current radiator
|
||||
|
||||
total time for build X-ray TR angle for energy loss tables = 1.41 s
|
||||
total time for build X-ray TR angle for energy loss tables = 1.47 s
|
||||
|
||||
msc: for proton SubType= 10
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
@@ -632,7 +632,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.220000s Real=0.227575s Sys=0.000000s
|
||||
User=0.250000s Real=0.304928s Sys=0.000000s
|
||||
================== run summary =====================
|
||||
End of Run TotNbofEvents = 1000
|
||||
Mean energy deposit in absorber = 0.0479535 +-0.0189569 MeV
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -546,7 +546,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20000
|
||||
User=0.780000s Real=0.785315s Sys=0.000000s
|
||||
User=0.770000s Real=0.824748s Sys=0.000000s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -542,7 +542,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.900000s Real=0.907979s Sys=0.000000s
|
||||
User=0.940000s Real=0.945249s Sys=0.000000s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -183,7 +183,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.020000s Real=2.053627s Sys=0.000000s
|
||||
User=2.450000s Real=2.456338s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -250,7 +250,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=2.280000s Real=2.404653s Sys=0.010000s
|
||||
User=2.910000s Real=3.010912s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -183,7 +183,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=3.310000s Real=3.337507s Sys=0.000000s
|
||||
User=3.870000s Real=3.940988s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -253,7 +253,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=3.440000s Real=3.457339s Sys=0.000000s
|
||||
User=3.860000s Real=4.025364s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -563,7 +563,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.050000s Real=0.049871s Sys=0.000000s
|
||||
User=0.050000s Real=0.058249s Sys=0.000000s
|
||||
|
||||
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
|
||||
|
||||
@@ -635,7 +635,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.070000s Real=0.065164s Sys=0.000000s
|
||||
User=0.080000s Real=0.104763s Sys=0.000000s
|
||||
|
||||
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -334,7 +334,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.210000s Real=0.208372s Sys=0.000000s
|
||||
User=0.240000s Real=0.244143s Sys=0.010000s
|
||||
Summary for synchrotron radiation :
|
||||
Number of photons = 64566
|
||||
Emean = 20.42 +/- 0.1465 keV
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -629,7 +629,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=1.230000s Real=1.237276s Sys=0.000000s
|
||||
User=1.390000s Real=1.525925s Sys=0.010000s
|
||||
|
||||
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
@@ -685,7 +685,7 @@ N=17 V[N]={432129628493770164, 1814378723063674975, 1209460836733901477, 4037844
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=1.170000s Real=1.197526s Sys=0.000000s
|
||||
User=1.310000s Real=1.488824s Sys=0.010000s
|
||||
|
||||
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
@@ -740,7 +740,7 @@ N=17 V[N]={666189274156109320, 913680459780043419, 495444254095043894, 163299520
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=1.080000s Real=1.091684s Sys=0.000000s
|
||||
User=1.330000s Real=1.406382s Sys=0.010000s
|
||||
|
||||
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -215,7 +215,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=0.610000s Real=0.611502s Sys=0.000000s
|
||||
User=0.820000s Real=0.858033s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -599,7 +599,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.210000s Real=2.395695s Sys=0.000000s
|
||||
User=2.490000s Real=2.560568s Sys=0.000000s
|
||||
LOGITUDINAL PROFILE CUMULATIVE LOGITUDINAL PROFILE
|
||||
|
||||
bin Mean rms bin Mean rms
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
|
||||
@@ -11,7 +11,7 @@ Environment variable "G4FORCE_RUN_MANAGER_TYPE" enabled with value == Serial. Fo
|
||||
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-11-02-patch-01 (16-February-2024)
|
||||
Geant4 version Name: geant4-11-02-patch-02 (21-June-2024)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -547,7 +547,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=1.410000s Real=1.478209s Sys=0.000000s
|
||||
User=1.500000s Real=1.702545s Sys=0.000000s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
@@ -622,7 +622,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=1.180000s Real=1.190157s Sys=0.000000s
|
||||
User=1.210000s Real=1.234455s Sys=0.000000s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user