Import Geant4 10.6.0.beta source tree
This commit is contained in:
+2
-2
@@ -36,8 +36,8 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
|
||||
# the same form.
|
||||
project(Geant4)
|
||||
set(${PROJECT_NAME}_VERSION_MAJOR 10)
|
||||
set(${PROJECT_NAME}_VERSION_MINOR 5)
|
||||
set(${PROJECT_NAME}_VERSION_PATCH 1)
|
||||
set(${PROJECT_NAME}_VERSION_MINOR 6)
|
||||
set(${PROJECT_NAME}_VERSION_PATCH 0)
|
||||
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,685 @@
|
||||
|
||||
Geant4 10.6-beta-01 Release Notes
|
||||
---------------------------------
|
||||
|
||||
28 June 2019
|
||||
|
||||
Migration Notes & Main New Features
|
||||
-----------------------------------
|
||||
|
||||
o Promoting pre-processor flags to fixed #defines in a new header
|
||||
generated by CMake, reducing flags added to CMAKE_CXX_FLAGS.
|
||||
o Reviewed G4PhysicsVector adding an additional Value() method option to
|
||||
propagate down the known log-energy value. This helps avoiding log() calls
|
||||
when log-vector is used.
|
||||
o Enabled VecGeom wrapper for G4GenericPolycone. Requiring VecGeom-1.1.2.
|
||||
o Added support for writing out assemblies envelopes in GDML.
|
||||
o Added functionality in G4DynamicParticle to provide log-kinetic energy
|
||||
value, computed only on demand if its stored value is not up-to-date with
|
||||
the kinetic energy. Reviewed EM processes to select the target atom by
|
||||
making use of the already known log-energy value in the log-vector access.
|
||||
Providing measurable CPU speedup.
|
||||
o Optimised step limitation in G4UrbanMscModel and modified lateral
|
||||
displacement sampling.
|
||||
o New helper class G4NIELCalculator, to compute NIEL in user stepping
|
||||
action or sensitive detector code.
|
||||
o Cross-sections: high energy extension of the neutrino-electron cross
|
||||
sections, for both charged-current and neutral-current interactions
|
||||
(M_W and M_Z propagator factors and Glashow resonance), for all neutrino
|
||||
and anti-neutrino flavours.
|
||||
o Extended hadron-nucleon cross-sections to charmed and bottom hadrons
|
||||
(mesons and baryons).
|
||||
o Use Glauber-Gribov cross-section for hyperons in hadron elastic physics.
|
||||
o Added handling of UI thermalization model control in DNA physics lists.
|
||||
o Removed tracking cut in hadron-elastic and use numerically safer
|
||||
computation for very low-energy projectile.
|
||||
o Use FTFP also for the annihilation at rest of neutral anti-hadrons.
|
||||
o Added spontaneous fission channel in radioactive-decay.
|
||||
o Enhanced UI commands to now return proper return code when they are not
|
||||
successful.
|
||||
o Added new gamma-nuclear model based on pre-compound de-excitation
|
||||
o New set of UI commands and improvements in visualization.
|
||||
Added new UI commands for view interpolation and centering.
|
||||
o Introducing cloud drawing style in visualization, using kernel algorithms
|
||||
for generating points on the surface of volumes, by-passing polyhedral
|
||||
representations; the solid is being visualised by a polymarker of dots.
|
||||
o Porting of code on gcc-9.1 series.
|
||||
o Updated to CLHEP version 2.4.1.2.
|
||||
o New data sets G4PARTICLEXS-2.0.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o Tested platforms:
|
||||
+ Linux, gcc-4.8.5.
|
||||
Tested on 64 bit architectures (Intel or AMD) with CERN CentOS
|
||||
Linux 7 (CC7) (based on CentOS Linux 7).
|
||||
Versions of Geant4 have also been compiled successfully on other
|
||||
Linux distributions, Ubuntu, Debian, Suse or other RedHat systems.
|
||||
+ MacOSX 10.14, clang-6.0 (Apple LLVM/Clang-10.0.1)
|
||||
+ Windows/10 with Visual C++ 14.11 (Visual Studio 2017)
|
||||
|
||||
o More verified configurations:
|
||||
+ Linux, gcc-4.9.3/5.4.0/6.3.0/7.3.0/8.2.0/9.1.0, clang-5.0/7.0.
|
||||
+ Linux, Intel-icc 19.0.
|
||||
+ MacOSX 10.12/13 with clang-3.9/4.0
|
||||
|
||||
o External dependencies
|
||||
+ CLHEP-2.4.1.2, suggested for external installation of the CLHEP library.
|
||||
+ VecGeom-1.1.2, for optional use of the VecGeom geometry primitives.
|
||||
|
||||
o New data sets:
|
||||
+ G4PARTICLEXS-2.0.
|
||||
|
||||
Please refer to the Geant4 User Documentation:
|
||||
http://cern.ch/geant4/support/userdocuments.shtml
|
||||
for further information about using Geant4.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
List of features and fixes included in this Beta release since 10.5.p01:
|
||||
|
||||
o Configuration:
|
||||
-------------
|
||||
+ CMake:
|
||||
o Removed obsolete GEANT4_BUILD_MUONIC_ATOMS_IN_USE option
|
||||
and associated configuration/compiler flags.
|
||||
o Promoting following pre-processor flags to fixed #defines in a new
|
||||
header generated by CMake using the chosen build options to
|
||||
#define/#undef as appropriate: G4USE_STD11, G4MULTITHREADED,
|
||||
G4_STORE_TRAJECTORY, G4VERBOSE, GEANT4_USE_TIMEMORY.
|
||||
Promoted VecGeom pre-processor flags to fixed #defines as well.
|
||||
Ensuring the header is included by primary "global" category headers
|
||||
so that all categories will pick up the changes transparently.
|
||||
Removed use of add_definitions of CMAKE_CXX_FLAGS to set these flags
|
||||
in Geant4 and client scripts.
|
||||
o Removed G4FPE_DEBUG from build mode "Debug". Added new build mode
|
||||
"Debug_FPE" same as "Debug" mode but appending -DG4FPE_DEBUG.
|
||||
o Updated version of data sets: G4PARTICLEXS-2.0.
|
||||
Updated tags for 10.6-beta.
|
||||
+ GNUMake:
|
||||
o Hard-code Qt version through QT_VERSION flag.
|
||||
Corrected Qt5 setup for Linux-g++ and Linux-clang.
|
||||
o architecture.gmk: added -DG4GMAKE to CPPFLAGS to identify enabling
|
||||
of GNUmake builds.
|
||||
|
||||
o Analysis:
|
||||
--------
|
||||
+ Fixed CSV, XML ntuple file names.
|
||||
|
||||
o Digits & Hits:
|
||||
-------------
|
||||
+ G4PSSphereSurfaceFlux: fixed track weight.
|
||||
|
||||
o Event:
|
||||
-----
|
||||
+ G4SPSPosDistribution: added accessor methods for volume confinement
|
||||
Addressing GitHub PR #7.
|
||||
|
||||
o Externals:
|
||||
---------
|
||||
+ Updated CLHEP module to version 2.4.1.2:
|
||||
o MixMaxRng: throw if seed is zero. Use throw instead of exit()
|
||||
elsewhere.
|
||||
Defaulted operator=() also for BasicVector3D andPlan3D; fixing
|
||||
deprecation warnings on gcc-9.1.
|
||||
Fixed shadowing compilation warnings in Transform3D as reported
|
||||
on gcc-9.1.
|
||||
|
||||
o Geometry:
|
||||
--------
|
||||
+ divisions:
|
||||
o Return correct value for multiplicity in G4PVDivision and
|
||||
G4ReplicatedSlice. Addressing problem report #2168.
|
||||
+ magneticfield:
|
||||
o G4ChordFinder: changed to use concrete type of Stepper as template
|
||||
parameter.
|
||||
o G4InterpolationDriver: new revision with multiple steppers for
|
||||
each substep. Fixed memory churn; use FSAL property of
|
||||
G4DormandPrince745. Change from G4VERBOSE to G4FIELD_DEBUG for
|
||||
debug checks.
|
||||
o Removed division in G4DormandPrince745::Interpolate4thOrder().
|
||||
o Reset step estimate in G4MagInt_Driver only at the beginning of a
|
||||
track.
|
||||
+ management:
|
||||
o G4GeomSplitter: re-enabled use or realloc()/free() and memcpy(), after
|
||||
adapting G4VPhysicalVolume MT splitted data to adopt only trivial types
|
||||
for allocation. Re-establishing original performance in initialisation
|
||||
of the geometry in MT mode.
|
||||
o Properly initialise splitted data in G4VPhysicalVolume to zero.
|
||||
o Replaced deprecated std::binary_function calls with lambdas in
|
||||
G4SmartVoxelStat and G4GeometryManager. Addressing GitHub PR#8.
|
||||
o Defined move constructor and move assignment operator for
|
||||
G4AffineTransform.
|
||||
o Use header-based #define/undef symbols to configure VecGeom
|
||||
replacements; added new configuration headers G4GeomConfig.hh and
|
||||
G4GeomTypes.hh.
|
||||
o Fixed minor Coverity defects.
|
||||
+ navigation:
|
||||
o Improved information in G4Exceptions for particles stuck due to
|
||||
multiple zero steps in G4Navigator.
|
||||
+ solids/CSG:
|
||||
o G4Tubs: Fixed normal from DistanceToOut() to be unit vector, for
|
||||
abnormal exit points. Added inverse-Rmax and -Rmin as data members.
|
||||
o Re-use pre-calculated values instead of using std::cos(), std::sin()
|
||||
in G4Tubs, G4Cons, G4CutTubs and G4Sphere.
|
||||
o Added inclusion of new G4GeomTypes.hh header to those headers allowing
|
||||
VecGeom replacement.
|
||||
+ solids/specific:
|
||||
o Enabled VecGeom wrapper for G4GenericPolycone. Requiring VecGeom-1.1.2.
|
||||
o Modified G4PolyconeSide and G4PolyhedraSide to use only trivial types
|
||||
for MT splitted data in G4PlSideData and G4PhSideData respectively.
|
||||
o Protected check in G4TwistedTubsSide::DistanceToPlane() within debug
|
||||
flag.
|
||||
o Defined move constructor and move assignment operator for
|
||||
G4TriangularFacet.
|
||||
o Use GetVertices() instead of GetParametersList() in the wrapper G4UTet.
|
||||
o Added inclusion of new G4GeomTypes.hh header to those headers allowing
|
||||
VecGeom replacement.
|
||||
o Fixed minor Coverity defects.
|
||||
|
||||
o Global:
|
||||
------
|
||||
+ G4PhysicsVector: added additional Value() method option to propagate down
|
||||
the known log-energy value (can avoid the log call in case of
|
||||
log-vector).
|
||||
+ Added new LOG_EKIN_MIN constant as value taken in case of zero kin-energy
|
||||
in templates.hh.
|
||||
+ Defined default move constructor and move assignment operator for
|
||||
G4String and G4DataVector.
|
||||
+ Added G4GlobalConfig.hh generated header to hold global, always required,
|
||||
pre-processor symbols instead of relying on -D flags for: G4USE_STD11,
|
||||
G4MULTITHREADED, G4_STORE_TRAJECTORY, G4VERBOSE and GEANT4_USE_TIMEMORY.
|
||||
Added inclusion of G4GlobalConfig.hh in G4Types.hh, tls.hh and
|
||||
G4TiMemory.hh so that global and other categories pick up the definitions
|
||||
transparently.
|
||||
+ Updated other headers/srcs to include G4Types/G4Threading if they use
|
||||
G4MULTITHREADED.
|
||||
+ Changed date for release 10.6-beta.
|
||||
|
||||
o Graphics Representations:
|
||||
------------------------
|
||||
+ G4VisAttributes: added 'cloud' and methods to force, SetForceCloud(),
|
||||
and SetForceNumberOfCloudPoints().
|
||||
+ G4VisExtent: added method Transform(const G4Transform3D&).
|
||||
+ Removed Get/SetDrawOverlapsFlag() from G4VVisManager.
|
||||
|
||||
o Intercoms
|
||||
---------
|
||||
+ The following UI commands now return proper return code when they are
|
||||
not successful: /control/execute, loop, foreach, shell, getEnv.
|
||||
Addressing problem report #2159.
|
||||
|
||||
o Particles:
|
||||
---------
|
||||
+ G4DynamicParticle: added functionality to provide log-kinetic energy
|
||||
value, computed only on demand if its stored value is not up-to-date
|
||||
with the kinetic energy.
|
||||
Code cleanup: moved data members to be private; aligned class members
|
||||
3-vectors, doubles, integer; added initialisation of PDG code and
|
||||
polarization in all constructors; added method SetPolarisation(); use
|
||||
CLHEP electron mass; removed unused forward declarations and headers.
|
||||
|
||||
o Persistency:
|
||||
-----------
|
||||
+ GDML:
|
||||
o Added support for writing out assemblies envelopes.
|
||||
o Improved reading of optical properties reader, by allowing reuse of
|
||||
the same G4MaterialPropertyVector object for identical properties.
|
||||
|
||||
o Physics Lists:
|
||||
-------------
|
||||
+ Constructors:
|
||||
o electromagnetic:
|
||||
- Added handling of UI thermalization model control in
|
||||
G4EmDNAPhysics_option1,2,3,4,5,6,7,8.
|
||||
- G4EmDNAChemistry constructors: updated to follow emdna changes.
|
||||
- Added sub-excitation processes in G4EmDNAPhysics_option8.
|
||||
- G4EmLivermorePhysics, G4EmPenelopePhysics,
|
||||
G4EmStandardPhysics_option4, G4EmStandardPhysics_option3: define
|
||||
upper energy limit for nuclear stopping via EM parameters.
|
||||
In all DNA constructors, added ActivateDNA() flag to EM parameters.
|
||||
- Added G4EmDNAChemistry_option2 constructor.
|
||||
o gamma_lepto_nuclear:
|
||||
- G4EmExtraPhysics: added muon-neutrino nucleus interactions; removed
|
||||
extra static members.
|
||||
o hadron_inelastic:
|
||||
- G4HadronElasticPhysics: use Glauber-Gribov cross-section for
|
||||
hyperons.
|
||||
- G4HadronDElasticPhysics, G4HadronDElasticPhysics: use Glauber-Gribov
|
||||
cross-section for hyperons, d, t, He3, He4.
|
||||
- G4HadronElasticPhysicsXS, G4IonElasticPhysics: removed commented
|
||||
code.
|
||||
o stopping:
|
||||
- Use FTFP also for the annihilation at rest of neutral anti-hadrons:
|
||||
anti-neutron, anti-lambda, anti-sigma0 anti-xi0. This extension is
|
||||
for completeness and practical convenience, although physically
|
||||
neutral hadrons should never be completely at rest.
|
||||
+ lists:
|
||||
o Replaced G4RadioactiveDecay with G4RadioactiveDecayBase in LBE list.
|
||||
|
||||
|
||||
o Electromagnetic Processes:
|
||||
-------------------------
|
||||
+ DNA:
|
||||
o Added G4DNAMolecule class.
|
||||
o Moved checking of position of track status in
|
||||
G4ITStepProcessor::SetInitialStep().
|
||||
o Chemistry: clarified pointer ownership in G4DNAChemistryManager.
|
||||
o Fixed reaction site issue.
|
||||
o Fixed compilation warnings on gcc-9.1. Code cleanup.
|
||||
+ High Energy:
|
||||
o G4GammaConversionToMuons, G4AnnihiToMuPair: added
|
||||
registration/de-registration mechanism.
|
||||
+ Standard:
|
||||
o In most models, make use of the new target atom selector that can
|
||||
reuse the already known log-energy value.
|
||||
o G4UrbanMscModel, G4WentzelVIModel, G4GoudsmitSaundersonMscModel:
|
||||
make use of the new base class methods in utils module, utilising
|
||||
the already known log-energy value, in case of dEdx, range and
|
||||
transport mean free path log-vector table accesses.
|
||||
o G4UrbanMscModel: optimised step limitation for 'UseSafetyPlus'
|
||||
and 'UseDistanceToBoundary'. Minor clean-up of step limit method.
|
||||
Modified lateral displacement sampling.
|
||||
o G4ScreeningMottCrossSection, G4KleinNishinaModel, G4SeltzerBergerModel,
|
||||
G4eSingleCoulombScatteringModel: use element->GetZasInt() interface
|
||||
in order to reduce number of double->int conversions at run time.
|
||||
o G4BetheHeitler5DModel: set x,y components in BoostG4LorentzVector
|
||||
function. Replaced local boost and rotation functions with CLHEP
|
||||
boost, boostZ, transform. One random generator flatArray() call in
|
||||
sampling loop.
|
||||
o G4eCoulombScatteringModel, G4WentzelOKandVIxSection: cleanup debug
|
||||
cout and initialisation.
|
||||
+ Utils:
|
||||
o G4EmElementSelector, G4VEmModel: added extra method to select the
|
||||
target atom by making use of the already known log-energy value in
|
||||
the log-vector access.
|
||||
o G4VEmProcess, G4VEnergyLossProcess and G4VMscModel: added extra
|
||||
methods to access log-vector tables by propagating the already
|
||||
known log-energy value.
|
||||
o G4LossTableManager: added Register/DeRegister() methods and vector
|
||||
of pointers for G4VProcess classes for X-ray and optical processes.
|
||||
o G4EmParameters: added polarisation flag; moved implementation of
|
||||
splitting parameters to source and added check on lock; added
|
||||
9.99 MeV low limit in the SetMaxEnergy() method, added thread lock
|
||||
to Dump() method.
|
||||
o G4EmParameters, G4EmParametersMessenger: splitted classes keeping the
|
||||
user interface unchanged.
|
||||
Added new classes for complex EM parameters (G4EmExtraParameters
|
||||
G4EmExtraParametersMessenger) and new classes for low-energy and
|
||||
DNA parameters (G4EmLowEParameters, G4EmLowEParametersMessenger).
|
||||
o New helper class G4NIELCalculator, to compute NIEL in user stepping
|
||||
action or sensitive detector code. User should provide G4VEmModel
|
||||
objects, which has NIEL model.
|
||||
o G4LossTableManager: added access and initialisation of
|
||||
G4NIELCalculator.
|
||||
+ Xrays:
|
||||
o G4Cerenkov, G4Scintillation, G4SynchrotronRadiation,
|
||||
G4VTransitionRadiation: added registration/de-registration mechanism.
|
||||
|
||||
o Generic Processes:
|
||||
-----------------
|
||||
+ Cuts:
|
||||
o Added protection against premature call to G4ProductionCutsTable.
|
||||
+ Optical:
|
||||
o Code cleanup and formatting, added C++11 keywords.
|
||||
|
||||
o Hadronic Processes:
|
||||
------------------
|
||||
+ Improved G4HadronicException: aligned behavior with std::exception:
|
||||
what() returns the exception explanation; move the member definition
|
||||
to source file. Added some consts qualifiers.
|
||||
+ cross_sections
|
||||
o G4NeutrinoElectronNcXsc, G4NeutrinoElectronTotXsc: high energy
|
||||
extension of neutrino-electron cross sections, for both
|
||||
charged-current and neutral-current interactions (M_W and M_Z
|
||||
propagator factors and Glashow resonance), for all neutrino and
|
||||
anti-neutrino flavours.
|
||||
o G4MuNeutrinoNucleusTotXsc: high energy extension of cc/nc xsc (M_W and
|
||||
M_Z propagator factors) cc/tot ratio.
|
||||
o G4NeutronElasticXS, G4NeutronInelasticXS, G4NeutronCaptureXS: utilise
|
||||
the new Value() method from G4PhysicsVector, that can make use of the
|
||||
already known value of the log-kinetic energy in the cross-sections
|
||||
table log-vector accesses.
|
||||
o G4NeutronCaptureXS, G4NeutronElasticXS, G4NeutronInelasticXS
|
||||
G4ParticleInelasticXS: code clean-up, assuming usage of the new
|
||||
data-set G4PARTICLEXSDATA2.0; removed unused variables and methods;
|
||||
use only methods with logarithm of energy.
|
||||
o G4ParticleInelasticXS: set verbosity to 0.
|
||||
o Corrections in G4MuNeutrinoNucleusTotXsc.cc: new name, default
|
||||
'fCcTotRatio' and high energy parameter 'bb'.
|
||||
o G4ComponentAntiNuclNuclearXS: code clean-up and corrected the
|
||||
description.
|
||||
o G4ComponentGGHadronNucleusXsc, G4ComponentGGNuclNuclXsc: removed
|
||||
remaining unused obsolete methods and members; use G4NuclearRadii
|
||||
utility to compute nuclear radius.
|
||||
o G4ComponentGGHadronNucleusXsc: fixed correction factor for kaons.
|
||||
o G4BGGNucleonElasticXS: reduce low-energy limit from 1 to 0.75 MeV.
|
||||
o G4BGGPionElasticXS, G4BGGPionInelasticXS: fixed initialisation for
|
||||
pi+- by usage of separate vectors of correction factors; fixed
|
||||
computation for Hydrogen target.
|
||||
o G4BGGNucleonElasticXS, G4BGGNucleonInelasticXS: fixed computation
|
||||
for Hydrogen target.
|
||||
o G4HadronNucleonXsc: added extra method for hyperon cross sections.
|
||||
Extended to charmed and bottom hadrons (mesons and baryons).
|
||||
Improved K+p parameterisations (NS and VG); removed obsolete methods.
|
||||
o G4MuNeutrinoNucleusTotXsc: added new method GetElementCrossSection().
|
||||
o G4ParticleInelasticXS, G4BGGPionElasticXS, G4BGGPionInelasticXS,
|
||||
G4BGGNucleonElasticXS, G4BGGNucleonInelasticXS,
|
||||
G4NucleonNuclearCrossSection, G4ComponentBarNucleonNucleusXsc,
|
||||
G4UPiNuclearCrossSection: share internal data vectors between threads;
|
||||
initialise data once; removed unused parameters; code clean-up;
|
||||
use C++11 keywords.
|
||||
o G4VCrossSectionDataSet, G4CrossSectionDataStore,
|
||||
G4IonProtonCrossSection: use only methods with logarithm of energy.
|
||||
o G4HadronicException is substituted by G4Exception in all classes with
|
||||
exceptions.
|
||||
+ management
|
||||
o G4HadronicInelasticProcess: removed default GHEISHA cross-section.
|
||||
o G4EnergyRangeManager: fixed bug regarding the kinetic energy per
|
||||
nucleon in the case of anti-nuclei (the bug was of little harm as one
|
||||
single model, FTFP, is used for all energies in the case of anti-nuclei
|
||||
projectiles).
|
||||
o G4HadronicProcess: removed try/catch pattern from computation of mean
|
||||
free path, removed final state random rotation.
|
||||
+ models/cascade
|
||||
o Fixed case for potential FPEs due to un-protected sqrt() in
|
||||
G4NucleiModel::boundaryTransition().
|
||||
+ models/coherent_elastic
|
||||
o G4HadronElastic: removed tracking cut and use numerically safer
|
||||
computation for very low-energy projectile. Improved description and
|
||||
comments; added C++11 keywords.
|
||||
Numerically safer treatment of the very rare cases in which cos(theta)
|
||||
is either greater than 1.0 or smaller than -1.0 (in the first case, we
|
||||
assume no interaction and the projectile keeps going unchanged; in the
|
||||
second case, we assume that the projectile stops and its kinetic energy
|
||||
is deposited locally, neglecting the recoil of the target nucleus).
|
||||
Added protected variable pLocalTmax; added protection for zero energy
|
||||
primary.
|
||||
o Added new model class G4LowEHadronElastic.
|
||||
o G4ChargeExchange: updated interfaces; added protection for zero energy
|
||||
primary.
|
||||
o G4ElasticHadrNucleusHE: make all data shared between threads.
|
||||
o G4AntiNuclElastic: do not compute trigonometric functions, which are
|
||||
not used.
|
||||
o G4ElasticHadrNucleusHE, G4LEpp, G4LEnp: code clean-up.
|
||||
+ models/de_excitation
|
||||
o G4VEmissionProbability: use simple rejection.
|
||||
o G4FermiFragment: fixed Coulomb barrier correction computation.
|
||||
o Replaced deprecated std::binary_function calls with lambdas in
|
||||
G4StatMFMicroCanonical and G4StatMFChannel. Addressing GitHub PR#8.
|
||||
o G4Evaporation, G4ExcitationHandler, G4LevelReader, G4GammaTransition,
|
||||
G4VEmissionProbability, G4PhotonEvaporation, G4PolarizationTransition:
|
||||
changed scheme of verbosity - 0- silence, 1- dump of parameters at
|
||||
initialisation, 2- debug printout, 3- very detailed debug printout.
|
||||
Addressing problem report #2098.
|
||||
o G4CoulombBarrier: use G4NuclearRadii utility to compute nuclear radius.
|
||||
o G4EvaporationChannel, G4EvaporationProbability, G4VEmissionProbability,
|
||||
G4FermiDecayProbability: simplified algorithm to sample kinetic energy
|
||||
of a fragment; minor code clean-up, removed commented lines.
|
||||
+ models/lend
|
||||
o G4LENDCapture::ApplyYourself: fixed memory leak of 'products_from_PE',
|
||||
reported by Coverity.
|
||||
o Fixed compilation warnings on gcc-9.1 for missing assignment operator.
|
||||
+ models/lepto_nuclear
|
||||
o Neutrino-nucleus models and precalculated distribuitons as from
|
||||
new data-set G4PARTICLEXS-2.0.
|
||||
o Fixed in G4NuMuNucelusCc(Nc)Model for kinematics of quasi-elastic
|
||||
neutrino scattering.
|
||||
+ models/management
|
||||
o G4HadronicInteractionRegistry: fixed typo in comments, removed unused
|
||||
Boolean flag.
|
||||
+ models/particle_hp
|
||||
o Fix to deal with incorrect excitation energy when charged particles are
|
||||
emitted during neutron reaction. In G4ParticleHPInelasticCompFS,
|
||||
changed method CompositeApply(), for very small excitation, change
|
||||
level index from -1 to 0 only if incident and outgoing particles are
|
||||
the same. Addressing problem report #1838.
|
||||
o Fix to deal with un-incremented index of photons in
|
||||
G4ParticleHPPhotonDist::GetPhotons(). Also cleaned up dead code
|
||||
in that class. Addressing problem report #2167.
|
||||
o G4ParticleHPChannelList: fixed bug in the momentum change (it has to
|
||||
be a normalized 3-vector, but it was not) in the case where NeutronHP
|
||||
could not find a proper reaction channel.
|
||||
o G4ParticleHPInelasticCompFS: fix to avoid arbitrary number of target
|
||||
nuclei being generated and slowing down multi-threaded operation.
|
||||
Addressing problem report #2166.
|
||||
+ models/pre_equilibrium
|
||||
o Added new model based on pre-compound de-excitation
|
||||
G4LowEGammaNuclearModel.
|
||||
o G4PreCompoundEmission, G4PreCompoundFragment, G4VPreCompoundFragment:
|
||||
setup minimum number of points for probability integration to 4;
|
||||
minor code clean-up.
|
||||
+ models/radioactive_decay
|
||||
o Added spontaneous fission channel: added new class G4SFDecay to handle
|
||||
neutron and gamma generation using LLNL model. Read spontaneous fission
|
||||
data from database, insert it into decay tables and instantiate
|
||||
G4SFDecay.
|
||||
o Fixed incorrect branching ratio sum for biased mode, to account for the
|
||||
addition of N shell EC capture and spontaneous fission.
|
||||
o G4RadioactiveDecayBase: added StreamInfo() method; updated to new
|
||||
N shell EC; enable printout of parameters with G4VERBOSE in
|
||||
BuildPhysicsTable().
|
||||
o G4RadioactivationMessenger: removed obsolete "fast beta" option,
|
||||
internal conversion option (not part of biasing) and atomic relaxation
|
||||
option (not part of biasing). Added "analogueMC" option which was
|
||||
forgotten when class was developed.
|
||||
o G4RadioactiveDecayBaseMessenger: removed obsolete "fast beta" option.
|
||||
o Replaced G4ExceptionDescription in loop with simple string at
|
||||
exception time inG4RadioactiveDecay, G4RadioactiveDecayBase and
|
||||
G4Radioactivation.
|
||||
o In G4RadioactiveDecay::CalculateChainsFromParent() and
|
||||
G4Radioactivation::CalculateChainsFromParent(), fixed memory leak of
|
||||
'summedDecayTable' reported by Coverity.
|
||||
o G4RadioactiveDecay, G4RadioactiveDecayBase: make sure decay table maps
|
||||
are cleanly deleted at the end of program.
|
||||
+ models/util
|
||||
o G4NuclearRadii: new utility class with several parameterisations of
|
||||
nuclear radius.
|
||||
+ processes
|
||||
o G4HadronElasticProcess: removed tracking cut for all particles (charged
|
||||
particles may be stopped by the tracking cut of ionisation process;
|
||||
neutrons should be stopped by G4NeutronKiller).
|
||||
Added protection for zero energy primary. Removed final state rotation.
|
||||
Removed default GHEISHA cross-section.
|
||||
Clean up sampling of final state; improved description and comments;
|
||||
added C++11 keywords; removed unused local members.
|
||||
o G4MuNeutrinoNucleusProcess : new process managing
|
||||
G4NuMuNucleusCc(Nc)Model models.
|
||||
+ stopping
|
||||
o G4HadronicAbsorptionFritof: extended to neutral anti-hadrons
|
||||
(anti-neutron, anti-lambda, anti-sigma0 and anti-xi0). This extension
|
||||
is for completeness and practical convenience, although physically
|
||||
neutral hadrons should never be completely at rest.
|
||||
+ util
|
||||
o G4HadProjectile: clean-up for small kinetic energy of the projectile.
|
||||
o G4HadFinalState, G4Bessel, G4ReactionProduct, G4GHEKinematicsVector:
|
||||
replaced fabs() with abs().
|
||||
|
||||
o Track & Tracking
|
||||
----------------
|
||||
+ G4Track: added forward declaration for G4VProcess.
|
||||
|
||||
o Visualization:
|
||||
-------------
|
||||
+ Fixed compilation warnings on gcc-9.1.0.
|
||||
+ management:
|
||||
o Introducing cloud drawing style. New parameter candidate 'cloud' in
|
||||
"/vis/viewer/set/style". Cloud drawing uses solid->GetPointOnSurface(),
|
||||
i.e., uses kernel algorithms and by-passes polyhedral representations.
|
||||
The solid is represented by a polymarker of dots. The default number of
|
||||
points is 1000. This can be changed with the command
|
||||
"/vis/viewer/set/numberOfCloudPoints"; the minimum number is 100.
|
||||
Note that OpenGL has a fast algorithm for polymarker.
|
||||
This allows us to use cloud style both as a choice or as fallback when
|
||||
the polyhedral representation fails, for example, when BooleanProcessor
|
||||
fails.
|
||||
o New and improved commands:
|
||||
/vis/viewer/centreOn: improved - it does not zoom.
|
||||
/vis/viewer/centreAndZoomInOn: new.
|
||||
/vis/touchable/centreOn: improved - it does not zoom.
|
||||
/vis/touchable/centreAndZoomInOn: new.
|
||||
/vis/touchable/extentForField and volumeForField: new.
|
||||
/vis/scene/showExtents: new.
|
||||
/vis/set/volumeForField: new.
|
||||
/vis/touchable/showExtent: new.
|
||||
o Added copy number parameter to "/vis/touchable/findPath".
|
||||
o Implemented "/vis/set/extentForField" command: the default is a null
|
||||
extent, which is to be interpreted by the field model as the whole
|
||||
extent of the current scene. Otherwise, with this command, one can
|
||||
limit the extent over which the field is drawn. This would help, for
|
||||
example, if drawing over the whole scene produced so many arrows or
|
||||
lines that it clutters the scene. Changed the default spacing:
|
||||
the parameter 'nDataPointsPerHalfExtent' is changed from 10 to 3, so
|
||||
as not to clutter the scene. See guidance of "/vis/scene/add/*Field"
|
||||
commands for further explanation.
|
||||
o Provide ability to draw electric fields, and eventually any other
|
||||
field. Added "/vis/scene/add/electricField" by analogy to existing
|
||||
.../magneticField.
|
||||
o Refactor MagneticFieldModel class with new base to handle all kinds of
|
||||
vector fields; existing, and new ElectricFieldModel only have to
|
||||
implement a simple function to get the field vector at a location.
|
||||
o Include parameterised volumes in overlap checking and visualisation
|
||||
in G4LogicalVolumeModel (in addition to ordinary placements).
|
||||
o Introduced "/vis/viewer/centreOn" and "/vis/touchable/centreOn" UI
|
||||
commands. This allows one to centre the view (zoom in) on a volume.
|
||||
Reset with "/vis/viewer/reset".
|
||||
o Rationalised view interpolation; encapsulate algorithm into base class
|
||||
G4VVisCommand, so that commands "/vis/viewer/interpolate",
|
||||
"/vis/viewer/centreOn" and "/vis/touchable/centerOn" now use this.
|
||||
Might consider use by all view changing commands.
|
||||
o Fixed bug in "/vis/viewer/set/sectionPlane".
|
||||
o Corrected few typos in printout/comments.
|
||||
o Improved guidance for "/vis/scene/add/volume".
|
||||
o Minor improvements to visualization manager.
|
||||
o Fixed Boolean operators to return G4bool.
|
||||
o Fixed Coverity defects.
|
||||
+ modeling:
|
||||
o Introduced G4BoundingExtentScene. This allows one to accumulate extents
|
||||
using the newly introduced G4VisExtent::Transform() and is a better way
|
||||
of determining the overall extent of a scene (or of any set of extents)
|
||||
than by the bounding sphere approach.
|
||||
o G4VFieldModel, G4ElectricFieldModel, G4MagneticFieldModel: new
|
||||
abstraction for field models.
|
||||
o Arrows and field models: introduced further protection.
|
||||
o G4VModel: introduced GetTransformedExtent() method.
|
||||
o G4PhysicalVolumeModel: use G4BoundingExtentScene instead of
|
||||
G4BoundingSphereScene. Fixed bug whereby the local extent was
|
||||
incorrectly calculated.
|
||||
o Fixed bug in "/vis/viewer/set/sectionPlane".
|
||||
o Added volume count (but commented out printing).
|
||||
+ OpenGL:
|
||||
o Force double buffer context for OGLIX.
|
||||
o Force kernel visit on change of number of cloud points.
|
||||
o Fixed bug in "/vis/viewer/set/sectionPlane".
|
||||
o Avoid re-using display lists for markers. They may have their own
|
||||
position relative to the overall object transformation.
|
||||
+ OpenInventor:
|
||||
o Test number of cloud points for kernel visit.
|
||||
o Added missing protection on G4VIS_BUILD_OIX_DRIVER.
|
||||
o Fixed compilation warning from gcc-9.1 in SoCounterAction for setting
|
||||
of name, apparently not allowed in OpenInventor.
|
||||
o Corrected few typos in printout/comments.
|
||||
+ XXX:
|
||||
o Force kernel visit on change of number of cloud points.
|
||||
|
||||
o Data Sets:
|
||||
---------
|
||||
+ G4PARTICLEXS-2.0:
|
||||
o Added data for neutrino.
|
||||
o Updated cross-sections for low Z targets at low energy.
|
||||
|
||||
o Examples:
|
||||
--------
|
||||
+ Updated reference outputs, macros, READMEs and scripts.
|
||||
+ advanced/nanobeam
|
||||
o Include G4Types.hh header in main(), before use of G4MULTITHREADED.
|
||||
+ advanced/underground_physics
|
||||
o DMXPhysicsList: added Glauber-Gribov cross-section for all elastic
|
||||
processes.
|
||||
+ extended/biasing/B03
|
||||
o B03PhysicsList: explicitly define hadronic cross-sections.
|
||||
Use G4NeutronInelasticXS cross-section.
|
||||
+ extended/electromagnetic/TestEm1
|
||||
o Added G4NIELCalculator and corresponding histograms and printouts;
|
||||
general clean-up of the code; use default random number generator.
|
||||
+ extended/electromagnetic/TestEm5
|
||||
o StackinAction: fixed log histograms, which where filled in a wrong way.
|
||||
o PhysListEm19DStandard: use 3-gamma annihilation model.
|
||||
+ extended/electromagnetic/TestEm15
|
||||
o SteppingAction: do not fill hist #11,#12 when no recoil returned.
|
||||
+ extended/electromagnetic/TestEm16
|
||||
o PhysicsList: use G4DecayPhysics and drop G4AutoDelete.
|
||||
o Migrated to use default MixMax generator.
|
||||
+ extended/electromagnetic/TestEm17
|
||||
o Code clean-up; switch to MixMax random generator.
|
||||
+ extended/hadronic/Hadr01
|
||||
o HistoManager: added linear histogram for pion energy at production.
|
||||
+ extended/hadronic/Hadr02
|
||||
o G4CRMCModel: some improvements (e.g. considered the energy-per-nucleon,
|
||||
instead of the whole projectile, in the case of nucleus projectile) and
|
||||
better documentation (in the form of comments in the class).
|
||||
+ extended/medical/DICOM
|
||||
o Defaulted copy-ctr in DicomPhantomZSliceHeader, to fix deprecation
|
||||
compilation warnings on gcc-9.1.
|
||||
+ extended/medical/DICOM2
|
||||
o Include G4Types.hh header in main(), before use of G4MULTITHREADED.
|
||||
+ extended/medical/dna/chem2
|
||||
+ extended/medical/dna/chem3
|
||||
o Clean-up of TimeStepAction.
|
||||
+ extended/medical/dna/chem4
|
||||
o Added UI commands for one step thermalization model selection
|
||||
in macro beam.in.
|
||||
o Make Species alias of const G4MolecularConfiguration.
|
||||
+ extended/medical/dna/chem5
|
||||
o Make Species alias of const G4MolecularConfiguration.
|
||||
+ extended/medical/dna/dnadamage1
|
||||
o New example showing a simple way to simulate dna direct and indirect
|
||||
damages using Geant4-DNA physics and chemical processes in a molecular
|
||||
DNA geometry.
|
||||
+ extended/medical/dna/microdosimetry
|
||||
o Updated plot.C.
|
||||
+ extended/medical/dna/microprox
|
||||
o New example showing how to compute proximity functions in liquid water
|
||||
using exclusively Geant4-DNA physics processes and models.
|
||||
+ extended/medical/dna/microyz
|
||||
o Added condensed history models including step size control.
|
||||
o Added EM UI commands in microyz.in.
|
||||
o Fixed Boolean operators to return G4bool.
|
||||
+ extended/medical/electronScattering2
|
||||
o Fixed warning about attempting to add multiple times the same sensitive
|
||||
detector.
|
||||
+ extended/medical/fanoCavity
|
||||
+ extended/medical/fanoCavity2
|
||||
o DetectorConstruction: simplification of DefineMaterial().
|
||||
o DetectorConstruction, DetectorMessenger: fixed usage of base materials
|
||||
and cleanup (should fix ~1% error for Opt4 EM physics).
|
||||
o PhysListEmStandard_option4: set RangeFactor to 0.08 (as in the
|
||||
physics_list library). PhysListEmStandard_option3: set parameters as
|
||||
in the physics_list library.
|
||||
+ extended/optical/LXe
|
||||
o LXeDetectorConstruction: removed protection against rebuilding
|
||||
detector.
|
||||
o LXeEventAction: commented out randomSaveEvent.
|
||||
+ extended/parallel/MPI
|
||||
o Fixed compilation error in G4MPIextraWorker.
|
||||
Addressing problem report #2163.
|
||||
+ extended/persistency/gdml/G01
|
||||
o Added BeamOn(0) to initialize range to energy converters
|
||||
needed when exporting cuts per volume.
|
||||
+ extended/persistency/P01
|
||||
o Fixed definition of allocator in ExP01TrackerHit.
|
||||
+ extended/radioactivedecay/rdecay01
|
||||
o PhysicsList: replaced G4RadioactiveDecay with refactored class
|
||||
G4Radioactivation.
|
||||
+ extended/radioactivedecay/rdecay02
|
||||
o New class BiasedRDPhysics using new G4Radioactivation process with all
|
||||
biasing available
|
||||
o In PhysicsList, replaced G4RadioactiveDecayPhysics with
|
||||
BiasedRDPhysics, also removed HP option physics lists.
|
||||
o In Run, replaced G4RadioactiveDecay with G4Radioactivation.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
@@ -0,0 +1,168 @@
|
||||
|
||||
Geant4 10.4 - patch-03 Release Notes
|
||||
------------------------------------
|
||||
|
||||
8 February 2019
|
||||
|
||||
List of fixes included in this public patch since the public release 10.4.p02:
|
||||
|
||||
o Configuration:
|
||||
-------------
|
||||
+ CMake:
|
||||
o Corrected URLs for data installation to use https; added -L flag to curl
|
||||
to follow redirects when accessing a dataset URL.
|
||||
o Geant4MakeRules_cxx.cmake: added -DGL_SILENCE_DEPRECATION to
|
||||
CMAKE_CXX_FLAGS_INIT for clang to silence GL deprecation compilation
|
||||
warnings on MacOS 10.14 Mojave.
|
||||
+ GNUMake:
|
||||
o Fixed setting of G4RUNPATHOPTION in Darwin/Linux-clang/g++ and binmake.cmk.
|
||||
Addressing problem report #2086.
|
||||
o Cleanup settings for GL in Darwin-clang.gmk and Darwin-g++.gmk.
|
||||
Added -DGL_SILENCE_DEPRECATION to CPPFLAGS to silence GL deprecation
|
||||
compilation warnings on MacOS 10.14 Mojave.
|
||||
|
||||
o Analysis:
|
||||
--------
|
||||
+ Fixed a deadlock issue with G4RootPNtupleManager where the mutex
|
||||
was locked before being passed to Root.
|
||||
+ Fixed compilation warnings on gcc-8.1.0.
|
||||
|
||||
o Geometry:
|
||||
--------
|
||||
+ management:
|
||||
o Use reverse_iterator in G4SolidStore::DeRegister() in order to speedup
|
||||
partial deregistration on setups with many solids instances.
|
||||
o G4Region: added possibility to disable search in the tree in
|
||||
AddRootLogicalVolume() for speeding up process in complex flat geometries.
|
||||
|
||||
o Global:
|
||||
------
|
||||
+ G4PhysicsVector, G4Physics2DVector: fixed possible out-of-bound access
|
||||
in FindBin() method. Addressing problem report #2087.
|
||||
+ Updated date and version for 10.4.p03.
|
||||
|
||||
o Interfaces:
|
||||
----------
|
||||
+ G4Xt: fixed compilation warnings for casts on gcc-8.1.
|
||||
+ Fixed compilation warnings for not used return parameters.
|
||||
|
||||
o Persistency - gdml
|
||||
------------------
|
||||
+ Clear auxiliary map information in G4GDMLReadStructure::Clear().
|
||||
Addressing problem report #2064.
|
||||
+ Added stripping of invalid characters for names generation in writer classes
|
||||
to prevent invalid NCName strings in exported GDML files. Adopt properly
|
||||
stripped generated strings for exporting names of optical surfaces.
|
||||
|
||||
o Processes - Electromagnetic:
|
||||
---------------------------
|
||||
+ dna:
|
||||
o Fixed header guards in G4ITFinder and G4AllITFinder.
|
||||
Addressing problem report #2084.
|
||||
+ standard:
|
||||
o G4GoudsmitSaundersonTable: fixed gcc-8.1.0 compilation warnings.
|
||||
+ utils:
|
||||
o G4EmElementSelector: optimisation of element selection for compound
|
||||
materials.
|
||||
+ xrays:
|
||||
o G4Cerenkov, G4Scintillation: correctly reset number of photons
|
||||
to 0 each step. Addressing problem report #2056.
|
||||
Added protection against infinite loops due to very small steps.
|
||||
Addressing problem report #1992.
|
||||
|
||||
o Processes - Hadronic:
|
||||
--------------------
|
||||
+ management:
|
||||
o G4HadronicProcess: added check if secondary particle is on the mass
|
||||
shell; if its mass differ from the PDG mass more for 1.5 MeV then mass
|
||||
is forced to the mass shell, energy conserved, but momentum is changed.
|
||||
Use correct return type when calling CheckResult() from PostStepDoIt():
|
||||
fixes case when the value of pointer 'result' does not get properly
|
||||
reset to NULL in case a non-conservation is detected, thus "bad"
|
||||
interaction does not get re-sampled.
|
||||
Fixed compilation warnings on gcc-8.1.0 regarding catching polymorphic
|
||||
type by value, instead of by reference.
|
||||
o G4HadronicProcess, G4VLeadingParticleBiasing, G4HadLeadBias: fixed
|
||||
compilation warning with gcc-7.
|
||||
+ models/binary_cascade
|
||||
o G4GeneratorPrecompoundInterface: fixed printout typo.
|
||||
+ models/cascade:
|
||||
o G4GDecay3: fixed problem reported by CMS due to wrong kinematics in
|
||||
the final state by removing loop check; adding protection for low value
|
||||
of mother mass.
|
||||
+ models/de_excitation:
|
||||
o G4LevelReader: fixed initialisation of 'fAlphaMax' from 1.e+6 to 1.e+15;
|
||||
needed for correct IC probability of some isotopes.
|
||||
Addresses problem reports #1986 and #2076, by change of handling of
|
||||
internal conversion data.
|
||||
+ models/particle_hp
|
||||
o G4ParticleHPCaptureFS::ApplyYourself(): Lorentz boost of neutron into
|
||||
target frame was backwards; reversed it. Also replaced SetDefinition()
|
||||
with SetDefinitionAndUpdateE(). Addresses problem report #1919.
|
||||
o Fixed definition of singletons for G4ParticleHPManager and
|
||||
G4ParticleHPThreadLocalManager and some code cleanup.
|
||||
Made G4ParticleHPThreadLocalManager a G4ThreadlLocalSingleton to avoid
|
||||
memory leaks generated each time a thread creates the instance.
|
||||
o Fixed bug for double allocation of G4ParticleHPReactionWhiteBoard in
|
||||
G4ParticleHPThreadLocalManager::OpenReactionWhiteBoard().
|
||||
o G4ParticleHPElementData: removed unnecessary inheritance from
|
||||
G4HadronicCrossSection.
|
||||
o Fixed incorrect sampling of isotropic distribution.
|
||||
Addressing problem report #1745.
|
||||
o Fixed gamma level mismatch in G4ParticleHPInelasticCompFS.
|
||||
Not a complete fix because gamma data comes from ENSDF and does not
|
||||
necessarily match excitations in ENDF.
|
||||
Addressing problem report #1789.
|
||||
o Fixed memory leaks in G4ParticleHPContEnergyAngular::Sample() and
|
||||
G4ParticleHPContAngularPar::cacheInit().
|
||||
Addressing problem report #2026.
|
||||
o G4ParticleHPElasticFS::ApplyYourself(): use correct reference frames for
|
||||
calculation of projectile and target momenta. Correction made for cases
|
||||
when cos(Theta) is given in lab frame and in center of momentum frame.
|
||||
Partial fix of momentum non-conservation for problem report #1918.
|
||||
o Fixed potential leaks in G4ParticleHPPhotonDist, G4ParticleHPContAngularPar
|
||||
and G4ParticleHPFinalState for use of pointers cached in G4Cache.
|
||||
o G4ENDFTapeRead, G4FissionProductYieldDist: fixed compilation warnings
|
||||
on gcc 8.1.0, regarding catching polymorphic type by value, instead of
|
||||
by reference.
|
||||
o Minor code cleanup and formatting.
|
||||
+ models/parton_string/diffraction
|
||||
o G4FTFAnnihilation: fix to get flat cos(theta) and phi distributions for
|
||||
antiproton annihilation at rest.
|
||||
+ models/rpg
|
||||
o G4RPGAntiKZeroInelastic, G4RPGInelastic: fixed compilation warnings on
|
||||
gcc-8.1.0, regarding catching polymorphic type by value, instead of by
|
||||
reference.
|
||||
+ processes:
|
||||
o G4HadronElasticProcess, G4NeutrinoElectronProcess: fixed compilation
|
||||
warnings on gcc 8.1.0, regarding catching polymorphic type by value,
|
||||
instead of by reference.
|
||||
+ stopping:
|
||||
o G4HadronStoppingProcess, G4MuonicAtomDecay: fixed compilation warnings
|
||||
on gcc 8.1.0, regarding catching polymorphic type by value, instead of
|
||||
by reference.
|
||||
|
||||
o Processes - Scoring:
|
||||
-------------------
|
||||
o G4ParallelWorldProcess: fixed track velocity of optical photons for the
|
||||
first step in a layered mass geometry.
|
||||
|
||||
o Examples:
|
||||
--------
|
||||
+ extended/fieldBlineTracer:
|
||||
o Fixed compilation error for missing header inclusion.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o This patch should be applied on top of release 10.4 or 10.4.p01 or p02.
|
||||
o Technical notes distributed for release 10.4 are also applicable and
|
||||
valid for this patch.
|
||||
|
||||
The code and rebuilt binary libraries for release 10.4.p03 are available
|
||||
through our "Download" Web page.
|
||||
|
||||
Please refer to the Geant4 User Documentation for further information about
|
||||
using Geant4.
|
||||
+35
-1
@@ -30,7 +30,41 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
|
||||
|
||||
----------------------------------------------------------
|
||||
|
||||
21st December 2018 - Makoto Asai (cmake-V10-04-28)
|
||||
6th June 2019 - Ben Morgan (cmake-V10-05-05)
|
||||
- Remove G4FPE_DEBUG from Debug build mode
|
||||
- Not appropriate for basic debug and incompatible with Qt
|
||||
- Provide new "Debug_FPE" build mode which copies Debug mode and
|
||||
appends -DG4FPE_DEBUG to allow continued use without clashing
|
||||
with common primary modes.
|
||||
|
||||
24th May 2019 - Gunter Folger (cmake-V10-05-04)
|
||||
- Switch to G4PARTICLEXS 2.0
|
||||
|
||||
14th May 2019 - Ben Morgan (cmake-V10-05-03)
|
||||
- Promote always required -D flags for VecGeom replacements to fixed
|
||||
#define/undef flags in a header
|
||||
- See geommng-V10-05-05, G4GeomTypes/G4GeomConfig.hh
|
||||
- Set CMake variables for G4GEOM_USE_... parameters as configured
|
||||
- Retain add_definitions for VecGeom until it supports usage requirements
|
||||
- Update XXHelpers scripts for generating GNUmake/pkg-config/CMake files
|
||||
|
||||
8th February 2019 - Ben Morgan (cmake-V10-05-02)
|
||||
- DEV-250: Promote global, always required, -D flags to fixed #define/undef
|
||||
in new G4GlobalConfig.hh header:
|
||||
- G4USE_STD11
|
||||
- G4MULTITHREADED
|
||||
- G4_STORE_TRAJECTORY
|
||||
- G4VERBOSE
|
||||
- GEANT4_USE_TIMEMORY
|
||||
- Remove use of add_definitions of CMAKE_CXX_FLAGS to set these in Geant4
|
||||
and client scripts
|
||||
- Used by global-V10-05-02
|
||||
|
||||
7th February 2019 - Ben Morgan (cmake-V10-05-01)
|
||||
- Remove obsolete GEANT4_BUILD_MUONIC_ATOMS_IN_USE option
|
||||
and associated configuration/compiler flags.
|
||||
|
||||
21st December 2018 - Makoto Asai (cmake-V10-05-00)
|
||||
- Modules/Geant4OptionalComponents.cmake:
|
||||
- Template/Geant4Config.cmake.in:
|
||||
Add GEANT4_USE_SMARTSTACK
|
||||
|
||||
@@ -79,6 +79,15 @@ include(IntelCompileFeatures)
|
||||
#
|
||||
if(NOT WIN32)
|
||||
|
||||
#.rst:
|
||||
# - ``Debug_FPE``
|
||||
# For debugging with full Floating Point Exception checking
|
||||
#
|
||||
set(CMAKE_CXX_FLAGS_DEBUG_FPE "${CMAKE_CXX_FLAGS_DEBUG_FPE_INIT}"
|
||||
CACHE STRING "Flags used by the compiler during Debug_FPE builds"
|
||||
)
|
||||
mark_as_advanced(CMAKE_CXX_FLAGS_DEBUG_FPE)
|
||||
|
||||
#.rst:
|
||||
# - ``TestRelease``:
|
||||
# For trial production and extended testing. It has verbose
|
||||
@@ -110,18 +119,19 @@ if(NOT CMAKE_CONFIGURATION_TYPES)
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
# Default to a Release build if nothing else...
|
||||
set(CMAKE_BUILD_TYPE Release
|
||||
CACHE STRING "Choose the type of build, options are: None Release TestRelease MinSizeRel Debug RelWithDebInfo MinSizeRel Maintainer."
|
||||
CACHE STRING "Choose the type of build, options are: None Release TestRelease MinSizeRel Debug Debug_FPE RelWithDebInfo MinSizeRel Maintainer."
|
||||
FORCE
|
||||
)
|
||||
else()
|
||||
# Force to the cache, but use existing value.
|
||||
set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}"
|
||||
CACHE STRING "Choose the type of build, options are: None Release TestRelease MinSizeRel Debug RelWithDebInfo MinSizeRel Maintainer."
|
||||
CACHE STRING "Choose the type of build, options are: None Release TestRelease MinSizeRel Debug Debug_FPE RelWithDebInfo MinSizeRel Maintainer."
|
||||
FORCE
|
||||
)
|
||||
endif()
|
||||
else()
|
||||
# Multimode tools like VS, Xcode
|
||||
list(APPEND CMAKE_CONFIGURATION_TYPES Debug_FPE)
|
||||
list(APPEND CMAKE_CONFIGURATION_TYPES TestRelease)
|
||||
list(APPEND CMAKE_CONFIGURATION_TYPES Maintainer)
|
||||
list(REMOVE_DUPLICATES CMAKE_CONFIGURATION_TYPES)
|
||||
@@ -200,9 +210,6 @@ endif()
|
||||
# An example of where a workaround is needed
|
||||
# Rest of concurrency a library implementation feature
|
||||
|
||||
# Add Definition to flags for temporary back compatibility
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DG4USE_STD11")
|
||||
|
||||
# Hold any appropriate compile flag(s) in variable for later export to
|
||||
# config files. Needed to support clients using late CMake 2.8 where compile features
|
||||
# are not available.
|
||||
@@ -261,7 +268,6 @@ if(GEANT4_BUILD_MULTITHREADED)
|
||||
|
||||
# Set Defs/Compiler Flags
|
||||
# TODO: Migrate def to header
|
||||
add_definitions(-DG4MULTITHREADED)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GEANT4_MULTITHREADED_CXX_FLAGS}")
|
||||
endif()
|
||||
|
||||
@@ -280,11 +286,6 @@ option(GEANT4_BUILD_STORE_TRAJECTORY
|
||||
ON)
|
||||
mark_as_advanced(GEANT4_BUILD_STORE_TRAJECTORY)
|
||||
|
||||
# TODO: Migrate this to header
|
||||
if(GEANT4_BUILD_STORE_TRAJECTORY)
|
||||
add_definitions(-DG4_STORE_TRAJECTORY)
|
||||
endif()
|
||||
|
||||
#.rst:
|
||||
# - ``GEANT4_BUILD_VERBOSE_CODE`` (Default: ON)
|
||||
#
|
||||
@@ -297,29 +298,6 @@ option(GEANT4_BUILD_VERBOSE_CODE
|
||||
ON)
|
||||
mark_as_advanced(GEANT4_BUILD_VERBOSE_CODE)
|
||||
|
||||
# TODO: Migrate this to header
|
||||
if(GEANT4_BUILD_VERBOSE_CODE)
|
||||
add_definitions(-DG4VERBOSE)
|
||||
endif()
|
||||
|
||||
#.rst:
|
||||
# - ``GEANT4_BUILD_MUONIC_ATOMS_IN_USE`` (Default: OFF)
|
||||
#
|
||||
# - Switched off by default to improve performance when not using
|
||||
# Muonic Atom code. It should be switched on if the project requires
|
||||
# support for Muonic Atoms.
|
||||
# Mark as advanced because most users should not need to worry about it
|
||||
#
|
||||
option(GEANT4_BUILD_MUONIC_ATOMS_IN_USE
|
||||
"Enable turning on some if statements in track and event code. Switch on if using new Muonic Atom code."
|
||||
OFF)
|
||||
mark_as_advanced(GEANT4_BUILD_MUONIC_ATOMS_IN_USE)
|
||||
|
||||
# TODO: Migrate this to header
|
||||
if(GEANT4_BUILD_MUONIC_ATOMS_IN_USE)
|
||||
add_definitions(-DG4MUATOMS_INUSE)
|
||||
endif()
|
||||
|
||||
#.rst:
|
||||
# - ``GEANT4_BUILD_MSVC_MP`` (Windows only, Default: OFF)
|
||||
#
|
||||
|
||||
@@ -64,15 +64,6 @@ set(GEANT4_THIRD_PARTY_IMPORT_SETUP )
|
||||
# Externals libraries that may be present
|
||||
set(GEANT4_EXTERNALS_TARGETS )
|
||||
|
||||
# - Stuff from Geant4LibraryBuildOptions.cmake
|
||||
if(GEANT4_BUILD_STORE_TRAJECTORY)
|
||||
list(APPEND GEANT4_CORE_DEFINITIONS -DG4_STORE_TRAJECTORY)
|
||||
endif()
|
||||
|
||||
if(GEANT4_BUILD_VERBOSE_CODE)
|
||||
list(APPEND GEANT4_CORE_DEFINITIONS -DG4VERBOSE)
|
||||
endif()
|
||||
|
||||
# - Stuff from Geant4OptionalComponents.cmake
|
||||
# - CLHEP
|
||||
# If it's internal, add it to the externals list
|
||||
@@ -104,11 +95,11 @@ endif()
|
||||
# Compile definitions
|
||||
if(GEANT4_USE_USOLIDS OR GEANT4_USE_PARTIAL_USOLIDS)
|
||||
set(GEANT4_USE_USOLIDS_EITHER ON)
|
||||
list(APPEND GEANT4_CORE_DEFINITIONS ${GEANT4_USOLIDS_COMPILE_DEFINITIONS})
|
||||
|
||||
# System USolids headers, because these do appear in Geant4's
|
||||
# public interface. The library should be in the link interface
|
||||
# of G4geometry (may need refinding)
|
||||
list(APPEND GEANT4_CORE_DEFINITIONS ${VECGEOM_DEFINITIONS})
|
||||
list(APPEND GEANT4_THIRD_PARTY_INCLUDES "${USOLIDS_INCLUDE_DIRS} ${VECGEOM_EXTERNAL_INCLUDES}")
|
||||
endif()
|
||||
|
||||
|
||||
@@ -123,13 +123,6 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS AND UNIX)
|
||||
set(G4_BUILTWITH_MULTITHREADING "no")
|
||||
endif()
|
||||
|
||||
# - Muonic Atom support
|
||||
if(GEANT4_BUILD_MUONIC_ATOMS_IN_USE)
|
||||
set(G4_BUILTWITH_MUONIC_ATOMS "yes")
|
||||
else()
|
||||
set(G4_BUILTWITH_MUONIC_ATOMS "no")
|
||||
endif()
|
||||
|
||||
# - CLHEP
|
||||
if(GEANT4_USE_SYSTEM_CLHEP)
|
||||
set(G4_BUILTWITH_CLHEP "no")
|
||||
@@ -196,7 +189,7 @@ if(NOT GEANT4_BUILD_GRANULAR_LIBS AND UNIX)
|
||||
list(REMOVE_DUPLICATES G4_USOLIDS_INCLUDE_DIRS)
|
||||
list(REMOVE_ITEM G4_USOLIDS_INCLUDE_DIRS ${_cxx_compiler_dirs})
|
||||
|
||||
string(REPLACE ";" " " G4_USOLIDS_CFLAGS "${GEANT4_USOLIDS_COMPILE_DEFINITIONS}")
|
||||
string(REPLACE ";" " " G4_USOLIDS_CFLAGS "${VECGEOM_DEFINITIONS}")
|
||||
foreach(_dir ${G4_USOLIDS_INCLUDE_DIRS})
|
||||
set(G4_USOLIDS_CFLAGS "${G4_USOLIDS_CFLAGS} -I${_dir}")
|
||||
endforeach()
|
||||
|
||||
@@ -48,11 +48,11 @@ geant4_add_dataset(
|
||||
# - Particle XS - replaces Neutron XS
|
||||
geant4_add_dataset(
|
||||
NAME G4PARTICLEXS
|
||||
VERSION 1.1
|
||||
VERSION 2.0
|
||||
FILENAME G4PARTICLEXS
|
||||
EXTENSION tar.gz
|
||||
ENVVAR G4PARTICLEXSDATA
|
||||
MD5SUM 17dc6c6f11db7ca81dea1c2c2b3707d2
|
||||
MD5SUM bc115502d4524ef7625557d9cab355c0
|
||||
)
|
||||
|
||||
# - PII
|
||||
|
||||
@@ -34,7 +34,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
|
||||
set(CMAKE_CXX_FLAGS_INIT "${CMAKE_CXX_FLAGS_INIT} -pipe")
|
||||
|
||||
# Additional per-mode flags
|
||||
set(CMAKE_CXX_FLAGS_DEBUG_INIT "-g -DG4FPE_DEBUG")
|
||||
set(CMAKE_CXX_FLAGS_DEBUG_INIT "-g")
|
||||
set(CMAKE_CXX_FLAGS_RELEASE_INIT "-O3 -DNDEBUG")
|
||||
# Assist auto-vectorization
|
||||
set(CMAKE_CXX_FLAGS_RELEASE_INIT "${CMAKE_CXX_FLAGS_RELEASE_INIT} -fno-trapping-math -ftree-vectorize -fno-math-errno")
|
||||
@@ -52,6 +52,9 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
|
||||
endif()
|
||||
|
||||
# Extra Geant4 modes
|
||||
# - Debug_FPE: Core Debug mode plus FPE)
|
||||
set(CMAKE_CXX_FLAGS_DEBUG_FPE_INIT "${CMAKE_CXX_FLAGS_DEBUG_INIT} -DG4FPE_DEBUG")
|
||||
|
||||
# - TestRelease
|
||||
set(CMAKE_CXX_FLAGS_TESTRELEASE_INIT "-g -DG4DEBUG_VERBOSE -DG4FPE_DEBUG")
|
||||
|
||||
|
||||
@@ -196,7 +196,7 @@ GEANT4_ADD_FEATURE(GEANT4_USE_GDML "Building Geant4 with GDML support")
|
||||
# With this option, G4StackManager uses G4SmartTrackStack instead of
|
||||
# ordinary G4TrackStack as the Urgent stack. G4SmartTrackStack tries to
|
||||
# stick to the same kind of particle as the previous track when Pop()
|
||||
# is called. This G4SmartTrackStack may provide some performance
|
||||
# is called. This G4SmartTrackStack may provide some performance
|
||||
# improvements in particular for crystal calorimeters in high energy
|
||||
# physics experiments. On the other hand, G4SmartTrackStack won't give
|
||||
# any benefit for granular geometry or lower energy applications, while
|
||||
@@ -214,7 +214,7 @@ GEANT4_ADD_FEATURE(GEANT4_USE_SMARTSTACK "Use smart track stack")
|
||||
#-----------------------------------------------------------------------
|
||||
# Optional Support for TiMemory -- cross-language timing and memory
|
||||
# easily installed via:
|
||||
# "pip install timemory" and pointing TiMemory_DIR to
|
||||
# "pip install timemory" and pointing TiMemory_DIR to
|
||||
# <install-prefix>/share/cmake/TiMemory
|
||||
# e.g. -DTiMemory_DIR=/usr/local/share/cmake/TiMemory
|
||||
# for /usr/local/bin/pip
|
||||
@@ -232,8 +232,6 @@ mark_as_advanced(GEANT4_USE_TIMEMORY)
|
||||
|
||||
if(GEANT4_USE_TIMEMORY)
|
||||
find_package(TiMemory REQUIRED)
|
||||
# definition that enables macros
|
||||
add_definitions(-DGEANT4_USE_TIMEMORY)
|
||||
endif()
|
||||
|
||||
GEANT4_ADD_FEATURE(GEANT4_USE_TIMEMORY "Building Geant4 with TiMemory support")
|
||||
@@ -314,22 +312,19 @@ if(GEANT4_USE_ALL_USOLIDS OR GEANT4_USE_PARTIAL_USOLIDS)
|
||||
find_package(VecGeom REQUIRED)
|
||||
|
||||
if(GEANT4_USE_ALL_USOLIDS)
|
||||
set(GEANT4_USOLIDS_COMPILE_DEFINITIONS "-DG4GEOM_USE_USOLIDS")
|
||||
set(G4GEOM_USE_USOLIDS TRUE)
|
||||
GEANT4_ADD_FEATURE(GEANT4_USE_USOLIDS "Replacing Geant4 solids with all VecGeom equivalents (EXPERIMENTAL)")
|
||||
else()
|
||||
set(GEANT4_USOLIDS_COMPILE_DEFINITIONS "-DG4GEOM_USE_PARTIAL_USOLIDS")
|
||||
set(G4GEOM_USE_PARTIAL_USOLIDS TRUE)
|
||||
foreach(__g4_usolid_shape ${GEANT4_USE_PARTIAL_USOLIDS_SHAPE_LIST})
|
||||
list(APPEND GEANT4_USOLIDS_COMPILE_DEFINITIONS "-DG4GEOM_USE_U${__g4_usolid_shape}")
|
||||
set(G4GEOM_USE_U${__g4_usolid_shape} TRUE)
|
||||
endforeach()
|
||||
GEANT4_ADD_FEATURE(GEANT4_USE_USOLIDS "Replacing Geant4 solids with VecGeom equivalents for ${GEANT4_USE_PARTIAL_USOLIDS_SHAPE_LIST} (EXPERIMENTAL)")
|
||||
endif()
|
||||
list (APPEND GEANT4_USOLIDS_COMPILE_DEFINITIONS ${VECGEOM_DEFINITIONS})
|
||||
|
||||
# Combined definitions
|
||||
add_definitions(${GEANT4_USOLIDS_COMPILE_DEFINITIONS})
|
||||
|
||||
# Add VecGeom inc dirs here - can be removed once VecGeom supports
|
||||
# INTERFACE_INCLUDE_DIRECTORIES
|
||||
# Always need defs/includes for VecGeom until that supports usage reqs...
|
||||
# Or can create a "G4VecGeom" internal target to propagate these.
|
||||
add_definitions(${VECGEOM_DEFINITIONS})
|
||||
include_directories(${VECGEOM_INCLUDE_DIR} ${VECGEOM_EXTERNAL_INCLUDES})
|
||||
endif()
|
||||
|
||||
|
||||
@@ -58,10 +58,7 @@
|
||||
# Geant4_LIBRARIES being populated with the static
|
||||
# versions of the Geant4 libraries. It does not
|
||||
# guarantee the use of static third party libraries.)
|
||||
# multithreaded (Libraries have multithreading support. Using this
|
||||
# component will add the compiler definitions needed
|
||||
# to activate multithread mode to Geant4_DEFINITIONS,
|
||||
# if the libraries support it.)
|
||||
# multithreaded (Libraries are multithread capable)
|
||||
#
|
||||
# usolids (Geant4 solids are replaced with USolids equivalents)
|
||||
#
|
||||
@@ -301,7 +298,6 @@ set(Geant4_builtin_zlib_FOUND @GEANT4_USE_BUILTIN_ZLIB@)
|
||||
set(Geant4_multithreaded_FOUND @GEANT4_BUILD_MULTITHREADED@)
|
||||
if(Geant4_multithreaded_FOUND)
|
||||
list(REMOVE_ITEM Geant4_FIND_COMPONENTS multithreaded)
|
||||
list(APPEND Geant4_DEFINITIONS -DG4MULTITHREADED)
|
||||
|
||||
# - Define variable to indicate TLS model used
|
||||
set(Geant4_TLS_MODEL "@GEANT4_BUILD_TLS_MODEL@")
|
||||
@@ -310,12 +306,6 @@ if(Geant4_multithreaded_FOUND)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# - Muonic Atom support
|
||||
set(Geant4_muonic_atoms_FOUND @GEANT4_BUILD_MUONIC_ATOMS_IN_USE@)
|
||||
if(Geant4_muonic_atoms_FOUND)
|
||||
list(REMOVE_ITEM Geant4_FIND_COMPONENTS muonic_atoms)
|
||||
endif()
|
||||
|
||||
# - GDML
|
||||
set(Geant4_gdml_FOUND @GEANT4_USE_GDML@)
|
||||
if(Geant4_gdml_FOUND)
|
||||
@@ -333,7 +323,6 @@ endif()
|
||||
set(Geant4_timemory_FOUND @GEANT4_USE_TIMEMORY@)
|
||||
if(Geant4_timemory_FOUND)
|
||||
list(REMOVE_ITEM Geant4_FIND_COMPONENTS timemory)
|
||||
list(APPEND Geant4_DEFINITIONS -DGEANT4_USE_TIMEMORY)
|
||||
set(_geant4_timemory_dir "@TiMemory_DIR@")
|
||||
# always use same installation
|
||||
unset(TiMemory_DIR CACHE)
|
||||
@@ -356,6 +345,7 @@ endif()
|
||||
# - Usolids
|
||||
set(Geant4_usolids_FOUND @GEANT4_USE_USOLIDS_EITHER@)
|
||||
if(Geant4_usolids_FOUND)
|
||||
# Requires refind of VecGeom once that supports Targets/Usage Reqs
|
||||
list(REMOVE_ITEM Geant4_FIND_COMPONENTS usolids)
|
||||
endif()
|
||||
|
||||
|
||||
@@ -91,7 +91,6 @@ if test "x${have_multithreading}" = "xyes" ; then
|
||||
if test "x${geant4_tls_model}" = "xauto" ; then
|
||||
geant4_tls_model=""
|
||||
fi
|
||||
cflags="${cflags} -DG4MULTITHREADED"
|
||||
else
|
||||
geant4_tls_model=""
|
||||
fi
|
||||
@@ -127,10 +126,6 @@ libs="-lG4interfaces \
|
||||
geant4_uses_opengl="no"
|
||||
geant4_uses_x11="no"
|
||||
|
||||
# - Muonic Atom support
|
||||
have_muonic_atoms="@G4_BUILTWITH_MUONIC_ATOMS@"
|
||||
feature_list="${feature_list} muonic_atoms[${have_muonic_atoms}]"
|
||||
|
||||
# - CLHEP
|
||||
have_clhep="@G4_BUILTWITH_CLHEP@"
|
||||
feature_list="${feature_list} clhep[${have_clhep}]"
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
# - Validate sources listed in sources.cmake with those on disk
|
||||
# This file is configured by Geant4 to locate all sources.cmake files in
|
||||
# the source tree used by the current build tree.
|
||||
# This file is configured by Geant4 to locate all sources.cmake files in
|
||||
# the source tree used by the current build tree.
|
||||
#
|
||||
# We have to parse the sources.cmake files for the headers and sources
|
||||
# because these files use the include_directories command, which is non
|
||||
# scriptable. A simple REGEX is used to find all the .cc, .hh and .icc
|
||||
# files listed in each sources.cmake file. These lists are compared with
|
||||
# a GLOB of those in the include and src directories of the module
|
||||
# We have to parse the sources.cmake files for the headers and sources
|
||||
# because these files use the include_directories command, which is non
|
||||
# scriptable. A simple REGEX is used to find all the .cc, .hh and .icc
|
||||
# files listed in each sources.cmake file. These lists are compared with
|
||||
# a GLOB of those in the include and src directories of the module
|
||||
# corresponding to the sources.cmake file.
|
||||
#
|
||||
# Warnings are printed when a mismatch is detected.
|
||||
#
|
||||
# Note that certain modules have configurable source lists and so we
|
||||
# expect these to show a mismatch. We allow for this by providing the
|
||||
# Note that certain modules have configurable source lists and so we
|
||||
# expect these to show a mismatch. We allow for this by providing the
|
||||
# variable:
|
||||
#
|
||||
# GEANT4_FALSEPOSITIVE_SOURCES List of all source files (.cc, .hh, .icc)
|
||||
@@ -27,6 +27,9 @@
|
||||
# but still on disk
|
||||
#
|
||||
set(GEANT4_FALSEPOSITIVE_SOURCES
|
||||
# G4{Global,Geom}Config.hh generated
|
||||
G4GlobalConfig.hh
|
||||
G4GeomConfig.hh
|
||||
# - Xaw is deprecated...
|
||||
G4UIXaw.hh
|
||||
G4UIXaw.cc
|
||||
@@ -37,8 +40,8 @@ set(GEANT4_FALSEPOSITIVE_SOURCES
|
||||
G4OpenGLImmediateWt.cc
|
||||
G4OpenGLImmediateWtViewer.cc
|
||||
G4OpenGLWtViewer.cc
|
||||
# - VRML has icc files in the src/ directory. These are only used
|
||||
# internally but validate_sources assumes icc files will be in
|
||||
# - VRML has icc files in the src/ directory. These are only used
|
||||
# internally but validate_sources assumes icc files will be in
|
||||
# include/
|
||||
# They are covered in sources.cmake though!
|
||||
G4VRML1SceneHandlerFunc.icc
|
||||
@@ -77,13 +80,13 @@ foreach(_sourcesfile ${GEANT4_SOURCESCMAKE_FILES})
|
||||
get_filename_component(_sourcesfile_location ${_sourcesfile} PATH)
|
||||
|
||||
# - Find on disk files...
|
||||
file(GLOB
|
||||
file(GLOB
|
||||
_ondisk_hh
|
||||
RELATIVE ${_sourcesfile_location}/include
|
||||
${_sourcesfile_location}/include/*.hh
|
||||
${_sourcesfile_location}/include/*.icc
|
||||
)
|
||||
file(GLOB
|
||||
file(GLOB
|
||||
_ondisk_cc
|
||||
RELATIVE ${_sourcesfile_location}/src
|
||||
${_sourcesfile_location}/src/*.cc
|
||||
@@ -96,7 +99,7 @@ foreach(_sourcesfile ${GEANT4_SOURCESCMAKE_FILES})
|
||||
string(REGEX MATCHALL "[A-Z0-9a-z_]+\\.cc" _sources_cc "${_sourcesfile_contents}")
|
||||
string(REGEX MATCHALL "[A-Z0-9a-z_]+\\.(hh|icc)" _sources_hh "${_sourcesfile_contents}")
|
||||
|
||||
# - If we take the difference of each list (in both directions),
|
||||
# - If we take the difference of each list (in both directions),
|
||||
# then there should be no mismatch if resulting lists are empty.
|
||||
# - On disk, but not in sources
|
||||
set(_cmp_ondisk ${_ondisk_hh} ${_ondisk_cc})
|
||||
|
||||
@@ -15,6 +15,15 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
16th May 2019 Gabriele Cosmo (config-V10-05-01)
|
||||
- Hard-code Qt version through QT_VERSION flag.
|
||||
Corrected Qt5 setup for Linux-g++ and Linux-clang.
|
||||
|
||||
26th April 2019 Ben Morgan (config-V10-05-00)
|
||||
- Add -DG4GMAKE to CPPFLAGS to indicate use, or not, of Geant4Make.
|
||||
This is to protect use or not of the new G4GlobalConfig header
|
||||
introduced in cmake-V10-05-02.
|
||||
|
||||
28th September 2018 Gabriele Cosmo (config-V10-04-09)
|
||||
- Added -DGL_SILENCE_DEPRECATION to CPPFLAGS to Darwin setups to silence
|
||||
deprecation compilation warnings on MacOS 10.14 Mojave.
|
||||
|
||||
@@ -12,16 +12,21 @@
|
||||
# List of the supported architectures/compilers and related flavors for
|
||||
# the environment variable G4SYSTEM:
|
||||
#
|
||||
# Linux-g++ Linux (Red Hat Enterprise/SCL5), gcc-4.1.2 (default)
|
||||
# Linux-g++ Linux (CentOS7), gcc-4.8.4 (default)
|
||||
#
|
||||
# Darwin-g++ MacOSX 10.7, gcc-4.2.1
|
||||
# Darwin-clang MacOSX 10.14, clang-7
|
||||
#
|
||||
# WIN32-VC Windows 7 and Microsoft Visual C++ 10.0
|
||||
# WIN32-VC Windows 10 and Microsoft Visual C++ 14.11
|
||||
#
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
MAKEFLAGS= --no-print-directory
|
||||
|
||||
# Define that we are building Geant4 with Geant4Make
|
||||
#
|
||||
CPPFLAGS += -DG4GMAKE
|
||||
G4GMAKE := 1
|
||||
|
||||
# If not specified, the default path for G4 installation G4INSTALL is
|
||||
# set to $HOME/geant4 ...
|
||||
#
|
||||
|
||||
@@ -97,7 +97,9 @@ ifeq ($(G4SYSTEM),Linux-clang)
|
||||
QTMOC := $(QTHOME)/bin/moc
|
||||
endif
|
||||
|
||||
QT_VERSION := $(shell $(QTMOC) 2>&1 -v | sed 's/.* .Qt \([0-9]\)\..*/\1/' )
|
||||
ifndef QT_VERSION
|
||||
QT_VERSION := 5
|
||||
endif
|
||||
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTFLAGS # Qt5
|
||||
@@ -125,10 +127,10 @@ ifeq ($(G4SYSTEM),Linux-clang)
|
||||
endif
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTLIBS # Qt5
|
||||
QTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui -lQtWidgets -lQtPrintSupport
|
||||
QTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5PrintSupport
|
||||
endif
|
||||
ifndef GLQTLIBS
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui -lQtWidgets -lQtOpenGL -lQtPrintSupport
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5OpenGL -lQt5PrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTLIBS
|
||||
|
||||
@@ -95,7 +95,9 @@ ifeq ($(G4SYSTEM),Linux-g++)
|
||||
QTMOC := $(QTHOME)/bin/moc
|
||||
endif
|
||||
|
||||
QT_VERSION := $(shell $(QTMOC) 2>&1 -v | sed 's/.* .Qt \([0-9]\)\..*/\1/' )
|
||||
ifndef QT_VERSION
|
||||
QT_VERSION := 5
|
||||
endif
|
||||
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTFLAGS # Qt5
|
||||
@@ -123,10 +125,10 @@ ifeq ($(G4SYSTEM),Linux-g++)
|
||||
endif
|
||||
ifeq ($(QT_VERSION),5)
|
||||
ifndef QTLIBS # Qt5
|
||||
QTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui -lQtWidgets -lQtPrintSupport
|
||||
QTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5PrintSupport
|
||||
endif
|
||||
ifndef GLQTLIBS
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQtCore -lQtGui -lQtWidgets -lQtOpenGL -lQtPrintSupport
|
||||
GLQTLIBS := -L$(QTLIBPATH) -lQt5Core -lQt5Gui -lQt5Widgets -lQt5OpenGL -lQt5PrintSupport
|
||||
endif
|
||||
else # Qt4
|
||||
ifndef QTLIBS
|
||||
|
||||
@@ -11,6 +11,9 @@ Geant4Py is a Geant4-Python bridge.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
31 Jan. 2019, I.Hrivnacova
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
30 Nov. 2017 K. Murakami
|
||||
- update for 10.5 release
|
||||
- fix CMAKE_INSTALL_PREFIX does not work (id 1924)
|
||||
|
||||
@@ -64,17 +64,17 @@ const G4ParticleGun& G4ParticleGun::operator=(const G4ParticleGun &right)
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////
|
||||
G4int G4ParticleGun::operator==(const G4ParticleGun &right) const
|
||||
G4bool G4ParticleGun::operator==(const G4ParticleGun &right) const
|
||||
/////////////////////////////////////////////////////////////////
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////
|
||||
G4int G4ParticleGun::operator!=(const G4ParticleGun &right) const
|
||||
G4bool G4ParticleGun::operator!=(const G4ParticleGun &right) const
|
||||
/////////////////////////////////////////////////////////////////
|
||||
{
|
||||
return 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -55,7 +55,7 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
bool operator==(const AClass& aclass) const {
|
||||
G4bool operator==(const AClass& aclass) const {
|
||||
if(ival == aclass.ival) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -17,6 +17,12 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
7/5/19 I.Hrivnacova (doxygen-V10-05-00)
|
||||
- Fixes in documentation:
|
||||
- Linking of geant4.tag in standalone documentation
|
||||
- Formatting in extended/.README.txt
|
||||
- Fixed links to icsd and mfp examples in extended/medical/dna/.README.txt
|
||||
|
||||
9/11/18 I.Hrivnacova (doxygen-V10-04-01)
|
||||
- Added chem5 example
|
||||
|
||||
|
||||
@@ -39,8 +39,10 @@ generate() {
|
||||
fi
|
||||
#echo "Generating Doxyfile for example: ${EXAMPLE_NAME}"
|
||||
cat $CURDIR/Doxyfile_standalone | sed s/"EXAMPLE_NAME"/"${EXAMPLE_NAME}"/g | sed sY"BACK_PATH"Y"${2}"Yg | sed sY"ADD_SHARED"Y"${ADD_SHARED}"Yg | sed sY"ADD_COMMON"Y"${ADD_COMMON}"Yg > Doxyfile
|
||||
ln -s $CURDIR/geant4.tag geant4.tag
|
||||
doxygen >& $CURDIR/doxygen_${EXAMPLE_NAME}.out
|
||||
rm Doxyfile
|
||||
rm geant4.tag
|
||||
cd $CURDIR
|
||||
}
|
||||
|
||||
|
||||
@@ -16,6 +16,51 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
30th June 2019 Gabriele Cosmo (examples-V10-05-06)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-06.
|
||||
- Includes tags: B03-V10-05-01, testem1-V10-05-00, exhadr02-V10-05-01,
|
||||
DICOM-V10-05-00, rdecay01-V10-05-00, rdecay02-V10-05-00.
|
||||
|
||||
31st May 2019 Gabriele Cosmo (examples-V10-05-05)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-05.
|
||||
- Includes tags: doxygen-V10-05-00, DMX-V10-05-01, B03-V10-05-00,
|
||||
testem17-V10-05-00, exdna-V10-05-00, dnadamage1-V10-05-00,
|
||||
exampleES2-V10-05-00, LXe-V10-05-00, MPI-V10-05-00,
|
||||
G01-V10-05-03.
|
||||
|
||||
30th April 2019 Gabriele Cosmo (examples-V10-05-04)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-04.
|
||||
- Includes tags: nanobeam-V10-05-00, testem16-V10-05-01, DICOM2-V10-05-00,
|
||||
fano2-V10-05-02, G01-V10-05-02, exampleP01-V10-05-00.
|
||||
|
||||
29th March 2019 Gabriele Cosmo (examples-V10-05-03)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-03.
|
||||
- Includes tags: exampleB4-V10-05-00, monopole-V10-05-00, chem4-V10-05-02,
|
||||
chem5-V10-05-01, microdosimetry-V10-05-00, microprox-V10-05-00,
|
||||
fano-V10-05-03, G01-V10-05-00, exampleP03-V10-05-00.
|
||||
|
||||
28th February 2019 Gabriele Cosmo (examples-V10-05-02)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-02.
|
||||
- Includes tags: airshower-V10-05-00, ChargeExchangeMC-V10-05-01,
|
||||
ccal-V10-05-00, eRosita-V10-05-00, gammaraytel-V10-05-00,
|
||||
hadrontherapy-V10-05-00, DMX-V10-05-00, XrayFluo-V10-05-00,
|
||||
human_phantom-V10-05-00, lAr_calorimeter-V10-05-00,
|
||||
radioprotection-V10-05-00, exbiasing-V10-05-00,
|
||||
exbasic-V10-05-00, testem8-V10-05-00, testem15-V10-05-00,
|
||||
exEventgenerator-V10-05-00, exExoticphysics-V10-05-00,
|
||||
fieldex-V10-05-00, exHadronic-V10-05-00, chem1-V10-05-00,
|
||||
chem2-V10-05-01, chem3-V10-05-01, chem4-V10-05-01,
|
||||
chem5-V10-05-00, microyz-V10-05-02, exparallel-V10-05-00,
|
||||
fano-V10-05-01, fano2-V10-05-01, exParameterisations-V10-05-00,
|
||||
exOptical-V10-05-00, exPersistency-V10-05-00,
|
||||
exRunAndEvent-V10-05-00.
|
||||
|
||||
31st January 2019 Gabriele Cosmo (examples-V10-05-01)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-01.
|
||||
- Includes tags: doiPET-V10-05-00, testem5-V10-05-00, exhadr01-V10-05-00,
|
||||
exhadr02-V10-05-00, dnaphysics-V10-05-00, fano-V10-05-00,
|
||||
fano2-V10-05-00, exampleRE05-V10-05-00.
|
||||
|
||||
6th December 2018 Gabriele Cosmo (examples-V10-05-00)
|
||||
- Updated reference outputs according to reference tag geant4-10-05-ref-00.
|
||||
- Includes tags: doxygen-V10-04-01, examples-advanced-cmk-V10-04-01,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,11 +7,11 @@ cirrone@lns.infn.it
|
||||
History file of the ChargeExchangeMC application
|
||||
====================================================
|
||||
|
||||
31.01.2019 - G.Cosmo, Tag ChargeExchangeMC-V10-04-01
|
||||
31.01.2019 - G.Cosmo, Tag ChargeExchangeMC-V10-05-01
|
||||
Fixed compilation warnings for unused data when no analysis set.
|
||||
Fixed regular expression error in schema validation for lht.gdml.
|
||||
|
||||
31.01.2019 - I.Hrivnacova
|
||||
31.01.2019 - I.Hrivnacova, Tag ChargeExchangeMC-V10-05-00
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.11.2018 - G.Cosmo, Tag ChargeExchangeMC-V10-04-00
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
History file
|
||||
------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova (air_shower-V10-04-05)
|
||||
31.01.2019 - I.Hrivnacova (air_shower-V10-05-00)
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.11.2018 - B. Tome (air_shower-V10-04-04)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -221,25 +221,27 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 1 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0.01 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
100.00 0.01 0.00 1k World
|
||||
0.00 0.00 0.00 1k World
|
||||
0.00 0.00 0.00 1k LensMotherLV
|
||||
|
||||
Voxelisation: top memory users:
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
52.31 0k 1 13 26 0.00 LensMotherLV
|
||||
47.69 0k 3 9 22 0.01 World
|
||||
47.69 0k 3 9 22 0.00 World
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
ooo Run 0 starts (global).
|
||||
|
||||
--------- Ranlux engine status ---------
|
||||
Initial seed = 1555323384
|
||||
float_seed_table[] = 0.922361 0.399452 0.855538 0.663299 0.279111 0.434571 0.0675856 0.538489 0.123617 0.579216 0.821405 0.705478 0.167029 0.680165 0.314814 0.973872 0.545352 0.780809 0.462219 0.320429 0.670571 0.250029 0.730802 0.454868
|
||||
Initial seed = 1561509691
|
||||
float_seed_table[] = 0.390448 0.516582 0.718621 0.902451 0.80715 0.303156 0.569336 0.419386 0.4811 0.847958 0.223924 0.111116 0.408568 0.492225 0.0618125 0.391615 0.0868812 0.649005 0.462748 0.537417 0.387408 0.84246 0.334233 0.0452129
|
||||
i_lag = 23, j_lag = 9
|
||||
carry = 0, count24 = 0
|
||||
luxury = 3 nskip = 199
|
||||
@@ -250,7 +252,7 @@ mu- Mono Plane
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.260000s Real=2.262972s Sys=0.000000s
|
||||
User=2.020000s Real=2.022162s Sys=0.000000s
|
||||
### Run 0 (global) ended.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
@@ -265,22 +267,22 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 10
|
||||
Total navigation history collections cleaned: 9
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0115 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.025 MB
|
||||
Pool ID '7G4Track', size : 0.05 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.024 MB
|
||||
Pool ID '7G4Track', size : 0.0471 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.000961 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.00385 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.097 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.094 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -175,7 +175,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=7.330000s Real=7.351974s Sys=0.010000s
|
||||
User=7.460000s Real=7.476251s Sys=0.000000s
|
||||
|
||||
-------------------------------------------------------------
|
||||
---> The calorimeter is 9 Modules
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -671,6 +671,8 @@ Index : 3 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
/score/dumpQuantityToFile boxMesh_4 eDep EnergyDeposition_Flexi.out
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
Example History file
|
||||
---------------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova (ccal-V10-04-08)
|
||||
31.01.2019 - I.Hrivnacova (ccal-V10-05-00)
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
13.11.2018 - V.Ivanchenko (ccal-V10-04-07)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -485,7 +485,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -493,13 +492,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -507,13 +504,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -522,12 +517,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -538,12 +531,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -554,12 +545,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -568,12 +557,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -582,12 +572,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -598,12 +586,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -613,13 +599,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -649,14 +633,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -664,14 +646,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -680,13 +660,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -710,12 +689,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -723,12 +702,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -737,12 +716,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -750,15 +729,34 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <HcalTB96> world volume
|
||||
This region is in the mass world.
|
||||
@@ -901,7 +899,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20
|
||||
User=22.610000s Real=23.220008s Sys=0.030000s
|
||||
User=24.190000s Real=24.626817s Sys=0.030000s
|
||||
### Run 0 end.
|
||||
... write Root file : ccal.root - done
|
||||
... close Root file : ccal.root - done
|
||||
@@ -917,23 +915,23 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 50
|
||||
Total navigation history collections cleaned: 46
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0721 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0692 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0683 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||
Pool ID '16G4HitsCollection', size : 0.000961 MB
|
||||
Pool ID '7G4Track', size : 0.137 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0567 MB
|
||||
Pool ID '7G4Track', size : 0.113 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0115 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.0106 MB
|
||||
Pool ID '10G4Fragment', size : 0.00481 MB
|
||||
Number of memory pools allocated: 13 of which, static: 0
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.31 MB
|
||||
Dynamic pools deleted: 13 / Total memory freed: 0.27 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
Category History file
|
||||
---------------------
|
||||
|
||||
17.12.2018 - G. Cosmo;doiPET-V10-04-01
|
||||
17.12.2018 - G. Cosmo;doiPET-V10-05-00
|
||||
Fixed compilation warnings on clang for unused data members in
|
||||
doiPETDetectorConstruction and doiPETEventAction classes.
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
31.01.2019, I.Hrivnacova eRosita-V10-04-00
|
||||
31.01.2019, I.Hrivnacova eRosita-V10-05-00
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
15.11.2017, G.Cosmo eRosita-V10-03-02
|
||||
|
||||
@@ -1,35 +1,27 @@
|
||||
0.078239
|
||||
0.0636436
|
||||
0.0679807
|
||||
0.0667619
|
||||
0.00487572
|
||||
0.00422336
|
||||
0.0397981
|
||||
0.0772239
|
||||
0.0903573
|
||||
0.0589464
|
||||
0.00237057
|
||||
0.140665
|
||||
0.0774028
|
||||
0.075511
|
||||
0.101947
|
||||
0.162916
|
||||
0.000637168
|
||||
0.0940728
|
||||
0.0867566
|
||||
0.0602195
|
||||
0.0570583
|
||||
0.0404346
|
||||
0.0765532
|
||||
0.00721636
|
||||
0.0582781
|
||||
0.0737413
|
||||
0.117382
|
||||
0.118227
|
||||
0.0589917
|
||||
0.0262185
|
||||
0.0457463
|
||||
0.0489757
|
||||
0.0196542
|
||||
0.0838494
|
||||
0.0324075
|
||||
0.0160991
|
||||
0.000788236
|
||||
0.0986922
|
||||
0.0304015
|
||||
0.101759
|
||||
0.104658
|
||||
0.0586902
|
||||
0.0313323
|
||||
0.0392977
|
||||
0.0785052
|
||||
0.0366558
|
||||
0.0725703
|
||||
0.0426477
|
||||
0.0414711
|
||||
0.0689778
|
||||
0.0671723
|
||||
0.0256775
|
||||
0.0567745
|
||||
0.0444807
|
||||
0.0446216
|
||||
0.137973
|
||||
0.00526563
|
||||
0.00526563
|
||||
0.0447257
|
||||
0.0846087
|
||||
0.154452
|
||||
0.0604009
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -197,4 +197,4 @@ Index : 2 used in the geometry : Yes
|
||||
---- eRosita event counter: 9000
|
||||
---- eRosita event counter: 10000
|
||||
--- Run 00 ends (Number of events = 10000).
|
||||
User=38.890000s Real=38.931181s Sys=0.010000s
|
||||
User=38.530000s Real=38.641142s Sys=0.010000s
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@
|
||||
History file
|
||||
------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova, Tag gammaraytel-V10-04-07
|
||||
31.01.2019 - I.Hrivnacova, Tag gammaraytel-V10-05-00
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
21.10.2018 - F. Romano, Tag gammaraytel-V10-04-06
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ https://twiki.cern.ch/twiki/bin/view/Geant4/AdvancedExamplesHadrontherapy
|
||||
History file of the Hadrontherapy application
|
||||
====================================================
|
||||
|
||||
31.01.2019, I.Hrivnacova Tag: hadrontherapy-V10-04-10
|
||||
31.01.2019, I.Hrivnacova Tag: hadrontherapy-V10-05-00
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.11.2018 G.Cosmo; Tag: hadrontherapy-V10-04-09
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -577,22 +577,24 @@ Index : 9 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 500
|
||||
User=5.370000s Real=8.881610s Sys=0.040000s
|
||||
User=5.520000s Real=7.801751s Sys=0.030000s
|
||||
... write Csv file : Hadrontherapy_h1_Ekin.csv - done
|
||||
... write Csv file : Hadrontherapy_h1_Edep.csv - done
|
||||
... write Csv files : - done
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
The simulation took: 13.4309 s to run (real time)
|
||||
The simulation took: 11.6726 s to run (real time)
|
||||
Dose is being written to Dose.out
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.26 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.48 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -17,7 +17,7 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
Jan 31, 2019, I.Hrivnacova tag human_phantom-V10-04-01
|
||||
Jan 31, 2019, I.Hrivnacova tag human_phantom-V10-05-00
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
Oct 19, 2018. S. Guatelli tag human_phantom-V10-04-00
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -803,6 +803,8 @@ Index : 2 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 start.
|
||||
Number of events = 100
|
||||
Energy Total in Run:logicalBrain, ID: 0, Energy Deposition (MeV): 0
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -486,6 +486,8 @@ Index : 6 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
Run 0 starts ...
|
||||
|
||||
@@ -495,13 +497,13 @@ Run 0 starts ...
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=11.560000s Real=17.094653s Sys=0.130000s
|
||||
User=11.600000s Real=16.795251s Sys=0.190000s
|
||||
/score/dumpQuantityToFile boxMesh_1 dose dose.out
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 11 of which, static: 0
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.17 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.16 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -8,7 +8,7 @@ Hi-------------------------------------------------------------------
|
||||
Category History file
|
||||
---------------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova (lAr_calorimeter-V10-04-03)
|
||||
31.01.2019 - I.Hrivnacova (lAr_calorimeter-V10-05-00)
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.11.2018 - G. Cosmo (lAr_calorimeter-V10-04-02)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -470,7 +470,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -478,13 +477,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -492,13 +489,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -507,12 +502,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -523,12 +516,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -539,12 +530,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -553,12 +542,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -567,12 +557,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -583,12 +571,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -598,13 +584,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -634,14 +618,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -649,14 +631,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -665,13 +645,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -695,12 +674,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -708,12 +687,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -722,12 +701,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -735,15 +714,34 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <Mother> world volume
|
||||
This region is in the mass world.
|
||||
@@ -862,8 +860,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
51.72 0.15 0.00 152k EmModuleLogical
|
||||
48.28 0.14 0.00 238k HadModuleLogical
|
||||
55.17 0.16 0.00 152k EmModuleLogical
|
||||
44.83 0.13 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
|
||||
@@ -874,14 +872,16 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Voxelisation: top memory users:
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
60.17 238k 1385 2370 3792 0.14 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.15 EmModuleLogical
|
||||
60.17 238k 1385 2370 3792 0.13 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.16 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
|
||||
0.08 0k 1 4 6 0.00 LArgLogical
|
||||
0.05 0k 1 2 4 0.00 CryostatLogical
|
||||
0.05 0k 1 2 4 0.00 FCALEnvelopeLogical
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
Read 2001 events from file data-tracks/tracks-20GeV.dat
|
||||
@@ -891,352 +891,352 @@ Read 2001 events from file data-tracks/tracks-20GeV.dat
|
||||
---> Begin of event: 1
|
||||
**** Primary : 1
|
||||
Vertex : (5.55552,7.16569,32740)
|
||||
Number of F1 Tiles with Positive energy : 41
|
||||
Number of F1 Tiles with Positive energy : 43
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.8978 2.64624 2.7378
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
2.1924
|
||||
4.79245
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 1
|
||||
N Tracks out of world 4
|
||||
N Secondaries 145
|
||||
EmEdep is=19907 MeV
|
||||
HadEdep is=4.2311 MeV
|
||||
Edep in FCAL1 FCAl2 : 19907 4.2311
|
||||
EmEdep is=19792.2 MeV
|
||||
HadEdep is=13.4675 MeV
|
||||
Edep in FCAL1 FCAl2 : 19792.2 13.4675
|
||||
**** Primary : 2
|
||||
Vertex : (-3.76032,10.9751,32740)
|
||||
Number of F1 Tiles with Positive energy : 43
|
||||
Number of F1 Tiles with Positive energy : 58
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.4333 1.82911 1.92245
|
||||
1.6029 2.74975 4.06659
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 67.6689
|
||||
0 184.219
|
||||
Visible Energy in Upstream Dead Materials
|
||||
668.285
|
||||
1645.45
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0.0192657 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 47
|
||||
N Secondaries 210
|
||||
EmEdep is=18674.8 MeV
|
||||
N Tracks out of world 80
|
||||
N Secondaries 117
|
||||
EmEdep is=16949.7 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 18674.8 0
|
||||
Edep in FCAL1 FCAl2 : 16949.7 0
|
||||
**** Primary : 3
|
||||
Vertex : (13.1951,2.677,32740)
|
||||
Number of F1 Tiles with Positive energy : 66
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.21648 1.52167 1.68035
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 125.258
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3203.82
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 138
|
||||
N Secondaries 134
|
||||
EmEdep is=14706.1 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 14706.1 0
|
||||
**** Primary : 4
|
||||
Vertex : (-8.66148,-8.80731,32740)
|
||||
Number of F1 Tiles with Positive energy : 40
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.92692 1.82955 1.6177
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5.12738
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 2
|
||||
N Secondaries 245
|
||||
EmEdep is=19674.4 MeV
|
||||
HadEdep is=4.8066 MeV
|
||||
Edep in FCAL1 FCAl2 : 19674.4 4.8066
|
||||
**** Primary : 5
|
||||
Vertex : (4.75859,7.01622,32740)
|
||||
Number of F1 Tiles with Positive energy : 42
|
||||
Number of F2 tiles with Positive energy : 1
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.68471 1.65527 1.52978
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
19.303
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 3
|
||||
N Secondaries 171
|
||||
EmEdep is=19760.1 MeV
|
||||
HadEdep is=30.937 MeV
|
||||
Edep in FCAL1 FCAl2 : 19760.1 30.937
|
||||
**** Primary : 6
|
||||
Vertex : (1.94335,14.9228,32740)
|
||||
Number of F1 Tiles with Positive energy : 66
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.15515 1.69098 1.73732
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 105.827
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1068.99
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 50
|
||||
N Secondaries 113
|
||||
EmEdep is=17555.9 MeV
|
||||
HadEdep is=8.19057 MeV
|
||||
Edep in FCAL1 FCAl2 : 17555.9 8.19057
|
||||
**** Primary : 7
|
||||
Vertex : (-10.9878,-6.7949,32740)
|
||||
Number of F1 Tiles with Positive energy : 44
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.73196 1.67079 1.5438
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1.14322
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 1
|
||||
N Secondaries 115
|
||||
EmEdep is=19886.1 MeV
|
||||
HadEdep is=2.06297 MeV
|
||||
Edep in FCAL1 FCAl2 : 19886.1 2.06297
|
||||
**** Primary : 8
|
||||
Vertex : (10.9757,-1.49585,32740)
|
||||
Number of F1 Tiles with Positive energy : 48
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.51951 1.68348 1.79117
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
6.72869
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 3
|
||||
N Secondaries 226
|
||||
EmEdep is=19814.6 MeV
|
||||
HadEdep is=4.48638 MeV
|
||||
Edep in FCAL1 FCAl2 : 19814.6 4.48638
|
||||
**** Primary : 9
|
||||
Vertex : (-27.7734,3.36444,32740)
|
||||
Number of F1 Tiles with Positive energy : 67
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.6082 1.86323 2.05237
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 91.1644
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3857.34
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 103
|
||||
N Secondaries 118
|
||||
EmEdep is=14273.9 MeV
|
||||
HadEdep is=4.10008 MeV
|
||||
Edep in FCAL1 FCAl2 : 14273.9 4.10008
|
||||
**** Primary : 10
|
||||
Vertex : (-22.5474,4.1006,32740)
|
||||
Number of F1 Tiles with Positive energy : 51
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.65348 1.80561 1.73355
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 17.2935
|
||||
Visible Energy in Upstream Dead Materials
|
||||
737.009
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 30
|
||||
N Secondaries 125
|
||||
EmEdep is=18889.4 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 18889.4 0
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,32740)
|
||||
Number of F1 Tiles with Positive energy : 44
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.3509 2.05806 1.87792
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.14422
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 6
|
||||
N Secondaries 140
|
||||
EmEdep is=19788 MeV
|
||||
HadEdep is=0.510999 MeV
|
||||
Edep in FCAL1 FCAl2 : 19788 0.510999
|
||||
**** Primary : 12
|
||||
Vertex : (17.1015,6.30557,32740)
|
||||
Number of F1 Tiles with Positive energy : 50
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.23375 1.76977 4.79018
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7.74559
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0.00364232 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 3
|
||||
N Secondaries 143
|
||||
EmEdep is=19799.7 MeV
|
||||
HadEdep is=3.88798 MeV
|
||||
Edep in FCAL1 FCAl2 : 19799.7 3.88798
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 31
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.76285 2.862 2.04556
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 57.4348
|
||||
Visible Energy in Upstream Dead Materials
|
||||
18053
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0.0400659 0 0 0 0 0
|
||||
N Tracks out of world 150
|
||||
N Secondaries 162
|
||||
EmEdep is=1207.72 MeV
|
||||
HadEdep is=0.308437 MeV
|
||||
Edep in FCAL1 FCAl2 : 1207.72 0.308437
|
||||
**** Primary : 14
|
||||
Vertex : (-0.133696,18.3151,32740)
|
||||
Number of F1 Tiles with Positive energy : 41
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.58235 1.55779 1.72147
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
16.8618
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0.0545823 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 1
|
||||
N Secondaries 187
|
||||
EmEdep is=19795.5 MeV
|
||||
HadEdep is=0.434886 MeV
|
||||
Edep in FCAL1 FCAl2 : 19795.5 0.434886
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,32740)
|
||||
Number of F1 Tiles with Positive energy : 43
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.51604 1.71743 1.77622
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
11.7379
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 2
|
||||
N Secondaries 193
|
||||
EmEdep is=19891.5 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19891.5 0
|
||||
**** Primary : 16
|
||||
Vertex : (-20.8489,10.8988,32740)
|
||||
Number of F1 Tiles with Positive energy : 62
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.82243 1.61864 1.95095
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 48.0242
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3350.37
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 86
|
||||
N Secondaries 216
|
||||
EmEdep is=14387.1 MeV
|
||||
HadEdep is=3.9842 MeV
|
||||
Edep in FCAL1 FCAl2 : 14387.1 3.9842
|
||||
**** Primary : 17
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 1
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.99192 3.71154 2.00636
|
||||
2.24068 1.83168 1.89496
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
0 4.08188
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.01474
|
||||
158.568
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 5
|
||||
N Secondaries 148
|
||||
EmEdep is=19783 MeV
|
||||
HadEdep is=28.7649 MeV
|
||||
Edep in FCAL1 FCAl2 : 19783 28.7649
|
||||
**** Primary : 18
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 53
|
||||
N Secondaries 117
|
||||
EmEdep is=19482.7 MeV
|
||||
HadEdep is=126.431 MeV
|
||||
Edep in FCAL1 FCAl2 : 19482.7 126.431
|
||||
**** Primary : 4
|
||||
Vertex : (-8.66148,-8.80731,32740)
|
||||
Number of F1 Tiles with Positive energy : 46
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.88664 1.57291 1.82098
|
||||
1.91172 2.29547 2.05246
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 35.0664
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1377.05
|
||||
3.64144
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0.0482112 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0.000322638 0 0 0 0 0
|
||||
N Tracks out of world 2
|
||||
N Secondaries 168
|
||||
EmEdep is=19831.8 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19831.8 0
|
||||
**** Primary : 5
|
||||
Vertex : (4.75859,7.01622,32740)
|
||||
Number of F1 Tiles with Positive energy : 48
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.82913 1.62878 1.86134
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5.68401
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 41
|
||||
N Secondaries 160
|
||||
EmEdep is=17956.1 MeV
|
||||
N Tracks out of world 2
|
||||
N Secondaries 133
|
||||
EmEdep is=19707.7 MeV
|
||||
HadEdep is=1.78925 MeV
|
||||
Edep in FCAL1 FCAl2 : 19707.7 1.78925
|
||||
**** Primary : 6
|
||||
Vertex : (1.94335,14.9228,32740)
|
||||
Number of F1 Tiles with Positive energy : 61
|
||||
Number of F2 tiles with Positive energy : 1
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.60919 1.98289 1.98605
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 51.3548
|
||||
Visible Energy in Upstream Dead Materials
|
||||
819.637
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 24
|
||||
N Secondaries 91
|
||||
EmEdep is=18398.5 MeV
|
||||
HadEdep is=23.9231 MeV
|
||||
Edep in FCAL1 FCAl2 : 18398.5 23.9231
|
||||
**** Primary : 7
|
||||
Vertex : (-10.9878,-6.7949,32740)
|
||||
Number of F1 Tiles with Positive energy : 68
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.88153 1.7174 2.1055
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 67.1578
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3208.39
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 102
|
||||
N Secondaries 146
|
||||
EmEdep is=14152.2 MeV
|
||||
HadEdep is=0.262277 MeV
|
||||
Edep in FCAL1 FCAl2 : 14152.2 0.262277
|
||||
**** Primary : 8
|
||||
Vertex : (10.9757,-1.49585,32740)
|
||||
Number of F1 Tiles with Positive energy : 46
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.82228 1.9908 1.77897
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
2.16565
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 1
|
||||
N Secondaries 212
|
||||
EmEdep is=19872.6 MeV
|
||||
HadEdep is=3.31062 MeV
|
||||
Edep in FCAL1 FCAl2 : 19872.6 3.31062
|
||||
**** Primary : 9
|
||||
Vertex : (-27.7734,3.36444,32740)
|
||||
Number of F1 Tiles with Positive energy : 58
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.57151 1.61478 1.71181
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 46.2248
|
||||
Visible Energy in Upstream Dead Materials
|
||||
2256.71
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 72
|
||||
N Secondaries 158
|
||||
EmEdep is=16284.4 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 17956.1 0
|
||||
Edep in FCAL1 FCAl2 : 16284.4 0
|
||||
**** Primary : 10
|
||||
Vertex : (-22.5474,4.1006,32740)
|
||||
Number of F1 Tiles with Positive energy : 46
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.60183 1.84915 1.7098
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
10.0708
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 10
|
||||
N Secondaries 170
|
||||
EmEdep is=19555.7 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19555.7 0
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,32740)
|
||||
Number of F1 Tiles with Positive energy : 47
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.57896 1.77312 1.63707
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
70.8216
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0.00293422 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 6
|
||||
N Secondaries 175
|
||||
EmEdep is=19691 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19691 0
|
||||
**** Primary : 12
|
||||
Vertex : (17.1015,6.30557,32740)
|
||||
Number of F1 Tiles with Positive energy : 48
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.64851 1.84068 1.90194
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
8.5445
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 6
|
||||
N Secondaries 242
|
||||
EmEdep is=19742.4 MeV
|
||||
HadEdep is=0.898268 MeV
|
||||
Edep in FCAL1 FCAl2 : 19742.4 0.898268
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 23
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.38313 1.70037 1.60269
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 37.1371
|
||||
Visible Energy in Upstream Dead Materials
|
||||
18722.3
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 137
|
||||
N Secondaries 163
|
||||
EmEdep is=663.73 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 663.73 0
|
||||
**** Primary : 14
|
||||
Vertex : (-0.133696,18.3151,32740)
|
||||
Number of F1 Tiles with Positive energy : 50
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.54168 1.60757 1.63091
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 2.97912
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.10429
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 2
|
||||
N Secondaries 89
|
||||
EmEdep is=19767.1 MeV
|
||||
HadEdep is=1.72804 MeV
|
||||
Edep in FCAL1 FCAl2 : 19767.1 1.72804
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,32740)
|
||||
Number of F1 Tiles with Positive energy : 44
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.54788 1.84957 1.70288
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 4.23693
|
||||
Visible Energy in Upstream Dead Materials
|
||||
13.9003
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 5
|
||||
N Secondaries 118
|
||||
EmEdep is=19747.7 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19747.7 0
|
||||
**** Primary : 16
|
||||
Vertex : (-20.8489,10.8988,32740)
|
||||
Number of F1 Tiles with Positive energy : 74
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.57556 1.73862 1.69838
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 177.4
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5457.04
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 173
|
||||
N Secondaries 250
|
||||
EmEdep is=11976.6 MeV
|
||||
HadEdep is=4.97271 MeV
|
||||
Edep in FCAL1 FCAl2 : 11976.6 4.97271
|
||||
**** Primary : 17
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 71
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
3.19383 1.69053 1.94464
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 102.725
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4380.85
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 118
|
||||
N Secondaries 114
|
||||
EmEdep is=12619.1 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 12619.1 0
|
||||
**** Primary : 18
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 41
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.54997 5.17525 5.17094
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
351.354
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 6
|
||||
N Secondaries 157
|
||||
EmEdep is=19503 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19503 0
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 18
|
||||
User=9.020000s Real=9.044356s Sys=0.000000s
|
||||
User=10.080000s Real=10.194227s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
@@ -1250,21 +1250,21 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 42
|
||||
Total navigation history collections cleaned: 44
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0606 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0615 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0788 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||
Pool ID '7G4Track', size : 0.158 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00481 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.074 MB
|
||||
Pool ID '7G4Track', size : 0.147 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00577 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.00192 MB
|
||||
Number of memory pools allocated: 11 of which, static: 0
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.31 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.3 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -877,10 +877,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.710000s Real=17.995628s Sys=0.030000s
|
||||
User=18.380000s Real=18.705077s Sys=0.020000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 169
|
||||
loop elapsed time [s] : 17.74
|
||||
loop elapsed time [s] : 18.41
|
||||
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||
@@ -1104,10 +1104,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.460000s Real=17.570591s Sys=0.020000s
|
||||
User=18.240000s Real=18.318854s Sys=0.010000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 126
|
||||
loop elapsed time [s] : 17.48
|
||||
loop elapsed time [s] : 18.27
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
/run/geometryModified
|
||||
@@ -1401,10 +1401,10 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.780000s Real=17.852258s Sys=0.010000s
|
||||
User=18.510000s Real=18.570106s Sys=0.010000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 73
|
||||
loop elapsed time [s] : 17.8
|
||||
loop elapsed time [s] : 18.52
|
||||
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <worldPV> world volume
|
||||
@@ -1628,13 +1628,13 @@ Launched 50000 random primary particles
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.820000s Real=17.974260s Sys=0.010000s
|
||||
User=18.810000s Real=18.969119s Sys=0.010000s
|
||||
PrimitiveScorer RUN PhantomSD,TotalDose
|
||||
Number of entries 116
|
||||
loop elapsed time [s] : 17.84
|
||||
loop elapsed time [s] : 18.84
|
||||
|
||||
################ END NEW GEOMETRY ########################
|
||||
loop elapsed time [s] : 75.05
|
||||
loop elapsed time [s] : 78.14
|
||||
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -753,7 +753,9 @@ CoulombScat: for pi-, integral: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 0xdf3ea0
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
##### Create analysis manager 0xf7bd80
|
||||
Using Root analysis manager
|
||||
All Ntuples have been created
|
||||
-> Event # 1 generated
|
||||
@@ -761,34 +763,34 @@ All Ntuples have been created
|
||||
|
||||
-> Event # 2 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.30832977717125
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.012658759300938
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.29742493740398
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.037565768440983
|
||||
|
||||
-> Event # 3 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.32818767799678
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.040445595179846
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
|
||||
-> Event # 4 generated
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.27385154431883
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.024526134263825
|
||||
|
||||
-> Event # 5 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.30051308302664
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.020664256535765
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.35574464570266
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.031220006922342
|
||||
|
||||
-> Event # 6 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.31146622510197
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.047806526099121
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
|
||||
-> Event # 7 generated
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.35269013799571
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.039951247639529
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.32032653995638
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.029179681108197
|
||||
|
||||
-> Event # 8 generated
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
===> The incident alpha particle has reached the targeted cell :
|
||||
-----> total absorbed dose within Nucleus is (Gy) = 0.23499105665859
|
||||
-----> total absorbed dose within Cytoplasm is (Gy) = 0.045595002738755
|
||||
|
||||
-> Event # 9 generated
|
||||
===> Sorry, the incident alpha particle has missed the targeted cell !
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -185,14 +185,16 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 0 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
##### Create analysis manager 0x14f6a50
|
||||
##### Create analysis manager 0x145feb0
|
||||
Using Root analysis manager
|
||||
... open Root analysis file : microelectronics.root - done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.002574s Sys=0.000000s
|
||||
User=0.000000s Real=0.002569s Sys=0.000000s
|
||||
... write Root file : microelectronics.root - done
|
||||
... close Root file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
@@ -239,13 +241,13 @@ Index : 1 used in the geometry : Yes
|
||||
====================================================================
|
||||
|
||||
### Run 1 starts.
|
||||
##### Create analysis manager 0x14f6a50
|
||||
##### Create analysis manager 0x145feb0
|
||||
Using Root analysis manager
|
||||
... open Root analysis file : microelectronics.root - done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.000000s Real=0.000047s Sys=0.000000s
|
||||
User=0.000000s Real=0.000056s Sys=0.000000s
|
||||
... write Root file : microelectronics.root - done
|
||||
... close Root file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
|
||||
@@ -8,6 +8,9 @@
|
||||
Package History file
|
||||
--------------------
|
||||
|
||||
25 Apr 2019- B.Morgan - tag nanobeam-V10-05-00
|
||||
- Include G4Types header before use of G4MULTITHREADED
|
||||
|
||||
09 Sep 2018- S.Incerti - tag nanobeam-V10-04-02
|
||||
- updated default.mac
|
||||
|
||||
|
||||
@@ -26,6 +26,8 @@
|
||||
// Please cite the following paper if you use this software
|
||||
// Nucl.Instrum.Meth.B260:20-27, 2007
|
||||
|
||||
#include "G4Types.hh"
|
||||
|
||||
#ifdef G4MULTITHREADED
|
||||
#include "G4MTRunManager.hh"
|
||||
#else
|
||||
@@ -41,9 +43,9 @@
|
||||
int main(int argc,char** argv) {
|
||||
|
||||
// Choose the Random engine
|
||||
|
||||
|
||||
G4Random::setTheEngine(new CLHEP::RanecuEngine);
|
||||
|
||||
|
||||
// Construct the default run manager
|
||||
|
||||
#ifdef G4MULTITHREADED
|
||||
@@ -51,9 +53,9 @@ int main(int argc,char** argv) {
|
||||
|
||||
// Use only one thread for aberration coefficient calculation ("coef*" macros)
|
||||
//
|
||||
// For high statistics (no aberration coefficient calculation, "image*" & "grid*" macros),
|
||||
// switch to more threads
|
||||
|
||||
// For high statistics (no aberration coefficient calculation, "image*" & "grid*" macros),
|
||||
// switch to more threads
|
||||
|
||||
runManager->SetNumberOfThreads(1);
|
||||
|
||||
#else
|
||||
@@ -61,38 +63,38 @@ int main(int argc,char** argv) {
|
||||
#endif
|
||||
|
||||
// Set mandatory initialization classes
|
||||
|
||||
|
||||
DetectorConstruction* detector = new DetectorConstruction;
|
||||
|
||||
|
||||
runManager->SetUserInitialization(detector);
|
||||
|
||||
|
||||
runManager->SetUserInitialization(new PhysicsList);
|
||||
|
||||
|
||||
// User action initialization
|
||||
|
||||
|
||||
runManager->SetUserInitialization(new ActionInitialization(detector));
|
||||
|
||||
|
||||
// Initialize G4 kernel
|
||||
|
||||
|
||||
runManager->Initialize();
|
||||
|
||||
// Get the pointer to the User Interface manager
|
||||
|
||||
G4UImanager* UImanager = G4UImanager::GetUIpointer();
|
||||
|
||||
|
||||
// Get the pointer to the User Interface manager
|
||||
|
||||
G4UImanager* UImanager = G4UImanager::GetUIpointer();
|
||||
|
||||
if (argc==1) // Define UI session for interactive mode.
|
||||
{
|
||||
UImanager->ApplyCommand("/control/execute default.mac");
|
||||
{
|
||||
UImanager->ApplyCommand("/control/execute default.mac");
|
||||
}
|
||||
else // Batch mode
|
||||
{
|
||||
{
|
||||
G4String command = "/control/execute ";
|
||||
G4String fileName = argv[1];
|
||||
UImanager->ApplyCommand(command+fileName);
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
|
||||
delete runManager;
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -301,6 +301,8 @@ Index : 1 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
Ntuple-1 created
|
||||
Ntuple-2 created
|
||||
Ntuple-3 created
|
||||
@@ -316,7 +318,7 @@ Total number of event = 5000
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1163321693, 2026980818
|
||||
Current couple of seeds = 1450407308, 1749470055
|
||||
----------------------------------------
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
Category History file
|
||||
---------------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova tag radioprotection-V10-04-00
|
||||
31.01.2019 - I.Hrivnacova tag radioprotection-V10-05-00
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
19.11.2016 - A. Dotti tag radioprotection-V10-02-01
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -550,7 +550,8 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: RadioactiveDecay
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -558,13 +559,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -572,13 +571,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -587,12 +584,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_alpha
|
||||
@@ -601,12 +596,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_deuteron
|
||||
@@ -615,24 +608,21 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_neutron
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -641,12 +631,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_triton
|
||||
@@ -655,12 +643,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for deuteron
|
||||
@@ -668,13 +654,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon+
|
||||
@@ -682,7 +666,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: QGSP: 12 GeV ---> 100 TeV
|
||||
@@ -690,7 +673,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -698,7 +680,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: QGSP: 12 GeV ---> 100 TeV
|
||||
@@ -706,20 +687,18 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for lambda
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for neutron
|
||||
@@ -736,7 +715,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Cascade: 19.9 MeV ---> 9.9 GeV
|
||||
Model: NeutronHPInelastic: 0 eV ---> 20 MeV
|
||||
Cr_sctns: NeutronHPInelasticXS: 0 eV ---> 20 MeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: nCapture
|
||||
Model: NeutronHPCapture: 0 eV ---> 20 MeV
|
||||
@@ -756,13 +735,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: QGSP: 12 GeV ---> 100 TeV
|
||||
Model: FTFP: 4 GeV ---> 25 GeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -770,26 +749,26 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: QGSP: 12 GeV ---> 100 TeV
|
||||
Model: FTFP: 4 GeV ---> 25 GeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for proton
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: QGSP: 12 GeV ---> 100 TeV
|
||||
Model: FTFP: 9.5 GeV ---> 25 GeV
|
||||
Model: Binary Cascade: 0 eV ---> 9.9 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -797,15 +776,34 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1442.7
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 1
|
||||
Electron internal conversion ID 0
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -846,6 +844,8 @@ Index : 4 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 start.
|
||||
Number of events = 1000
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -8,7 +8,11 @@
|
||||
Category History file
|
||||
---------------------
|
||||
|
||||
31.01.2019 - I.Hrivnacova (DMX-V10-04-02)
|
||||
10.05.2019 - V. Ivanchenko (DMX-V10-05-01)
|
||||
DMXPhysicsList : add Glauber-Gribov cross section for all elastic
|
||||
processes
|
||||
|
||||
31.01.2019 - I.Hrivnacova (DMX-V10-05-00)
|
||||
Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.08.2018 - A. Ribon (DMX-V10-04-01)
|
||||
|
||||
@@ -168,9 +168,6 @@ void DMXPhysicsList::ConstructMyShortLiveds()
|
||||
slConstructor.ConstructParticle();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// Construct Processes //////////////////////////////////////////////////////
|
||||
void DMXPhysicsList::ConstructProcess()
|
||||
{
|
||||
@@ -422,7 +419,6 @@ void DMXPhysicsList::ConstructEM() {
|
||||
//ionisation
|
||||
pmanager->AddProcess(ahadronIon, -1,2,2);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -549,6 +545,7 @@ void DMXPhysicsList::ConstructOp()
|
||||
#include "G4BGGNucleonInelasticXS.hh"
|
||||
#include "G4ComponentAntiNuclNuclearXS.hh"
|
||||
#include "G4ComponentGGNuclNuclXsc.hh"
|
||||
#include "G4ComponentGGHadronNucleusXsc.hh"
|
||||
|
||||
#include "G4HadronElastic.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
@@ -621,6 +618,9 @@ void DMXPhysicsList::ConstructHad()
|
||||
G4VCrossSectionDataSet * theAntiNucleonData = new G4CrossSectionInelastic( new G4ComponentAntiNuclNuclearXS );
|
||||
G4ComponentGGNuclNuclXsc * ggNuclNuclXsec = new G4ComponentGGNuclNuclXsc();
|
||||
G4VCrossSectionDataSet * theGGNuclNuclData = new G4CrossSectionInelastic(ggNuclNuclXsec);
|
||||
G4VCrossSectionDataSet * theGGNNEl = new G4CrossSectionElastic(ggNuclNuclXsec);
|
||||
G4ComponentGGHadronNucleusXsc * ggHNXsec = new G4ComponentGGHadronNucleusXsc();
|
||||
G4VCrossSectionDataSet * theGGHNEl = new G4CrossSectionElastic(ggHNXsec);
|
||||
|
||||
auto particleIterator=GetParticleIterator();
|
||||
particleIterator->reset();
|
||||
@@ -670,6 +670,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGHNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -686,6 +687,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGHNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -702,6 +704,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGHNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -718,6 +721,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGHNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -811,6 +815,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGHNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering (include annihilation on-fly)
|
||||
@@ -825,6 +830,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGNNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -840,6 +846,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGNNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -854,6 +861,7 @@ void DMXPhysicsList::ConstructHad()
|
||||
{
|
||||
// Elastic scattering
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet( theGGNNEl );
|
||||
theElasticProcess->RegisterMe( elastic_lhep0 );
|
||||
pmanager->AddDiscreteProcess( theElasticProcess );
|
||||
// Inelastic scattering
|
||||
@@ -864,11 +872,9 @@ void DMXPhysicsList::ConstructHad()
|
||||
theInelasticProcess->RegisterMe( theBERTModel0 );
|
||||
pmanager->AddDiscreteProcess( theInelasticProcess );
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Decays ///////////////////////////////////////////////////////////////////
|
||||
#include "G4Decay.hh"
|
||||
#include "G4RadioactiveDecay.hh"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -17,7 +17,7 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
31.01.2019 Ivana Hrivnacova Tag: XrayFluo-V10-04-02
|
||||
31.01.2019 Ivana Hrivnacova Tag: XrayFluo-V10-05-00
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
09.11.2018 Gabiele Cosmo Tag: XrayFluo-V10-04-01
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -2368,7 +2368,6 @@ PhysicsList::SetCuts:CutLength : 1 mm
|
||||
/run/physicsModified
|
||||
#Selecting Reis model for PIXE. Analytical PIXE will be used outsie 01-10 MeV energy Range
|
||||
/process/em/pixeXSmodel ECPSSR_FormFactor
|
||||
G4EmParameters::SetPIXECrossSectionModel ECPSSR_FormFactor
|
||||
/run/physicsModified
|
||||
#
|
||||
#/analysis/setPhysicProduction true
|
||||
@@ -2890,6 +2889,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
69.08 0k 3 9 24 0.00 World
|
||||
30.92 0k 2 3 11 0.00 HPGeDetector
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 starts (master).
|
||||
Reading data... done
|
||||
@@ -2904,7 +2905,7 @@ Created histos
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.730000s Real=0.734524s Sys=0.000000s
|
||||
User=0.680000s Real=0.681905s Sys=0.010000s
|
||||
Going to save histograms
|
||||
... write Root file : xrayfluo.root - done
|
||||
... close Root file : xrayfluo.root - done
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -366,6 +366,8 @@ Index : 6 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run : 0 (master)
|
||||
WARNING: Scene "none" not found.
|
||||
@@ -374,7 +376,7 @@ Opening output file xraytel ... done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.030000s Real=0.026532s Sys=0.000000s
|
||||
User=0.010000s Real=0.012217s Sys=0.000000s
|
||||
##########################################
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -454,12 +454,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: ionElastic
|
||||
Model: NNDiffuseElastic: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -467,7 +465,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -480,7 +477,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -494,12 +490,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -510,12 +504,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -526,12 +518,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -540,12 +530,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -554,12 +545,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -570,12 +559,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -585,7 +572,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -620,13 +606,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -634,13 +618,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -649,13 +631,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -679,12 +660,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -692,12 +673,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -706,13 +687,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 1 GeV ---> 5 GeV
|
||||
Model: Binary Cascade: 0 eV ---> 1.5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -720,7 +701,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -728,6 +708,29 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 0
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
--> Event 100 starts.
|
||||
@@ -742,7 +745,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 gamma of 6 MeV
|
||||
Cumulated dose per run, in scoring volume : 40.5047 picoGy rms = 3.77016 picoGy
|
||||
Cumulated dose per run, in scoring volume : 40.0907 picoGy rms = 3.81872 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
### Run 1 starts.
|
||||
@@ -759,7 +762,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
Cumulated dose per run, in scoring volume : 5.25356 nanoGy rms = 146.949 picoGy
|
||||
Cumulated dose per run, in scoring volume : 5.07255 nanoGy rms = 146.85 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -527,7 +527,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -535,13 +534,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -549,13 +546,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -564,12 +559,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -580,12 +573,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -596,12 +587,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -610,12 +599,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -624,12 +614,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -640,12 +628,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -655,13 +641,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -691,14 +675,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -706,14 +688,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -722,13 +702,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -752,12 +731,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -765,12 +744,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -779,12 +758,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -792,27 +771,48 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
>>> Event: 0
|
||||
0 hits stored in this event
|
||||
>>> Event: 1
|
||||
41 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 2
|
||||
18 hits stored in this event
|
||||
62 hits stored in this event
|
||||
>>> Event: 3
|
||||
0 hits stored in this event
|
||||
>>> Event: 4
|
||||
74 hits stored in this event
|
||||
32 hits stored in this event
|
||||
>>> Event: 5
|
||||
0 hits stored in this event
|
||||
>>> Event: 6
|
||||
@@ -834,11 +834,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 14
|
||||
0 hits stored in this event
|
||||
>>> Event: 15
|
||||
25 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 16
|
||||
0 hits stored in this event
|
||||
>>> Event: 17
|
||||
223 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 18
|
||||
0 hits stored in this event
|
||||
>>> Event: 19
|
||||
@@ -846,53 +846,53 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 20
|
||||
0 hits stored in this event
|
||||
>>> Event: 21
|
||||
0 hits stored in this event
|
||||
99 hits stored in this event
|
||||
>>> Event: 22
|
||||
0 hits stored in this event
|
||||
>>> Event: 23
|
||||
0 hits stored in this event
|
||||
>>> Event: 24
|
||||
0 hits stored in this event
|
||||
85 hits stored in this event
|
||||
>>> Event: 25
|
||||
166 hits stored in this event
|
||||
>>> Event: 26
|
||||
0 hits stored in this event
|
||||
>>> Event: 26
|
||||
63 hits stored in this event
|
||||
>>> Event: 27
|
||||
0 hits stored in this event
|
||||
>>> Event: 28
|
||||
0 hits stored in this event
|
||||
23 hits stored in this event
|
||||
>>> Event: 29
|
||||
17 hits stored in this event
|
||||
32 hits stored in this event
|
||||
>>> Event: 30
|
||||
0 hits stored in this event
|
||||
>>> Event: 31
|
||||
19 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 32
|
||||
0 hits stored in this event
|
||||
>>> Event: 33
|
||||
87 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 34
|
||||
115 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 35
|
||||
0 hits stored in this event
|
||||
>>> Event: 36
|
||||
31 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 37
|
||||
0 hits stored in this event
|
||||
>>> Event: 38
|
||||
0 hits stored in this event
|
||||
107 hits stored in this event
|
||||
>>> Event: 39
|
||||
37 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 40
|
||||
73 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 41
|
||||
0 hits stored in this event
|
||||
>>> Event: 42
|
||||
0 hits stored in this event
|
||||
>>> Event: 43
|
||||
56 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 44
|
||||
53 hits stored in this event
|
||||
79 hits stored in this event
|
||||
>>> Event: 45
|
||||
0 hits stored in this event
|
||||
>>> Event: 46
|
||||
@@ -906,13 +906,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 50
|
||||
0 hits stored in this event
|
||||
>>> Event: 51
|
||||
0 hits stored in this event
|
||||
24 hits stored in this event
|
||||
>>> Event: 52
|
||||
80 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 53
|
||||
0 hits stored in this event
|
||||
>>> Event: 54
|
||||
11 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 55
|
||||
0 hits stored in this event
|
||||
>>> Event: 56
|
||||
@@ -920,7 +920,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 57
|
||||
0 hits stored in this event
|
||||
>>> Event: 58
|
||||
176 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 59
|
||||
0 hits stored in this event
|
||||
>>> Event: 60
|
||||
@@ -928,11 +928,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 61
|
||||
0 hits stored in this event
|
||||
>>> Event: 62
|
||||
76 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 63
|
||||
0 hits stored in this event
|
||||
>>> Event: 64
|
||||
0 hits stored in this event
|
||||
79 hits stored in this event
|
||||
>>> Event: 65
|
||||
0 hits stored in this event
|
||||
>>> Event: 66
|
||||
@@ -944,27 +944,27 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 69
|
||||
0 hits stored in this event
|
||||
>>> Event: 70
|
||||
115 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 71
|
||||
114 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 72
|
||||
0 hits stored in this event
|
||||
>>> Event: 73
|
||||
19 hits stored in this event
|
||||
223 hits stored in this event
|
||||
>>> Event: 74
|
||||
0 hits stored in this event
|
||||
>>> Event: 75
|
||||
0 hits stored in this event
|
||||
>>> Event: 76
|
||||
0 hits stored in this event
|
||||
46 hits stored in this event
|
||||
>>> Event: 77
|
||||
0 hits stored in this event
|
||||
101 hits stored in this event
|
||||
>>> Event: 78
|
||||
0 hits stored in this event
|
||||
105 hits stored in this event
|
||||
>>> Event: 79
|
||||
0 hits stored in this event
|
||||
>>> Event: 80
|
||||
0 hits stored in this event
|
||||
196 hits stored in this event
|
||||
>>> Event: 81
|
||||
0 hits stored in this event
|
||||
>>> Event: 82
|
||||
@@ -972,9 +972,9 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 83
|
||||
0 hits stored in this event
|
||||
>>> Event: 84
|
||||
105 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 85
|
||||
227 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 86
|
||||
0 hits stored in this event
|
||||
>>> Event: 87
|
||||
@@ -982,9 +982,9 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 88
|
||||
0 hits stored in this event
|
||||
>>> Event: 89
|
||||
17 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 90
|
||||
84 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 91
|
||||
0 hits stored in this event
|
||||
>>> Event: 92
|
||||
@@ -1006,205 +1006,205 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
### Run 1 starts.
|
||||
--> Event 0 starts.
|
||||
>>> Event: 0
|
||||
91 hits stored in this event
|
||||
151 hits stored in this event
|
||||
>>> Event: 1
|
||||
60 hits stored in this event
|
||||
111 hits stored in this event
|
||||
>>> Event: 2
|
||||
92 hits stored in this event
|
||||
2475 hits stored in this event
|
||||
>>> Event: 3
|
||||
214 hits stored in this event
|
||||
69 hits stored in this event
|
||||
>>> Event: 4
|
||||
55 hits stored in this event
|
||||
57 hits stored in this event
|
||||
>>> Event: 5
|
||||
63 hits stored in this event
|
||||
71 hits stored in this event
|
||||
>>> Event: 6
|
||||
116 hits stored in this event
|
||||
230 hits stored in this event
|
||||
>>> Event: 7
|
||||
347 hits stored in this event
|
||||
305 hits stored in this event
|
||||
>>> Event: 8
|
||||
228 hits stored in this event
|
||||
47 hits stored in this event
|
||||
>>> Event: 9
|
||||
357 hits stored in this event
|
||||
133 hits stored in this event
|
||||
>>> Event: 10
|
||||
86 hits stored in this event
|
||||
52 hits stored in this event
|
||||
>>> Event: 11
|
||||
629 hits stored in this event
|
||||
150 hits stored in this event
|
||||
>>> Event: 12
|
||||
163 hits stored in this event
|
||||
75 hits stored in this event
|
||||
>>> Event: 13
|
||||
47 hits stored in this event
|
||||
82 hits stored in this event
|
||||
>>> Event: 14
|
||||
51 hits stored in this event
|
||||
277 hits stored in this event
|
||||
>>> Event: 15
|
||||
619 hits stored in this event
|
||||
122 hits stored in this event
|
||||
>>> Event: 16
|
||||
83 hits stored in this event
|
||||
37 hits stored in this event
|
||||
>>> Event: 17
|
||||
116 hits stored in this event
|
||||
83 hits stored in this event
|
||||
>>> Event: 18
|
||||
74 hits stored in this event
|
||||
49 hits stored in this event
|
||||
>>> Event: 19
|
||||
100 hits stored in this event
|
||||
74 hits stored in this event
|
||||
>>> Event: 20
|
||||
129 hits stored in this event
|
||||
98 hits stored in this event
|
||||
>>> Event: 21
|
||||
160 hits stored in this event
|
||||
>>> Event: 22
|
||||
135 hits stored in this event
|
||||
>>> Event: 23
|
||||
90 hits stored in this event
|
||||
>>> Event: 24
|
||||
123 hits stored in this event
|
||||
>>> Event: 25
|
||||
62 hits stored in this event
|
||||
>>> Event: 26
|
||||
76 hits stored in this event
|
||||
>>> Event: 27
|
||||
1407 hits stored in this event
|
||||
>>> Event: 28
|
||||
139 hits stored in this event
|
||||
>>> Event: 29
|
||||
47 hits stored in this event
|
||||
>>> Event: 30
|
||||
89 hits stored in this event
|
||||
>>> Event: 31
|
||||
241 hits stored in this event
|
||||
>>> Event: 32
|
||||
68 hits stored in this event
|
||||
>>> Event: 33
|
||||
73 hits stored in this event
|
||||
>>> Event: 34
|
||||
39 hits stored in this event
|
||||
>>> Event: 35
|
||||
113 hits stored in this event
|
||||
>>> Event: 36
|
||||
60 hits stored in this event
|
||||
>>> Event: 37
|
||||
697 hits stored in this event
|
||||
>>> Event: 38
|
||||
77 hits stored in this event
|
||||
>>> Event: 39
|
||||
70 hits stored in this event
|
||||
>>> Event: 40
|
||||
315 hits stored in this event
|
||||
>>> Event: 41
|
||||
>>> Event: 22
|
||||
297 hits stored in this event
|
||||
>>> Event: 23
|
||||
424 hits stored in this event
|
||||
>>> Event: 24
|
||||
76 hits stored in this event
|
||||
>>> Event: 25
|
||||
50 hits stored in this event
|
||||
>>> Event: 26
|
||||
97 hits stored in this event
|
||||
>>> Event: 27
|
||||
117 hits stored in this event
|
||||
>>> Event: 28
|
||||
161 hits stored in this event
|
||||
>>> Event: 29
|
||||
72 hits stored in this event
|
||||
>>> Event: 30
|
||||
274 hits stored in this event
|
||||
>>> Event: 31
|
||||
141 hits stored in this event
|
||||
>>> Event: 32
|
||||
449 hits stored in this event
|
||||
>>> Event: 33
|
||||
44 hits stored in this event
|
||||
>>> Event: 34
|
||||
93 hits stored in this event
|
||||
>>> Event: 35
|
||||
75 hits stored in this event
|
||||
>>> Event: 36
|
||||
1134 hits stored in this event
|
||||
>>> Event: 37
|
||||
148 hits stored in this event
|
||||
>>> Event: 38
|
||||
251 hits stored in this event
|
||||
>>> Event: 39
|
||||
50 hits stored in this event
|
||||
>>> Event: 40
|
||||
1605 hits stored in this event
|
||||
>>> Event: 41
|
||||
81 hits stored in this event
|
||||
>>> Event: 42
|
||||
101 hits stored in this event
|
||||
113 hits stored in this event
|
||||
>>> Event: 43
|
||||
307 hits stored in this event
|
||||
89 hits stored in this event
|
||||
>>> Event: 44
|
||||
75 hits stored in this event
|
||||
>>> Event: 45
|
||||
135 hits stored in this event
|
||||
77 hits stored in this event
|
||||
>>> Event: 46
|
||||
1001 hits stored in this event
|
||||
839 hits stored in this event
|
||||
>>> Event: 47
|
||||
56 hits stored in this event
|
||||
336 hits stored in this event
|
||||
>>> Event: 48
|
||||
241 hits stored in this event
|
||||
170 hits stored in this event
|
||||
>>> Event: 49
|
||||
94 hits stored in this event
|
||||
71 hits stored in this event
|
||||
>>> Event: 50
|
||||
105 hits stored in this event
|
||||
63 hits stored in this event
|
||||
>>> Event: 51
|
||||
79 hits stored in this event
|
||||
92 hits stored in this event
|
||||
>>> Event: 52
|
||||
54 hits stored in this event
|
||||
193 hits stored in this event
|
||||
>>> Event: 53
|
||||
172 hits stored in this event
|
||||
1047 hits stored in this event
|
||||
>>> Event: 54
|
||||
75 hits stored in this event
|
||||
94 hits stored in this event
|
||||
>>> Event: 55
|
||||
115 hits stored in this event
|
||||
63 hits stored in this event
|
||||
>>> Event: 56
|
||||
51 hits stored in this event
|
||||
59 hits stored in this event
|
||||
>>> Event: 57
|
||||
149 hits stored in this event
|
||||
208 hits stored in this event
|
||||
>>> Event: 58
|
||||
98 hits stored in this event
|
||||
157 hits stored in this event
|
||||
>>> Event: 59
|
||||
69 hits stored in this event
|
||||
118 hits stored in this event
|
||||
>>> Event: 60
|
||||
114 hits stored in this event
|
||||
97 hits stored in this event
|
||||
>>> Event: 61
|
||||
82 hits stored in this event
|
||||
49 hits stored in this event
|
||||
>>> Event: 62
|
||||
60 hits stored in this event
|
||||
136 hits stored in this event
|
||||
>>> Event: 63
|
||||
89 hits stored in this event
|
||||
63 hits stored in this event
|
||||
>>> Event: 64
|
||||
75 hits stored in this event
|
||||
176 hits stored in this event
|
||||
>>> Event: 65
|
||||
100 hits stored in this event
|
||||
144 hits stored in this event
|
||||
>>> Event: 66
|
||||
85 hits stored in this event
|
||||
690 hits stored in this event
|
||||
>>> Event: 67
|
||||
54 hits stored in this event
|
||||
117 hits stored in this event
|
||||
>>> Event: 68
|
||||
498 hits stored in this event
|
||||
70 hits stored in this event
|
||||
>>> Event: 69
|
||||
100 hits stored in this event
|
||||
108 hits stored in this event
|
||||
>>> Event: 70
|
||||
440 hits stored in this event
|
||||
156 hits stored in this event
|
||||
>>> Event: 71
|
||||
175 hits stored in this event
|
||||
135 hits stored in this event
|
||||
>>> Event: 72
|
||||
66 hits stored in this event
|
||||
79 hits stored in this event
|
||||
>>> Event: 73
|
||||
61 hits stored in this event
|
||||
108 hits stored in this event
|
||||
>>> Event: 74
|
||||
98 hits stored in this event
|
||||
83 hits stored in this event
|
||||
>>> Event: 75
|
||||
43 hits stored in this event
|
||||
53 hits stored in this event
|
||||
>>> Event: 76
|
||||
377 hits stored in this event
|
||||
88 hits stored in this event
|
||||
>>> Event: 77
|
||||
65 hits stored in this event
|
||||
115 hits stored in this event
|
||||
>>> Event: 78
|
||||
669 hits stored in this event
|
||||
296 hits stored in this event
|
||||
>>> Event: 79
|
||||
69 hits stored in this event
|
||||
140 hits stored in this event
|
||||
>>> Event: 80
|
||||
3067 hits stored in this event
|
||||
505 hits stored in this event
|
||||
>>> Event: 81
|
||||
72 hits stored in this event
|
||||
201 hits stored in this event
|
||||
>>> Event: 82
|
||||
119 hits stored in this event
|
||||
103 hits stored in this event
|
||||
>>> Event: 83
|
||||
236 hits stored in this event
|
||||
95 hits stored in this event
|
||||
>>> Event: 84
|
||||
98 hits stored in this event
|
||||
116 hits stored in this event
|
||||
>>> Event: 85
|
||||
809 hits stored in this event
|
||||
346 hits stored in this event
|
||||
>>> Event: 86
|
||||
302 hits stored in this event
|
||||
70 hits stored in this event
|
||||
>>> Event: 87
|
||||
76 hits stored in this event
|
||||
2957 hits stored in this event
|
||||
>>> Event: 88
|
||||
82 hits stored in this event
|
||||
202 hits stored in this event
|
||||
>>> Event: 89
|
||||
48 hits stored in this event
|
||||
76 hits stored in this event
|
||||
>>> Event: 90
|
||||
101 hits stored in this event
|
||||
>>> Event: 91
|
||||
105 hits stored in this event
|
||||
>>> Event: 92
|
||||
84 hits stored in this event
|
||||
>>> Event: 93
|
||||
91 hits stored in this event
|
||||
>>> Event: 94
|
||||
>>> Event: 91
|
||||
254 hits stored in this event
|
||||
>>> Event: 92
|
||||
52 hits stored in this event
|
||||
>>> Event: 95
|
||||
280 hits stored in this event
|
||||
>>> Event: 96
|
||||
110 hits stored in this event
|
||||
>>> Event: 97
|
||||
112 hits stored in this event
|
||||
>>> Event: 98
|
||||
>>> Event: 93
|
||||
89 hits stored in this event
|
||||
>>> Event: 94
|
||||
79 hits stored in this event
|
||||
>>> Event: 95
|
||||
86 hits stored in this event
|
||||
>>> Event: 96
|
||||
80 hits stored in this event
|
||||
>>> Event: 97
|
||||
74 hits stored in this event
|
||||
>>> Event: 98
|
||||
161 hits stored in this event
|
||||
>>> Event: 99
|
||||
130 hits stored in this event
|
||||
458 hits stored in this event
|
||||
### Run 2 starts.
|
||||
--> Event 0 starts.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -523,7 +523,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -531,13 +530,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -545,13 +542,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -560,12 +555,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -576,12 +569,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -592,12 +583,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -606,12 +595,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -620,12 +610,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -636,12 +624,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -651,13 +637,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -687,14 +671,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -702,14 +684,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -718,13 +698,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -748,12 +727,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -761,12 +740,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -775,12 +754,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -788,15 +767,36 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
>>> Event: 0
|
||||
@@ -808,21 +808,21 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 3
|
||||
0 hits stored in this event
|
||||
>>> Event: 4
|
||||
0 hits stored in this event
|
||||
15 hits stored in this event
|
||||
>>> Event: 5
|
||||
0 hits stored in this event
|
||||
>>> Event: 6
|
||||
0 hits stored in this event
|
||||
68 hits stored in this event
|
||||
>>> Event: 7
|
||||
21 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 8
|
||||
0 hits stored in this event
|
||||
>>> Event: 9
|
||||
21 hits stored in this event
|
||||
>>> Event: 10
|
||||
0 hits stored in this event
|
||||
>>> Event: 10
|
||||
75 hits stored in this event
|
||||
>>> Event: 11
|
||||
99 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 12
|
||||
0 hits stored in this event
|
||||
>>> Event: 13
|
||||
@@ -830,11 +830,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 14
|
||||
0 hits stored in this event
|
||||
>>> Event: 15
|
||||
0 hits stored in this event
|
||||
39 hits stored in this event
|
||||
>>> Event: 16
|
||||
41 hits stored in this event
|
||||
>>> Event: 17
|
||||
0 hits stored in this event
|
||||
>>> Event: 17
|
||||
75 hits stored in this event
|
||||
>>> Event: 18
|
||||
0 hits stored in this event
|
||||
>>> Event: 19
|
||||
@@ -846,13 +846,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 22
|
||||
0 hits stored in this event
|
||||
>>> Event: 23
|
||||
25 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 24
|
||||
82 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 25
|
||||
0 hits stored in this event
|
||||
>>> Event: 26
|
||||
0 hits stored in this event
|
||||
32 hits stored in this event
|
||||
>>> Event: 27
|
||||
0 hits stored in this event
|
||||
>>> Event: 28
|
||||
@@ -860,7 +860,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 29
|
||||
0 hits stored in this event
|
||||
>>> Event: 30
|
||||
29 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 31
|
||||
0 hits stored in this event
|
||||
>>> Event: 32
|
||||
@@ -868,7 +868,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 33
|
||||
0 hits stored in this event
|
||||
>>> Event: 34
|
||||
154 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 35
|
||||
0 hits stored in this event
|
||||
>>> Event: 36
|
||||
@@ -876,17 +876,17 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 37
|
||||
0 hits stored in this event
|
||||
>>> Event: 38
|
||||
0 hits stored in this event
|
||||
67 hits stored in this event
|
||||
>>> Event: 39
|
||||
0 hits stored in this event
|
||||
>>> Event: 40
|
||||
0 hits stored in this event
|
||||
>>> Event: 41
|
||||
0 hits stored in this event
|
||||
106 hits stored in this event
|
||||
>>> Event: 42
|
||||
0 hits stored in this event
|
||||
>>> Event: 43
|
||||
0 hits stored in this event
|
||||
127 hits stored in this event
|
||||
>>> Event: 44
|
||||
0 hits stored in this event
|
||||
>>> Event: 45
|
||||
@@ -912,9 +912,9 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 55
|
||||
0 hits stored in this event
|
||||
>>> Event: 56
|
||||
0 hits stored in this event
|
||||
9 hits stored in this event
|
||||
>>> Event: 57
|
||||
0 hits stored in this event
|
||||
131 hits stored in this event
|
||||
>>> Event: 58
|
||||
0 hits stored in this event
|
||||
>>> Event: 59
|
||||
@@ -922,7 +922,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 60
|
||||
0 hits stored in this event
|
||||
>>> Event: 61
|
||||
0 hits stored in this event
|
||||
49 hits stored in this event
|
||||
>>> Event: 62
|
||||
0 hits stored in this event
|
||||
>>> Event: 63
|
||||
@@ -930,13 +930,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 64
|
||||
0 hits stored in this event
|
||||
>>> Event: 65
|
||||
0 hits stored in this event
|
||||
18 hits stored in this event
|
||||
>>> Event: 66
|
||||
0 hits stored in this event
|
||||
>>> Event: 67
|
||||
0 hits stored in this event
|
||||
55 hits stored in this event
|
||||
>>> Event: 68
|
||||
0 hits stored in this event
|
||||
150 hits stored in this event
|
||||
>>> Event: 69
|
||||
0 hits stored in this event
|
||||
>>> Event: 70
|
||||
@@ -954,7 +954,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 76
|
||||
0 hits stored in this event
|
||||
>>> Event: 77
|
||||
0 hits stored in this event
|
||||
84 hits stored in this event
|
||||
>>> Event: 78
|
||||
0 hits stored in this event
|
||||
>>> Event: 79
|
||||
@@ -968,13 +968,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 83
|
||||
0 hits stored in this event
|
||||
>>> Event: 84
|
||||
172 hits stored in this event
|
||||
0 hits stored in this event
|
||||
>>> Event: 85
|
||||
0 hits stored in this event
|
||||
>>> Event: 86
|
||||
0 hits stored in this event
|
||||
>>> Event: 87
|
||||
0 hits stored in this event
|
||||
13 hits stored in this event
|
||||
>>> Event: 88
|
||||
0 hits stored in this event
|
||||
>>> Event: 89
|
||||
@@ -984,223 +984,223 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
>>> Event: 91
|
||||
0 hits stored in this event
|
||||
>>> Event: 92
|
||||
0 hits stored in this event
|
||||
35 hits stored in this event
|
||||
>>> Event: 93
|
||||
0 hits stored in this event
|
||||
>>> Event: 94
|
||||
0 hits stored in this event
|
||||
188 hits stored in this event
|
||||
>>> Event: 95
|
||||
0 hits stored in this event
|
||||
>>> Event: 96
|
||||
0 hits stored in this event
|
||||
>>> Event: 97
|
||||
0 hits stored in this event
|
||||
60 hits stored in this event
|
||||
>>> Event: 98
|
||||
15 hits stored in this event
|
||||
71 hits stored in this event
|
||||
>>> Event: 99
|
||||
1 hits stored in this event
|
||||
0 hits stored in this event
|
||||
### Run 1 starts.
|
||||
--> Event 0 starts.
|
||||
>>> Event: 0
|
||||
265 hits stored in this event
|
||||
59 hits stored in this event
|
||||
>>> Event: 1
|
||||
64 hits stored in this event
|
||||
330 hits stored in this event
|
||||
>>> Event: 2
|
||||
52 hits stored in this event
|
||||
78 hits stored in this event
|
||||
>>> Event: 3
|
||||
64 hits stored in this event
|
||||
>>> Event: 4
|
||||
81 hits stored in this event
|
||||
>>> Event: 5
|
||||
107 hits stored in this event
|
||||
>>> Event: 6
|
||||
154 hits stored in this event
|
||||
>>> Event: 7
|
||||
126 hits stored in this event
|
||||
>>> Event: 8
|
||||
116 hits stored in this event
|
||||
>>> Event: 9
|
||||
66 hits stored in this event
|
||||
>>> Event: 10
|
||||
97 hits stored in this event
|
||||
>>> Event: 11
|
||||
68 hits stored in this event
|
||||
>>> Event: 12
|
||||
55 hits stored in this event
|
||||
>>> Event: 13
|
||||
64 hits stored in this event
|
||||
>>> Event: 14
|
||||
61 hits stored in this event
|
||||
>>> Event: 15
|
||||
65 hits stored in this event
|
||||
>>> Event: 16
|
||||
431 hits stored in this event
|
||||
>>> Event: 17
|
||||
929 hits stored in this event
|
||||
>>> Event: 18
|
||||
67 hits stored in this event
|
||||
>>> Event: 19
|
||||
115 hits stored in this event
|
||||
>>> Event: 20
|
||||
74 hits stored in this event
|
||||
>>> Event: 21
|
||||
143 hits stored in this event
|
||||
>>> Event: 22
|
||||
171 hits stored in this event
|
||||
>>> Event: 23
|
||||
661 hits stored in this event
|
||||
>>> Event: 24
|
||||
894 hits stored in this event
|
||||
>>> Event: 25
|
||||
100 hits stored in this event
|
||||
>>> Event: 26
|
||||
124 hits stored in this event
|
||||
>>> Event: 27
|
||||
380 hits stored in this event
|
||||
>>> Event: 28
|
||||
47 hits stored in this event
|
||||
>>> Event: 29
|
||||
99 hits stored in this event
|
||||
>>> Event: 30
|
||||
128 hits stored in this event
|
||||
>>> Event: 31
|
||||
1126 hits stored in this event
|
||||
>>> Event: 32
|
||||
1103 hits stored in this event
|
||||
>>> Event: 33
|
||||
80 hits stored in this event
|
||||
>>> Event: 34
|
||||
204 hits stored in this event
|
||||
>>> Event: 35
|
||||
59 hits stored in this event
|
||||
>>> Event: 36
|
||||
99 hits stored in this event
|
||||
>>> Event: 37
|
||||
190 hits stored in this event
|
||||
>>> Event: 38
|
||||
320 hits stored in this event
|
||||
>>> Event: 39
|
||||
109 hits stored in this event
|
||||
>>> Event: 40
|
||||
98 hits stored in this event
|
||||
>>> Event: 41
|
||||
146 hits stored in this event
|
||||
>>> Event: 42
|
||||
70 hits stored in this event
|
||||
>>> Event: 43
|
||||
343 hits stored in this event
|
||||
>>> Event: 44
|
||||
118 hits stored in this event
|
||||
>>> Event: 45
|
||||
165 hits stored in this event
|
||||
>>> Event: 46
|
||||
113 hits stored in this event
|
||||
>>> Event: 47
|
||||
133 hits stored in this event
|
||||
>>> Event: 48
|
||||
83 hits stored in this event
|
||||
>>> Event: 49
|
||||
2675 hits stored in this event
|
||||
>>> Event: 50
|
||||
111 hits stored in this event
|
||||
>>> Event: 51
|
||||
64 hits stored in this event
|
||||
>>> Event: 52
|
||||
98 hits stored in this event
|
||||
>>> Event: 53
|
||||
89 hits stored in this event
|
||||
>>> Event: 54
|
||||
100 hits stored in this event
|
||||
>>> Event: 55
|
||||
72 hits stored in this event
|
||||
>>> Event: 56
|
||||
94 hits stored in this event
|
||||
>>> Event: 57
|
||||
77 hits stored in this event
|
||||
>>> Event: 58
|
||||
53 hits stored in this event
|
||||
>>> Event: 59
|
||||
74 hits stored in this event
|
||||
>>> Event: 60
|
||||
243 hits stored in this event
|
||||
>>> Event: 61
|
||||
51 hits stored in this event
|
||||
>>> Event: 62
|
||||
128 hits stored in this event
|
||||
>>> Event: 63
|
||||
66 hits stored in this event
|
||||
>>> Event: 64
|
||||
67 hits stored in this event
|
||||
>>> Event: 65
|
||||
89 hits stored in this event
|
||||
>>> Event: 66
|
||||
78 hits stored in this event
|
||||
>>> Event: 67
|
||||
45 hits stored in this event
|
||||
>>> Event: 68
|
||||
79 hits stored in this event
|
||||
>>> Event: 69
|
||||
61 hits stored in this event
|
||||
>>> Event: 70
|
||||
52 hits stored in this event
|
||||
>>> Event: 71
|
||||
70 hits stored in this event
|
||||
>>> Event: 72
|
||||
104 hits stored in this event
|
||||
>>> Event: 73
|
||||
55 hits stored in this event
|
||||
>>> Event: 74
|
||||
57 hits stored in this event
|
||||
>>> Event: 75
|
||||
687 hits stored in this event
|
||||
>>> Event: 76
|
||||
55 hits stored in this event
|
||||
>>> Event: 77
|
||||
126 hits stored in this event
|
||||
>>> Event: 78
|
||||
63 hits stored in this event
|
||||
>>> Event: 79
|
||||
78 hits stored in this event
|
||||
>>> Event: 80
|
||||
77 hits stored in this event
|
||||
>>> Event: 81
|
||||
602 hits stored in this event
|
||||
>>> Event: 82
|
||||
153 hits stored in this event
|
||||
>>> Event: 83
|
||||
78 hits stored in this event
|
||||
>>> Event: 84
|
||||
86 hits stored in this event
|
||||
>>> Event: 85
|
||||
121 hits stored in this event
|
||||
>>> Event: 86
|
||||
69 hits stored in this event
|
||||
>>> Event: 87
|
||||
256 hits stored in this event
|
||||
>>> Event: 88
|
||||
217 hits stored in this event
|
||||
>>> Event: 89
|
||||
61 hits stored in this event
|
||||
>>> Event: 90
|
||||
60 hits stored in this event
|
||||
>>> Event: 91
|
||||
344 hits stored in this event
|
||||
>>> Event: 92
|
||||
86 hits stored in this event
|
||||
>>> Event: 93
|
||||
218 hits stored in this event
|
||||
>>> Event: 94
|
||||
96 hits stored in this event
|
||||
>>> Event: 95
|
||||
59 hits stored in this event
|
||||
>>> Event: 96
|
||||
3171 hits stored in this event
|
||||
>>> Event: 97
|
||||
>>> Event: 4
|
||||
141 hits stored in this event
|
||||
>>> Event: 5
|
||||
178 hits stored in this event
|
||||
>>> Event: 6
|
||||
91 hits stored in this event
|
||||
>>> Event: 7
|
||||
72 hits stored in this event
|
||||
>>> Event: 8
|
||||
60 hits stored in this event
|
||||
>>> Event: 9
|
||||
52 hits stored in this event
|
||||
>>> Event: 10
|
||||
82 hits stored in this event
|
||||
>>> Event: 11
|
||||
61 hits stored in this event
|
||||
>>> Event: 98
|
||||
197 hits stored in this event
|
||||
>>> Event: 99
|
||||
>>> Event: 12
|
||||
792 hits stored in this event
|
||||
>>> Event: 13
|
||||
256 hits stored in this event
|
||||
>>> Event: 14
|
||||
102 hits stored in this event
|
||||
>>> Event: 15
|
||||
177 hits stored in this event
|
||||
>>> Event: 16
|
||||
95 hits stored in this event
|
||||
>>> Event: 17
|
||||
2503 hits stored in this event
|
||||
>>> Event: 18
|
||||
81 hits stored in this event
|
||||
>>> Event: 19
|
||||
95 hits stored in this event
|
||||
>>> Event: 20
|
||||
233 hits stored in this event
|
||||
>>> Event: 21
|
||||
84 hits stored in this event
|
||||
>>> Event: 22
|
||||
54 hits stored in this event
|
||||
>>> Event: 23
|
||||
177 hits stored in this event
|
||||
>>> Event: 24
|
||||
270 hits stored in this event
|
||||
>>> Event: 25
|
||||
98 hits stored in this event
|
||||
>>> Event: 26
|
||||
81 hits stored in this event
|
||||
>>> Event: 27
|
||||
89 hits stored in this event
|
||||
>>> Event: 28
|
||||
85 hits stored in this event
|
||||
>>> Event: 29
|
||||
210 hits stored in this event
|
||||
>>> Event: 30
|
||||
83 hits stored in this event
|
||||
>>> Event: 31
|
||||
90 hits stored in this event
|
||||
>>> Event: 32
|
||||
269 hits stored in this event
|
||||
>>> Event: 33
|
||||
7198 hits stored in this event
|
||||
>>> Event: 34
|
||||
238 hits stored in this event
|
||||
>>> Event: 35
|
||||
47 hits stored in this event
|
||||
>>> Event: 36
|
||||
73 hits stored in this event
|
||||
>>> Event: 37
|
||||
44 hits stored in this event
|
||||
>>> Event: 38
|
||||
106 hits stored in this event
|
||||
>>> Event: 39
|
||||
148 hits stored in this event
|
||||
>>> Event: 40
|
||||
65 hits stored in this event
|
||||
>>> Event: 41
|
||||
74 hits stored in this event
|
||||
>>> Event: 42
|
||||
192 hits stored in this event
|
||||
>>> Event: 43
|
||||
65 hits stored in this event
|
||||
>>> Event: 44
|
||||
78 hits stored in this event
|
||||
>>> Event: 45
|
||||
106 hits stored in this event
|
||||
>>> Event: 46
|
||||
65 hits stored in this event
|
||||
>>> Event: 47
|
||||
70 hits stored in this event
|
||||
>>> Event: 48
|
||||
55 hits stored in this event
|
||||
>>> Event: 49
|
||||
66 hits stored in this event
|
||||
>>> Event: 50
|
||||
1242 hits stored in this event
|
||||
>>> Event: 51
|
||||
83 hits stored in this event
|
||||
>>> Event: 52
|
||||
75 hits stored in this event
|
||||
>>> Event: 53
|
||||
84 hits stored in this event
|
||||
>>> Event: 54
|
||||
62 hits stored in this event
|
||||
>>> Event: 55
|
||||
108 hits stored in this event
|
||||
>>> Event: 56
|
||||
60 hits stored in this event
|
||||
>>> Event: 57
|
||||
189 hits stored in this event
|
||||
>>> Event: 58
|
||||
5762 hits stored in this event
|
||||
>>> Event: 59
|
||||
128 hits stored in this event
|
||||
>>> Event: 60
|
||||
143 hits stored in this event
|
||||
>>> Event: 61
|
||||
570 hits stored in this event
|
||||
>>> Event: 62
|
||||
120 hits stored in this event
|
||||
>>> Event: 63
|
||||
55 hits stored in this event
|
||||
>>> Event: 64
|
||||
382 hits stored in this event
|
||||
>>> Event: 65
|
||||
2121 hits stored in this event
|
||||
>>> Event: 66
|
||||
295 hits stored in this event
|
||||
>>> Event: 67
|
||||
735 hits stored in this event
|
||||
>>> Event: 68
|
||||
106 hits stored in this event
|
||||
>>> Event: 69
|
||||
152 hits stored in this event
|
||||
>>> Event: 70
|
||||
172 hits stored in this event
|
||||
>>> Event: 71
|
||||
86 hits stored in this event
|
||||
>>> Event: 72
|
||||
108 hits stored in this event
|
||||
>>> Event: 73
|
||||
86 hits stored in this event
|
||||
>>> Event: 74
|
||||
208 hits stored in this event
|
||||
>>> Event: 75
|
||||
324 hits stored in this event
|
||||
>>> Event: 76
|
||||
91 hits stored in this event
|
||||
>>> Event: 77
|
||||
425 hits stored in this event
|
||||
>>> Event: 78
|
||||
487 hits stored in this event
|
||||
>>> Event: 79
|
||||
56 hits stored in this event
|
||||
>>> Event: 80
|
||||
109 hits stored in this event
|
||||
>>> Event: 81
|
||||
78 hits stored in this event
|
||||
>>> Event: 82
|
||||
51 hits stored in this event
|
||||
>>> Event: 83
|
||||
2045 hits stored in this event
|
||||
>>> Event: 84
|
||||
222 hits stored in this event
|
||||
>>> Event: 85
|
||||
175 hits stored in this event
|
||||
>>> Event: 86
|
||||
49 hits stored in this event
|
||||
>>> Event: 87
|
||||
202 hits stored in this event
|
||||
>>> Event: 88
|
||||
61 hits stored in this event
|
||||
>>> Event: 89
|
||||
78 hits stored in this event
|
||||
>>> Event: 90
|
||||
87 hits stored in this event
|
||||
>>> Event: 91
|
||||
80 hits stored in this event
|
||||
>>> Event: 92
|
||||
54 hits stored in this event
|
||||
>>> Event: 93
|
||||
85 hits stored in this event
|
||||
>>> Event: 94
|
||||
265 hits stored in this event
|
||||
>>> Event: 95
|
||||
63 hits stored in this event
|
||||
>>> Event: 96
|
||||
29 hits stored in this event
|
||||
>>> Event: 97
|
||||
60 hits stored in this event
|
||||
>>> Event: 98
|
||||
45 hits stored in this event
|
||||
>>> Event: 99
|
||||
116 hits stored in this event
|
||||
### Run 2 starts.
|
||||
--> Event 0 starts.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -217,6 +217,8 @@ Auger cascade enabled 1
|
||||
Check EM cuts disabled for atomic de-excitation 1
|
||||
Use Bearden atomic level energies 0
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
--> Event 0 starts.
|
||||
@@ -231,8 +233,8 @@ Use Bearden atomic level energies 0
|
||||
--> Event 9000 starts.
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run was 10000 events Nb of 'good' e+ annihilations: 1276
|
||||
Total dose in patient : 289.186 picoGy
|
||||
The run was 10000 events Nb of 'good' e+ annihilations: 1286
|
||||
Total dose in patient : 291.796 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -217,6 +217,8 @@ Auger cascade enabled 1
|
||||
Check EM cuts disabled for atomic de-excitation 1
|
||||
Use Bearden atomic level energies 0
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
--> Event 0 starts.
|
||||
@@ -233,9 +235,9 @@ Use Bearden atomic level energies 0
|
||||
--> Event 9000 starts.
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run was 10000 events Nb of 'good' e+ annihilations: 1276
|
||||
Total dose in patient : 289.186 picoGy
|
||||
Total dose in patient : 2.89186e-10 [sigma: 1.74469e-14 | error: 0.00603313 | coeff: 0.00603313 | eff: 1 | fom: 27473.6 | r2int: 3.6395e-05 | r2eff: 0 | hits: 10000 ] Gy
|
||||
The run was 10000 events Nb of 'good' e+ annihilations: 1286
|
||||
Total dose in patient : 291.796 picoGy
|
||||
Total dose in patient : 2.91796e-10 [sigma: 1.75238e-14 | error: 0.0060055 | coeff: 0.0060055 | eff: 1 | fom: 27726.9 | r2int: 3.60625e-05 | r2eff: 0 | hits: 10000 ] Gy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -500,7 +500,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -508,13 +507,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -522,13 +519,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -537,12 +532,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -553,12 +546,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -569,12 +560,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -583,12 +572,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -597,12 +587,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -613,12 +601,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -628,13 +614,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -664,14 +648,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -679,14 +661,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -695,13 +675,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -725,12 +704,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -738,12 +717,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -752,12 +731,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -765,28 +744,49 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 289.365 MeV total track length: 20.9742 cm
|
||||
Gap: total energy: 8.04927 MeV total track length: 4.05218 cm
|
||||
Absorber: total energy: 261.936 MeV total track length: 18.7922 cm
|
||||
Gap: total energy: 23.6541 MeV total track length: 11.542 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 289.365 MeV rms = 0 eV
|
||||
EGap : mean = 8.04927 MeV rms = 0 eV
|
||||
LAbs : mean = 20.9742 cm rms = 0 fm
|
||||
LGap : mean = 4.05218 cm rms = 0 fm
|
||||
EAbs : mean = 261.936 MeV rms = 0 eV
|
||||
EGap : mean = 23.6541 MeV rms = 0 eV
|
||||
LAbs : mean = 18.7922 cm rms = 0 fm
|
||||
LGap : mean = 11.542 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Transportation, phot, compt, conv
|
||||
@@ -1174,15 +1174,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 280.569 MeV total track length: 20.2191 cm
|
||||
Gap: total energy: 13.1411 MeV total track length: 6.44075 cm
|
||||
Absorber: total energy: 264.229 MeV total track length: 18.9842 cm
|
||||
Gap: total energy: 19.9122 MeV total track length: 10.1764 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 280.569 MeV rms = 0 eV
|
||||
EGap : mean = 13.1411 MeV rms = 0 eV
|
||||
LAbs : mean = 20.2191 cm rms = 0 fm
|
||||
LGap : mean = 6.44075 cm rms = 0 fm
|
||||
EAbs : mean = 264.229 MeV rms = 0 eV
|
||||
EGap : mean = 19.9122 MeV rms = 0 eV
|
||||
LAbs : mean = 18.9842 cm rms = 0 fm
|
||||
LGap : mean = 10.1764 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
|
||||
@@ -1555,15 +1555,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 466.665 MeV total track length: 33.9505 cm
|
||||
Gap: total energy: 17.5267 MeV total track length: 8.2102 cm
|
||||
Absorber: total energy: 463.172 MeV total track length: 33.6907 cm
|
||||
Gap: total energy: 11.5496 MeV total track length: 5.30204 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 466.665 MeV rms = 0 eV
|
||||
EGap : mean = 17.5267 MeV rms = 0 eV
|
||||
LAbs : mean = 33.9505 cm rms = 0 fm
|
||||
LGap : mean = 8.2102 cm rms = 0 fm
|
||||
EAbs : mean = 463.172 MeV rms = 0 eV
|
||||
EGap : mean = 11.5496 MeV rms = 0 eV
|
||||
LAbs : mean = 33.6907 cm rms = 0 fm
|
||||
LGap : mean = 5.30204 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -500,7 +500,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -508,13 +507,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -522,13 +519,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -537,12 +532,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -553,12 +546,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -569,12 +560,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -583,12 +572,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -597,12 +587,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -613,12 +601,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -628,13 +614,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -664,14 +648,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -679,14 +661,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -695,13 +675,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -725,12 +704,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -738,12 +717,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -752,12 +731,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -765,29 +744,50 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 289.365 MeV total track length: 20.9742 cm
|
||||
Gap: total energy: 8.04927 MeV total track length: 4.05218 cm
|
||||
Absorber: total energy: 261.936 MeV total track length: 18.7922 cm
|
||||
Gap: total energy: 23.6541 MeV total track length: 11.542 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 289.365 MeV rms = 0 eV
|
||||
EGap : mean = 8.04927 MeV rms = 0 eV
|
||||
LAbs : mean = 20.9742 cm rms = 0 fm
|
||||
LGap : mean = 4.05218 cm rms = 0 fm
|
||||
EAbs : mean = 261.936 MeV rms = 0 eV
|
||||
EGap : mean = 23.6541 MeV rms = 0 eV
|
||||
LAbs : mean = 18.7922 cm rms = 0 fm
|
||||
LGap : mean = 11.542 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Transportation, phot, compt, conv
|
||||
@@ -1176,15 +1176,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 280.569 MeV total track length: 20.2191 cm
|
||||
Gap: total energy: 13.1411 MeV total track length: 6.44075 cm
|
||||
Absorber: total energy: 264.229 MeV total track length: 18.9842 cm
|
||||
Gap: total energy: 19.9122 MeV total track length: 10.1764 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 280.569 MeV rms = 0 eV
|
||||
EGap : mean = 13.1411 MeV rms = 0 eV
|
||||
LAbs : mean = 20.2191 cm rms = 0 fm
|
||||
LGap : mean = 6.44075 cm rms = 0 fm
|
||||
EAbs : mean = 264.229 MeV rms = 0 eV
|
||||
EGap : mean = 19.9122 MeV rms = 0 eV
|
||||
LAbs : mean = 18.9842 cm rms = 0 fm
|
||||
LGap : mean = 10.1764 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
|
||||
@@ -1558,15 +1558,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 466.665 MeV total track length: 33.9505 cm
|
||||
Gap: total energy: 17.5267 MeV total track length: 8.2102 cm
|
||||
Absorber: total energy: 463.172 MeV total track length: 33.6907 cm
|
||||
Gap: total energy: 11.5496 MeV total track length: 5.30204 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 466.665 MeV rms = 0 eV
|
||||
EGap : mean = 17.5267 MeV rms = 0 eV
|
||||
LAbs : mean = 33.9505 cm rms = 0 fm
|
||||
LGap : mean = 8.2102 cm rms = 0 fm
|
||||
EAbs : mean = 463.172 MeV rms = 0 eV
|
||||
EGap : mean = 11.5496 MeV rms = 0 eV
|
||||
LAbs : mean = 33.6907 cm rms = 0 fm
|
||||
LGap : mean = 5.30204 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -500,7 +500,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -508,13 +507,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -522,13 +519,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -537,12 +532,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -553,12 +546,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -569,12 +560,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -583,12 +572,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -597,12 +587,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -613,12 +601,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -628,13 +614,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -664,14 +648,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -679,14 +661,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -695,13 +675,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -725,12 +704,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -738,12 +717,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -752,12 +731,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -765,28 +744,49 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 289.365 MeV total track length: 20.9742 cm
|
||||
Gap: total energy: 8.04927 MeV total track length: 4.05218 cm
|
||||
Absorber: total energy: 261.936 MeV total track length: 18.7922 cm
|
||||
Gap: total energy: 23.6541 MeV total track length: 11.542 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 289.365 MeV rms = 0 eV
|
||||
EGap : mean = 8.04927 MeV rms = 0 eV
|
||||
LAbs : mean = 20.9742 cm rms = 0 fm
|
||||
LGap : mean = 4.05218 cm rms = 0 fm
|
||||
EAbs : mean = 261.936 MeV rms = 0 eV
|
||||
EGap : mean = 23.6541 MeV rms = 0 eV
|
||||
LAbs : mean = 18.7922 cm rms = 0 fm
|
||||
LGap : mean = 11.542 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Transportation, phot, compt, conv
|
||||
@@ -1174,15 +1174,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 280.569 MeV total track length: 20.2191 cm
|
||||
Gap: total energy: 13.1411 MeV total track length: 6.44075 cm
|
||||
Absorber: total energy: 264.229 MeV total track length: 18.9842 cm
|
||||
Gap: total energy: 19.9122 MeV total track length: 10.1764 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 280.569 MeV rms = 0 eV
|
||||
EGap : mean = 13.1411 MeV rms = 0 eV
|
||||
LAbs : mean = 20.2191 cm rms = 0 fm
|
||||
LGap : mean = 6.44075 cm rms = 0 fm
|
||||
EAbs : mean = 264.229 MeV rms = 0 eV
|
||||
EGap : mean = 19.9122 MeV rms = 0 eV
|
||||
LAbs : mean = 18.9842 cm rms = 0 fm
|
||||
LGap : mean = 10.1764 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
|
||||
@@ -1555,15 +1555,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 466.665 MeV total track length: 33.9505 cm
|
||||
Gap: total energy: 17.5267 MeV total track length: 8.2102 cm
|
||||
Absorber: total energy: 463.172 MeV total track length: 33.6907 cm
|
||||
Gap: total energy: 11.5496 MeV total track length: 5.30204 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 466.665 MeV rms = 0 eV
|
||||
EGap : mean = 17.5267 MeV rms = 0 eV
|
||||
LAbs : mean = 33.9505 cm rms = 0 fm
|
||||
LGap : mean = 8.2102 cm rms = 0 fm
|
||||
EAbs : mean = 463.172 MeV rms = 0 eV
|
||||
EGap : mean = 11.5496 MeV rms = 0 eV
|
||||
LAbs : mean = 33.6907 cm rms = 0 fm
|
||||
LGap : mean = 5.30204 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -504,7 +504,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -512,13 +511,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -526,13 +523,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -541,12 +536,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -557,12 +550,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -573,12 +564,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -587,12 +576,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -601,12 +591,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -617,12 +605,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -632,13 +618,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -668,14 +652,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -683,14 +665,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -699,13 +679,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -729,12 +708,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -742,12 +721,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -756,12 +735,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -769,28 +748,49 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 289.365 MeV total track length: 20.9742 cm
|
||||
Gap: total energy: 8.04927 MeV total track length: 4.05218 cm
|
||||
Absorber: total energy: 261.936 MeV total track length: 18.7922 cm
|
||||
Gap: total energy: 23.6541 MeV total track length: 11.542 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 289.365 MeV rms = 0 eV
|
||||
EGap : mean = 8.04927 MeV rms = 0 eV
|
||||
LAbs : mean = 20.9742 cm rms = 0 fm
|
||||
LGap : mean = 4.05218 cm rms = 0 fm
|
||||
EAbs : mean = 261.936 MeV rms = 0 eV
|
||||
EGap : mean = 23.6541 MeV rms = 0 eV
|
||||
LAbs : mean = 18.7922 cm rms = 0 fm
|
||||
LGap : mean = 11.542 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Transportation, phot, compt, conv
|
||||
@@ -1178,15 +1178,15 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 280.569 MeV total track length: 20.2191 cm
|
||||
Gap: total energy: 13.1411 MeV total track length: 6.44075 cm
|
||||
Absorber: total energy: 264.229 MeV total track length: 18.9842 cm
|
||||
Gap: total energy: 19.9122 MeV total track length: 10.1764 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 280.569 MeV rms = 0 eV
|
||||
EGap : mean = 13.1411 MeV rms = 0 eV
|
||||
LAbs : mean = 20.2191 cm rms = 0 fm
|
||||
LGap : mean = 6.44075 cm rms = 0 fm
|
||||
EAbs : mean = 264.229 MeV rms = 0 eV
|
||||
EGap : mean = 19.9122 MeV rms = 0 eV
|
||||
LAbs : mean = 18.9842 cm rms = 0 fm
|
||||
LGap : mean = 10.1764 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
|
||||
@@ -1559,17 +1559,17 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
---> End of event: 0
|
||||
Absorber: total energy: 466.665 MeV total track length: 33.9505 cm
|
||||
Gap: total energy: 17.5267 MeV total track length: 8.2102 cm
|
||||
Absorber: total energy: 463.172 MeV total track length: 33.6907 cm
|
||||
Gap: total energy: 11.5496 MeV total track length: 5.30204 cm
|
||||
|
||||
----> print histograms statistic for the entire run
|
||||
|
||||
EAbs : mean = 466.665 MeV rms = 0 eV
|
||||
EGap : mean = 17.5267 MeV rms = 0 eV
|
||||
LAbs : mean = 33.9505 cm rms = 0 fm
|
||||
LGap : mean = 8.2102 cm rms = 0 fm
|
||||
EAbs : mean = 463.172 MeV rms = 0 eV
|
||||
EGap : mean = 11.5496 MeV rms = 0 eV
|
||||
LAbs : mean = 33.6907 cm rms = 0 fm
|
||||
LGap : mean = 5.30204 cm rms = 0 fm
|
||||
... write Root file : B4.root - done
|
||||
... close Root file : B4.root - done
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
### deleting chargedFilter 0x12b50d0
|
||||
### deleting chargedFilter 0xeb12f0
|
||||
|
||||
@@ -14,7 +14,7 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
24/03/19 J. Allison (exampleB4-V10-04-04)
|
||||
24/03/19 J. Allison (exampleB4-V10-05-00)
|
||||
- Corrected name of include file: csv.hh.
|
||||
|
||||
07/11/18 I. Hrivnacova (exampleB4-V10-04-03)
|
||||
|
||||
+190
-164
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -597,7 +597,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -605,13 +604,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -619,13 +616,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -634,12 +629,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -650,12 +643,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -666,12 +657,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -680,12 +669,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -694,12 +684,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -710,12 +698,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -725,13 +711,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -761,14 +745,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -776,14 +758,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -792,13 +772,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -822,12 +801,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -835,12 +814,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -849,12 +828,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -862,15 +841,36 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
@@ -880,7 +880,7 @@ Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9870028525729 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.187480820039 (nsec)
|
||||
Hodoscope[11] 149.22081616905 (nsec)
|
||||
Hodoscope[15] 65.576829023043 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6712421484922 (nsec) --- local (x,y) -0.012037746267256, -0.0085159382829135
|
||||
Layer[1] : time 8.3391360843463 (nsec) --- local (x,y) -0.030315600792952, -0.024167566373776
|
||||
@@ -891,36 +891,55 @@ Drift Chamber 2 has 6 hits.
|
||||
Layer[0] : time 34.849866313047 (nsec) --- local (x,y) -147.76317879983, -0.052147882737142
|
||||
Layer[1] : time 36.520663250354 (nsec) --- local (x,y) -177.27617143717, -0.051739826089096
|
||||
Layer[2] : time 38.191460957791 (nsec) --- local (x,y) -206.79308079188, -0.053740674093387
|
||||
Layer[2] : time 38.608976761582 (nsec) --- local (x,y) -79.536760126181, -38.102967251888
|
||||
Layer[2] : time 38.533035462003 (nsec) --- local (x,y) -95.40577061821, -27.792043117105
|
||||
Layer[3] : time 39.862259206319 (nsec) --- local (x,y) -236.31274007863, -0.052122312330761
|
||||
Layer[4] : time 41.533057299402 (nsec) --- local (x,y) -265.83160793433, -0.051501320280863
|
||||
EM Calorimeter has 48 hits. Total Edep is 435.11876171389 (MeV)
|
||||
Hadron Calorimeter has 16 hits. Total Edep is 3341.0100145414 (MeV)
|
||||
EM Calorimeter has 47 hits. Total Edep is 492.92788364948 (MeV)
|
||||
Hadron Calorimeter has 14 hits. Total Edep is 4076.0849000116 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 1 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,100000)
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867880839479 (nsec)
|
||||
Hodoscope[7] 4.9867880839461 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 42.693971662561 (nsec)
|
||||
Hodoscope[10] 42.694293488484 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709548423358 (nsec) --- local (x,y) -0.0002125382001035, 0.005531593667468
|
||||
Layer[1] : time 8.3387769441667 (nsec) --- local (x,y) -0.0041737402936241, 0.0096939616529852
|
||||
Layer[2] : time 10.006599045931 (nsec) --- local (x,y) -0.0054305397425549, 0.012711563814613
|
||||
Layer[3] : time 11.674421147761 (nsec) --- local (x,y) -0.0051363975474152, 0.018234843107857
|
||||
Layer[4] : time 13.342243249634 (nsec) --- local (x,y) -0.0040008333492096, 0.024574147756615
|
||||
Layer[0] : time 6.6709548424465 (nsec) --- local (x,y) 0.0023654723465283, 0.0029958774562247
|
||||
Layer[1] : time 8.3387769443583 (nsec) --- local (x,y) 0.0092583952112923, 0.0065090477902136
|
||||
Layer[2] : time 10.006599046206 (nsec) --- local (x,y) 0.014889804763957, 0.0093082680520497
|
||||
Layer[3] : time 11.674421147953 (nsec) --- local (x,y) 0.017249225318149, 0.011162372223327
|
||||
Layer[4] : time 13.342243249858 (nsec) --- local (x,y) 0.024573694500684, 0.012190734056768
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.366649944673 (nsec) --- local (x,y) -82.756230146442, 0.074199631353013
|
||||
Layer[1] : time 36.035384605276 (nsec) --- local (x,y) -99.298682168188, 0.084309391291598
|
||||
Layer[2] : time 37.704119682484 (nsec) --- local (x,y) -115.84490827638, 0.097888527873575
|
||||
Layer[3] : time 39.372854823641 (nsec) --- local (x,y) -132.39171608046, 0.10863936755664
|
||||
Layer[4] : time 41.041590031201 (nsec) --- local (x,y) -148.93912719874, 0.1167636723522
|
||||
EM Calorimeter has 9 hits. Total Edep is 187.4305562532 (MeV)
|
||||
Hadron Calorimeter has 8 hits. Total Edep is 350.84422970332 (MeV)
|
||||
Layer[0] : time 34.36697108394 (nsec) --- local (x,y) -82.645613449279, 0.015715638648115
|
||||
Layer[1] : time 36.035706010562 (nsec) --- local (x,y) -99.190479592015, 0.010452648613942
|
||||
Layer[2] : time 37.704441255786 (nsec) --- local (x,y) -115.73823379578, 0.0058820059345987
|
||||
Layer[3] : time 39.373176656963 (nsec) --- local (x,y) -132.28740125361, 0.00089522590154907
|
||||
Layer[4] : time 41.041911866965 (nsec) --- local (x,y) -148.83483590826, -0.0045504809214454
|
||||
EM Calorimeter has 52 hits. Total Edep is 574.26285055805 (MeV)
|
||||
Hadron Calorimeter has 15 hits. Total Edep is 4525.4106464322 (MeV)
|
||||
|
||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
||||
*** G4Exception : GeomNav1002
|
||||
issued by : G4Navigator::ComputeStep()
|
||||
Stuck Track: potential geometry or navigation problem.
|
||||
Track stuck, not moving for 10 steps.
|
||||
Current phys volume: 'worldPhysical'
|
||||
- at position : (11.98262322407673,1.886507034907874,-999.9282057931308)
|
||||
in direction: (0.7746463528719736,0.4937874870842199,0.3950910598598771)
|
||||
(local position: (11.98262322407673,1.886507034907874,-999.9282057931308))
|
||||
(local direction: (0.7746463528719736,0.4937874870842199,0.3950910598598771)).
|
||||
Previous phys volume: 'magneticPhysical'
|
||||
|
||||
Likely geometry overlap - else navigation problem !
|
||||
*** Trying to get *unstuck* using a push - expanding step to 1e-07 (mm) ... Potential overlap in geometry !
|
||||
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 2 starts.
|
||||
@@ -929,23 +948,23 @@ Hadron Calorimeter has 8 hits. Total Edep is 350.84422970332 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832232738 (nsec)
|
||||
Hodoscope[7] 4.9867832232975 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[5] 43.255350923232 (nsec)
|
||||
Hodoscope[9] 43.185869931828 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709483400643 (nsec) --- local (x,y) 0.010131254385493, 0.0067386659245929
|
||||
Layer[1] : time 8.3387688163792 (nsec) --- local (x,y) 0.017568890416369, 0.013123949024928
|
||||
Layer[2] : time 10.006589292737 (nsec) --- local (x,y) 0.023986535464234, 0.021411866287831
|
||||
Layer[3] : time 11.674409769202 (nsec) --- local (x,y) 0.030664428954467, 0.031288535369469
|
||||
Layer[4] : time 13.342230245713 (nsec) --- local (x,y) 0.035515199511562, 0.042728686138825
|
||||
Layer[0] : time 6.6709483400991 (nsec) --- local (x,y) -0.0097602189738905, 0.00039088437037204
|
||||
Layer[1] : time 8.3387688162472 (nsec) --- local (x,y) -0.01601264737792, 0.0031229755760156
|
||||
Layer[2] : time 10.006589292546 (nsec) --- local (x,y) -0.024214855547357, 0.0079437295165327
|
||||
Layer[3] : time 11.674409769138 (nsec) --- local (x,y) -0.034868707632888, 0.016119822995473
|
||||
Layer[4] : time 13.342230245744 (nsec) --- local (x,y) -0.04662063492823, 0.022907778229638
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.857365537699 (nsec) --- local (x,y) -336.71818928653, 0.29005299359798
|
||||
Layer[1] : time 36.540261759889 (nsec) --- local (x,y) -404.09786578764, 0.32075665202589
|
||||
Layer[2] : time 38.223158131156 (nsec) --- local (x,y) -471.47787639294, 0.35260563772143
|
||||
Layer[3] : time 39.906053745087 (nsec) --- local (x,y) -538.85618851411, 0.3809210241134
|
||||
Layer[4] : time 41.588948454353 (nsec) --- local (x,y) -606.23246953006, 0.40992447540745
|
||||
EM Calorimeter has 36 hits. Total Edep is 79932.777314649 (MeV)
|
||||
Hadron Calorimeter has 4 hits. Total Edep is 49.323716774767 (MeV)
|
||||
Layer[0] : time 34.848343178427 (nsec) --- local (x,y) -149.09902901976, 0.075156201957272
|
||||
Layer[1] : time 36.51912314547 (nsec) --- local (x,y) -178.89869795431, 0.078209633566356
|
||||
Layer[2] : time 38.189902783291 (nsec) --- local (x,y) -208.69670796433, 0.080395701933516
|
||||
Layer[3] : time 39.860682628562 (nsec) --- local (x,y) -238.49576317286, 0.07652656283856
|
||||
Layer[4] : time 41.531463045247 (nsec) --- local (x,y) -268.2976972316, 0.070296142558432
|
||||
EM Calorimeter has 40 hits. Total Edep is 89168.207423231 (MeV)
|
||||
Hadron Calorimeter has 6 hits. Total Edep is 52.093414325283 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 3 starts.
|
||||
@@ -954,98 +973,110 @@ Hadron Calorimeter has 4 hits. Total Edep is 49.323716774767 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0086956736507 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.373860746217 (nsec)
|
||||
Hodoscope[23] 324.04910101522 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7002638769116 (nsec) --- local (x,y) -0.1147357067743, -0.16678419036195
|
||||
Layer[1] : time 8.375415936616 (nsec) --- local (x,y) -0.20177315295081, -0.33613809878474
|
||||
Layer[2] : time 10.050568506527 (nsec) --- local (x,y) -0.3066909962129, -0.51384165971814
|
||||
Layer[3] : time 11.7257211936 (nsec) --- local (x,y) -0.4157745337047, -0.68662746852967
|
||||
Layer[4] : time 13.400873999578 (nsec) --- local (x,y) -0.5339979256023, -0.86368877222108
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.999813267362 (nsec) --- local (x,y) -149.36746195074, -3.7056399267325
|
||||
Layer[1] : time 36.677914564541 (nsec) --- local (x,y) -179.03528819548, -3.9132960471256
|
||||
Layer[2] : time 38.356016333967 (nsec) --- local (x,y) -208.70486410073, -4.1219270716594
|
||||
Layer[3] : time 40.034116634119 (nsec) --- local (x,y) -238.36486642555, -4.352752125363
|
||||
Layer[4] : time 41.712215021421 (nsec) --- local (x,y) -268.01312749945, -4.5802868724287
|
||||
EM Calorimeter has 32 hits. Total Edep is 241.69950462237 (MeV)
|
||||
Hadron Calorimeter has 10 hits. Total Edep is 548.02983942338 (MeV)
|
||||
Hodoscope[7] 5.0086957465269 (nsec)
|
||||
Hodoscope 2 has 0 hits.
|
||||
Drift Chamber 1 has 7 hits.
|
||||
Layer[0] : time 6.7002645678043 (nsec) --- local (x,y) -0.14598974240599, 0.21990922677088
|
||||
Layer[0] : time 12.429437208115 (nsec) --- local (x,y) -119.64607344363, -138.9729530413
|
||||
Layer[0] : time 7.5413840885927 (nsec) --- local (x,y) 37.109088103939, -5.2351157733526
|
||||
Layer[1] : time 8.4088743668851 (nsec) --- local (x,y) 97.285229159412, 31.028528273107
|
||||
Layer[2] : time 10.119095130983 (nsec) --- local (x,y) 199.26051357148, 63.323637396921
|
||||
Layer[3] : time 11.829377160156 (nsec) --- local (x,y) 301.32742650441, 95.617127191765
|
||||
Layer[4] : time 13.540137100126 (nsec) --- local (x,y) 404.14499317723, 127.79018105964
|
||||
Drift Chamber 2 has 0 hits.
|
||||
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 4 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,10000)
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9872692030156 (nsec)
|
||||
Hodoscope[7] 4.9872691763077 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 42.700527467111 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.671598560223 (nsec) --- local (x,y) 0.08145223733764, -0.0071843336174283
|
||||
Layer[1] : time 8.3395816952376 (nsec) --- local (x,y) 0.15249725546808, 0.0099146321620735
|
||||
Layer[2] : time 10.007564833852 (nsec) --- local (x,y) 0.21498796086067, 0.052353944117723
|
||||
Layer[3] : time 11.675547974207 (nsec) --- local (x,y) 0.27321568608509, 0.09084373134692
|
||||
Layer[4] : time 13.343531108087 (nsec) --- local (x,y) 0.31571757717407, 0.10412274789755
|
||||
Hodoscope[10] 42.701605778894 (nsec)
|
||||
Drift Chamber 1 has 19 hits.
|
||||
Layer[0] : time 6.6715984986049 (nsec) --- local (x,y) 0.06622744441716, 0.032181587595107
|
||||
Layer[1] : time 8.3395816035686 (nsec) --- local (x,y) 0.17435224986944, 0.030817628179782
|
||||
Layer[2] : time 10.007564706139 (nsec) --- local (x,y) 0.27285139112491, 0.018673862132418
|
||||
Layer[2] : time 10.072650502563 (nsec) --- local (x,y) 0.49537827104796, 7.4408717359161
|
||||
Layer[2] : time 10.153406732059 (nsec) --- local (x,y) 1.1815326791002, 8.4339697109468
|
||||
Layer[2] : time 10.222693267594 (nsec) --- local (x,y) -3.641227373592, 7.6942530429649
|
||||
Layer[2] : time 10.251567186791 (nsec) --- local (x,y) -2.3071320625547, 6.3618411497193
|
||||
Layer[2] : time 10.253583361103 (nsec) --- local (x,y) -2.2376568647966, 6.3498326923526
|
||||
Layer[2] : time 10.255556414613 (nsec) --- local (x,y) -2.1614261842817, 6.344868152891
|
||||
Layer[2] : time 10.264331294273 (nsec) --- local (x,y) -1.9865669986028, 6.6053283902125
|
||||
Layer[2] : time 10.266101757396 (nsec) --- local (x,y) -1.9726243782901, 6.6716210876972
|
||||
Layer[2] : time 10.268022459516 (nsec) --- local (x,y) -1.9787926322653, 6.7182995804453
|
||||
Layer[2] : time 10.27653840329 (nsec) --- local (x,y) -1.9146967700501, 7.008109970435
|
||||
Layer[2] : time 10.278215587789 (nsec) --- local (x,y) -1.8901595546037, 7.0973418455455
|
||||
Layer[2] : time 10.27982843306 (nsec) --- local (x,y) -1.8665857160701, 7.1885060163575
|
||||
Layer[2] : time 10.281489604603 (nsec) --- local (x,y) -1.8336576619803, 7.2621050152783
|
||||
Layer[2] : time 10.283287352649 (nsec) --- local (x,y) -1.8164887878251, 7.3453829044518
|
||||
Layer[3] : time 11.675547801113 (nsec) --- local (x,y) 0.34743112112818, -0.0073959310959228
|
||||
Layer[4] : time 13.343530905436 (nsec) --- local (x,y) 0.42722331729521, -0.02789123870871
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.372187972216 (nsec) --- local (x,y) -83.707938129973, 0.60966841094038
|
||||
Layer[1] : time 36.041125335879 (nsec) --- local (x,y) -100.6226692878, 0.67331194700132
|
||||
Layer[2] : time 37.710066242167 (nsec) --- local (x,y) -117.56873420584, 0.74168011114081
|
||||
Layer[3] : time 39.379005740117 (nsec) --- local (x,y) -134.50226483146, 0.81808599115816
|
||||
Layer[4] : time 41.047945373078 (nsec) --- local (x,y) -151.43703806243, 0.87652247039715
|
||||
EM Calorimeter has 3 hits. Total Edep is 337.739457325 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 79.556341462739 (MeV)
|
||||
Layer[0] : time 34.373294976025 (nsec) --- local (x,y) -83.357086881065, -0.44217138094309
|
||||
Layer[1] : time 36.042233050516 (nsec) --- local (x,y) -100.27808854315, -0.49409873991894
|
||||
Layer[2] : time 37.711165079976 (nsec) --- local (x,y) -117.14544767013, -0.52786267846152
|
||||
Layer[3] : time 39.380096530323 (nsec) --- local (x,y) -134.00761092591, -0.56926524903612
|
||||
Layer[4] : time 41.049028703223 (nsec) --- local (x,y) -150.876168194, -0.61587355034602
|
||||
EM Calorimeter has 22 hits. Total Edep is 281.92153637785 (MeV)
|
||||
Hadron Calorimeter has 7 hits. Total Edep is 276.51463075276 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 5 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,10000)
|
||||
>>> Event 0 >>> Simulation truth : e+ (-0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832463859 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.191558993688 (nsec)
|
||||
Hodoscope[7] 4.9867832297603 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[9] 43.188454179886 (nsec)
|
||||
Hodoscope[8] 56.189944418789 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709485553751 (nsec) --- local (x,y) 0.30577281297871, -0.10174326083885
|
||||
Layer[1] : time 8.338769265239 (nsec) --- local (x,y) 0.52724854855183, -0.24633495872556
|
||||
Layer[2] : time 10.006589991544 (nsec) --- local (x,y) 0.75015442628807, -0.40550062096937
|
||||
Layer[3] : time 11.674410717738 (nsec) --- local (x,y) 0.97470286855848, -0.56223046959022
|
||||
Layer[4] : time 13.342231441215 (nsec) --- local (x,y) 1.2091950099251, -0.70060049778532
|
||||
Layer[0] : time 6.6709483739504 (nsec) --- local (x,y) 0.15251000056211, -0.011936252794154
|
||||
Layer[1] : time 8.3387688772442 (nsec) --- local (x,y) 0.24249259901067, -0.017785731835937
|
||||
Layer[2] : time 10.006589390801 (nsec) --- local (x,y) 0.34204941918421, -0.05319610087362
|
||||
Layer[3] : time 11.674409903583 (nsec) --- local (x,y) 0.43752781129784, -0.095259159838083
|
||||
Layer[4] : time 13.342230437621 (nsec) --- local (x,y) 0.55433090358452, -0.15609496125456
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.852973646032 (nsec) --- local (x,y) -151.50883328478, -2.6259275126922
|
||||
Layer[1] : time 36.523967721952 (nsec) --- local (x,y) -182.36813997368, -2.7982260588476
|
||||
Layer[2] : time 38.194957719353 (nsec) --- local (x,y) -213.20746269217, -2.9918886545017
|
||||
Layer[3] : time 39.865950674657 (nsec) --- local (x,y) -244.06104133286, -3.207566895159
|
||||
Layer[4] : time 41.536942641656 (nsec) --- local (x,y) -274.9098863149, -3.4120986607444
|
||||
EM Calorimeter has 22 hits. Total Edep is 9268.1577198952 (MeV)
|
||||
Hadron Calorimeter has 1 hits. Total Edep is 1.1458287991085 (MeV)
|
||||
Layer[0] : time 34.851025789491 (nsec) --- local (x,y) -146.63750892829, -0.86576368367825
|
||||
Layer[1] : time 36.521781763369 (nsec) --- local (x,y) -176.31576384356, -0.99118751753707
|
||||
Layer[2] : time 38.192541772884 (nsec) --- local (x,y) -206.0143852406, -1.1269218429053
|
||||
Layer[3] : time 39.863300073806 (nsec) --- local (x,y) -235.70428302337, -1.2797244473092
|
||||
Layer[4] : time 41.534063966381 (nsec) --- local (x,y) -265.42241822065, -1.4382587883146
|
||||
EM Calorimeter has 17 hits. Total Edep is 8999.7702973586 (MeV)
|
||||
Hadron Calorimeter has 3 hits. Total Edep is 2.2932048791625 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 6 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (-0,0,1000)
|
||||
>>> Event 0 >>> Simulation truth : proton (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 6.8393340964912 (nsec)
|
||||
Hodoscope[7] 6.8392432921986 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 59.387850715913 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 9.1534165742401 (nsec) --- local (x,y) -0.45938040504108, 2.1632413475087
|
||||
Layer[1] : time 11.445338132091 (nsec) --- local (x,y) -0.44795438204124, 4.726063056104
|
||||
Layer[2] : time 13.737554704262 (nsec) --- local (x,y) -0.11344861336258, 7.333863346261
|
||||
Layer[3] : time 16.029982053736 (nsec) --- local (x,y) 0.59178723219958, 10.018309566207
|
||||
Layer[4] : time 18.322603688632 (nsec) --- local (x,y) 1.2697364131337, 12.396595061288
|
||||
Hodoscope[9] 59.418660212939 (nsec)
|
||||
Drift Chamber 1 has 7 hits.
|
||||
Layer[0] : time 9.1534750800395 (nsec) --- local (x,y) -0.31502531831742, -0.33049547600802
|
||||
Layer[1] : time 11.445764506745 (nsec) --- local (x,y) 0.20713475076487, 0.2871474328297
|
||||
Layer[2] : time 13.738302081522 (nsec) --- local (x,y) 0.9369708751382, 0.78773459402866
|
||||
Layer[2] : time 13.881475608116 (nsec) --- local (x,y) -27.463580194682, 1.3110397502772
|
||||
Layer[2] : time 13.960446430184 (nsec) --- local (x,y) -37.302035192649, -0.78648238137664
|
||||
Layer[3] : time 16.031150392419 (nsec) --- local (x,y) 2.0249990516662, 1.4193244305751
|
||||
Layer[4] : time 18.324196011716 (nsec) --- local (x,y) 3.0560318641264, 1.8593954811348
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 47.907144269158 (nsec) --- local (x,y) -160.987978702, 43.518111744192
|
||||
Layer[1] : time 50.207587027184 (nsec) --- local (x,y) -192.82351092759, 47.18463126589
|
||||
Layer[2] : time 52.508055956621 (nsec) --- local (x,y) -224.01557098297, 51.504928668363
|
||||
Layer[3] : time 54.808675267586 (nsec) --- local (x,y) -255.06963585847, 55.918434942145
|
||||
Layer[4] : time 57.109468806338 (nsec) --- local (x,y) -285.89741248924, 59.896114889997
|
||||
EM Calorimeter has 2 hits. Total Edep is 294.38857364539 (MeV)
|
||||
Layer[0] : time 47.934187114497 (nsec) --- local (x,y) -148.9600628611, 3.5872418304105
|
||||
Layer[1] : time 50.235159305694 (nsec) --- local (x,y) -181.13262740638, 3.3995011929476
|
||||
Layer[2] : time 52.536376493155 (nsec) --- local (x,y) -213.1432828276, 3.2241476654062
|
||||
Layer[3] : time 54.837875714192 (nsec) --- local (x,y) -245.14225084125, 3.1674599833334
|
||||
Layer[4] : time 57.139473884624 (nsec) --- local (x,y) -276.81791012486, 3.1979296510986
|
||||
EM Calorimeter has 3 hits. Total Edep is 295.77872951441 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
@@ -1055,53 +1086,48 @@ Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0351744238433 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 43.144550223204 (nsec)
|
||||
Hodoscope[7] 5.0269476301391 (nsec)
|
||||
Hodoscope 2 has 0 hits.
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7357432171959 (nsec) --- local (x,y) 1.9043200643828, 0.19589345751403
|
||||
Layer[1] : time 8.4198133203744 (nsec) --- local (x,y) 2.7231285155215, 0.57954452710693
|
||||
Layer[2] : time 10.103885535474 (nsec) --- local (x,y) 3.5021121467683, 0.931422314552
|
||||
Layer[3] : time 11.787960751572 (nsec) --- local (x,y) 4.2477421410286, 1.200777409572
|
||||
Layer[4] : time 13.472038771024 (nsec) --- local (x,y) 5.0517702528148, 1.3522708819271
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.732228326382 (nsec) --- local (x,y) -93.965771228101, -1.9866989143033
|
||||
Layer[1] : time 36.41800697543 (nsec) --- local (x,y) -116.17883174192, -2.7281125964423
|
||||
Layer[2] : time 38.10376343832 (nsec) --- local (x,y) -138.22507628389, -3.5603569490857
|
||||
Layer[3] : time 39.789530570444 (nsec) --- local (x,y) -160.32709512522, -4.3879622136804
|
||||
Layer[4] : time 41.47529724449 (nsec) --- local (x,y) -182.39828502106, -5.4112094704739
|
||||
EM Calorimeter has 18 hits. Total Edep is 434.30555752461 (MeV)
|
||||
Hadron Calorimeter has 1 hits. Total Edep is 0.11257733547859 (MeV)
|
||||
Layer[0] : time 6.7243478874025 (nsec) --- local (x,y) 18.505985591116, 52.909855109307
|
||||
Layer[1] : time 8.405273392254 (nsec) --- local (x,y) 23.169288601367, 69.003521069605
|
||||
Layer[2] : time 10.086171364588 (nsec) --- local (x,y) 27.233590459073, 84.993935842624
|
||||
Layer[3] : time 11.767053201408 (nsec) --- local (x,y) 31.374452379299, 100.78828431307
|
||||
Layer[4] : time 13.447935573521 (nsec) --- local (x,y) 35.481599159987, 116.57427752443
|
||||
Drift Chamber 2 has 1 hits.
|
||||
Layer[3] : time 40.904037005559 (nsec) --- local (x,y) -1002.968374847, 225.14050999457
|
||||
EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 8 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (-0,0,1000)
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867840840488 (nsec)
|
||||
Hodoscope[7] 4.9867841192189 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.187084717772 (nsec)
|
||||
Hodoscope[9] 43.162038072587 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709516797019 (nsec) --- local (x,y) 0.82801873055063, -0.83121081657638
|
||||
Layer[1] : time 8.3387746251765 (nsec) --- local (x,y) 1.3690656820231, -1.2889157530718
|
||||
Layer[2] : time 10.006597004488 (nsec) --- local (x,y) 1.2481029985294, -2.031552412361
|
||||
Layer[3] : time 11.674418994256 (nsec) --- local (x,y) 1.1961394393262, -2.6999843696025
|
||||
Layer[4] : time 13.34224187306 (nsec) --- local (x,y) 0.88277352295414, -3.485825643485
|
||||
Layer[0] : time 6.6709677334077 (nsec) --- local (x,y) -2.5860692839965, 1.2825386959742
|
||||
Layer[1] : time 8.3388082769191 (nsec) --- local (x,y) -4.5334827590771, 2.7718017868367
|
||||
Layer[2] : time 10.006646946714 (nsec) --- local (x,y) -6.2841173562731, 4.315567901806
|
||||
Layer[3] : time 11.674485391144 (nsec) --- local (x,y) -7.9538129577387, 5.9271349421832
|
||||
Layer[4] : time 13.342321517914 (nsec) --- local (x,y) -9.4466890457519, 7.4952480727569
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.847218042736 (nsec) --- local (x,y) -158.88920274515, -27.194019286165
|
||||
Layer[1] : time 36.518495586595 (nsec) --- local (x,y) -190.97916271442, -29.969493211624
|
||||
Layer[2] : time 38.189730318557 (nsec) --- local (x,y) -222.86367568175, -32.795990196258
|
||||
Layer[3] : time 39.860953903829 (nsec) --- local (x,y) -254.69383899445, -35.643089383902
|
||||
Layer[4] : time 41.532207115457 (nsec) --- local (x,y) -286.65890149978, -38.540707395291
|
||||
EM Calorimeter has 7 hits. Total Edep is 971.64801121449 (MeV)
|
||||
Layer[0] : time 34.82401479648 (nsec) --- local (x,y) -163.90752285253, 31.915603520201
|
||||
Layer[1] : time 36.494906863134 (nsec) --- local (x,y) -194.21689922381, 33.653079961842
|
||||
Layer[2] : time 38.165778938126 (nsec) --- local (x,y) -224.407923406, 35.692579972079
|
||||
Layer[3] : time 39.836639810941 (nsec) --- local (x,y) -254.5294726887, 37.929767942222
|
||||
Layer[4] : time 41.507515598291 (nsec) --- local (x,y) -284.7013540166, 40.470287320102
|
||||
EM Calorimeter has 7 hits. Total Edep is 970.71218336815 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4Integration Driver Stats: #QuickAdvance 122118 - #AccurateAdvance 10768 #good steps 272062 #bad steps 5527
|
||||
G4Integration Driver Stats: #QuickAdvance 66776 - #AccurateAdvance 15063 #good steps 209215 #bad steps 4343
|
||||
G4ChordFinder statistics report:
|
||||
No trials: 14392 No Calls: 13379 Max-trial: 9
|
||||
No trials: 18967 No Calls: 17322 Max-trial: 10
|
||||
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
|
||||
|
||||
@@ -15,7 +15,7 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
31/01/19, I.Hrivnacova (exbasic-V10-04-01)
|
||||
31/01/19, I.Hrivnacova (exbasic-V10-05-00)
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
30/11/18 I. Hrivnacova (exbasic-V10-04-00)
|
||||
|
||||
@@ -17,8 +17,7 @@ Webified README pages are not yet available for all examples. </i>
|
||||
- \link Examples_biasing biasing \endlink
|
||||
- Examples of event biasing, scoring and reverse-MC-
|
||||
- \link Examples_common common \endlink
|
||||
- A set of common classes which can be reused in other examples demonstrating
|
||||
just a particular feature
|
||||
- A set of common classes which can be reused in other examples demonstrating just a particular feature
|
||||
- \link Examples_electromagnetic electromagnetic \endlink
|
||||
- Specific EM physics simulation with histogramming
|
||||
- \link Exampleerrorpropagation errorpropagation \endlink
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -496,7 +496,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -504,13 +503,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -518,13 +515,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -533,12 +528,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -549,12 +542,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -565,12 +556,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -579,12 +568,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -593,12 +583,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -609,12 +597,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -624,13 +610,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -660,14 +644,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -675,14 +657,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -691,13 +671,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -721,12 +700,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -734,12 +713,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -748,12 +727,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -761,15 +740,36 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 start.
|
||||
... open Root analysis file : AnaEx01.root - done
|
||||
|
||||
@@ -797,20 +797,20 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Run------------------------------
|
||||
|
||||
mean Energy in Absorber : 453.993 MeV +- 14.1052 MeV
|
||||
mean Energy in Gap : 24.0316 MeV +- 7.25488 MeV
|
||||
mean Energy in Absorber : 454.443 MeV +- 13.0057 MeV
|
||||
mean Energy in Gap : 24.2971 MeV +- 7.04504 MeV
|
||||
|
||||
mean trackLength in Absorber : 32.6919 cm +- 1.11124 cm
|
||||
mean trackLength in Gap : 11.9224 cm +- 3.70988 cm
|
||||
mean trackLength in Absorber : 32.732 cm +- 1.0159 cm
|
||||
mean trackLength in Gap : 12.0539 cm +- 3.63363 cm
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
----> print histograms statistic
|
||||
|
||||
EAbs: mean = 453.993 MeV rms = 14.1052 MeV
|
||||
EGap: mean = 24.0316 MeV rms = 7.25488 MeV
|
||||
LAbs: mean = 32.6919 cm rms = 1.11124 cm
|
||||
LGap: mean = 11.9224 cm rms = 3.70988 cm
|
||||
EAbs: mean = 454.443 MeV rms = 13.0057 MeV
|
||||
EGap: mean = 24.2971 MeV rms = 7.04504 MeV
|
||||
LAbs: mean = 32.732 cm rms = 1.0159 cm
|
||||
LGap: mean = 12.0539 cm rms = 3.63363 cm
|
||||
... write Root file : AnaEx01.root - done
|
||||
... close Root file : AnaEx01.root - done
|
||||
|
||||
@@ -1208,20 +1208,20 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Run------------------------------
|
||||
|
||||
mean Energy in Absorber : 199.251 MeV +- 0 eV
|
||||
mean Energy in Gap : 41.6123 MeV +- 0 eV
|
||||
mean Energy in Absorber : 202.521 MeV +- 0 eV
|
||||
mean Energy in Gap : 47.9009 MeV +- 0 eV
|
||||
|
||||
mean trackLength in Absorber : 48.4421 cm +- 0 fm
|
||||
mean trackLength in Gap : 22.5737 cm +- 0 fm
|
||||
mean trackLength in Absorber : 49.5178 cm +- 0 fm
|
||||
mean trackLength in Gap : 24.943 cm +- 0 fm
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
----> print histograms statistic
|
||||
|
||||
EAbs: mean = 199.251 MeV rms = 0 eV
|
||||
EGap: mean = 41.6123 MeV rms = 0 eV
|
||||
LAbs: mean = 48.4421 cm rms = 0 fm
|
||||
LGap: mean = 22.5737 cm rms = 0 fm
|
||||
EAbs: mean = 202.521 MeV rms = 0 eV
|
||||
EGap: mean = 47.9009 MeV rms = 0 eV
|
||||
LAbs: mean = 49.5178 cm rms = 0 fm
|
||||
LGap: mean = 24.943 cm rms = 0 fm
|
||||
... write Root file : AnaEx01.root - done
|
||||
... close Root file : AnaEx01.root - done
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -496,7 +496,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -504,13 +503,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -518,13 +515,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -533,12 +528,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -549,12 +542,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -565,12 +556,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -579,12 +568,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -593,12 +583,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -609,12 +597,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -624,13 +610,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -660,14 +644,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -675,14 +657,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -691,13 +671,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -721,12 +700,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -734,12 +713,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -748,12 +727,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -761,15 +740,36 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 start.
|
||||
|
||||
----> Output file is open in AnaEx02.root
|
||||
@@ -796,20 +796,20 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Run------------------------------
|
||||
|
||||
mean Energy in Absorber : 453.993 MeV +- 14.1052 MeV
|
||||
mean Energy in Gap : 24.0316 MeV +- 7.25488 MeV
|
||||
mean Energy in Absorber : 454.443 MeV +- 13.0057 MeV
|
||||
mean Energy in Gap : 24.2971 MeV +- 7.04504 MeV
|
||||
|
||||
mean trackLength in Absorber : 32.6919 cm +- 1.11124 cm
|
||||
mean trackLength in Gap : 11.9224 cm +- 3.70988 cm
|
||||
mean trackLength in Absorber : 32.732 cm +- 1.0159 cm
|
||||
mean trackLength in Gap : 12.0539 cm +- 3.63363 cm
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
----> print histograms statistic
|
||||
|
||||
EAbs: mean = 453.993 MeV rms = 14.1052 MeV
|
||||
EGap: mean = 24.0316 MeV rms = 7.25488 MeV
|
||||
LAbs: mean = 32.6919 cm rms = 1.11124 cm
|
||||
LGap: mean = 11.9224 cm rms = 3.70988 cm
|
||||
EAbs: mean = 454.443 MeV rms = 13.0057 MeV
|
||||
EGap: mean = 24.2971 MeV rms = 7.04504 MeV
|
||||
LAbs: mean = 32.732 cm rms = 1.0159 cm
|
||||
LGap: mean = 12.0539 cm rms = 3.63363 cm
|
||||
|
||||
----> Histograms and ntuples are saved
|
||||
|
||||
@@ -1204,20 +1204,20 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
--------------------End of Run------------------------------
|
||||
|
||||
mean Energy in Absorber : 199.251 MeV +- 0 eV
|
||||
mean Energy in Gap : 41.6123 MeV +- 0 eV
|
||||
mean Energy in Absorber : 202.521 MeV +- 0 eV
|
||||
mean Energy in Gap : 47.9009 MeV +- 0 eV
|
||||
|
||||
mean trackLength in Absorber : 48.4421 cm +- 0 fm
|
||||
mean trackLength in Gap : 22.5737 cm +- 0 fm
|
||||
mean trackLength in Absorber : 49.5178 cm +- 0 fm
|
||||
mean trackLength in Gap : 24.943 cm +- 0 fm
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
----> print histograms statistic
|
||||
|
||||
EAbs: mean = 199.251 MeV rms = 0 eV
|
||||
EGap: mean = 41.6123 MeV rms = 0 eV
|
||||
LAbs: mean = 48.4421 cm rms = 0 fm
|
||||
LGap: mean = 22.5737 cm rms = 0 fm
|
||||
EAbs: mean = 202.521 MeV rms = 0 eV
|
||||
EGap: mean = 47.9009 MeV rms = 0 eV
|
||||
LAbs: mean = 49.5178 cm rms = 0 fm
|
||||
LGap: mean = 24.943 cm rms = 0 fm
|
||||
|
||||
----> Histograms and ntuples are saved
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -454,12 +454,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: ionElastic
|
||||
Model: NNDiffuseElastic: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -467,7 +465,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -480,7 +477,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -494,12 +490,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -510,12 +504,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -526,12 +518,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -540,12 +530,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -554,12 +545,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -570,12 +559,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -585,7 +572,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -620,13 +606,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -634,13 +618,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -649,13 +631,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -679,12 +660,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -692,12 +673,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -706,13 +687,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 1 GeV ---> 5 GeV
|
||||
Model: Binary Cascade: 0 eV ---> 1.5 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -720,7 +701,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
@@ -728,6 +708,29 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 0
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 start.
|
||||
|
||||
---> Begin of event: 0
|
||||
@@ -751,53 +754,53 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
---> Begin of event: 900
|
||||
|
||||
G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
EFFICIENCY = 0.163
|
||||
MEAN = 4.05047e-14
|
||||
VAR = 1.42283e-26
|
||||
SD = 1.19282e-13
|
||||
R = 0.093126
|
||||
SHIFT = 1.81465e-13
|
||||
VOV = 0.0101064
|
||||
FOM = 2882.69
|
||||
THE LARGEST SCORE = 5.48399e-13 and it happened at 618th event
|
||||
Affected Mean = 4.10121e-14 and its ratio to original is 1.01253
|
||||
Affected VAR = 1.44718e-26 and its ratio to original is 1.01711
|
||||
Affected R = 0.0927111 and its ratio to original is 0.995545
|
||||
Affected SHIFT = 1.81996e-13 and its ratio to original is 1.00292
|
||||
Affected FOM = 2882.69 and its ratio to original is 1
|
||||
MEAN distribution is RANDOM
|
||||
EFFICIENCY = 0.177
|
||||
MEAN = 4.00907e-14
|
||||
VAR = 1.45972e-26
|
||||
SD = 1.20819e-13
|
||||
R = 0.0952995
|
||||
SHIFT = 1.87204e-13
|
||||
VOV = 0.0102998
|
||||
FOM = 3670.26
|
||||
THE LARGEST SCORE = 5.55155e-13 and it happened at 305th event
|
||||
Affected Mean = 4.06053e-14 and its ratio to original is 1.01283
|
||||
Affected VAR = 1.48476e-26 and its ratio to original is 1.01716
|
||||
Affected R = 0.0948482 and its ratio to original is 0.995264
|
||||
Affected SHIFT = 1.87689e-13 and its ratio to original is 1.00259
|
||||
Affected FOM = 3670.26 and its ratio to original is 1
|
||||
MEAN distribution is not RANDOM
|
||||
r follows 1/std::sqrt(N)
|
||||
r is monotonically decrease
|
||||
r is less than 0.1. r = 0.093126
|
||||
r is less than 0.1. r = 0.0952995
|
||||
VOV follows 1/std::sqrt(N)
|
||||
VOV is monotonically decrease
|
||||
FOM distribution is not RANDOM
|
||||
Number of non zero history too small to calculate SLOPE
|
||||
This result passes 6 / 8 Convergence Test.
|
||||
This result passes 5 / 8 Convergence Test.
|
||||
|
||||
|
||||
G4ConvergenceTester Output History of DOSE_TALLY
|
||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||
1 62 3.77471e-14 1.32701e-26 1.15196e-13 0.384488 0.16345 169.112 1.72899e-13 0.142857 0.0952381 0.0502462
|
||||
2 124 4.75323e-14 1.58798e-26 1.26015e-13 0.237126 0.0650015 444.613 1.69602e-13 0.2 0.032 0.0237788
|
||||
3 187 4.28087e-14 1.54155e-26 1.24159e-13 0.211528 0.0494608 558.735 1.81697e-13 0.170213 0.0259309 0.0185751
|
||||
4 249 4.78793e-14 1.74576e-26 1.32127e-13 0.174531 0.0324235 820.716 1.8095e-13 0.18 0.0182222 0.0121171
|
||||
5 312 4.44686e-14 1.59649e-26 1.26352e-13 0.160604 0.0283452 969.226 1.8092e-13 0.172524 0.0153236 0.0103877
|
||||
6 374 4.45428e-14 1.5524e-26 1.24595e-13 0.144447 0.0234438 1198.18 1.76712e-13 0.178667 0.0122587 0.00855057
|
||||
7 437 4.32675e-14 1.51854e-26 1.23229e-13 0.136086 0.0208322 1349.93 1.78271e-13 0.171233 0.0110502 0.00742691
|
||||
8 499 4.50587e-14 1.57301e-26 1.2542e-13 0.124481 0.0172219 1613.38 1.76043e-13 0.172 0.00962791 0.00583653
|
||||
9 562 4.46449e-14 1.52837e-26 1.23627e-13 0.116705 0.0154647 1835.53 1.74082e-13 0.174067 0.00842788 0.00516794
|
||||
10 624 4.2475e-14 1.46601e-26 1.21079e-13 0.114024 0.0150108 1922.87 1.77123e-13 0.1664 0.00801538 0.00496521
|
||||
11 687 4.33702e-14 1.52446e-26 1.23469e-13 0.108535 0.0133375 2122.25 1.79078e-13 0.165698 0.00731844 0.00444436
|
||||
12 749 4.15188e-14 1.45813e-26 1.20753e-13 0.1062 0.0129765 2216.63 1.80292e-13 0.161333 0.00693113 0.00433219
|
||||
13 812 4.21587e-14 1.50427e-26 1.22649e-13 0.102031 0.0117642 2401.48 1.81856e-13 0.162362 0.00634575 0.00405168
|
||||
14 874 4.19407e-14 1.47851e-26 1.21594e-13 0.0980105 0.0110242 2602.52 1.8075e-13 0.164571 0.00580159 0.0037935
|
||||
15 937 4.10208e-14 1.44511e-26 1.20213e-13 0.0956852 0.0105819 2730.55 1.813e-13 0.164179 0.00542741 0.00371849
|
||||
16 999 4.05047e-14 1.42283e-26 1.19282e-13 0.093126 0.0101064 2882.69 1.81465e-13 0.163 0.00513497 0.0035288
|
||||
1 62 3.57656e-14 1.31381e-26 1.14622e-13 0.403768 0.19091 204.463 1.86653e-13 0.15873 0.084127 0.0763136
|
||||
2 124 3.41652e-14 1.35345e-26 1.16338e-13 0.304567 0.098314 359.347 1.97644e-13 0.168 0.039619 0.0523997
|
||||
3 187 3.31404e-14 1.28348e-26 1.13291e-13 0.24932 0.0665142 536.245 1.94817e-13 0.159574 0.0280142 0.0338158
|
||||
4 249 3.14022e-14 1.18698e-26 1.08949e-13 0.219428 0.0550355 692.299 1.96023e-13 0.16 0.021 0.0269562
|
||||
5 312 3.36344e-14 1.28707e-26 1.13449e-13 0.190654 0.040587 917.041 1.96075e-13 0.159744 0.0168051 0.0194276
|
||||
6 374 3.40453e-14 1.30854e-26 1.14391e-13 0.173508 0.033199 1107.23 1.95896e-13 0.16 0.014 0.0160249
|
||||
7 437 3.47041e-14 1.32239e-26 1.14995e-13 0.15833 0.0276625 1329.7 1.94524e-13 0.16895 0.0112304 0.0137807
|
||||
8 499 3.46985e-14 1.307e-26 1.14324e-13 0.147347 0.0239637 1535.31 1.92314e-13 0.168 0.00990476 0.011763
|
||||
9 562 3.49972e-14 1.31394e-26 1.14627e-13 0.138038 0.0215799 1749.36 1.93839e-13 0.170515 0.00864047 0.0103802
|
||||
10 624 3.59915e-14 1.32406e-26 1.15068e-13 0.127883 0.0188511 2038.21 1.91035e-13 0.1728 0.00765926 0.00866876
|
||||
11 687 3.7299e-14 1.39871e-26 1.18267e-13 0.120885 0.016411 2281.04 1.92697e-13 0.168605 0.0071672 0.00742479
|
||||
12 749 3.71516e-14 1.38481e-26 1.17678e-13 0.115661 0.0150944 2491.76 1.91869e-13 0.166667 0.00666667 0.00669293
|
||||
13 812 3.78787e-14 1.38678e-26 1.17762e-13 0.109034 0.0135325 2803.83 1.88847e-13 0.170972 0.00596423 0.00590964
|
||||
14 874 3.80944e-14 1.39476e-26 1.181e-13 0.104805 0.0124978 3034.67 1.88806e-13 0.170286 0.00556855 0.00540308
|
||||
15 937 3.94075e-14 1.42928e-26 1.19553e-13 0.0990555 0.0111564 3397.2 1.86644e-13 0.175906 0.00499451 0.00480703
|
||||
16 999 4.00907e-14 1.45972e-26 1.20819e-13 0.0952995 0.0102998 3670.26 1.87204e-13 0.177 0.00464972 0.0044232
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 gamma of 6 MeV
|
||||
Dose in scoring volume : 40.5047 picoGy +- 3.77016 picoGy
|
||||
Dose in scoring volume : 40.0907 picoGy +- 3.81872 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
### Run 1 start.
|
||||
@@ -823,26 +826,26 @@ i/16 till_ith mean var sd r vov
|
||||
---> Begin of event: 900
|
||||
|
||||
G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
EFFICIENCY = 0.647
|
||||
MEAN = 5.25356e-12
|
||||
VAR = 2.16155e-23
|
||||
SD = 4.64925e-12
|
||||
R = 0.0279852
|
||||
SHIFT = -1.47942e-13
|
||||
VOV = 0.000167401
|
||||
FOM = 4256.2
|
||||
THE LARGEST SCORE = 1.07398e-11 and it happened at 590th event
|
||||
Affected Mean = 5.25904e-12 and its ratio to original is 1.00104
|
||||
Affected VAR = 2.16239e-23 and its ratio to original is 1.00039
|
||||
Affected R = 0.0279475 and its ratio to original is 0.998654
|
||||
Affected SHIFT = -1.52135e-13 and its ratio to original is 1.02834
|
||||
Affected FOM = 4256.2 and its ratio to original is 1
|
||||
MEAN distribution is RANDOM
|
||||
EFFICIENCY = 0.626
|
||||
MEAN = 5.07255e-12
|
||||
VAR = 2.15866e-23
|
||||
SD = 4.64614e-12
|
||||
R = 0.0289645
|
||||
SHIFT = -4.79523e-15
|
||||
VOV = 0.000159527
|
||||
FOM = 4110.27
|
||||
THE LARGEST SCORE = 1.06633e-11 and it happened at 819th event
|
||||
Affected Mean = 5.07813e-12 and its ratio to original is 1.0011
|
||||
Affected VAR = 2.15962e-23 and its ratio to original is 1.00045
|
||||
Affected R = 0.0289246 and its ratio to original is 0.998624
|
||||
Affected SHIFT = -9.11596e-15 and its ratio to original is 1.90105
|
||||
Affected FOM = 4110.27 and its ratio to original is 1
|
||||
MEAN distribution is not RANDOM
|
||||
r follows 1/std::sqrt(N)
|
||||
r is monotonically decrease
|
||||
r is less than 0.1. r = 0.0279852
|
||||
r is less than 0.1. r = 0.0289645
|
||||
VOV follows 1/std::sqrt(N)
|
||||
VOV is NOT monotonically decrease
|
||||
VOV is monotonically decrease
|
||||
FOM distribution is not RANDOM
|
||||
SLOPE is not large enough
|
||||
This result passes 5 / 8 Convergence Test.
|
||||
@@ -850,26 +853,26 @@ This result passes 5 / 8 Convergence Test.
|
||||
|
||||
G4ConvergenceTester Output History of DOSE_TALLY
|
||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||
1 62 5.81836e-12 2.17241e-23 4.66092e-12 0.100925 0.00374856 327.249 -6.81237e-13 0.698413 0.00685426 0.00316999
|
||||
2 124 5.89654e-12 2.234e-23 4.72652e-12 0.071695 0.00171091 648.487 -7.60215e-13 0.688 0.00362791 0.00147114
|
||||
3 187 5.52683e-12 2.24274e-23 4.73576e-12 0.0624935 0.000817526 853.512 -4.36905e-13 0.654255 0.00281093 0.00107373
|
||||
4 249 5.39296e-12 2.23626e-23 4.72891e-12 0.055458 0.00056888 1083.8 -3.11417e-13 0.648 0.00217284 0.000890445
|
||||
5 312 5.05903e-12 2.20336e-23 4.694e-12 0.052445 0.000457669 1211.91 1.41064e-14 0.626198 0.00190715 0.000834533
|
||||
6 374 5.16409e-12 2.18827e-23 4.6779e-12 0.046778 0.000399748 1523.33 -7.45259e-14 0.642667 0.00148271 0.000699636
|
||||
7 437 5.33813e-12 2.14811e-23 4.63477e-12 0.041486 0.000401016 1936.76 -2.37706e-13 0.6621 0.00116517 0.00055199
|
||||
8 499 5.33716e-12 2.16099e-23 4.64864e-12 0.0389521 0.000340607 2196.93 -2.33585e-13 0.656 0.00104878 0.000465452
|
||||
9 562 5.26931e-12 2.17432e-23 4.66297e-12 0.0372953 0.000282849 2396.46 -1.71618e-13 0.651865 0.000948597 0.000439871
|
||||
10 624 5.31806e-12 2.16179e-23 4.64951e-12 0.0349714 0.000268497 2725.53 -2.16965e-13 0.656 0.000839024 0.000382021
|
||||
11 687 5.23251e-12 2.17029e-23 4.65864e-12 0.0339434 0.000233884 2893.14 -1.35211e-13 0.646802 0.000793703 0.000356775
|
||||
12 749 5.14556e-12 2.18258e-23 4.67181e-12 0.0331529 0.00020801 3032.74 -5.33943e-14 0.634667 0.000767507 0.000330143
|
||||
13 812 5.14992e-12 2.15697e-23 4.64432e-12 0.0316283 0.000208123 3332.17 -5.24612e-14 0.639606 0.000693065 0.000306055
|
||||
14 874 5.19758e-12 2.15627e-23 4.64357e-12 0.0302028 0.000194248 3654.14 -9.73895e-14 0.643429 0.000633342 0.000277824
|
||||
15 937 5.20326e-12 2.15822e-23 4.64566e-12 0.0291521 0.000179291 3922.27 -1.0906e-13 0.641791 0.000595031 0.00025391
|
||||
16 999 5.25356e-12 2.16155e-23 4.64925e-12 0.0279852 0.000167401 4256.2 -1.47942e-13 0.647 0.000545595 0.000236793
|
||||
1 62 4.8348e-12 2.15824e-23 4.64568e-12 0.12106 0.00267046 235.288 1.97758e-13 0.619048 0.00976801 0.00465491
|
||||
2 124 4.80034e-12 2.11325e-23 4.59701e-12 0.0856541 0.00148323 470.009 2.16164e-13 0.616 0.00498701 0.00229092
|
||||
3 187 4.99877e-12 2.12915e-23 4.61427e-12 0.0673226 0.00094726 760.817 5.64428e-14 0.632979 0.00308421 0.00142401
|
||||
4 249 5.11779e-12 2.15121e-23 4.63812e-12 0.0573177 0.000643732 1049.6 -4.07918e-14 0.636 0.00228931 0.000982873
|
||||
5 312 4.93672e-12 2.16755e-23 4.65569e-12 0.0533057 0.000480459 1213.54 1.01689e-13 0.613419 0.00201345 0.000818974
|
||||
6 374 4.80254e-12 2.20402e-23 4.6947e-12 0.0504803 0.00038191 1353.19 2.47347e-13 0.597333 0.00179762 0.000743842
|
||||
7 437 4.80913e-12 2.1809e-23 4.67002e-12 0.0463996 0.000354182 1601.67 2.33859e-13 0.60274 0.00150477 0.000643238
|
||||
8 499 4.90343e-12 2.16466e-23 4.65259e-12 0.0424336 0.000313809 1915.06 1.48165e-13 0.612 0.00126797 0.000529031
|
||||
9 562 4.97713e-12 2.16718e-23 4.6553e-12 0.0394198 0.000273086 2219.08 9.31472e-14 0.619893 0.00108913 0.00046203
|
||||
10 624 5.041e-12 2.15445e-23 4.64161e-12 0.0368309 0.000255502 2542.01 3.0521e-14 0.624 0.000964103 0.000390241
|
||||
11 687 4.96936e-12 2.16041e-23 4.64802e-12 0.0356593 0.000231529 2711.79 1.03751e-13 0.617733 0.000899453 0.000370285
|
||||
12 749 5.01993e-12 2.15996e-23 4.64753e-12 0.033806 0.000211487 3017.27 5.37852e-14 0.621333 0.000812589 0.000328734
|
||||
13 812 5.06904e-12 2.15407e-23 4.64119e-12 0.0321113 0.000197704 3344.15 4.31954e-15 0.629766 0.000723113 0.000306757
|
||||
14 874 5.07263e-12 2.15777e-23 4.64518e-12 0.0309575 0.0001826 3598.08 -1.33668e-15 0.628571 0.000675325 0.000281946
|
||||
15 937 5.02236e-12 2.15507e-23 4.64227e-12 0.0301802 0.000171503 3785.81 4.3475e-14 0.623667 0.000643304 0.000266569
|
||||
16 999 5.07255e-12 2.15866e-23 4.64614e-12 0.0289645 0.000159527 4110.27 -4.79523e-15 0.626 0.000597444 0.000240659
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
Dose in scoring volume : 5.25356 nanoGy +- 146.949 picoGy
|
||||
Dose in scoring volume : 5.07255 nanoGy +- 146.85 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -14,5 +14,9 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
24 March 2019, John Allison (B4dScoreWriter-V10-05-00)
|
||||
- Part of Merge Request exampleB4-V10-05-00.
|
||||
- Corrected name of include file: csv.hh
|
||||
|
||||
30 October 2018, Ivana Hrivnacova (B4dScoreWriter-V10-04-00)
|
||||
- First version
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#define B4Analysis_h 1
|
||||
|
||||
#include "g4root.hh"
|
||||
//#include "g4cvs.hh"
|
||||
//#include "g4csv.hh"
|
||||
//#include "g4xml.hh"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -490,7 +490,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -498,13 +497,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -512,13 +509,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -527,12 +522,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -543,12 +536,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -559,12 +550,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -573,12 +562,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -587,12 +577,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -603,12 +591,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -618,13 +604,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -654,14 +638,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -669,14 +651,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -685,13 +665,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -715,12 +694,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -728,12 +707,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -742,12 +721,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -755,15 +734,34 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
++ ConcreteSD/Collisions id 0
|
||||
++ ConcreteSD/CollWeight id 1
|
||||
++ ConcreteSD/Population id 2
|
||||
@@ -781,24 +779,24 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 35 | 129 | 35 | 35 | 0.0155897 | 2.62983 | 1 | 6193.92 | 6193.92 | 37160.5 | 16289 | 579.32 |
|
||||
cell_01 | 149 | 175 | 497 | 497 | 0.0188688 | 4.51875 | 1 | 21945.8 | 21945.8 | 141137 | 99167.5 | 2663.09 |
|
||||
cell_02 | 200 | 284 | 1359 | 679.5 | 0.00924091 | 2.66639 | 0.5 | 49501.7 | 24750.9 | 224504 | 65995.4 | 2074.62 |
|
||||
cell_03 | 295 | 449 | 2528 | 632 | 0.00638027 | 1.92865 | 0.25 | 81588.5 | 20397.1 | 218239 | 39339 | 1392.42 |
|
||||
cell_04 | 349 | 496 | 2894 | 361.75 | 0.00444105 | 1.64978 | 0.125 | 92173.8 | 11521.7 | 154576 | 19008.3 | 686.479 |
|
||||
cell_05 | 390 | 550 | 3468 | 216.75 | 0.00312744 | 1.39716 | 0.0625 | 102854 | 6428.37 | 109476 | 8981.46 | 342.378 |
|
||||
cell_06 | 360 | 523 | 3252 | 101.625 | 0.00308389 | 1.34062 | 0.03125 | 94757.1 | 2961.16 | 48865.4 | 3969.8 | 150.695 |
|
||||
cell_07 | 334 | 514 | 3082 | 48.1562 | 0.00386281 | 1.49702 | 0.015625 | 93823.8 | 1466 | 21361.4 | 2194.63 | 82.5151 |
|
||||
cell_08 | 297 | 446 | 2858 | 22.3281 | 0.00381525 | 1.31973 | 0.0078125 | 84864.8 | 663.006 | 9118.96 | 874.991 | 34.7911 |
|
||||
cell_09 | 272 | 411 | 2514 | 9.82031 | 0.00269239 | 1.01579 | 0.00390625 | 73276.9 | 286.238 | 4509.84 | 290.759 | 12.1422 |
|
||||
cell_10 | 254 | 390 | 2344 | 4.57812 | 0.00287907 | 1.09141 | 0.00195312 | 72294.9 | 141.201 | 2305.68 | 154.108 | 6.6382 |
|
||||
cell_11 | 252 | 340 | 2219 | 2.16699 | 0.00255482 | 1.12982 | 0.000976562 | 66024.5 | 64.4771 | 1215.83 | 72.8474 | 3.10623 |
|
||||
cell_12 | 243 | 347 | 2441 | 1.19189 | 0.00236057 | 0.893051 | 0.000488281 | 70962 | 34.6494 | 592.294 | 30.9437 | 1.39815 |
|
||||
cell_13 | 202 | 320 | 2163 | 0.528076 | 0.00239099 | 1.04823 | 0.000244141 | 59907.3 | 14.6258 | 265.618 | 15.3312 | 0.635091 |
|
||||
cell_14 | 172 | 263 | 1945 | 0.237427 | 0.00171936 | 0.804492 | 0.00012207 | 51556.4 | 6.29351 | 134.733 | 5.06308 | 0.231654 |
|
||||
cell_15 | 149 | 211 | 1488 | 0.0908203 | 0.00162713 | 0.819761 | 6.10352e-05 | 40386.9 | 2.46502 | 57.1373 | 2.02073 | 0.0929697 |
|
||||
cell_16 | 118 | 165 | 1274 | 0.0388794 | 0.00212628 | 0.899531 | 3.05176e-05 | 35318.6 | 1.07784 | 20.6002 | 0.969548 | 0.0438019 |
|
||||
cell_17 | 95 | 141 | 810 | 0.0123596 | 0.00342718 | 1.26751 | 1.52588e-05 | 24405.4 | 0.372397 | 5.74955 | 0.472016 | 0.0197047 |
|
||||
cell_18 | 63 | 118 | 550 | 0.00419617 | 0.00319346 | 1.28816 | 7.62939e-06 | 18023.1 | 0.137505 | 2.23348 | 0.17713 | 0.00713254 |
|
||||
cell_19 | 41 | 41 | 41 | 0.000312805 | 0.0152833 | 2.11464 | 7.62939e-06 | 6161.48 | 0.0470084 | 0.234429 | 0.0994057 | 0.00358284 |
|
||||
cell_00 | 42 | 131 | 42 | 42 | 0.075896 | 3.45903 | 1 | 6673.65 | 6673.65 | 9874.56 | 23084.3 | 749.44 |
|
||||
cell_01 | 148 | 181 | 711 | 711 | 0.0176862 | 3.79145 | 1 | 26182.3 | 26182.3 | 160666 | 99268.8 | 2841.57 |
|
||||
cell_02 | 164 | 250 | 1303 | 651.5 | 0.00838887 | 2.4908 | 0.5 | 44929.9 | 22464.9 | 216650 | 55955.5 | 1817.45 |
|
||||
cell_03 | 201 | 290 | 1770 | 442.5 | 0.00447571 | 1.70421 | 0.25 | 54954.8 | 13738.7 | 183422 | 23413.7 | 820.942 |
|
||||
cell_04 | 204 | 311 | 1789 | 223.625 | 0.00656056 | 1.73114 | 0.125 | 57921.1 | 7240.14 | 69937.1 | 12533.7 | 458.826 |
|
||||
cell_05 | 236 | 347 | 1953 | 122.062 | 0.00421335 | 1.64211 | 0.0625 | 60676.2 | 3792.26 | 52565.6 | 6227.3 | 221.477 |
|
||||
cell_06 | 260 | 374 | 2493 | 77.9062 | 0.00258186 | 1.22653 | 0.03125 | 74455.1 | 2326.72 | 45732.5 | 2853.8 | 118.075 |
|
||||
cell_07 | 220 | 327 | 2204 | 34.4375 | 0.0028729 | 1.0519 | 0.015625 | 64700.5 | 1010.95 | 15874.7 | 1063.42 | 45.6066 |
|
||||
cell_08 | 235 | 335 | 2190 | 17.1094 | 0.0025926 | 1.15309 | 0.0078125 | 61928.2 | 483.814 | 8597.23 | 557.881 | 22.2892 |
|
||||
cell_09 | 233 | 337 | 2257 | 8.81641 | 0.00194178 | 0.945694 | 0.00390625 | 60321.4 | 235.63 | 4905.88 | 222.834 | 9.52612 |
|
||||
cell_10 | 177 | 271 | 1734 | 3.38672 | 0.00231186 | 1.08022 | 0.00195312 | 50819.6 | 99.2571 | 1923.9 | 107.219 | 4.44778 |
|
||||
cell_11 | 160 | 220 | 1571 | 1.53418 | 0.00195938 | 0.991157 | 0.000976562 | 43774.3 | 42.7483 | 897.633 | 42.3703 | 1.75881 |
|
||||
cell_12 | 137 | 193 | 1166 | 0.569336 | 0.00302072 | 1.18239 | 0.000488281 | 33487 | 16.3511 | 247.41 | 19.3334 | 0.747356 |
|
||||
cell_13 | 132 | 190 | 1205 | 0.294189 | 0.0016857 | 0.84158 | 0.000244141 | 32795.8 | 8.00678 | 176.575 | 6.73835 | 0.297651 |
|
||||
cell_14 | 102 | 149 | 897 | 0.109497 | 0.00169106 | 0.858477 | 0.00012207 | 24102.6 | 2.94221 | 66.4479 | 2.52582 | 0.112367 |
|
||||
cell_15 | 73 | 104 | 685 | 0.0418091 | 0.00264047 | 0.864736 | 6.10352e-05 | 20753.9 | 1.26672 | 20.7768 | 1.09538 | 0.0548605 |
|
||||
cell_16 | 60 | 87 | 631 | 0.0192566 | 0.00278807 | 0.795759 | 3.05176e-05 | 17970.3 | 0.54841 | 8.13077 | 0.436403 | 0.0226692 |
|
||||
cell_17 | 57 | 80 | 584 | 0.00891113 | 0.00280453 | 0.831224 | 1.52588e-05 | 15505.2 | 0.236591 | 3.67175 | 0.19666 | 0.0102975 |
|
||||
cell_18 | 32 | 53 | 390 | 0.00297546 | 0.00159983 | 0.711014 | 7.62939e-06 | 10682.5 | 0.0815006 | 2.11725 | 0.0579481 | 0.00338725 |
|
||||
cell_19 | 14 | 14 | 14 | 0.000106812 | 0.00486175 | 0.905574 | 7.62939e-06 | 2617.59 | 0.0199706 | 0.210437 | 0.0180849 | 0.00102309 |
|
||||
=============================================
|
||||
|
||||
@@ -16,6 +16,12 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
May 29th, 2019 V. Ivanchenko - B03-V10-05-01
|
||||
- B03PhysicsList : use G4NeutronInelasticXS cross section
|
||||
|
||||
May 10th, 2019 V. Ivanchenko - B03-V10-05-00
|
||||
- B03PhysicsList : explicitly defined hadronic x-sections
|
||||
|
||||
Aug 9th, 2018 A. Ribon - B03-V10-04-02
|
||||
- B03PhysicsList : replaced the explicit high-energy limit of hadronic
|
||||
physics with the one from G4HadronicParameters .
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -312,7 +312,7 @@ hIoni: for pi- SubType=2
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 110 MeV/n
|
||||
@@ -320,36 +320,35 @@ hIoni: for pi- SubType=2
|
||||
Cr_sctns: TripathiLightIons: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Tripathi: 0 eV ---> 100 TeV
|
||||
Cr_sctns: IonsShen: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_neutron
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: ANTI-FTFP: 0 eV ---> 20 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: ANTI-FTFP: 0 eV ---> 20 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for deuteron
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 110 MeV/n
|
||||
@@ -357,55 +356,54 @@ hIoni: for pi- SubType=2
|
||||
Cr_sctns: TripathiLightIons: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Tripathi: 0 eV ---> 100 TeV
|
||||
Cr_sctns: IonsShen: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon+
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for lambda
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for neutron
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
|
||||
|
||||
Process: nFission
|
||||
Model: G4LFission: 0 eV ---> 2.88022e+295 J
|
||||
@@ -420,43 +418,43 @@ hIoni: for pi- SubType=2
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for proton
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: BertiniCascade: 0 eV ---> 22 MeV
|
||||
Model: TheoFSGenerator: 19 GeV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 110 MeV/n
|
||||
@@ -464,9 +462,50 @@ hIoni: for pi- SubType=2
|
||||
Cr_sctns: TripathiLightIons: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Tripathi: 0 eV ---> 100 TeV
|
||||
Cr_sctns: IonsShen: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 0
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 0
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
++ ConcreteSD/Collisions id 0
|
||||
++ ConcreteSD/CollWeight id 1
|
||||
++ ConcreteSD/Population id 2
|
||||
@@ -482,7 +521,40 @@ hIoni: for pi- SubType=2
|
||||
*** G4Exception : GeomBias1001
|
||||
issued by : G4ImportanceAlgorithm::Warning()
|
||||
Calculate() - ipre_over_ipost ! in [0.25, 4].
|
||||
ipre_over_ipost = 2048.
|
||||
ipre_over_ipost = 256.
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
|
||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
||||
*** G4Exception : hadEla002
|
||||
issued by : G4HadronElastic::ApplyYourself
|
||||
LARGE cost ! cost=-1.00031 for neutron ekin=3.63798e-12 MeV on (Z,A)=(1,1)
|
||||
Projectile stops and its energy is deposited locally:
|
||||
neglected recoil of the target nucleus!
|
||||
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
|
||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
||||
*** G4Exception : hadEla002
|
||||
issued by : G4HadronElastic::ApplyYourself
|
||||
LARGE cost ! cost=-1.00027 for neutron ekin=3.41061e-12 MeV on (Z,A)=(1,1)
|
||||
Projectile stops and its energy is deposited locally:
|
||||
neglected recoil of the target nucleus!
|
||||
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
|
||||
-------- WWWW ------- G4Exception-START -------- WWWW -------
|
||||
*** G4Exception : hadEla002
|
||||
issued by : G4HadronElastic::ApplyYourself
|
||||
LARGE cost ! cost=-1.00186 for neutron ekin=1.02318e-12 MeV on (Z,A)=(1,1)
|
||||
Projectile stops and its energy is deposited locally:
|
||||
neglected recoil of the target nucleus!
|
||||
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
@@ -502,24 +574,24 @@ ipre_over_ipost = 2048.
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 10 | 108 | 0 | 0 | 1.11012 | 3.31684 | 1 | 2146.49 | 2146.49 | 225.59 | 7119.58 | 250.432 |
|
||||
cell_01 | 115 | 232 | 369 | 369 | 3.05047 | 6.82881 | 1 | 14039.5 | 14039.5 | 804.81 | 95873.3 | 2455.05 |
|
||||
cell_02 | 94 | 431 | 810 | 405 | 1.66727 | 5.14989 | 0.5 | 22319.1 | 11159.5 | 957.316 | 57470.4 | 1596.1 |
|
||||
cell_03 | 93 | 336 | 596 | 149 | 1.82588 | 5.61089 | 0.25 | 18328.7 | 4582.18 | 382.11 | 25710.1 | 697.688 |
|
||||
cell_04 | 88 | 346 | 595 | 74.375 | 1.77569 | 5.52921 | 0.125 | 19350.2 | 2418.78 | 205.503 | 13373.9 | 364.91 |
|
||||
cell_05 | 82 | 355 | 794 | 49.625 | 1.78914 | 5.19995 | 0.0625 | 22027.7 | 1376.73 | 111.286 | 7158.92 | 199.106 |
|
||||
cell_06 | 79 | 327 | 591 | 18.4688 | 1.65258 | 4.76161 | 0.03125 | 17821.6 | 556.924 | 46.267 | 2651.86 | 76.4601 |
|
||||
cell_07 | 63 | 263 | 429 | 6.70312 | 1.96595 | 5.38832 | 0.015625 | 13845.6 | 216.337 | 16.4084 | 1165.69 | 32.2582 |
|
||||
cell_08 | 67 | 274 | 528 | 4.125 | 1.37022 | 4.83189 | 0.0078125 | 15015.6 | 117.309 | 11.6537 | 566.826 | 15.9681 |
|
||||
cell_09 | 72 | 281 | 524 | 2.04688 | 1.85018 | 5.46304 | 0.00390625 | 15307.1 | 59.7935 | 4.79019 | 326.654 | 8.86272 |
|
||||
cell_10 | 68 | 278 | 494 | 0.964844 | 2.20017 | 5.80867 | 0.00195312 | 16527.2 | 32.2797 | 2.31596 | 187.502 | 5.09551 |
|
||||
cell_11 | 72 | 267 | 478 | 0.466797 | 1.40022 | 4.85083 | 0.000976562 | 15065.5 | 14.7124 | 1.44855 | 71.3675 | 2.02829 |
|
||||
cell_12 | 73 | 302 | 553 | 0.27002 | 1.56735 | 4.81922 | 0.000488281 | 17557.6 | 8.57306 | 0.757539 | 41.3155 | 1.18733 |
|
||||
cell_13 | 61 | 264 | 462 | 0.112793 | 1.84464 | 4.97283 | 0.000244141 | 14478.7 | 3.53483 | 0.274781 | 17.5781 | 0.506871 |
|
||||
cell_14 | 47 | 197 | 371 | 0.0452881 | 1.481 | 4.90768 | 0.00012207 | 10977.6 | 1.34004 | 0.126948 | 6.57647 | 0.188011 |
|
||||
cell_15 | 41 | 162 | 315 | 0.0192261 | 1.70464 | 4.98854 | 6.10352e-05 | 9578.37 | 0.584617 | 0.0490847 | 2.91639 | 0.0836718 |
|
||||
cell_16 | 38 | 151 | 269 | 0.00820923 | 1.94515 | 5.25074 | 3.05176e-05 | 8491.39 | 0.259137 | 0.0198726 | 1.36066 | 0.0386552 |
|
||||
cell_17 | 32 | 134 | 209 | 0.00318909 | 1.69993 | 4.88483 | 1.52588e-05 | 6869.96 | 0.104827 | 0.00872547 | 0.512064 | 0.0148327 |
|
||||
cell_18 | 23 | 115 | 234 | 0.00178528 | 1.71841 | 4.57386 | 7.62939e-06 | 6703.05 | 0.0511402 | 0.00407173 | 0.233908 | 0.00699691 |
|
||||
cell_19 | 14 | 14 | 0 | 0 | 6.02729 | 7.55564 | 7.62939e-06 | 1985.2 | 0.0151459 | 0.00048508 | 0.114437 | 0.00292372 |
|
||||
cell_00 | 44 | 139 | 0 | 0 | 0.234037 | 2.68394 | 1 | 7914.66 | 7914.66 | 3566.34 | 21242.5 | 834.655 |
|
||||
cell_01 | 135 | 178 | 450 | 450 | 0.00094155 | 5.048 | 1 | 20334.9 | 20334.9 | 3.03871e+06 | 102650 | 2861.1 |
|
||||
cell_02 | 140 | 253 | 1156 | 578 | 0.000638682 | 3.42327 | 0.5 | 39679.7 | 19839.8 | 3.36661e+06 | 67917.2 | 2150.19 |
|
||||
cell_03 | 217 | 347 | 2271 | 567.75 | 0.000289313 | 2.70197 | 0.25 | 60208.8 | 15052.2 | 4.71079e+06 | 40670.6 | 1362.89 |
|
||||
cell_04 | 272 | 464 | 3107 | 388.375 | 0.000200185 | 2.23037 | 0.125 | 73814.2 | 9226.78 | 3.70805e+06 | 20579.1 | 742.297 |
|
||||
cell_05 | 338 | 535 | 3801 | 237.562 | 0.000235991 | 1.87676 | 0.0625 | 98214.7 | 6138.42 | 1.92331e+06 | 11520.3 | 453.884 |
|
||||
cell_06 | 400 | 651 | 4883 | 152.594 | 0.000176266 | 1.77645 | 0.03125 | 111158 | 3473.68 | 1.38341e+06 | 6170.83 | 243.848 |
|
||||
cell_07 | 466 | 737 | 6031 | 94.2344 | 0.000121202 | 1.29774 | 0.015625 | 128675 | 2010.55 | 945266 | 2609.16 | 114.568 |
|
||||
cell_08 | 530 | 806 | 6958 | 54.3594 | 0.00010946 | 1.18723 | 0.0078125 | 137737 | 1076.07 | 542186 | 1277.55 | 59.3475 |
|
||||
cell_09 | 524 | 814 | 6762 | 26.4141 | 0.00013252 | 1.16058 | 0.00390625 | 145597 | 568.736 | 237830 | 660.062 | 31.5172 |
|
||||
cell_10 | 538 | 831 | 7469 | 14.5879 | 0.000105777 | 1.13829 | 0.00195312 | 144288 | 281.812 | 142957 | 320.783 | 15.1216 |
|
||||
cell_11 | 577 | 864 | 6796 | 6.63672 | 0.000160704 | 1.16087 | 0.000976562 | 152108 | 148.543 | 51917.7 | 172.439 | 8.34338 |
|
||||
cell_12 | 640 | 973 | 8281 | 4.04346 | 0.000115073 | 1.03145 | 0.000488281 | 171261 | 83.6237 | 38480.1 | 86.2535 | 4.42803 |
|
||||
cell_13 | 655 | 981 | 9184 | 2.24219 | 9.57698e-05 | 0.891564 | 0.000244141 | 180545 | 44.0783 | 21937.2 | 39.2987 | 2.10093 |
|
||||
cell_14 | 623 | 925 | 8206 | 1.00171 | 0.000100752 | 0.90972 | 0.00012207 | 161029 | 19.6568 | 9427.9 | 17.8822 | 0.949884 |
|
||||
cell_15 | 571 | 895 | 7912 | 0.48291 | 0.000101392 | 0.871022 | 6.10352e-05 | 156502 | 9.5521 | 4513.39 | 8.3201 | 0.45762 |
|
||||
cell_16 | 550 | 865 | 8185 | 0.249786 | 8.67476e-05 | 0.874982 | 3.05176e-05 | 151820 | 4.63318 | 2484.41 | 4.05394 | 0.215516 |
|
||||
cell_17 | 545 | 834 | 7861 | 0.119949 | 9.19813e-05 | 0.898443 | 1.52588e-05 | 148046 | 2.259 | 1147.92 | 2.02958 | 0.105588 |
|
||||
cell_18 | 411 | 776 | 6337 | 0.0483475 | 0.00011683 | 1.05095 | 7.62939e-06 | 128931 | 0.983665 | 446.641 | 1.03378 | 0.0521813 |
|
||||
cell_19 | 352 | 352 | 0 | 0 | 0.00798011 | 1.41104 | 7.62939e-06 | 56698.9 | 0.432578 | 3.66224 | 0.610383 | 0.0292251 |
|
||||
=============================================
|
||||
|
||||
@@ -288,6 +288,10 @@ void B03PhysicsList::ConstructEM()
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4TripathiLightCrossSection.hh"
|
||||
#include "G4ComponentGGHadronNucleusXsc.hh"
|
||||
#include "G4CrossSectionElastic.hh"
|
||||
#include "G4CrossSectionInelastic.hh"
|
||||
#include "G4NeutronInelasticXS.hh"
|
||||
|
||||
//
|
||||
// ConstructHad()
|
||||
@@ -363,8 +367,13 @@ void B03PhysicsList::ConstructHad()
|
||||
G4TripathiCrossSection* tripXS = new G4TripathiCrossSection;
|
||||
G4TripathiLightCrossSection* tripLightXS = new G4TripathiLightCrossSection;
|
||||
|
||||
G4ComponentGGHadronNucleusXsc * ggHNXsec = new G4ComponentGGHadronNucleusXsc();
|
||||
G4VCrossSectionDataSet * theGGHNEl = new G4CrossSectionElastic(ggHNXsec);
|
||||
G4VCrossSectionDataSet * theGGHNInel = new G4CrossSectionInelastic(ggHNXsec);
|
||||
|
||||
// Elastic process
|
||||
G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
|
||||
theElasticProcess->AddDataSet(theGGHNEl);
|
||||
G4HadronElastic* theElasticModel = new G4HadronElastic;
|
||||
theElasticProcess->RegisterMe(theElasticModel);
|
||||
|
||||
@@ -379,6 +388,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4PionPlusInelasticProcess* theInelasticProcess =
|
||||
new G4PionPlusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -386,6 +396,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4PionMinusInelasticProcess* theInelasticProcess =
|
||||
new G4PionMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -393,6 +404,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4KaonPlusInelasticProcess* theInelasticProcess =
|
||||
new G4KaonPlusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -401,6 +413,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4KaonZeroSInelasticProcess* theInelasticProcess =
|
||||
new G4KaonZeroSInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -409,6 +422,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4KaonZeroLInelasticProcess* theInelasticProcess =
|
||||
new G4KaonZeroLInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -417,6 +431,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4KaonMinusInelasticProcess* theInelasticProcess =
|
||||
new G4KaonMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -425,6 +440,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4ProtonInelasticProcess* theInelasticProcess =
|
||||
new G4ProtonInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -433,6 +449,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiProtonInelasticProcess* theInelasticProcess =
|
||||
new G4AntiProtonInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
|
||||
@@ -443,6 +460,7 @@ void B03PhysicsList::ConstructHad()
|
||||
// inelastic scattering
|
||||
G4NeutronInelasticProcess* theInelasticProcess =
|
||||
new G4NeutronInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(new G4NeutronInelasticXS());
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -463,6 +481,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiNeutronInelasticProcess* theInelasticProcess =
|
||||
new G4AntiNeutronInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
|
||||
@@ -470,6 +489,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4LambdaInelasticProcess* theInelasticProcess =
|
||||
new G4LambdaInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -478,6 +498,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiLambdaInelasticProcess* theInelasticProcess =
|
||||
new G4AntiLambdaInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
@@ -485,6 +506,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4SigmaPlusInelasticProcess* theInelasticProcess =
|
||||
new G4SigmaPlusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -493,6 +515,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4SigmaMinusInelasticProcess* theInelasticProcess =
|
||||
new G4SigmaMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -501,6 +524,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiSigmaPlusInelasticProcess* theInelasticProcess =
|
||||
new G4AntiSigmaPlusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
@@ -508,6 +532,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiSigmaMinusInelasticProcess* theInelasticProcess =
|
||||
new G4AntiSigmaMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
@@ -515,6 +540,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4XiZeroInelasticProcess* theInelasticProcess =
|
||||
new G4XiZeroInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -523,6 +549,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4XiMinusInelasticProcess* theInelasticProcess =
|
||||
new G4XiMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -531,6 +558,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiXiZeroInelasticProcess* theInelasticProcess =
|
||||
new G4AntiXiZeroInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
@@ -538,6 +566,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiXiMinusInelasticProcess* theInelasticProcess =
|
||||
new G4AntiXiMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
@@ -578,6 +607,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4OmegaMinusInelasticProcess* theInelasticProcess =
|
||||
new G4OmegaMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(bertini);
|
||||
theInelasticProcess->RegisterMe(theTheoModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
@@ -586,6 +616,7 @@ void B03PhysicsList::ConstructHad()
|
||||
pmanager->AddDiscreteProcess(theElasticProcess);
|
||||
G4AntiOmegaMinusInelasticProcess* theInelasticProcess =
|
||||
new G4AntiOmegaMinusInelasticProcess("inelastic");
|
||||
theInelasticProcess->AddDataSet(theGGHNInel);
|
||||
theInelasticProcess->RegisterMe(antiBHighEnergyModel);
|
||||
pmanager->AddDiscreteProcess(theInelasticProcess);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -469,7 +469,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -477,13 +476,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -491,13 +488,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -506,12 +501,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -522,12 +515,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -538,12 +529,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -552,12 +541,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -566,12 +556,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -582,12 +570,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -597,13 +583,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -633,14 +617,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -648,14 +630,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -664,13 +644,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -694,12 +673,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -707,12 +686,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -721,12 +700,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -734,15 +713,34 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -797,12 +795,14 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
100.00 0k 1 10 10 0.00 Calor
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and probability for applying the technique 1 .
|
||||
### Run 0 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.100000s Real=0.101806s Sys=0.010000s
|
||||
User=0.120000s Real=0.123910s Sys=0.000000s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -862,7 +862,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.090000s Real=0.092224s Sys=0.000000s
|
||||
User=0.200000s Real=0.209532s Sys=0.000000s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
@@ -875,22 +875,22 @@ G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
TransportationManager deleted.
|
||||
Total navigation history collections cleaned: 13
|
||||
Total navigation history collections cleaned: 16
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0183 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0231 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.00481 MB
|
||||
Pool ID '7G4Event', size : 0.000961 MB
|
||||
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
|
||||
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
|
||||
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
|
||||
Pool ID '16G4HitsCollection', size : 0 MB
|
||||
Pool ID '7G4Track', size : 0.00865 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.00481 MB
|
||||
Pool ID '7G4Track', size : 0.00961 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00192 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.00192 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.04 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.047 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -465,7 +465,6 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for He3
|
||||
@@ -473,13 +472,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: He3Inelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for alpha
|
||||
@@ -487,13 +484,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: alphaInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_He3
|
||||
@@ -502,12 +497,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_He3Inelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -518,12 +511,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_alphaInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -534,12 +525,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_deuteronInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -548,12 +537,13 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_neutronInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for anti_proton
|
||||
@@ -562,12 +552,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV ---> 100.1 MeV
|
||||
Model: AntiAElastic: 100 MeV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_protonInelastic
|
||||
Model: FTFP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -578,12 +566,10 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100.1 MeV/n
|
||||
Model: AntiAElastic: 100 MeV/n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: anti_tritonInelastic
|
||||
Model: FTFP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: AntiAGlauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hFritiofCaptureAtRest
|
||||
|
||||
@@ -593,13 +579,11 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: dInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for e+
|
||||
@@ -629,14 +613,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonPlusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for kaon-
|
||||
@@ -644,14 +626,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: kaon-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: ChipsKaonMinusInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -660,13 +640,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: lambdaInelastic
|
||||
Model: BertiniCascade: 0 eV ---> 6 GeV
|
||||
Model: FTFP: 2 GeV ---> 100 TeV
|
||||
Cr_sctns: ChipsHyperonInelasticXS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for mu+
|
||||
@@ -690,12 +669,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi+Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for pi-
|
||||
@@ -703,12 +682,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
|
||||
Model: hElasticGlauber: 1 GeV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: pi-Inelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: hBertiniCaptureAtRest
|
||||
|
||||
@@ -717,12 +696,12 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
|
||||
Process: hadElastic
|
||||
Model: hElasticCHIPS: 0 eV ---> 100 TeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
Process: protonInelastic
|
||||
Model: FTFP: 3 GeV ---> 100 TeV
|
||||
Model: BertiniCascade: 0 eV ---> 12 GeV
|
||||
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
|
||||
Cr_sctns: BarashenkovGlauberGribov: 0 eV ---> 100 TeV
|
||||
|
||||
---------------------------------------------------
|
||||
Hadronic Processes for triton
|
||||
@@ -730,262 +709,182 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
|
||||
Process: hadElastic
|
||||
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
|
||||
|
||||
Process: tInelastic
|
||||
Model: Binary Light Ion Cascade: 0 eV /n ---> 4 GeV/n
|
||||
Model: FTFP: 2 GeV/n ---> 100 TeV/n
|
||||
Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
anti_nu_e, kinetic energy (MeV) = 0.61946, position (cm) = (39.6044,76.0296,500), weight = 0.0625
|
||||
neutron, kinetic energy (MeV) = 68.9257, position (cm) = (57.8422,-129.531,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.617449, position (cm) = (52.2777,-138.547,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.63287, position (cm) = (56.7221,-113.896,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 57.7957, position (cm) = (48.2088,-132.054,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.59777, position (cm) = (9.62625,-133.98,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.52829, position (cm) = (-15.3029,-62.9984,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.9626, position (cm) = (-12.2138,-68.2605,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.50009, position (cm) = (-32.2763,-60.4376,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.591169, position (cm) = (-32.5927,-60.4947,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.80273, position (cm) = (2.71837,-36.2861,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.224478, position (cm) = (-8.51635,-65.9545,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.6833, position (cm) = (-12.2021,-66.3735,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 20.3956, position (cm) = (-12.8754,-63.3568,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 22.1038, position (cm) = (-13.9278,-63.9783,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.60071, position (cm) = (-23.8439,-72.0369,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 72.7188, position (cm) = (-18.4112,-73.5382,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 79.2175, position (cm) = (-28.1332,-70.5027,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 76.5023, position (cm) = (-21.2079,-72.9572,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 49.9327, position (cm) = (8.89053,-74.6929,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.22872, position (cm) = (8.48604,-72.4526,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.0342, position (cm) = (32.849,-55.7064,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0853831, position (cm) = (12.7111,-58.8529,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.434479, position (cm) = (-17.2232,-47.2298,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.86804e-07, position (cm) = (-19.6535,-43.8492,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.73226, position (cm) = (-19.8548,-0.19126,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.214183, position (cm) = (11.9778,7.00533,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.25286, position (cm) = (-10.9164,8.05397,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.12823, position (cm) = (13.5565,7.96045,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.367291, position (cm) = (-12.9372,28.5297,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 2.91828, position (cm) = (9.2893,43.5099,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 0.000700777, position (cm) = (62.2304,46.2287,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 16.1699, position (cm) = (1.11841,16.5082,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.135546, position (cm) = (24.2053,37.9508,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 59.8054, position (cm) = (25.4238,38.7879,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 76.3884, position (cm) = (53.9259,48.4117,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.27337, position (cm) = (-18.732,5.90137,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.690467, position (cm) = (22.425,0.743351,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.31614, position (cm) = (-73.109,46.8368,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.240787, position (cm) = (-76.2072,-42.7088,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.23839, position (cm) = (-70.4483,-45.5426,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.75306, position (cm) = (-95.2547,-47.154,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.57826, position (cm) = (-88.9763,-43.7036,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0899508, position (cm) = (-66.9639,-49.0642,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.631095, position (cm) = (-74.0286,-52.9402,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.106015, position (cm) = (19.022,49.3539,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.6908, position (cm) = (-20.7044,102.768,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.7937, position (cm) = (-18.6872,104.46,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.2545, position (cm) = (-11.2012,103.906,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.7937, position (cm) = (-18.6872,104.46,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.57456e-05, position (cm) = (46.9651,111.937,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.751217, position (cm) = (-25.0264,60.1806,500), weight = 7.62939e-06
|
||||
neutron, kinetic energy (MeV) = 9.79379, position (cm) = (-52.9662,86.7093,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.128284, position (cm) = (-58.4579,119.65,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.6345, position (cm) = (-67.9475,133.827,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.304365, position (cm) = (-79.9067,44.0294,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0744978, position (cm) = (-111.989,105.799,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.117266, position (cm) = (-121.801,105.297,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.24307, position (cm) = (-104.253,96.0058,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.3094, position (cm) = (-122.54,107.969,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.54535e-06, position (cm) = (-68.6748,45.268,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.1972, position (cm) = (-54.5949,138.799,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 94.0681, position (cm) = (-60.2337,137.301,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0781208, position (cm) = (-28.1238,114.416,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 96.3259, position (cm) = (-18.409,147.784,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.426154, position (cm) = (-27.6877,142.431,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 94.9533, position (cm) = (-7.01734,141.364,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 95.3236, position (cm) = (-7.10305,141.292,500), weight = 1.90735e-06
|
||||
anti_nu_e, kinetic energy (MeV) = 0.432595, position (cm) = (-148.197,-83.8732,500), weight = 0.000976562
|
||||
gamma, kinetic energy (MeV) = 2.56015, position (cm) = (-4.12404,-69.0366,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 2.35631e-08, position (cm) = (-97.8117,7.65026,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 9.7739, position (cm) = (-97.5803,11.252,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.22306, position (cm) = (-146.324,-2.23146,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 19.7303, position (cm) = (-130.261,-86.4172,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.25971, position (cm) = (-103.58,-111.741,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 51.406, position (cm) = (-107.879,-116.624,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.02804, position (cm) = (-125.187,-120.491,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.69352, position (cm) = (-108.995,-110.353,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.7272, position (cm) = (-75.5438,-48.9963,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.82127, position (cm) = (86.8878,9.39806,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.869183, position (cm) = (66.3093,12.7222,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.490576, position (cm) = (84.8786,29.3341,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.198929, position (cm) = (66.9264,-32.0335,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.000402351, position (cm) = (44.2152,29.0027,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0968037, position (cm) = (36.7925,43.9957,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.188975, position (cm) = (44.9744,35.6245,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.400183, position (cm) = (29.2994,60.7096,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.44928, position (cm) = (28.7374,60.9166,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.351705, position (cm) = (33.08,59.7821,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.66797, position (cm) = (29.5345,61.7571,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.194976, position (cm) = (58.2515,66.6091,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.8454, position (cm) = (54.8706,25.3286,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0293597, position (cm) = (39.71,-1.43802,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.9501, position (cm) = (22.4243,79.9272,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.08095, position (cm) = (46.693,61.954,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.03068e-09, position (cm) = (46.1298,-6.77042,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.39237, position (cm) = (48.0149,-6.72446,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.376101, position (cm) = (45.6951,-6.55449,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.109797, position (cm) = (67.5075,39.3063,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.188072, position (cm) = (65.589,28.0654,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.23308, position (cm) = (80.1931,25.6051,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 35.0218, position (cm) = (85.251,62.563,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 34.494, position (cm) = (74.5696,58.2651,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.39513e-09, position (cm) = (-14.1918,58.5999,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.57397, position (cm) = (23.3847,53.9492,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.17876, position (cm) = (30.7603,67.9735,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 96.8321, position (cm) = (42.2645,77.7735,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 50.5822, position (cm) = (37.0867,88.9083,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 46.8003, position (cm) = (52.6127,64.425,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.820944, position (cm) = (58.5057,50.1553,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.67941, position (cm) = (36.5343,73.9529,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 89.7403, position (cm) = (95.6309,115.663,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.558125, position (cm) = (76.1903,116.958,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.122265, position (cm) = (79.0007,120.805,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.862, position (cm) = (92.1817,120.609,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 92.3735, position (cm) = (104.452,99.9616,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 92.8442, position (cm) = (111.089,107.12,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.73226, position (cm) = (55.0555,71.4618,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.193935, position (cm) = (60.3646,77.874,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.71411, position (cm) = (84.0923,46.9777,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.476692, position (cm) = (21.58,59.1033,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 82.3478, position (cm) = (55.3596,90.4548,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.120084, position (cm) = (78.6013,91.7583,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.85248, position (cm) = (43.0739,110.487,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.00231724, position (cm) = (31.6777,127.822,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.70242, position (cm) = (43.1024,108.606,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 75.6382, position (cm) = (43.1911,106.165,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.7265, position (cm) = (58.2324,80.7272,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.04301, position (cm) = (49.3855,35.2553,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 3.49903, position (cm) = (125.051,63.2881,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.39336, position (cm) = (77.9763,-2.86356,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 2.36474, position (cm) = (117.402,63.5465,500), weight = 7.62939e-06
|
||||
gamma, kinetic energy (MeV) = 0.798604, position (cm) = (88.5491,81.8979,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.28249, position (cm) = (135.626,105.497,500), weight = 3.8147e-06
|
||||
e-, kinetic energy (MeV) = 1.99026, position (cm) = (136.3,105.737,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 2.56827, position (cm) = (123.046,111.399,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 81.2495, position (cm) = (87.7658,101.585,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.377883, position (cm) = (100.454,81.2301,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.344485, position (cm) = (78.7879,99.3961,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.47535, position (cm) = (89.7731,95.7199,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.169607, position (cm) = (85.0806,94.9638,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.18187e-09, position (cm) = (71.6101,122.399,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.14768, position (cm) = (87.0811,117.455,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.33091, position (cm) = (80.5035,111.045,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 13.782, position (cm) = (86.8123,107.053,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 81.2516, position (cm) = (85.4726,114.196,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.303309, position (cm) = (69.9409,89.6213,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.895112, position (cm) = (73.5043,94.3457,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.191993, position (cm) = (90.2211,87.45,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 6.22544, position (cm) = (90.1765,60.0232,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 20.234, position (cm) = (71.1644,64.2778,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.45002, position (cm) = (63.6056,52.9343,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.113663, position (cm) = (100.01,101.379,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.10881, position (cm) = (98.1314,104.505,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.11119, position (cm) = (102.58,94.9459,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.513405, position (cm) = (115.489,113.64,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.0662852, position (cm) = (100.844,126.47,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 57.5354, position (cm) = (101.429,129.776,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 96.6674, position (cm) = (100.075,130.174,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.9348, position (cm) = (126.68,138.314,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 31.0394, position (cm) = (131.969,132.406,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 6.41112e-07, position (cm) = (135.199,103.751,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 44.7794, position (cm) = (133.541,109.886,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.67123, position (cm) = (129.905,108.687,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.94074, position (cm) = (47.6155,58.0433,500), weight = 1.52588e-05
|
||||
gamma, kinetic energy (MeV) = 2.02813, position (cm) = (7.42466,24.1059,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.5954, position (cm) = (5.34767,26.0472,500), weight = 1.90735e-06
|
||||
e-, kinetic energy (MeV) = 0.658561, position (cm) = (-12.2212,1.44607,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 8.47403, position (cm) = (16.2398,17.3538,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.355048, position (cm) = (52.4338,-25.5422,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 43.2766, position (cm) = (61.8,-16.0184,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.53412, position (cm) = (71.2015,-5.96802,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 78.7166, position (cm) = (48.3049,-13.0356,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 79.1308, position (cm) = (50.5367,-13.3478,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.126973, position (cm) = (62.9713,-22.4898,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.125744, position (cm) = (57.85,-15.3308,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.58396, position (cm) = (50.7836,-22.3187,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 22.2626, position (cm) = (21.8778,100.914,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0823793, position (cm) = (18.4853,56.0231,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.95913, position (cm) = (116.76,57.3109,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.116115, position (cm) = (75.5951,7.27469,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.735393, position (cm) = (116.173,43.6086,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.21861, position (cm) = (134.708,37.0141,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 59.9049, position (cm) = (125.707,46.6038,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0574854, position (cm) = (139.862,54.3803,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.9943, position (cm) = (127.014,63.1453,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.10982, position (cm) = (118.216,-16.9352,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 52.7833, position (cm) = (72.6178,-48.9876,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 49.903, position (cm) = (73.5629,-32.2667,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.5024, position (cm) = (74.5279,-21.2826,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.11752, position (cm) = (51.7418,-38.7466,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 6.78977, position (cm) = (24.3193,-27.3586,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.133584, position (cm) = (38.9437,-36.954,500), weight = 1.90735e-06
|
||||
e-, kinetic energy (MeV) = 0.458753, position (cm) = (45.7606,-38.171,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 14.7252, position (cm) = (26.8398,-52.9566,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 30.8386, position (cm) = (42.8588,-46.0282,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.502963, position (cm) = (53.975,-49.2779,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.430671, position (cm) = (37.2699,-18.1061,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0296987, position (cm) = (50.5981,4.20125,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.410893, position (cm) = (30.98,-6.65394,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 85.3288, position (cm) = (108.641,-37.4223,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.14113, position (cm) = (98.0941,-34.7091,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 13.7955, position (cm) = (107.579,-29.6162,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.464026, position (cm) = (114.415,-7.27673,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.269747, position (cm) = (115.167,-5.4595,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 84.3356, position (cm) = (101.616,-32.2378,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.1453, position (cm) = (-108.966,116.549,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.756478, position (cm) = (-102.346,101.075,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.55174, position (cm) = (-3.21144,143.216,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 42.4152, position (cm) = (4.10149,124.668,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 43.2106, position (cm) = (7.47048,123.33,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0532963, position (cm) = (53.0237,94.0927,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.169969, position (cm) = (55.7007,111.517,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0898803, position (cm) = (53.6988,90.7676,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.82979e-06, position (cm) = (40.0394,82.4133,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 52.6684, position (cm) = (43.7447,108.512,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.03898, position (cm) = (48.7676,102.398,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 73.5156, position (cm) = (-53.214,142.826,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 9.90212e-11, position (cm) = (-38.7748,123.58,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 73.969, position (cm) = (-55.0984,136.959,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 74.1496, position (cm) = (-55.115,137.044,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.068947, position (cm) = (-66.0491,72.8319,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 13.2157, position (cm) = (-60.9703,64.4654,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.88966, position (cm) = (-53.4467,77.8233,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.283392, position (cm) = (-48.2358,115.47,500), weight = 1.90735e-06
|
||||
anti_nu_e, kinetic energy (MeV) = 0.165897, position (cm) = (-73.9524,125.181,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.211489, position (cm) = (50.0854,-58.2477,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 0.0562215, position (cm) = (35.8519,-21.6229,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0951188, position (cm) = (62.6087,111.981,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0901884, position (cm) = (75.295,64.8729,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.196267, position (cm) = (62.5517,60.27,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 12.4694, position (cm) = (70.1575,56.9592,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.462952, position (cm) = (30.7272,52.8832,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.562893, position (cm) = (53.8212,41.1245,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.52716, position (cm) = (46.2474,47.0325,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0864977, position (cm) = (21.924,60.9043,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.72779, position (cm) = (23.6953,41.2432,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.40631e-10, position (cm) = (78.6046,13.5456,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.95064, position (cm) = (52.2213,25.6753,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.51645, position (cm) = (89.462,39.9864,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 0.644377, position (cm) = (114.695,51.788,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.0685533, position (cm) = (109.133,-2.18767,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 8.85944e-08, position (cm) = (139.413,13.8057,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.91043e-07, position (cm) = (3.43714,99.2819,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.37906, position (cm) = (-19.6292,86.3119,500), weight = 7.62939e-06
|
||||
gamma, kinetic energy (MeV) = 3.46904, position (cm) = (-15.977,106.282,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.52598, position (cm) = (52.5575,119.975,500), weight = 7.62939e-06
|
||||
gamma, kinetic energy (MeV) = 0.357773, position (cm) = (-87.5794,-8.32542,500), weight = 3.8147e-06
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Pre-compound model active 1
|
||||
Pre-compound low energy (MeV) 0.1
|
||||
Type of de-excitation inverse x-section 3
|
||||
Type of de-excitation factory Evaporation+GEM
|
||||
Number of de-excitation channels 68
|
||||
Min excitation energy (keV) 0.01
|
||||
Min energy per nucleon for multifragmentation (MeV) 1e+05
|
||||
Limit excitation energy for Fermi BreakUp (MeV) 20
|
||||
Level density (1/MeV) 0.075
|
||||
Model of level density flag 1
|
||||
Time limit for long lived isomeres (ns) 1e+12
|
||||
Internal e- conversion flag 1
|
||||
Store e- internal conversion data 0
|
||||
Electron internal conversion ID 2
|
||||
Correlated gamma emission flag 0
|
||||
Max 2J for sampling of angular correlations 10
|
||||
=======================================================================
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
gamma, kinetic energy (MeV) = 3.18151, position (cm) = (-123.442,36.2932,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.70138, position (cm) = (-82.6731,75.0371,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 66.9204, position (cm) = (-76.8129,117.944,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 68.1932, position (cm) = (-67.8939,125.898,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 10.162, position (cm) = (-4.38937,-8.44696,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.09205, position (cm) = (41.3138,-14.0124,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.25041, position (cm) = (10.9204,-14.7971,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.247578, position (cm) = (-6.75396,38.1766,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.4144, position (cm) = (-11.2702,54.8765,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.98919, position (cm) = (-19.7864,65.8639,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 21.5757, position (cm) = (10.831,33.2536,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 59.1963, position (cm) = (3.26042,18.4041,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 59.6032, position (cm) = (-0.816532,16.761,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 99.5204, position (cm) = (14.2544,28.1056,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 99.5461, position (cm) = (13.4667,26.1446,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.114018, position (cm) = (34.2374,22.8839,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.442854, position (cm) = (56.7187,62.7823,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.394656, position (cm) = (64.6312,66.4938,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.832401, position (cm) = (41.1351,51.2649,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.01105, position (cm) = (33.6393,52.4437,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 42.2922, position (cm) = (33.9388,53.5889,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0658893, position (cm) = (31.7173,60.0953,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.234247, position (cm) = (41.0479,61.2378,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.126679, position (cm) = (35.6532,61.3066,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.2694, position (cm) = (31.1455,62.718,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.006, position (cm) = (35.9853,60.0422,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.097512, position (cm) = (16.3245,37.421,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.182522, position (cm) = (12.4024,21.6067,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.134793, position (cm) = (38.2763,53.7962,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.4773, position (cm) = (55.5655,87.9555,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.397536, position (cm) = (10.0633,68.4868,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0818417, position (cm) = (-105.054,72.6146,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 2.59916, position (cm) = (-40.579,-8.19804,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.25041, position (cm) = (-53.1552,-102.294,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 13.7614, position (cm) = (-30.6631,-104.322,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0678528, position (cm) = (-92.7976,-57.1042,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.539209, position (cm) = (-78.9524,-74.2672,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.3697, position (cm) = (-65.2088,-85.2168,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.915331, position (cm) = (-10.2043,-3.91614,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 97.4167, position (cm) = (-32.8854,-54.7504,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.00821, position (cm) = (-34.9406,-36.8844,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.56047, position (cm) = (-28.4462,-30.2838,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.159196, position (cm) = (-58.5745,-23.7445,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.214087, position (cm) = (-65.0622,-35.4738,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.799329, position (cm) = (-56.5831,-8.20028,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.172213, position (cm) = (-66.9643,-58.5646,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0746586, position (cm) = (-35.7718,-102.5,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0831667, position (cm) = (-34.3789,-107.361,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.67433e-07, position (cm) = (-30.6291,-100.94,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.9286, position (cm) = (-31.1824,-46.3013,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.9052, position (cm) = (-31.4186,-45.6208,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.33736, position (cm) = (-32.2218,-30.9017,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 0.0310518, position (cm) = (-3.27235,-48.8699,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.249871, position (cm) = (-1.2332,-89.804,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.683507, position (cm) = (22.8627,-60.6008,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.24372, position (cm) = (14.6696,-27.5352,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.204034, position (cm) = (-3.28343,-69.5637,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (1.62962,-52.2499,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 0.692028, position (cm) = (-22.6353,-35.8588,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.69887, position (cm) = (-28.2558,-34.899,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 66.86, position (cm) = (-28.7502,-40.9365,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 97.2205, position (cm) = (-35.8244,-28.7933,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.64973, position (cm) = (142.449,-100.038,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 68.6567, position (cm) = (121.814,-90.7742,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.108204, position (cm) = (85.9738,115.78,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 1.25738e-09, position (cm) = (80.1468,95.4368,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.254161, position (cm) = (83.6189,100.542,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.01407, position (cm) = (96.2709,118.815,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.75753, position (cm) = (80.0147,105.306,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.263112, position (cm) = (35.0977,120.167,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.65197e-08, position (cm) = (37.0475,111.257,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.561416, position (cm) = (44.2616,112.719,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.07877, position (cm) = (49.8738,123.147,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.89106, position (cm) = (44.9869,109.237,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 55.9467, position (cm) = (94.2236,-25.5065,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.9879, position (cm) = (-76.1089,-21.799,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.16711, position (cm) = (73.7968,-148.897,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.95123, position (cm) = (83.4158,-132.419,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0832233, position (cm) = (93.5483,-121.861,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 7.95625e-07, position (cm) = (74.6638,-59.2913,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 61.5583, position (cm) = (65.5951,-75.8467,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.85099, position (cm) = (70.3376,-77.6799,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.261251, position (cm) = (64.8936,-75.0916,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 46.6252, position (cm) = (69.0082,-78.7445,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.506552, position (cm) = (70.8407,1.54534,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.183438, position (cm) = (2.50382,46.9191,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 1.09431, position (cm) = (-24.5105,21.7402,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 2.87317, position (cm) = (-40.3888,20.4154,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 3.40156, position (cm) = (-21.2927,50.9597,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 43.8018, position (cm) = (-21.1325,104.745,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.73226, position (cm) = (-39.9706,35.2786,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 70.9898, position (cm) = (2.64487,121.316,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.9296, position (cm) = (-1.57916,127.99,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.8506, position (cm) = (6.40193,125.724,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 6.9075, position (cm) = (-0.29215,125.698,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.14796, position (cm) = (-7.18414,127.462,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 12.8115, position (cm) = (-1.24931,127.271,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 2.36218, position (cm) = (-62.5946,40.7521,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.225522, position (cm) = (-102.167,73.7353,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.31659, position (cm) = (-66.7882,70.5174,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.319438, position (cm) = (-60.7753,79.3765,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.38979, position (cm) = (-55.5546,72.9565,500), weight = 1.90735e-06
|
||||
e+, kinetic energy (MeV) = 3.30632, position (cm) = (-19.2032,77.0818,500), weight = 3.8147e-06
|
||||
e-, kinetic energy (MeV) = 3.75087, position (cm) = (-19.2108,77.0792,500), weight = 3.8147e-06
|
||||
gamma, kinetic energy (MeV) = 2.05896, position (cm) = (-26.6146,31.7067,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 4.05158e-05, position (cm) = (-17.3505,30.1982,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.37602, position (cm) = (-9.59925,39.3894,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.7785, position (cm) = (-37.8137,87.5334,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.6576, position (cm) = (-5.39758,71.9149,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.6576, position (cm) = (-5.39758,71.9149,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.319057, position (cm) = (29.801,52.1002,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 1.73139, position (cm) = (-19.9163,87.8429,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.0723768, position (cm) = (8.93193,90.4877,500), weight = 1.90735e-06
|
||||
e-, kinetic energy (MeV) = 2.40568, position (cm) = (-3.2631,82.6679,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 7.14535, position (cm) = (3.23711,54.5282,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.103513, position (cm) = (-12.7618,78.7745,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.186412, position (cm) = (-21.7127,129.65,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.409999, position (cm) = (-25.3341,92.6697,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.1787, position (cm) = (-24.9924,92.3529,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 5.40961, position (cm) = (-25.2791,92.4444,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.248471, position (cm) = (-13.4671,67.0696,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 83.9266, position (cm) = (-24.1215,80.8706,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.276277, position (cm) = (-6.49864,98.7645,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 3.07443e-09, position (cm) = (-135.327,125.003,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.783451, position (cm) = (-112.563,145.604,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.348502, position (cm) = (-101.929,147.425,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.298829, position (cm) = (-127.533,132.259,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.04388, position (cm) = (-117.612,127.611,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.79111, position (cm) = (-105.225,116.717,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-122.399,131.059,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 46.095, position (cm) = (-123.716,121.384,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 45.9116, position (cm) = (-131.767,118.355,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.599861, position (cm) = (-80.9066,33.2805,500), weight = 3.8147e-06
|
||||
neutron, kinetic energy (MeV) = 3.41235, position (cm) = (-109.301,88.6431,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 3.49947, position (cm) = (-65.7301,92.1042,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.14952, position (cm) = (-94.4043,74.1171,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.939264, position (cm) = (-83.1766,84.1433,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.389251, position (cm) = (-115.274,97.8632,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 37.9386, position (cm) = (-109.517,85.8912,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 0.904319, position (cm) = (-133.088,79.4121,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 5.0062e-09, position (cm) = (-95.7093,78.8331,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 37.121, position (cm) = (-107.648,72.411,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 55.3644, position (cm) = (-131.949,-29.2032,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 55.3224, position (cm) = (-127.445,-25.7752,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 0.220762, position (cm) = (97.4927,114.085,500), weight = 1.90735e-06
|
||||
neutron, kinetic energy (MeV) = 2.68961, position (cm) = (97.7107,114.01,500), weight = 1.90735e-06
|
||||
gamma, kinetic energy (MeV) = 4.29068, position (cm) = (96.4147,114.725,500), weight = 1.90735e-06
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -16,7 +16,7 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
Jan 31, 2019, I.Hrivnacova - exbiasing-V10-04-00
|
||||
Jan 31, 2019, I.Hrivnacova - exbiasing-V10-05-00
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
Nov 8, 2016, M. Verderi - exbiasing-V10-02-02
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -152,6 +152,8 @@ Index : 4 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model.
|
||||
See commands in /vis/modeling/trajectories/ for other options.
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
|
||||
@@ -315,11 +317,11 @@ nb event 175000
|
||||
1% Precision reached!
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Run Aborted after 175814 events processed.
|
||||
User=77.900000s Real=78.495986s Sys=0.110000s
|
||||
Run Aborted after 176016 events processed.
|
||||
User=81.460000s Real=81.996199s Sys=0.090000s
|
||||
Results of reverse/adjoint simulation!
|
||||
normalised edep [MeV] = 0.0016228
|
||||
error[MeV] = 1.62274e-05
|
||||
normalised edep [MeV] = 0.00165411
|
||||
error[MeV] = 1.65409e-05
|
||||
|
||||
----> Histogram Tree is saved in adjoint_sim.root
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -265,6 +265,8 @@ Enable creation and use of sampling tables 0
|
||||
Apply cuts on all EM processes 0
|
||||
Use integral approach for tracking 1
|
||||
Use general process 0
|
||||
Enable linear polarisation for gamma 0
|
||||
Enable sampling of quantum entanglement 0
|
||||
X-section factor for integral approach 0.8
|
||||
Min kinetic energy for tables 10 eV
|
||||
Max kinetic energy for tables 100 TeV
|
||||
@@ -275,6 +277,7 @@ Verbose level for worker thread 0
|
||||
Bremsstrahlung energy threshold above which
|
||||
primary is added to the list of secondary 100 TeV
|
||||
Lowest triplet kinetic energy 1 MeV
|
||||
Enable sampling of gamma linear polarisation 0
|
||||
5D gamma conversion model type 0
|
||||
5D gamma conversion model on isolated ion 0
|
||||
=======================================================================
|
||||
@@ -292,6 +295,7 @@ Use cut as a final range enabled 0
|
||||
Enable angular generator interface 1
|
||||
Factor of cut reduction for sub-cutoff method 1
|
||||
Max kinetic energy for CSDA tables 1 GeV
|
||||
Max kinetic energy for NIEL computation 1 MeV
|
||||
Linear loss limit 0.01
|
||||
=======================================================================
|
||||
====== Multiple Scattering Parameters ========
|
||||
@@ -319,20 +323,11 @@ Screening factor 1
|
||||
=======================================================================
|
||||
Fluorescence enabled 1
|
||||
Fluorescence Bearden data files enabled 0
|
||||
Auger electron production enabled 0
|
||||
Auger cascade enabled 0
|
||||
Auger electron cascade enabled 0
|
||||
PIXE atomic de-excitation enabled 0
|
||||
De-excitation module ignores cuts 0
|
||||
Type of PIXE cross section for hadrons Empirical
|
||||
Type of PIXE cross section for e+- Livermore
|
||||
=======================================================================
|
||||
====== DNA Physics Parameters ========
|
||||
=======================================================================
|
||||
Use fast sampling in DNA models 0
|
||||
Use Stationary option in DNA models 0
|
||||
Use DNA with multiple scattering of e- 0
|
||||
Use DNA e- solvation model type 3
|
||||
=======================================================================
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
|
||||
@@ -14,6 +14,11 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
31-05-19 V.Ivanchenko (testem1-V10-05-00)
|
||||
- Added G4NIELCalculator, corresponding histograms and printouts,
|
||||
general clean-up of the code, use default random number
|
||||
generator
|
||||
|
||||
09-05-18 B.Morgan (testem1-V10-04-02)
|
||||
- Include G4Types before use of G4MULTITHREADED. For forward
|
||||
compatibility with move to #defines over -D for G4 preprocessor
|
||||
|
||||
@@ -55,15 +55,12 @@ int main(int argc,char** argv) {
|
||||
|
||||
//detect interactive mode (if no arguments) and define UI session
|
||||
G4UIExecutive* ui = nullptr;
|
||||
if (argc == 1) ui = new G4UIExecutive(argc,argv);
|
||||
|
||||
//choose the Random engine
|
||||
G4Random::setTheEngine(new CLHEP::RanecuEngine);
|
||||
if (argc == 1) { ui = new G4UIExecutive(argc,argv); }
|
||||
|
||||
//construct the default run manager
|
||||
#ifdef G4MULTITHREADED
|
||||
G4MTRunManager* runManager = new G4MTRunManager;
|
||||
G4int nThreads = G4Threading::G4GetNumberOfCores();
|
||||
G4int nThreads = 4;
|
||||
if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
|
||||
runManager->SetNumberOfThreads(nThreads);
|
||||
#else
|
||||
|
||||
@@ -29,3 +29,8 @@
|
||||
/run/printProgress 200
|
||||
#
|
||||
/run/beamOn 2000
|
||||
#
|
||||
/gun/particle proton
|
||||
#
|
||||
/run/beamOn 2000
|
||||
#
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
**************************************************************
|
||||
Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
|
||||
Geant4 version Name: geant4-10-05-ref-06 (30-June-2019)
|
||||
Copyright : Geant4 Collaboration
|
||||
References : NIM A 506 (2003), 250-303
|
||||
: IEEE-TNS 53 (2006), 270-278
|
||||
@@ -273,6 +273,7 @@
|
||||
|
||||
|
||||
|
||||
G4NIELCalculator: is created with the model <ICRU49NucStopping>
|
||||
/control/cout/ignoreThreadsExcept 0
|
||||
/run/numberOfThreads 2
|
||||
*** /run/numberOfThreads command is issued in sequential mode.
|
||||
@@ -331,10 +332,11 @@ Index : 0 used in the geometry : Yes
|
||||
|
||||
### Run 0 starts.
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 9876, 54321
|
||||
----------------------------------------
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008233404568, 2262190991329242458, 2266470399991071809, 1976726662926872232, 245458862506414172, 1955974201201518530, 2155248512522080758, 604170912935414061, 1116171330120743511, 1861018313684488333, 1296715403254578286, 1549011045957234151, 370819759640195970, 2230139271784837643} counter= 17sumtot= 1977567618660788324
|
||||
---------------------------------------
|
||||
--> Event 0 starts.
|
||||
--> Event 200 starts.
|
||||
--> Event 400 starts.
|
||||
@@ -348,41 +350,112 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=1.400000s Real=1.403614s Sys=0.000000s
|
||||
User=1.390000s Real=1.402145s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
The run is: 2000 e- of 100 MeV through 10 m of Aluminium (density: 2.7 g/cm3 )
|
||||
|
||||
total energy deposit: 99.81 MeV
|
||||
Total energy deposit: 99.8 MeV
|
||||
NIEL energy calculated: 0 eV
|
||||
|
||||
nb tracks/event neutral: 25.387 charged: 137.25
|
||||
nb steps/event neutral: 139.45 charged: 202.92
|
||||
Nb tracks/event neutral: 25.375 charged: 138.49
|
||||
Nb steps/event neutral: 140.72 charged: 204.99
|
||||
|
||||
Process calls frequency :
|
||||
Rayl= 17629 Transportation= 1815 annihil= 2779
|
||||
compt= 210496 conv= 2758 eBrem= 46334
|
||||
eIoni= 356394 msc= 329 phot= 46204
|
||||
|
||||
CoulombScat= 1 Rayl= 17919 Transportation= 1893
|
||||
annihil= 2928 compt= 212779 conv= 2922
|
||||
eBrem= 46011 eIoni= 360643 msc= 386
|
||||
phot= 45939
|
||||
|
||||
---------------------------------------------------------
|
||||
Primary particle :
|
||||
true Range = 11.188 cm rms = 3.8667 cm
|
||||
proj Range = 9.7015 cm rms = 3.5938 cm
|
||||
proj/true = 0.86714
|
||||
transverse dispersion at end = 1.6564 cm
|
||||
mass true Range from simulation = 30.207 g/cm2
|
||||
true Range = 10.965 cm rms = 3.8375 cm
|
||||
proj Range = 9.5384 cm rms = 3.568 cm
|
||||
proj/true = 0.86989
|
||||
transverse dispersion at end = 1.6112 cm
|
||||
mass true Range from simulation = 29.606 g/cm2
|
||||
from PhysicsTable (csda range) = 32.1 g/cm2
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
Current couple of seeds = 1141212198, 786041491
|
||||
----------------------------------------
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={2031873584265960620, 622507089045045433, 22422546016843345, 495435721881672961, 206001911099862491, 770722890597424911, 1066394520851527311, 880415356861482673, 1742530766070595907, 1657507365339702529, 1926583258781533475, 812616883571229806, 1022991302094510677, 554724334253111068, 2070248109427892588, 535330816359514199, 1042845930388460343} counter= 6sumtot= 1320251322410512680
|
||||
---------------------------------------
|
||||
#
|
||||
/gun/particle proton
|
||||
#
|
||||
/run/beamOn 2000
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
Index : 0 used in the geometry : Yes
|
||||
Material : Aluminium
|
||||
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 1 mm
|
||||
Energy thresholds : gamma 6.89843 keV e- 599.101 keV e+ 573.786 keV proton 100 keV
|
||||
Region(s) which use this couple :
|
||||
DefaultRegionForTheWorld
|
||||
|
||||
====================================================================
|
||||
|
||||
### Run 1 starts.
|
||||
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={2031873584265960620, 622507089045045433, 22422546016843345, 495435721881672961, 206001911099862491, 770722890597424911, 1066394520851527311, 880415356861482673, 1742530766070595907, 1657507365339702529, 1926583258781533475, 812616883571229806, 1022991302094510677, 554724334253111068, 2070248109427892588, 535330816359514199, 1042845930388460343} counter= 6sumtot= 1320251322410512680
|
||||
---------------------------------------
|
||||
--> Event 0 starts.
|
||||
--> Event 200 starts.
|
||||
--> Event 400 starts.
|
||||
--> Event 600 starts.
|
||||
--> Event 800 starts.
|
||||
--> Event 1000 starts.
|
||||
--> Event 1200 starts.
|
||||
--> Event 1400 starts.
|
||||
--> Event 1600 starts.
|
||||
--> Event 1800 starts.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=0.080000s Real=0.074285s Sys=0.000000s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
The run is: 2000 proton of 100 MeV through 10 m of Aluminium (density: 2.7 g/cm3 )
|
||||
|
||||
Total energy deposit: 100 MeV
|
||||
NIEL energy calculated: 231.28 eV
|
||||
|
||||
Nb tracks/event neutral: 0 charged: 1.007
|
||||
Nb steps/event neutral: 0 charged: 19.282
|
||||
|
||||
Process calls frequency :
|
||||
CoulombScat= 39 RadioactiveDecay= 14 hIoni= 38498
|
||||
ionIoni= 14
|
||||
|
||||
---------------------------------------------------------
|
||||
Primary particle :
|
||||
true Range = 3.7116 cm rms = 402.76 um
|
||||
proj Range = 3.7031 cm rms = 430.51 um
|
||||
proj/true = 0.99771
|
||||
transverse dispersion at end = 1.1551 mm
|
||||
mass true Range from simulation = 10.021 g/cm2
|
||||
from PhysicsTable (csda range) = 10.012 g/cm2
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
------- MixMaxRng engine status -------
|
||||
Current state vector is:
|
||||
mixmax state, file version 1.0
|
||||
N=17 V[N]={1974224681893168029, 1965629350189180792, 2149446006452828190, 836335630534088439, 1835111934799833733, 2285826079354604722, 1901053091689188819, 653388806531699075, 186055322664990869, 171399043059235721, 788477970145032726, 253565281565090958, 439145741967805911, 1018099360741507957, 2151496725065425995, 1592975707546752145, 229850192346479570} counter= 14sumtot= 1985336852837362043
|
||||
---------------------------------------
|
||||
#
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 9 of which, static: 0
|
||||
Dynamic pools deleted: 9 / Total memory freed: 0.036 MB
|
||||
Dynamic pools deleted: 9 / Total memory freed: 0.038 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -52,38 +52,31 @@ class DetectorConstruction : public G4VUserDetectorConstruction
|
||||
|
||||
DetectorConstruction();
|
||||
virtual ~DetectorConstruction();
|
||||
|
||||
public:
|
||||
|
||||
virtual G4VPhysicalVolume* Construct();
|
||||
virtual void ConstructSDandField();
|
||||
virtual G4VPhysicalVolume* Construct();
|
||||
virtual void ConstructSDandField();
|
||||
|
||||
void SetSize (G4double);
|
||||
void SetMaterial (G4String);
|
||||
|
||||
public:
|
||||
void SetSize (G4double);
|
||||
void SetMaterial (const G4String&);
|
||||
|
||||
const
|
||||
G4VPhysicalVolume* GetWorld() {return fPBox;};
|
||||
|
||||
G4double GetSize() {return fBoxSize;};
|
||||
G4Material* GetMaterial() {return fMaterial;};
|
||||
inline const G4VPhysicalVolume* GetWorld() const {return fPBox;};
|
||||
inline G4double GetSize() const {return fBoxSize;};
|
||||
inline const G4Material* GetMaterial() const {return fMaterial;};
|
||||
|
||||
void PrintParameters();
|
||||
void DefineMaterials();
|
||||
void PrintParameters();
|
||||
void DefineMaterials();
|
||||
|
||||
private:
|
||||
|
||||
G4VPhysicalVolume* fPBox;
|
||||
G4LogicalVolume* fLBox;
|
||||
G4Box* fBox;
|
||||
G4VPhysicalVolume* fPBox;
|
||||
G4LogicalVolume* fLBox;
|
||||
G4Box* fBox;
|
||||
|
||||
G4double fBoxSize;
|
||||
G4Material* fMaterial;
|
||||
|
||||
DetectorMessenger* fDetectorMessenger;
|
||||
G4Cache<G4GlobalMagFieldMessenger*> fFieldMessenger;
|
||||
G4double fBoxSize;
|
||||
G4Material* fMaterial;
|
||||
|
||||
DetectorMessenger* fDetectorMessenger;
|
||||
G4Cache<G4GlobalMagFieldMessenger*> fFieldMessenger;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -43,18 +43,18 @@ class EventAction : public G4UserEventAction
|
||||
{
|
||||
public:
|
||||
EventAction();
|
||||
~EventAction();
|
||||
~EventAction() override;
|
||||
|
||||
public:
|
||||
virtual void BeginOfEventAction(const G4Event*);
|
||||
virtual void EndOfEventAction(const G4Event*);
|
||||
void BeginOfEventAction(const G4Event*) override;
|
||||
void EndOfEventAction(const G4Event*) override;
|
||||
|
||||
void AddEdep(G4double Edep) {fTotalEnergyDeposit += Edep;};
|
||||
G4double GetEnergyDeposit() {return fTotalEnergyDeposit;};
|
||||
|
||||
inline void AddEdep(G4double Edep) {fTotalEnergyDeposit += Edep;};
|
||||
inline void AddNIEL(G4double Edep) {fNIEL += Edep;};
|
||||
inline G4double GetEnergyDeposit() {return fTotalEnergyDeposit;};
|
||||
|
||||
private:
|
||||
G4double fTotalEnergyDeposit;
|
||||
G4double fTotalEnergyDeposit;
|
||||
G4double fNIEL;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -45,34 +45,34 @@ class G4ParticleDefinition;
|
||||
class Run : public G4Run
|
||||
{
|
||||
public:
|
||||
Run(DetectorConstruction*);
|
||||
~Run();
|
||||
Run(const DetectorConstruction*);
|
||||
~Run() override;
|
||||
|
||||
public:
|
||||
void SetPrimary(G4ParticleDefinition* particle, G4double energy);
|
||||
void SetPrimary(const G4ParticleDefinition* particle, G4double energy);
|
||||
|
||||
void CountTraks0(G4int nt) { fNbOfTraks0 += nt;}
|
||||
void CountTraks1(G4int nt) { fNbOfTraks1 += nt;}
|
||||
void CountSteps0(G4int ns) { fNbOfSteps0 += ns;}
|
||||
void CountSteps1(G4int ns) { fNbOfSteps1 += ns;}
|
||||
void CountProcesses(G4String procName);
|
||||
void CountProcesses(const G4String& procName);
|
||||
|
||||
void AddEdep(G4double val) { fEdep += val;}
|
||||
void AddNIEL(G4double val) { fNIEL += val;}
|
||||
void AddTrueRange (G4double l) { fTrueRange += l; fTrueRange2 += l*l;}
|
||||
void AddProjRange (G4double x) { fProjRange += x; fProjRange2 += x*x;}
|
||||
void AddTransvDev (G4double y) { fTransvDev += y; fTransvDev2 += y*y;}
|
||||
|
||||
virtual void Merge(const G4Run*);
|
||||
void Merge(const G4Run*) override;
|
||||
void EndOfRun();
|
||||
|
||||
private:
|
||||
DetectorConstruction* fDetector;
|
||||
G4ParticleDefinition* fParticle;
|
||||
const DetectorConstruction* fDetector;
|
||||
const G4ParticleDefinition* fParticle;
|
||||
G4double fEkin;
|
||||
|
||||
G4int fNbOfTraks0, fNbOfTraks1;
|
||||
G4int fNbOfSteps0, fNbOfSteps1;
|
||||
G4double fEdep;
|
||||
G4double fEdep, fNIEL;
|
||||
G4double fTrueRange, fTrueRange2;
|
||||
G4double fProjRange, fProjRange2;
|
||||
G4double fTransvDev, fTransvDev2;
|
||||
|
||||
@@ -48,16 +48,16 @@ class HistoManager;
|
||||
class RunAction : public G4UserRunAction
|
||||
{
|
||||
public:
|
||||
RunAction(DetectorConstruction* det, PrimaryGeneratorAction* prim=0);
|
||||
~RunAction();
|
||||
RunAction(const DetectorConstruction* det,
|
||||
PrimaryGeneratorAction* prim=nullptr);
|
||||
~RunAction() override;
|
||||
|
||||
public:
|
||||
virtual G4Run* GenerateRun();
|
||||
virtual void BeginOfRunAction(const G4Run*);
|
||||
virtual void EndOfRunAction(const G4Run*);
|
||||
|
||||
G4Run* GenerateRun() override;
|
||||
void BeginOfRunAction(const G4Run*) override;
|
||||
void EndOfRunAction(const G4Run*) override;
|
||||
|
||||
private:
|
||||
DetectorConstruction* fDetector;
|
||||
const DetectorConstruction* fDetector;
|
||||
PrimaryGeneratorAction* fPrimary;
|
||||
Run* fRun;
|
||||
HistoManager* fHistoManager;
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
#include "G4UserSteppingAction.hh"
|
||||
|
||||
class EventAction;
|
||||
class G4NIELCalculator;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -43,12 +44,13 @@ class SteppingAction : public G4UserSteppingAction
|
||||
{
|
||||
public:
|
||||
SteppingAction(EventAction*);
|
||||
~SteppingAction() {};
|
||||
~SteppingAction() override;
|
||||
|
||||
void UserSteppingAction(const G4Step*) override;
|
||||
|
||||
virtual void UserSteppingAction(const G4Step*);
|
||||
|
||||
private:
|
||||
EventAction* fEventAction;
|
||||
G4NIELCalculator* fNIELCalculator;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -50,6 +50,9 @@
|
||||
#include "G4SystemOfUnits.hh"
|
||||
#include "G4PhysicalConstants.hh"
|
||||
|
||||
#include "G4GlobalMagFieldMessenger.hh"
|
||||
#include "G4AutoDelete.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
DetectorConstruction::DetectorConstruction()
|
||||
@@ -58,7 +61,7 @@ DetectorConstruction::DetectorConstruction()
|
||||
{
|
||||
fBoxSize = 10*m;
|
||||
DefineMaterials();
|
||||
SetMaterial("Aluminium");
|
||||
SetMaterial("G4_Al");
|
||||
fDetectorMessenger = new DetectorMessenger(this);
|
||||
}
|
||||
|
||||
@@ -188,6 +191,7 @@ void DetectorConstruction::DefineMaterials()
|
||||
|
||||
G4VPhysicalVolume* DetectorConstruction::Construct()
|
||||
{
|
||||
if(fPBox) { return fPBox; }
|
||||
fBox = new G4Box("Container", //its name
|
||||
fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
|
||||
|
||||
@@ -220,7 +224,7 @@ void DetectorConstruction::PrintParameters()
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void DetectorConstruction::SetMaterial(G4String materialChoice)
|
||||
void DetectorConstruction::SetMaterial(const G4String& materialChoice)
|
||||
{
|
||||
// search the material by its name
|
||||
G4Material* pttoMaterial =
|
||||
@@ -250,9 +254,6 @@ void DetectorConstruction::SetSize(G4double value)
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#include "G4GlobalMagFieldMessenger.hh"
|
||||
#include "G4AutoDelete.hh"
|
||||
|
||||
void DetectorConstruction::ConstructSDandField()
|
||||
{
|
||||
if ( fFieldMessenger.Get() == 0 ) {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user