Import Geant4 10.3.1 source tree
This commit is contained in:
+3
-3
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# 21st September 2010 Ben Morgan
|
||||
#
|
||||
# $Id: CMakeLists.txt 97443 2016-06-03 07:59:02Z gcosmo $
|
||||
# $Id: CMakeLists.txt 102581 2017-02-09 09:30:38Z gcosmo $
|
||||
#
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
@@ -35,10 +35,10 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
|
||||
project(Geant4)
|
||||
|
||||
# - Versioning. We do this here for now
|
||||
set(${PROJECT_NAME}_VERSION "10.3.0")
|
||||
set(${PROJECT_NAME}_VERSION "10.3.1")
|
||||
set(${PROJECT_NAME}_VERSION_MAJOR "10")
|
||||
set(${PROJECT_NAME}_VERSION_MINOR "3")
|
||||
set(${PROJECT_NAME}_VERSION_PATCH "0")
|
||||
set(${PROJECT_NAME}_VERSION_PATCH "1")
|
||||
|
||||
|
||||
# - Prepend our own CMake Modules to the search path
|
||||
|
||||
@@ -0,0 +1,231 @@
|
||||
|
||||
Geant4 10.2 - patch-03 Release Notes
|
||||
------------------------------------
|
||||
|
||||
27 January 2017
|
||||
|
||||
List of fixes included in this public patch since the public release 10.2.p02:
|
||||
|
||||
o Configuration:
|
||||
-------------
|
||||
+ CMake:
|
||||
o Correctly export USolids/VecGeom settings to GNUmake configuration
|
||||
scripts.
|
||||
o Provided placeholder variable for adding setting of XercesC library
|
||||
path. Addressing problem report #1877.
|
||||
|
||||
o Analysis
|
||||
--------
|
||||
+ Fixed incompatibility with ROOT 5.x and 6.x formats.
|
||||
+ Fixed compilation warnings and MacOSX and Win64.
|
||||
|
||||
o Error-Propagation
|
||||
-----------------
|
||||
+ G4ErrorPhysicsList: replaced direct use of 'aParticleIterator' with
|
||||
GetParticleIterator(), to allow for porting on clang-3.9 and XCode-8
|
||||
on MacOS.
|
||||
|
||||
o Event:
|
||||
-----
|
||||
+ Fixed way of deleting G4PrimaryVertex objects to avoid stack overflow
|
||||
for very large number of primary vertices.
|
||||
+ Set polarization to pre-assigned decay products in G4PrimaryTransformer.
|
||||
Addressing problem report #1914.
|
||||
|
||||
o Geometry:
|
||||
--------
|
||||
+ magnetic-field:
|
||||
o Fixed G4ClassicalRK4 header with protection against multiple inclusions.
|
||||
+ management:
|
||||
o Moved initialisation of G4GeomSplitter thread-local data to be inline
|
||||
along with generic template type; moved accessors/modifiers for splitter
|
||||
data to non-inline in G4Region, G4LogicalVolume and G4VPhysicalVolume.
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
o Removed redundant check in G4GeomSplitter::UseWorkArea().
|
||||
Addressing problem report #1876.
|
||||
+ navigation:
|
||||
o Fixed recursion test for overlaps in G4GeomTestVolume to iterate on
|
||||
all daughters.
|
||||
o G4ReplicaNavigation: use Cartesian tolerance in distance evaluation
|
||||
in DistanceToOutPhi(). Addressing problem report #1902.
|
||||
o G4Navigator: in ComputeStep() force abortion of event if track gets
|
||||
really stuck, but avoid check for overlaps if push-verbosity is set to
|
||||
false. Extended printout for stuck tracks, to show also local
|
||||
coordinates.
|
||||
o Fix in G4Navigator::GetGlobalExitNormal() to synchronise caching of
|
||||
'fExitNormalGlobalFrame' before returning.
|
||||
Addressing problem report #1750.
|
||||
Added more diagnostics in G4VERBOSE mode.
|
||||
o G4PhantomParameterisation: revisited precision checks.
|
||||
o G4PropagatorInField: fix to pass accuracy values to Intersection Locator
|
||||
after re-evaluating epsilon.
|
||||
o Added annotations for while-do loops.
|
||||
+ solids/Boolean:
|
||||
o G4SubtractionSolid: directly return previously computed distance in
|
||||
DistanceToIn(p,v) if no progress is made (zero step).
|
||||
+ solids/CSG:
|
||||
o Disabled check for intersection of cut planes in G4CutTubs constructor,
|
||||
as too strict and not necessary. Addressing problem report #1887.
|
||||
o Use G4RandFlat instead of RandFlat.
|
||||
+ solids/specific:
|
||||
o Moved accessors/modifiers for splitter data to non-inline in
|
||||
G4PolyhedraSide and G4PolyconeSide. Moved initialisation of
|
||||
G4GeomSplitter thread-local data to be inline along with generic
|
||||
template type.
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
o Fixed minor typo in function Create() for G4Polycone, G4Polyhedra and
|
||||
G4GenericPolycone. Fixed minor typos in G4GenericTrap::SurfaceNormal()
|
||||
and G4VTwistSurface::CurrentStatus::ResetfDone().
|
||||
Addressing problem report #1876.
|
||||
o Use G4RandFlat instead of RandFlat.
|
||||
+ volumes:
|
||||
o Correction in G4NavigationHistory default constructor to use
|
||||
GetLevels() instead of GetNewLevels() from G4NavigationHistoryPool,
|
||||
to favor re-use of already allocated space.
|
||||
Corrected printout in streaming operator.
|
||||
o Moved initialisation of G4GeomSplitter thread-local data to be inline
|
||||
along with generic template type.
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
|
||||
o Global:
|
||||
------
|
||||
+ G4StatDouble: fixed computation of RMS and added new constructor.
|
||||
+ G4UnitsTable: use 'hep_pascal' instead of 'pascal' to avoid potential
|
||||
symbol conflicts on Windows.
|
||||
+ Made initialisation of G4TWorkspacePool thread-local data to be inline
|
||||
along with generic template type. Fixing compilation/linking errors on
|
||||
clang-3.9 and XCode-8 on MacOS.
|
||||
+ Fixed compilation warning on MacOS Sierra in MT mode in function
|
||||
G4Threading::G4GetPidId().
|
||||
+ Updated date and version for 10.2.p03.
|
||||
|
||||
o Graphics Representations:
|
||||
------------------------
|
||||
+ G4VisAttributes::GetInvisible(): changed to use a static instance instead
|
||||
of G4VisAttributes::Invisible; moved implementation to be not inline.
|
||||
Deprecated G4VisAttributes::Invisible.
|
||||
|
||||
o Materials:
|
||||
---------
|
||||
+ Fixed incorrectly calculated index for MicroRoughness lookup table
|
||||
in G4UCNMaterialPropertiesTable. Fixed incorrectly calculated
|
||||
MicroRoughness amplitude in G4UCNMicroRoughnessHelper.
|
||||
|
||||
o Parameterisations:
|
||||
-----------------
|
||||
+ gflash:
|
||||
o Fixed memory leak in GVFlashShowerParameterisation.
|
||||
o Removed redundant condition in GFlashHitMaker::make().
|
||||
Addressing problem report #1876.
|
||||
|
||||
o Particles:
|
||||
---------
|
||||
+ Fixed way of deleting G4PrimaryVertex and G4PrimaryParticle objects
|
||||
to avoid stack overflow for very large number of primary vertices or
|
||||
primary particles.
|
||||
+ Fixed calculation of neutrino mass in G4MuonRadiativeDecayWithSpin.
|
||||
Addressing problem report #1928.
|
||||
+ Replaced use of obsolete G4PDefSplitter class by G4PDefManager, concrete
|
||||
class with implementation. This addresses initialisation problems of
|
||||
static data previously in template.
|
||||
Moved accessors/modifiers for splitter data to non-inline in
|
||||
G4ParticleDefinition and moved initialisation of Splitter thread-local
|
||||
data to be inline along with generic template type.
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
|
||||
o Persistency:
|
||||
-----------
|
||||
+ GDML:
|
||||
o Fixed check for correctness of the units for divisions and replicas
|
||||
along angular axis. Addressing problem report #1912.
|
||||
+ mctruth:
|
||||
o Fixed typo in G4PersistencyCenterMessenger::GetCurrentValue() in
|
||||
selection of verbose mode. Addressing problem report #1876.
|
||||
|
||||
o Physics Lists
|
||||
-------------
|
||||
+ Replaced direct use of aParticleIterator by GetParticleIterator().
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
|
||||
o Processes - Electromagnetic:
|
||||
---------------------------
|
||||
+ dna:
|
||||
o Removed check of c++ version for unique_ptr/auto_ptr selection in
|
||||
G4MoleculeCounter.
|
||||
+ lowenergy:
|
||||
o Removed verbosity in G4AtomicTransitionManager.
|
||||
Addressing problem report #1874.
|
||||
o Fixed typo in G4hParameterisedLossModel.
|
||||
Addressing problem report #1876.
|
||||
+ utils:
|
||||
o G4EmBiasingManager: fixed typo in condition.
|
||||
Addressing problem report #1876.
|
||||
|
||||
o Processes - Hadronic:
|
||||
--------------------
|
||||
+ models/im_r_matrix:
|
||||
o G4VScatteringCollision: fixed memory leak in MT-mode.
|
||||
Addressing problem report #1905.
|
||||
+ models/lend:
|
||||
o Fixed to use G4Random.
|
||||
o Improved memory consumption in multi-threaded runs.
|
||||
o Fixed compilation warning in GCC with -O3 optimisation option.
|
||||
+ models/particle_hp:
|
||||
o Reintroduced cache of cross-section in GetIsoCrossSection().
|
||||
Fixing CPU performance penalty introduced in release 10.2 on HP
|
||||
processes.
|
||||
o Fixed warning messages on clang-3.8,
|
||||
+ processes:
|
||||
o UCN processes: fixed incorrectly calculated MicroRoughness correction
|
||||
to absorption probability. Corrected calculation of refracted velocity
|
||||
after transmission.
|
||||
+ util:
|
||||
o Fix in G4Nucleus::GetThermalNucleus() in branch on total energy
|
||||
calculation using relativistic energy at higher energies.
|
||||
Addressing problem report #1911.
|
||||
|
||||
o Processes - Optical:
|
||||
-------------------
|
||||
+ Fixed potential problem of photon stuck when traveling almost
|
||||
perpendicular to the surface normal. Addressing problem report #1888.
|
||||
|
||||
o Run:
|
||||
---
|
||||
+ Added method GetParticleIterator() in G4VPhysicsConstructor and in
|
||||
G4VUserPhysicsList. Mved static GetInstance() method in G4RNGHelper to be
|
||||
not inline. Moved initialisation of G4VUPLSplitter thread-local data to
|
||||
be inline along with generic template type.
|
||||
Removed explicit initialisation of thread-local data from workspaces,
|
||||
as now happening inline in G4TWorkspacePool.
|
||||
Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS.
|
||||
+ Removed redundant check in G4VUPLSplitter::UseWorkArea().
|
||||
Addressing problem report #1876.
|
||||
+ G4WorkerRunManager: minor printout improvement.
|
||||
|
||||
o Visualization:
|
||||
-------------
|
||||
+ management:
|
||||
o G4Scene: replaced warning reference to obsolete
|
||||
G4VisAttributes::Invisible to G4VisAttributes::GetInvisible().
|
||||
+ OpenGL:
|
||||
o Fixed compilation warning on Win64.
|
||||
|
||||
o Examples:
|
||||
--------
|
||||
+ Updated reference outputs.
|
||||
+ Replaced direct use of 'a/theParticleIterator' with GetParticleIterator().
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o This patch should be applied on top of release 10.2.
|
||||
o Technical notes distributed for release 10.2 are also applicable and
|
||||
valid for this patch.
|
||||
|
||||
The code and rebuilt binary libraries for release 10.2.p03 are available
|
||||
through our "Download" Web page.
|
||||
|
||||
Please refer to the Geant4 User Documentation for further information about
|
||||
using Geant4.
|
||||
@@ -0,0 +1,236 @@
|
||||
|
||||
Geant4 10.3 - patch-01 Release Notes
|
||||
------------------------------------
|
||||
|
||||
24 February 2017
|
||||
|
||||
List of fixes included in this public patch since the public release 10.3:
|
||||
|
||||
o Configuration:
|
||||
-------------
|
||||
+ CMake:
|
||||
o Updated data-sets to G4PhotonEvaporation-4.3.2 and
|
||||
G4RadioactiveDecay-5.1.1.
|
||||
|
||||
o Analysis
|
||||
--------
|
||||
+ Restored clean-up of Root empty files in MT mode.
|
||||
|
||||
o Geometry:
|
||||
--------
|
||||
+ solids/Boolean:
|
||||
o Return normal from solid being subtracted, in case point is located
|
||||
outside in G4SubtractionSolid::SurfaceNormal().
|
||||
o Code formatting and minor cleanup in G4IntersectionSolid.
|
||||
+ solids/CSG:
|
||||
o Use radius differences and hypot to improve precision in G4Torus.
|
||||
Addressing problem report #1931.
|
||||
o Fix in GetCubicVolume() and GetSurfaceArea() for G4CutTubs, to make
|
||||
use of the cached values. Addressing problem report #1943.
|
||||
o Removed redundant code/checks in G4Orb::SurfaceNormal().
|
||||
+ solids/specific:
|
||||
o Correction in G4UExtrudedSolid to signature for CalculateExtent().
|
||||
Fixes issue of undefined symbol if extruded-solid not included in the
|
||||
list of VecGeom wrappers to activate.
|
||||
+ volumes:
|
||||
o Correction in G4NavigationHistory default constructor to use
|
||||
GetLevels() instead of GetNewLevels() from G4NavigationHistoryPool,
|
||||
to favor re-use of already allocated space.
|
||||
|
||||
o Global:
|
||||
------
|
||||
+ Removed obsolete G4SubString code used internally in G4String, as no
|
||||
longer necessary and also including unnecessary and buggy operators.
|
||||
Addressing problem report #1864.
|
||||
+ Updated date and version for 10.3.p01.
|
||||
|
||||
o Intercoms:
|
||||
---------
|
||||
+ Added "/control/useDoublePrecision" UI command to extend to 17 digits
|
||||
precision printout for the current parameter values.
|
||||
Addressing problem report #1921.
|
||||
|
||||
o Interfaces:
|
||||
----------
|
||||
+ G4UIQt: added missing check for pointer deletion.
|
||||
Addressing problem report #1933.
|
||||
|
||||
o Materials:
|
||||
---------
|
||||
+ Removed debug printout from G4MaterialPropertiesTable destructor.
|
||||
Addressing problem report #1944.
|
||||
|
||||
o Particles:
|
||||
---------
|
||||
+ Fixed calculation of neutrino mass in G4MuonRadiativeDecayWithSpin.
|
||||
Addressing problem report #1928.
|
||||
+ Added class G4AdjointElectronFI.
|
||||
|
||||
o Physics Lists
|
||||
-------------
|
||||
+ constructors/decay:
|
||||
o G4RadioactiveDecayPhysics: simplified list of EM parameters.
|
||||
Switch on storing of all internal conversion data vector for correct
|
||||
gamma deexcitation modeling in radioactive decay.
|
||||
+ constructors/electromagnetic:
|
||||
o Added 'setCerenkov/ScintillationStackPhotons' commands to
|
||||
G4OpticalPhysicsMessenger and use them in G4OpticalPhysics.
|
||||
+ constructors/hadron_inelastic:
|
||||
o Fixed printing of setup for transition energy region between FTFP
|
||||
and BERT to happen only from master thread.
|
||||
+ constructors/limiters:
|
||||
o Fixed printing of setup parameter for nureon tracking cuts to happen
|
||||
only from master thread.
|
||||
+ lists:
|
||||
o G4PhysListFactory: added single scattering EM option (need to add
|
||||
"__SS" to the reference physics list name for activation).
|
||||
|
||||
o Processes - Electromagnetic:
|
||||
---------------------------
|
||||
+ adjoint:
|
||||
o Correction for cases of FPE in G4AdjointForcedInteractionForGamma.
|
||||
+ dna:
|
||||
o Prevent a crash when calling G4ITTrackingManager::EndTracking() from
|
||||
the UserTimeStepAction::PostTimeStepAction.
|
||||
o Added missing call to tracking-manager.
|
||||
o Code cleanup in G4KDNode and G4KDMap.
|
||||
+ utils:
|
||||
o Fixed typo in G4EmParametersMessenger. Addressing problem report #1929.
|
||||
|
||||
o Processes - Hadronic:
|
||||
--------------------
|
||||
+ models/de_excitation:
|
||||
o G4LevelManager, G4NuclLevel, G4LevelReader: reduce memory for description
|
||||
of a level: each two integer parameters are packed into one integer value;
|
||||
use only one set of probabilities of transition independently on use-case
|
||||
(HEP or radioactive decay). Fill internal conversion coefficients into the
|
||||
data structure only if a flag SetStoreAllLevels() is set to true; in the
|
||||
last case, more memory required per isotope (~8 times).
|
||||
o G4LevelManager: fixed unpacking of spin.
|
||||
o G4LevelReader: fixed Ra228 problem; read all levels from a data file.
|
||||
Fixed U235[0.076] problem: if value of alpha (relative probability of the
|
||||
internal conversion) is 10^10, then assume that internal conversion will
|
||||
go via outer levels and gamma emission has zero probability; internal
|
||||
conversion is forced independently on other flags.
|
||||
o G4NucLevel: in TransitionType, use % operator to correctly strip off
|
||||
leading digit.
|
||||
o G4GammaTransition: sample e- with kinetic energy corresponding to
|
||||
transition between nuclear levels, ignoring atomic effects, when internal
|
||||
conversion data are not filled but sampling e- emission is selected.
|
||||
In SampleDirection(), fix to avoid only zero polarization returned;
|
||||
return back sampling when initial state has angular moment but its
|
||||
polarisation is random; also fix in order to comply with instructions in
|
||||
G4PolarizationTransition for the call order and to properly initialize
|
||||
the nuclear polarization.
|
||||
Use SetExcitationEnergy() method of G4Fragment for keeping excitation
|
||||
energy exact as in the database and avoid rare cases of event
|
||||
non-reproducibility; added SetVerbose() method.
|
||||
Fixed multipolarity based on the updated data-set.
|
||||
Added control on printout; fixed thread unsafe check.
|
||||
o G4PhotonEvaporation, G4GammaTransition: improved sampling and kinematics
|
||||
for internal conversion. Added internal conversion in G4PhotonEvaporation
|
||||
even if the data are not stored.
|
||||
o G4PolarizationTransition: fix for computation of polarisation and
|
||||
multi-polarity. Fix in SetGammaTransitionData().
|
||||
Added SetVerbose() method; added protection from extra verbosity.
|
||||
o G4ExcitationHandler: moved Dump() printout within Initialise()
|
||||
method; print info if evaporation channels are changed.
|
||||
Added local data member to control verbosity level.
|
||||
o G4ExcitationHandler, G4PhotonEvaporation: use floating level number.
|
||||
o G4DeexPrecoParameters: changed default time limit from 0.01 s to
|
||||
1 microsecond. By default use uniform angular distribution in CM
|
||||
system of precompound decay. Extended Dump() printout; make new data
|
||||
structure the default. By default, use uniform angular distribution
|
||||
in CM sytem of precompound decay.
|
||||
Changed minimum excitation energy now set to 10 eV (was 100 eV).
|
||||
o G4VEvaporation: added extra const access method.
|
||||
o G4Evaporation: added data member to control verbosity level.
|
||||
o Fixed case of event non-reproducibility due precision lost in
|
||||
Lorentz transformations.
|
||||
o G4LevelReader: in the case of broken file structure or absence of
|
||||
a data file a fatal exception is issued.
|
||||
Addressing problem report #1942.
|
||||
+ models/im_r_matrix:
|
||||
o G4VScatteringCollision: fixed memory leak in MT-mode.
|
||||
Addressing problem report #1905.
|
||||
+ models/radioactive_decay:
|
||||
o G4ITDecay: in constructor, make G4PhotonEvaporation a class member
|
||||
and initialize only once to avoid memory churn.
|
||||
Added check on Z, A, excitation energy in order to be sure that
|
||||
correlated gamma may be sampled; reset 4-momentum at rest when previous
|
||||
nucleaus is reused; use floating level index when a new ion is created.
|
||||
o G4RadioactiveDecay: temporarily switched off correlated gamma emission,
|
||||
to limit observed event non-reproducibility violations.
|
||||
+ models/util:
|
||||
o G4Fragment: minor cleanup of check on excitation energy of a ground
|
||||
state. Added method SetExcEnergyAndMomentum() allowing to preserve
|
||||
excitation energy value without precision lost; 4-momentum is
|
||||
recomputed. Added missing class member and accesors/modifiers for
|
||||
floating levels number.
|
||||
o Added control on printout in G4PolynomialPDF.
|
||||
|
||||
o Run:
|
||||
---
|
||||
+ Modifications to fix bug with reverse track splitting.
|
||||
Added function ResetDidOneAdjPartReachExtSourceDuringEvent() to
|
||||
G4AdjointSimManager and use it in G4AdjointPrimaryGeneratorAction.
|
||||
+ Fixed printing of banner to happen only from master thread.
|
||||
|
||||
o Tracking:
|
||||
--------
|
||||
+ Modification in G4AdjointSteppingAction for fixing bug with reverse
|
||||
track splitting.
|
||||
|
||||
o Visualization:
|
||||
-------------
|
||||
+ management:
|
||||
o Fix in G4VisCommandsViewer to have '/vis/viewer/interpolate' to work
|
||||
on Windows.
|
||||
+ OpenGL:
|
||||
o Fixed bug in ScaledFlush.
|
||||
+ OpenInventor:
|
||||
o G4OpenInventorXtExtendedViewer: added viewer button for Wireframe/Solid
|
||||
switching. Added workaround to prevent empty second page in PS and PDF
|
||||
output (due to superimposed scene).
|
||||
+ RayTracer:
|
||||
o G4RTXScanner: changed XA_RGB_BEST_MAP to XA_RGB_DEFAULT_MAP.
|
||||
|
||||
o Data sets:
|
||||
---------
|
||||
+ Patched data set for nuclides properties G4PhotonEvaporation-4.3.2:
|
||||
o Corrected correlated_gamma files for the uncorrect setting of the
|
||||
multipolarity E0 as -1. Now considering E0,E1,M1, as 1,2,3,.....
|
||||
The value of = is for unkown.
|
||||
o Corrected correlated_gamma files z64.a148,z64.a149,z64.a150,z81.a194
|
||||
for problem of order of level index.
|
||||
+ Patched data set for radioactive-decay, G4RadioactiveDecay-5.1.1:
|
||||
o Correction of negative Q value for metastable 190+X level in z77.a194.
|
||||
o Correction of z38.a85 (Sr-85) with input data from DDEP.
|
||||
Addressing problem report #1922.
|
||||
|
||||
o Examples:
|
||||
--------
|
||||
+ Updated reference outputs.
|
||||
+ advanced/hadrotherapy:
|
||||
o Fixed field setup; corrected physics-list.
|
||||
Addressing problem report #1879.
|
||||
+ extended/exoticphysics/ucn:
|
||||
o Reduced verbosity.
|
||||
+ extended/medical/dna/pdb4dna:
|
||||
+ extended/medical/dna/wholeNuclearDNA:
|
||||
o Fixed compilation problem when Qt is enabled.
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Technical Notes
|
||||
---------------
|
||||
|
||||
o This patch should be applied on top of release 10.3.
|
||||
o Technical notes distributed for release 10.3 are also applicable and
|
||||
valid for this patch.
|
||||
|
||||
The code and rebuilt binary libraries for release 10.3.p01 are available
|
||||
through our "Download" Web page.
|
||||
|
||||
Please refer to the Geant4 User Documentation for further information about
|
||||
using Geant4.
|
||||
@@ -63,7 +63,7 @@ User Documentation</A> for further information about using Geant4.
|
||||
|
||||
Platforms:
|
||||
<UL>
|
||||
<LI>Linux, gcc-4.8.4.<BR>
|
||||
<LI>Linux, gcc-4.8.5.<BR>
|
||||
Tested on 64 bit architectures (Intel or AMD) with
|
||||
CERN CentOS Linux 7 (CC7) (based on CentOS Linux 7).</LI>
|
||||
<LI>MacOSX 10.12 Sierra with clang-3.8 (Apple LLVM/Clang-8.0.0)</LI>
|
||||
@@ -144,6 +144,16 @@ re-compilation) and a re-compilation of user applications is required.
|
||||
and schema validation thorugh network is already activated against it.</LI>
|
||||
</UL>
|
||||
|
||||
<P> </P>
|
||||
<B>Senditive Detectors</B>
|
||||
<P> </P>
|
||||
<UL>
|
||||
<LI>An explicit call to G4SDManager::AddNewDetector() <U>must now be added</U>
|
||||
in order to register a sensitive-detector. The use of
|
||||
G4VUserDetectorConstruction::SetSensitiveDetector() no longer does
|
||||
this implicitly.</LI>
|
||||
</UL>
|
||||
|
||||
<P> </P>
|
||||
<B>Electromagnetic and optical physics</B>
|
||||
<P> </P>
|
||||
|
||||
@@ -31,6 +31,14 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
|
||||
|
||||
----------------------------------------------------------
|
||||
|
||||
21st February 2017 - Gunter Folger (cmake-V10-02-39)
|
||||
- Switch to PhotonEvaporation 4.3.2
|
||||
|
||||
3rd February 2017 - Gunter Folger (cmake-V10-02-38)
|
||||
- Switch to
|
||||
- PhotonEvaporation 4.3.1
|
||||
- RadioactiveDecay 5.1.1
|
||||
|
||||
24th November 2016 - Gunter Folger (cmake-V10-02-37)
|
||||
- Switch to PhotonEvaporation 4.3
|
||||
|
||||
|
||||
@@ -28,21 +28,21 @@ geant4_add_dataset(
|
||||
# - Photon evaporation
|
||||
geant4_add_dataset(
|
||||
NAME PhotonEvaporation
|
||||
VERSION 4.3
|
||||
VERSION 4.3.2
|
||||
FILENAME G4PhotonEvaporation
|
||||
EXTENSION tar.gz
|
||||
ENVVAR G4LEVELGAMMADATA
|
||||
MD5SUM 012fcdeaa517efebba5770e6c1cbd882
|
||||
MD5SUM 027a07cc3259388fd5499aae930a7832
|
||||
)
|
||||
|
||||
# - Radioisotopes
|
||||
geant4_add_dataset(
|
||||
NAME RadioactiveDecay
|
||||
VERSION 5.1
|
||||
VERSION 5.1.1
|
||||
FILENAME G4RadioactiveDecay
|
||||
EXTENSION tar.gz
|
||||
ENVVAR G4RADIOACTIVEDATA
|
||||
MD5SUM 994853b153c6f805e60e2b83b9ac10e0
|
||||
MD5SUM d298454d2217359b7b3d1050c9ac34fc
|
||||
)
|
||||
|
||||
# - Neutron XS
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
10
|
||||
|
||||
dir
|
||||
101938
|
||||
svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03_branch/examples/.doxygen/images
|
||||
102874
|
||||
svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03-patch-01_branch/examples/.doxygen/images
|
||||
svn+ssh://svn.cern.ch/reps/geant4
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ file
|
||||
|
||||
|
||||
|
||||
2015-11-18T11:05:40.079893Z
|
||||
2016-12-08T16:04:43.116565Z
|
||||
db957d4570aca952bbb68c61762c9c59
|
||||
2013-11-09T16:10:36.814273Z
|
||||
76400
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -240,8 +240,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
ooo Run 0 starts (global).
|
||||
|
||||
--------- Ranlux engine status ---------
|
||||
Initial seed = 1481193742
|
||||
float_seed_table[] = 0.217621 0.886555 0.608987 0.127666 0.459881 0.802864 0.986453 0.0878205 0.216322 0.911389 0.368897 0.0815611 0.709863 0.526734 0.795146 0.0742022 0.244144 0.298011 0.661845 0.121785 0.28113 0.243757 0.79545 0.316194
|
||||
Initial seed = 1488210955
|
||||
float_seed_table[] = 0.413425 0.964008 0.989274 0.875768 0.158226 0.456335 0.97817 0.649406 0.479017 0.515979 0.475296 0.618467 0.514229 0.511209 0.620325 0.679511 0.114656 0.907577 0.84133 0.024806 0.748973 0.526127 0.498029 0.301567
|
||||
i_lag = 23, j_lag = 9
|
||||
carry = 0, count24 = 0
|
||||
luxury = 3 nskip = 199
|
||||
@@ -252,7 +252,7 @@ mu- Mono Plane
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=4.97s Real=5.02s Sys=0s
|
||||
User=2.69s Real=2.69s Sys=0s
|
||||
### Run 0 (global) ended.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
@@ -266,22 +266,22 @@ RunManager is deleting RunManagerKernel.
|
||||
G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
Total navigation history collections cleaned: 8
|
||||
Total navigation history collections cleaned: 9
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.00961 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.0413 MB
|
||||
Pool ID '7G4Track', size : 0.0827 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0317 MB
|
||||
Pool ID '7G4Track', size : 0.0625 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.000961 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.0115 MB
|
||||
Pool ID '15UltraOpticalHit', size : 0.00481 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.15 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.12 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -143,19 +143,19 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 32 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0.01 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
0.00 0.00 0.00 31k layer
|
||||
100.00 0.01 0.01 31k layer
|
||||
0.00 0.00 0.00 1k module
|
||||
0.00 0.00 0.00 1k calorimeter
|
||||
|
||||
Voxelisation: top memory users:
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
94.74 30k 1 490 980 0.00 layer
|
||||
94.74 30k 1 490 980 0.01 layer
|
||||
3.16 1k 1 17 20 0.00 module
|
||||
2.10 0k 1 10 18 0.00 calorimeter
|
||||
### Run 0 starts.
|
||||
@@ -177,7 +177,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=16.81s Real=16.83s Sys=0s
|
||||
User=9.28s Real=9.31s Sys=0s
|
||||
|
||||
-------------------------------------------------------------
|
||||
---> The calorimeter is 9 Modules
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -8,10 +8,13 @@ http://g4advancedexamples.lngs.infn.it/Examples/hadrontherapy
|
||||
History file of the Hadrontherapy application
|
||||
====================================================
|
||||
|
||||
19.11.2016 A.Dotti Tag: hadrontherapy-V10-02-05
|
||||
- explicit set of SD to manager
|
||||
|
||||
07.11.2016 G.Folger Tag: hadrontherapy-V10-02-04
|
||||
07.02.2017 G.A.P.Cirrone, G.Petringa; Tag: hadrontherapy-V10-02-06
|
||||
- Physics list corrected
|
||||
31.01.2017 G.A.P.Cirrone, L.Pandola, J.Pipek
|
||||
- Fixed Bugzilla #1879 (remaining edge cases)
|
||||
19.11.2016 A.Dotti; Tag: hadrontherapy-V10-02-05
|
||||
- explicit set of SD to manager
|
||||
07.11.2016 G.Folger; Tag: hadrontherapy-V10-02-04
|
||||
- Remove direct use of theParticleIterator, and use GetParticleIterator() method.
|
||||
03.11.2016 L. Pandola and J. Pipek. Tag: hadrontherapy-V10-02-03
|
||||
- Fixed Bugzilla #1879
|
||||
|
||||
@@ -32,30 +32,30 @@
|
||||
|
||||
namespace{ G4Mutex MyHadrontherapyLockEField=G4MUTEX_INITIALIZER; }
|
||||
|
||||
HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( const char* filename, G4double exOffset, G4double eyOffset, G4double ezOffset)
|
||||
HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( const char* filename, G4double exOffset, G4double eyOffset, G4double ezOffset)
|
||||
:feXoffset(exOffset),feYoffset(eyOffset),feZoffset(ezOffset),einvertX(false),einvertY(false),einvertZ(false)
|
||||
{
|
||||
{
|
||||
//The format file is: X Y Z Ex Ey Ez
|
||||
|
||||
G4double ElenUnit= cm;
|
||||
G4double EfieldUnit= volt/m;
|
||||
G4double EfieldUnit= volt/m;
|
||||
G4cout << "\n-----------------------------------------------------------"
|
||||
<< "\n Electric field"
|
||||
<< "\n-----------------------------------------------------------";
|
||||
|
||||
|
||||
G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl;
|
||||
G4AutoLock lock(&MyHadrontherapyLockEField);
|
||||
|
||||
ifstream file( filename ); // Open the file for reading.
|
||||
|
||||
|
||||
// Ignore first blank line
|
||||
char ebuffer[256];
|
||||
file.getline(ebuffer,256);
|
||||
|
||||
// Read table dimensions
|
||||
|
||||
// Read table dimensions
|
||||
file >> Enx >> Eny >> Enz; // Note dodgy order
|
||||
|
||||
G4cout << " [ Number of values x,y,z: "
|
||||
G4cout << " [ Number of values x,y,z: "
|
||||
<< Enx << " " << Eny << " " << Enz << " ] "
|
||||
<< endl;
|
||||
|
||||
@@ -86,7 +86,7 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co
|
||||
for (iy=0; iy<Eny; iy++) {
|
||||
for (ix=0; ix<Enx; ix++) {
|
||||
file >> Exval >> Eyval >> Ezval >> Ex >> Ey >> Ez;
|
||||
|
||||
|
||||
if ( ix==0 && iy==0 && iz==0 ) {
|
||||
Eminx = Exval * ElenUnit;
|
||||
Eminy = Eyval * ElenUnit;
|
||||
@@ -107,30 +107,30 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co
|
||||
|
||||
G4cout << "\n ---> ... done reading " << endl;
|
||||
|
||||
// G4cout << " Read values of field from file " << filename << endl;
|
||||
// G4cout << " Read values of field from file " << filename << endl;
|
||||
G4cout << " ---> assumed the order: x, y, z, Ex, Ey, Ez "
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< Eminx/cm << " " << Eminy/cm << " " << Eminz/cm << " cm "
|
||||
<< "\n ---> Max values x,y,z: "
|
||||
<< "\n ---> Max values x,y,z: "
|
||||
<< Emaxx/cm << " " << Emaxy/cm << " " << Emaxz/cm << " cm "
|
||||
<< "\n ---> The field will be offset in x by " << exOffset/cm << " cm "
|
||||
<< "\n ---> The field will be offset in y by " << eyOffset/cm << " cm "
|
||||
<< "\n ---> The field will be offset in x by " << exOffset/cm << " cm "
|
||||
<< "\n ---> The field will be offset in y by " << eyOffset/cm << " cm "
|
||||
<< "\n ---> The field will be offset in z by " << ezOffset/cm << " cm " << endl;
|
||||
|
||||
// Should really check that the limits are not the wrong way around.
|
||||
if (Emaxx < Eminx) {swap(Emaxx,Eminx); einvertX = true;}
|
||||
if (Emaxy < Eminy) {swap(Emaxy,Eminy); einvertY = true;}
|
||||
if (Emaxz < Eminz) {swap(Emaxz,Eminz); einvertZ = true;}
|
||||
G4cout << "\nAfter reordering if neccesary"
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
if (Emaxx < Eminx) {swap(Emaxx,Eminx); einvertX = true;}
|
||||
if (Emaxy < Eminy) {swap(Emaxy,Eminy); einvertY = true;}
|
||||
if (Emaxz < Eminz) {swap(Emaxz,Eminz); einvertZ = true;}
|
||||
G4cout << "\nAfter reordering if neccesary"
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< Eminx/cm << " " << Eminy/cm << " " << Eminz/cm << " cm "
|
||||
<< " \n ---> Max values x,y,z: "
|
||||
<< " \n ---> Max values x,y,z: "
|
||||
<< Emaxx/cm << " " << Emaxy/cm << " " << Emaxz/cm << " cm ";
|
||||
|
||||
dx1 = Emaxx - Eminx;
|
||||
dy1 = Emaxy - Eminy;
|
||||
dz1 = Emaxz - Eminz;
|
||||
G4cout << "\n ---> Dif values x,y,z (range): "
|
||||
G4cout << "\n ---> Dif values x,y,z (range): "
|
||||
<< dx1/cm << " " << dy1/cm << " " << dz1/cm << " cm "
|
||||
<< "\n-----------------------------------------------------------" << endl;
|
||||
}
|
||||
@@ -138,19 +138,14 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co
|
||||
void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[4],
|
||||
G4double *Efield ) const
|
||||
{
|
||||
G4double x1 = Epoint[0] + feXoffset;
|
||||
G4double y1 = Epoint[1] + feYoffset;
|
||||
G4double z1 = Epoint[2] + feZoffset;
|
||||
G4double x1 = Epoint[0] + feXoffset;
|
||||
G4double y1 = Epoint[1] + feYoffset;
|
||||
G4double z1 = Epoint[2] + feZoffset;
|
||||
|
||||
// Check that the point is within the defined region
|
||||
if ( x1>Eminx && x1<Emaxx &&
|
||||
y1>Eminy && y1<Emaxy &&
|
||||
z1>Eminz && z1<Emaxz ) {
|
||||
|
||||
// Position of given point within region, normalized to the range
|
||||
// [0,1]
|
||||
G4double Exfraction = (x1 - Eminx) / dx1;
|
||||
G4double Eyfraction = (y1 - Eminy) / dy1;
|
||||
G4double Eyfraction = (y1 - Eminy) / dy1;
|
||||
G4double Ezfraction = (z1 - Eminz) / dz1;
|
||||
|
||||
if (einvertX) { Exfraction = 1 - Exfraction;}
|
||||
@@ -160,19 +155,33 @@ void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[
|
||||
// Need addresses of these to pass to modf below.
|
||||
// modf uses its second argument as an OUTPUT argument.
|
||||
G4double exdindex, eydindex, ezdindex;
|
||||
|
||||
|
||||
// Position of the point within the cuboid defined by the
|
||||
// nearest surrounding tabulated points
|
||||
G4double exlocal = ( std::modf(Exfraction*(Enx-1), &exdindex));
|
||||
G4double eylocal = ( std::modf(Eyfraction*(Eny-1), &eydindex));
|
||||
G4double ezlocal = ( std::modf(Ezfraction*(Enz-1), &ezdindex));
|
||||
|
||||
|
||||
// The indices of the nearest tabulated point whose coordinates
|
||||
// are all less than those of the given point
|
||||
G4int exindex = static_cast<G4int>(std::floor(exdindex));
|
||||
G4int eyindex = static_cast<G4int>(std::floor(eydindex));
|
||||
G4int ezindex = static_cast<G4int>(std::floor(ezdindex));
|
||||
|
||||
|
||||
if ((exindex < 0) || (exindex >= Enx - 1) ||
|
||||
(eyindex < 0) || (eyindex >= Eny - 1) ||
|
||||
(ezindex < 0) || (ezindex >= Enz - 1))
|
||||
{
|
||||
Efield[0] = 0.0;
|
||||
Efield[1] = 0.0;
|
||||
Efield[2] = 0.0;
|
||||
Efield[3] = 0.0;
|
||||
Efield[4] = 0.0;
|
||||
Efield[5] = 0.0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
/*
|
||||
#ifdef DEBUG_G4intERPOLATING_FIELD
|
||||
G4cout << "Local x,y,z: " << exlocal << " " << eylocal << " " << ezlocal << endl;
|
||||
@@ -187,45 +196,37 @@ void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[
|
||||
*/
|
||||
// Full 3-dimensional version
|
||||
|
||||
Efield[0] = 0.0;
|
||||
Efield[1] = 0.0;
|
||||
Efield[2] = 0.0;
|
||||
Efield[0] = 0.0;
|
||||
Efield[1] = 0.0;
|
||||
Efield[2] = 0.0;
|
||||
|
||||
Efield[3] =
|
||||
xEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
xEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
xEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
xEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
xEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
xEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
xEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
xEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
Efield[4] =
|
||||
yEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
yEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
yEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
yEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
yEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
yEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
yEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
yEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
Efield[5] =
|
||||
zEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
zEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
zEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
zEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
zEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
zEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
zEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
zEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
|
||||
} else {
|
||||
Efield[0] = 0.0;
|
||||
Efield[1] = 0.0;
|
||||
Efield[2] = 0.0;
|
||||
Efield[3] = 0.0;
|
||||
Efield[4] = 0.0;
|
||||
Efield[5] = 0.0;
|
||||
Efield[3] =
|
||||
xEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
xEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
xEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
xEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
xEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
xEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
xEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
xEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
Efield[4] =
|
||||
yEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
yEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
yEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
yEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
yEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
yEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
yEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
yEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
Efield[5] =
|
||||
zEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) +
|
||||
zEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal +
|
||||
zEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) +
|
||||
zEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal +
|
||||
zEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) +
|
||||
zEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal +
|
||||
zEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) +
|
||||
zEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ;
|
||||
}
|
||||
//G4cout << "Getting electric field " << Efield[3]/(volt/m) << " " << Efield[4]/(volt/m) << " " << Efield[5]/(volt/m) << endl;
|
||||
//G4cout << "For coordinates: " << Epoint[0] << " " << Epoint[1] << " " << Epoint[2] << G4endl;
|
||||
@@ -239,4 +240,3 @@ void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[
|
||||
<< Efield[5]/(volt/m) << '\t' << " "
|
||||
<< G4endl; */
|
||||
}
|
||||
|
||||
|
||||
@@ -32,31 +32,31 @@
|
||||
|
||||
namespace{ G4Mutex MyHadrontherapyLock=G4MUTEX_INITIALIZER; }
|
||||
|
||||
HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename, double xOffset )
|
||||
HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename, double xOffset )
|
||||
:fXoffset(xOffset),invertX(false),invertY(false),invertZ(false)
|
||||
{
|
||||
{
|
||||
//The format file is: X Y Z Ex Ey Ez
|
||||
|
||||
double lenUnit= meter;
|
||||
double fieldUnit= tesla;
|
||||
double lenUnit= meter;
|
||||
double fieldUnit= tesla;
|
||||
G4cout << "\n-----------------------------------------------------------"
|
||||
<< "\n Magnetic field"
|
||||
<< "\n-----------------------------------------------------------";
|
||||
|
||||
|
||||
G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl;
|
||||
G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl;
|
||||
G4AutoLock lock(&MyHadrontherapyLock);
|
||||
|
||||
ifstream file( filename ); // Open the file for reading.
|
||||
|
||||
|
||||
// Ignore first blank line
|
||||
char buffer[256];
|
||||
file.getline(buffer,256);
|
||||
|
||||
// Read table dimensions
|
||||
|
||||
// Read table dimensions
|
||||
file >> nx >> ny >> nz; // Note dodgy order
|
||||
|
||||
G4cout << " [ Number of values x,y,z: "
|
||||
G4cout << " [ Number of values x,y,z: "
|
||||
<< nx << " " << ny << " " << nz << " ] "
|
||||
<< endl;
|
||||
|
||||
@@ -92,7 +92,7 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename
|
||||
miny = yval * lenUnit;
|
||||
minz = zval * lenUnit;
|
||||
}
|
||||
xField[ix][iy][iz] = bx * fieldUnit;
|
||||
xField[ix][iy][iz] = bx * fieldUnit;
|
||||
yField[ix][iy][iz] = by * fieldUnit;
|
||||
zField[ix][iy][iz] = bz * fieldUnit;
|
||||
}
|
||||
@@ -108,28 +108,28 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename
|
||||
|
||||
G4cout << "\n ---> ... done reading " << endl;
|
||||
|
||||
// G4cout << " Read values of field from file " << filename << endl;
|
||||
// G4cout << " Read values of field from file " << filename << endl;
|
||||
G4cout << " ---> assumed the order: x, y, z, Bx, By, Bz "
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< minx/cm << " " << miny/cm << " " << minz/cm << " cm "
|
||||
<< "\n ---> Max values x,y,z: "
|
||||
<< "\n ---> Max values x,y,z: "
|
||||
<< maxx/cm << " " << maxy/cm << " " << maxz/cm << " cm "
|
||||
<< "\n ---> The field will be offset by " << xOffset/cm << " cm " << endl;
|
||||
|
||||
// Should really check that the limits are not the wrong way around.
|
||||
if (maxx < minx) {swap(maxx,minx); invertX = true;}
|
||||
if (maxy < miny) {swap(maxy,miny); invertY = true;}
|
||||
if (maxz < minz) {swap(maxz,minz); invertZ = true;}
|
||||
G4cout << "\nAfter reordering if neccesary"
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
if (maxx < minx) {swap(maxx,minx); invertX = true;}
|
||||
if (maxy < miny) {swap(maxy,miny); invertY = true;}
|
||||
if (maxz < minz) {swap(maxz,minz); invertZ = true;}
|
||||
G4cout << "\nAfter reordering if neccesary"
|
||||
<< "\n ---> Min values x,y,z: "
|
||||
<< minx/cm << " " << miny/cm << " " << minz/cm << " cm "
|
||||
<< " \n ---> Max values x,y,z: "
|
||||
<< " \n ---> Max values x,y,z: "
|
||||
<< maxx/cm << " " << maxy/cm << " " << maxz/cm << " cm ";
|
||||
|
||||
dx = maxx - minx;
|
||||
dy = maxy - miny;
|
||||
dz = maxz - minz;
|
||||
G4cout << "\n ---> Dif values x,y,z (range): "
|
||||
G4cout << "\n ---> Dif values x,y,z (range): "
|
||||
<< dx/cm << " " << dy/cm << " " << dz/cm << " cm in z "
|
||||
<< "\n-----------------------------------------------------------" << endl;
|
||||
}
|
||||
@@ -137,18 +137,14 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename
|
||||
void HadrontherapyMagneticField3D::GetFieldValue(const double point[4],
|
||||
double *Bfield ) const
|
||||
{
|
||||
double x = point[0]+ fXoffset;
|
||||
double y = point[1];
|
||||
double z = point[2];
|
||||
double x = point[0]+ fXoffset;
|
||||
double y = point[1];
|
||||
double z = point[2];
|
||||
|
||||
// Check that the point is within the defined region
|
||||
if ( x>minx && x<maxx &&
|
||||
y>miny && y<maxy &&
|
||||
z>minz && z<maxz ) {
|
||||
// Position of given point within region, normalized to the range
|
||||
// [0,1]
|
||||
double xfraction = (x - minx) / dx;
|
||||
double yfraction = (y - miny) / dy;
|
||||
double yfraction = (y - miny) / dy;
|
||||
double zfraction = (z - minz) / dz;
|
||||
|
||||
if (invertX) { xfraction = 1 - xfraction;}
|
||||
@@ -158,66 +154,74 @@ void HadrontherapyMagneticField3D::GetFieldValue(const double point[4],
|
||||
// Need addresses of these to pass to modf below.
|
||||
// modf uses its second argument as an OUTPUT argument.
|
||||
double xdindex, ydindex, zdindex;
|
||||
|
||||
|
||||
// Position of the point within the cuboid defined by the
|
||||
// nearest surrounding tabulated points
|
||||
double xlocal = ( std::modf(xfraction*(nx-1), &xdindex));
|
||||
double ylocal = ( std::modf(yfraction*(ny-1), &ydindex));
|
||||
double zlocal = ( std::modf(zfraction*(nz-1), &zdindex));
|
||||
|
||||
|
||||
// The indices of the nearest tabulated point whose coordinates
|
||||
// are all less than those of the given point
|
||||
int xindex = static_cast<int>(std::floor(xdindex));
|
||||
int yindex = static_cast<int>(std::floor(ydindex));
|
||||
int zindex = static_cast<int>(std::floor(zdindex));
|
||||
|
||||
|
||||
// Check that the point is within the defined region
|
||||
if ((xindex < 0) || (xindex >= nx - 1) ||
|
||||
(yindex < 0) || (yindex >= ny - 1) ||
|
||||
(zindex < 0) || (zindex >= nz - 1))
|
||||
{
|
||||
Bfield[0] = 0.0;
|
||||
Bfield[1] = 0.0;
|
||||
Bfield[2] = 0.0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
#ifdef DEBUG_INTERPOLATING_FIELD
|
||||
G4cout << "Local x,y,z: " << xlocal << " " << ylocal << " " << zlocal << endl;
|
||||
G4cout << "Index x,y,z: " << xindex << " " << yindex << " " << zindex << endl;
|
||||
double valx0z0, mulx0z0, valx1z0, mulx1z0;
|
||||
double valx0z1, mulx0z1, valx1z1, mulx1z1;
|
||||
valx0z0= table[xindex ][0][zindex]; mulx0z0= (1-xlocal) * (1-zlocal);
|
||||
valx1z0= table[xindex+1][0][zindex]; mulx1z0= xlocal * (1-zlocal);
|
||||
valx0z1= table[xindex ][0][zindex+1]; mulx0z1= (1-xlocal) * zlocal;
|
||||
valx1z1= table[xindex+1][0][zindex+1]; mulx1z1= xlocal * zlocal;
|
||||
G4cout << "Local x,y,z: " << xlocal << " " << ylocal << " " << zlocal << endl;
|
||||
G4cout << "Index x,y,z: " << xindex << " " << yindex << " " << zindex << endl;
|
||||
double valx0z0, mulx0z0, valx1z0, mulx1z0;
|
||||
double valx0z1, mulx0z1, valx1z1, mulx1z1;
|
||||
valx0z0= table[xindex ][0][zindex]; mulx0z0= (1-xlocal) * (1-zlocal);
|
||||
valx1z0= table[xindex+1][0][zindex]; mulx1z0= xlocal * (1-zlocal);
|
||||
valx0z1= table[xindex ][0][zindex+1]; mulx0z1= (1-xlocal) * zlocal;
|
||||
valx1z1= table[xindex+1][0][zindex+1]; mulx1z1= xlocal * zlocal;
|
||||
#endif
|
||||
|
||||
// Full 3-dimensional version
|
||||
Bfield[0] =
|
||||
xField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
xField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
xField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
xField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
xField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
xField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
xField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
xField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
Bfield[0] =
|
||||
xField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
xField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
xField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
xField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
xField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
xField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
xField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
xField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
|
||||
Bfield[1] =
|
||||
yField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
yField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
yField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
yField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
yField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
yField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
yField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
yField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
Bfield[1] =
|
||||
yField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
yField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
yField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
yField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
yField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
yField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
yField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
yField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
|
||||
Bfield[2] =
|
||||
zField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
zField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
zField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
zField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
zField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
zField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
zField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
zField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
}
|
||||
|
||||
Bfield[2] =
|
||||
zField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) +
|
||||
zField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal +
|
||||
zField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) +
|
||||
zField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal +
|
||||
zField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) +
|
||||
zField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal +
|
||||
zField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) +
|
||||
zField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ;
|
||||
|
||||
} else {
|
||||
Bfield[0] = 0.0;
|
||||
Bfield[1] = 0.0;
|
||||
Bfield[2] = 0.0;
|
||||
}
|
||||
//In order to obtain the output file with the magnetic components read from a particle passing in the magnetic field
|
||||
/* std::ofstream MagneticField("MagneticField.out", std::ios::app);
|
||||
MagneticField<< Bfield[0] << '\t' << " "
|
||||
@@ -227,6 +231,5 @@ void HadrontherapyMagneticField3D::GetFieldValue(const double point[4],
|
||||
<< point[1] << '\t' << " "
|
||||
<< point[2] << '\t' << " "
|
||||
<< G4endl;*/
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -469,12 +469,12 @@ for (G4int i=1;i<StepNumbers;i++)
|
||||
G4VisAttributes * red = new G4VisAttributes( G4Colour(1. ,0. ,0.));
|
||||
red-> SetVisibility(true);
|
||||
red-> SetForceSolid(true);
|
||||
logicMotherMod -> SetVisAttributes(G4VisAttributes::GetInvisible());
|
||||
logicMotherMod -> SetVisAttributes(G4VisAttributes::Invisible);
|
||||
|
||||
logicMod1 ->SetVisAttributes(G4VisAttributes::GetInvisible());
|
||||
logicMod2 ->SetVisAttributes(G4VisAttributes::GetInvisible());
|
||||
logicMod3 ->SetVisAttributes(G4VisAttributes::GetInvisible());
|
||||
logicMod4 ->SetVisAttributes(G4VisAttributes::GetInvisible());
|
||||
logicMod1 ->SetVisAttributes(G4VisAttributes::Invisible);
|
||||
logicMod2 ->SetVisAttributes(G4VisAttributes::Invisible);
|
||||
logicMod3 ->SetVisAttributes(G4VisAttributes::Invisible);
|
||||
logicMod4 ->SetVisAttributes(G4VisAttributes::Invisible);
|
||||
|
||||
for (G4int i=1;i<StepNumbers;i++)
|
||||
{
|
||||
|
||||
@@ -727,7 +727,7 @@ void LaserDrivenBeamLine::ConstructLaserDrivenBeamLine()
|
||||
|
||||
|
||||
// The treatment room is invisible in the Visualisation
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
// The various components of the energyselector are constructed calling
|
||||
// the following methods
|
||||
@@ -1049,7 +1049,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB
|
||||
logicVirtualWindow,
|
||||
physicVirtualMag,
|
||||
true,0);
|
||||
logicVirtualWindow->SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicVirtualWindow->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
///// GuardRing /////
|
||||
|
||||
@@ -1094,7 +1094,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB
|
||||
physicVirtualMag,
|
||||
true,0);
|
||||
|
||||
logicVirtualMiddle->SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicVirtualMiddle->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
///// FaradayCupBottom /////
|
||||
|
||||
@@ -1135,7 +1135,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB
|
||||
physicVirtualMag,
|
||||
true,0);
|
||||
|
||||
logicVirtualBottom->SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicVirtualBottom->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
///// Cup /////
|
||||
|
||||
@@ -1177,7 +1177,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB
|
||||
|
||||
physicVirtualMag,
|
||||
true,0);
|
||||
logicVirtualOverBottom->SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicVirtualOverBottom->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
|
||||
///// Virtual Lateral /////
|
||||
@@ -1202,7 +1202,7 @@ logicVirtualLateral=new G4LogicalVolume( VirtualLateral,
|
||||
|
||||
|
||||
|
||||
logicVirtualLateral->SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicVirtualLateral->SetVisAttributes (G4VisAttributes::Invisible);
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -349,7 +349,7 @@ void PassiveCarbonBeamLine::ConstructPassiveCarbonBeamLine()
|
||||
|
||||
|
||||
// The treatment room is invisible in the Visualisation
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
// Components of the Passive Carbon Beam Line
|
||||
HadrontherapyBeamLineSupport();
|
||||
|
||||
@@ -571,7 +571,7 @@ void PassiveProtonBeamLine::ConstructPassiveProtonBeamLine()
|
||||
|
||||
|
||||
// The treatment room is invisible in the Visualisation
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::GetInvisible());
|
||||
logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible);
|
||||
|
||||
// Components of the Passive Proton Beam Line
|
||||
HadrontherapyBeamLineSupport();
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -73,16 +73,6 @@ Constructing materials...... done
|
||||
******** Number of Rods in FCAL1 : 2351
|
||||
********* Number of Rods in FCAL2 : 2546
|
||||
TBSetupSD is not found in /FCALTB/
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -766,6 +756,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <Mother> world volume
|
||||
This region is in the mass world.
|
||||
@@ -879,13 +882,13 @@ Start closing geometry.
|
||||
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
|
||||
Total memory consumed for geometry optimisation: 395 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0.3 seconds
|
||||
Total CPU time elapsed for geometry optimisation: 0.51 seconds
|
||||
|
||||
Voxelisation: top CPU users:
|
||||
Percent Total CPU System CPU Memory Volume
|
||||
------- ---------- ---------- -------- ----------
|
||||
56.67 0.17 0.00 152k EmModuleLogical
|
||||
43.33 0.13 0.00 238k HadModuleLogical
|
||||
50.98 0.26 0.00 152k EmModuleLogical
|
||||
49.02 0.25 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
|
||||
@@ -896,8 +899,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Voxelisation: top memory users:
|
||||
Percent Memory Heads Nodes Pointers Total CPU Volume
|
||||
------- -------- ------ ------ -------- ---------- ----------
|
||||
60.17 238k 1385 2370 3792 0.13 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.17 EmModuleLogical
|
||||
60.17 238k 1385 2370 3792 0.25 HadModuleLogical
|
||||
38.50 152k 1129 1152 2426 0.26 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
|
||||
@@ -932,333 +935,333 @@ HadEdep is=4.67582 MeV
|
||||
Edep in FCAL1 FCAl2 : 19636.8 4.67582
|
||||
**** Primary : 2
|
||||
Vertex : (-3.76032,10.9751,32740)
|
||||
Number of F1 Tiles with Positive energy : 46
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.61737 3.91573 5.10146
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
14.077
|
||||
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 Scondaries 158
|
||||
EmEdep is=19814.6 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19814.6 0
|
||||
**** Primary : 3
|
||||
Vertex : (13.1951,2.677,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.85548 1.65818 2.17771
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0.00619242
|
||||
Visible Energy in Upstream Dead Materials
|
||||
21.0193
|
||||
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 11
|
||||
N Scondaries 122
|
||||
EmEdep is=19669 MeV
|
||||
HadEdep is=28.1736 MeV
|
||||
Edep in FCAL1 FCAl2 : 19669 28.1736
|
||||
**** Primary : 4
|
||||
Vertex : (-8.66148,-8.80731,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.96264 1.80762 1.62497
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7.71057
|
||||
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 Scondaries 275
|
||||
EmEdep is=19922 MeV
|
||||
HadEdep is=0.288169 MeV
|
||||
Edep in FCAL1 FCAl2 : 19922 0.288169
|
||||
**** Primary : 5
|
||||
Vertex : (4.75859,7.01622,32740)
|
||||
Number of F1 Tiles with Positive energy : 39
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.30716 1.56115 1.57749
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5.02558
|
||||
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 Scondaries 127
|
||||
EmEdep is=19743.8 MeV
|
||||
HadEdep is=18.4449 MeV
|
||||
Edep in FCAL1 FCAl2 : 19743.8 18.4449
|
||||
**** Primary : 6
|
||||
Vertex : (1.94335,14.9228,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.88447 1.67018 1.65017
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 79.0407
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1222.27
|
||||
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 38
|
||||
N Scondaries 241
|
||||
EmEdep is=17843.2 MeV
|
||||
HadEdep is=2.13251 MeV
|
||||
Edep in FCAL1 FCAl2 : 17843.2 2.13251
|
||||
**** Primary : 7
|
||||
Vertex : (-10.9878,-6.7949,32740)
|
||||
Number of F1 Tiles with Positive energy : 59
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.49865 1.59498 2.29169
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 161.147
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5238.5
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
1.81147 0 0 0 0 0
|
||||
N Tracks out of world 181
|
||||
N Scondaries 174
|
||||
EmEdep is=12407.5 MeV
|
||||
HadEdep is=10.7424 MeV
|
||||
Edep in FCAL1 FCAl2 : 12407.5 10.7424
|
||||
**** Primary : 8
|
||||
Vertex : (10.9757,-1.49585,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.59244 1.82386 1.71283
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
2.36637
|
||||
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 Scondaries 129
|
||||
EmEdep is=19755.8 MeV
|
||||
HadEdep is=10.4371 MeV
|
||||
Edep in FCAL1 FCAl2 : 19755.8 10.4371
|
||||
**** Primary : 9
|
||||
Vertex : (-27.7734,3.36444,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)
|
||||
2.08788 1.82006 1.88335
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 69.8326
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5115.96
|
||||
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 134
|
||||
N Scondaries 210
|
||||
EmEdep is=13317.9 MeV
|
||||
HadEdep is=1.41332 MeV
|
||||
Edep in FCAL1 FCAl2 : 13317.9 1.41332
|
||||
**** Primary : 10
|
||||
Vertex : (-22.5474,4.1006,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)
|
||||
3.31171 1.67043 1.70158
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
14.7186
|
||||
13.192
|
||||
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 Scondaries 153
|
||||
EmEdep is=19508 MeV
|
||||
HadEdep is=6.59966 MeV
|
||||
Edep in FCAL1 FCAl2 : 19508 6.59966
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,32740)
|
||||
Number of F1 Tiles with Positive energy : 56
|
||||
N Scondaries 158
|
||||
EmEdep is=19813.6 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19813.6 0
|
||||
**** Primary : 3
|
||||
Vertex : (13.1951,2.677,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.69211 1.55744 1.63137
|
||||
1.79255 1.8274 1.63921
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 85.5543
|
||||
0 107.947
|
||||
Visible Energy in Upstream Dead Materials
|
||||
1740.81
|
||||
586.559
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
10.1713 0 0.243957 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 67
|
||||
N Scondaries 117
|
||||
EmEdep is=17109.2 MeV
|
||||
HadEdep is=5.36671 MeV
|
||||
Edep in FCAL1 FCAl2 : 17109.2 5.36671
|
||||
**** Primary : 12
|
||||
Vertex : (17.1015,6.30557,32740)
|
||||
N Tracks out of world 44
|
||||
N Scondaries 108
|
||||
EmEdep is=18604.8 MeV
|
||||
HadEdep is=7.12832 MeV
|
||||
Edep in FCAL1 FCAl2 : 18604.8 7.12832
|
||||
**** Primary : 4
|
||||
Vertex : (-8.66148,-8.80731,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)
|
||||
3.86495 1.79955 1.47122
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 4.41528
|
||||
Visible Energy in Upstream Dead Materials
|
||||
0.997375
|
||||
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 Scondaries 175
|
||||
EmEdep is=19793 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19793 0
|
||||
**** Primary : 5
|
||||
Vertex : (4.75859,7.01622,32740)
|
||||
Number of F1 Tiles with Positive energy : 42
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.24206 1.87378 1.70901
|
||||
1.63797 1.98914 2.12755
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3.91569
|
||||
8.64241
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 4
|
||||
N Scondaries 134
|
||||
EmEdep is=19894.9 MeV
|
||||
HadEdep is=0.371194 MeV
|
||||
Edep in FCAL1 FCAl2 : 19894.9 0.371194
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 36
|
||||
N Tracks out of world 7
|
||||
N Scondaries 123
|
||||
EmEdep is=19820.6 MeV
|
||||
HadEdep is=0.938035 MeV
|
||||
Edep in FCAL1 FCAl2 : 19820.6 0.938035
|
||||
**** Primary : 6
|
||||
Vertex : (1.94335,14.9228,32740)
|
||||
Number of F1 Tiles with Positive energy : 45
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.55876 3.78835 2.18524
|
||||
1.89613 1.71981 2.11501
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 152.841
|
||||
0 64.5365
|
||||
Visible Energy in Upstream Dead Materials
|
||||
17316.8
|
||||
699.86
|
||||
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 292
|
||||
N Scondaries 163
|
||||
EmEdep is=1242.44 MeV
|
||||
HadEdep is=0.318602 MeV
|
||||
Edep in FCAL1 FCAl2 : 1242.44 0.318602
|
||||
**** Primary : 14
|
||||
Vertex : (-0.133696,18.3151,32740)
|
||||
Number of F1 Tiles with Positive energy : 40
|
||||
N Tracks out of world 19
|
||||
N Scondaries 153
|
||||
EmEdep is=18504.7 MeV
|
||||
HadEdep is=0.000936371 MeV
|
||||
Edep in FCAL1 FCAl2 : 18504.7 0.000936371
|
||||
**** Primary : 7
|
||||
Vertex : (-10.9878,-6.7949,32740)
|
||||
Number of F1 Tiles with Positive energy : 37
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.67932 2.23501 1.76656
|
||||
1.56406 1.545 1.66667
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 3.57131
|
||||
Visible Energy in Upstream Dead Materials
|
||||
21.0916
|
||||
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 Scondaries 190
|
||||
EmEdep is=19755.4 MeV
|
||||
HadEdep is=11.5865 MeV
|
||||
Edep in FCAL1 FCAl2 : 19755.4 11.5865
|
||||
**** Primary : 8
|
||||
Vertex : (10.9757,-1.49585,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)
|
||||
2.00645 1.69591 1.73637
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
18.5522
|
||||
14.2442
|
||||
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 Scondaries 185
|
||||
EmEdep is=19661.5 MeV
|
||||
N Scondaries 202
|
||||
EmEdep is=19784.4 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19661.5 0
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,32740)
|
||||
Edep in FCAL1 FCAl2 : 19784.4 0
|
||||
**** Primary : 9
|
||||
Vertex : (-27.7734,3.36444,32740)
|
||||
Number of F1 Tiles with Positive energy : 73
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.47726 2.04453 2.16664
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 74.0139
|
||||
Visible Energy in Upstream Dead Materials
|
||||
10929.8
|
||||
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 242
|
||||
N Scondaries 123
|
||||
EmEdep is=5953.74 MeV
|
||||
HadEdep is=0.101671 MeV
|
||||
Edep in FCAL1 FCAl2 : 5953.74 0.101671
|
||||
**** Primary : 10
|
||||
Vertex : (-22.5474,4.1006,32740)
|
||||
Number of F1 Tiles with Positive energy : 37
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.60743 1.91297 2.56461
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.50982
|
||||
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 Scondaries 182
|
||||
EmEdep is=19762.6 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19762.6 0
|
||||
|
||||
---> Begin of event: 11
|
||||
**** Primary : 11
|
||||
Vertex : (-6.31939,21.5056,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.85911 1.60538 1.60683
|
||||
1.66988 1.70526 1.53815
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
0 8.86932
|
||||
Visible Energy in Upstream Dead Materials
|
||||
7.95352
|
||||
166.35
|
||||
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 12
|
||||
N Scondaries 231
|
||||
EmEdep is=19517.1 MeV
|
||||
N Tracks out of world 33
|
||||
N Scondaries 156
|
||||
EmEdep is=19152.1 MeV
|
||||
HadEdep is=2.01735 MeV
|
||||
Edep in FCAL1 FCAl2 : 19152.1 2.01735
|
||||
**** 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)
|
||||
1.79232 1.8373 1.985
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
3.56968
|
||||
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 Scondaries 177
|
||||
EmEdep is=19789.3 MeV
|
||||
HadEdep is=1.78682 MeV
|
||||
Edep in FCAL1 FCAl2 : 19789.3 1.78682
|
||||
**** Primary : 13
|
||||
Vertex : (-24.9484,11.8659,32740)
|
||||
Number of F1 Tiles with Positive energy : 27
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
1.86005 1.63346 1.77503
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 36.2749
|
||||
Visible Energy in Upstream Dead Materials
|
||||
17011.9
|
||||
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 153
|
||||
N Scondaries 225
|
||||
EmEdep is=2301.21 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19517.1 0
|
||||
Edep in FCAL1 FCAl2 : 2301.21 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.82908 1.59367 1.82539
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
Visible Energy in Upstream Dead Materials
|
||||
12.7543
|
||||
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 Scondaries 250
|
||||
EmEdep is=19791.1 MeV
|
||||
HadEdep is=0.726235 MeV
|
||||
Edep in FCAL1 FCAl2 : 19791.1 0.726235
|
||||
**** Primary : 15
|
||||
Vertex : (17.3196,17.6617,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.7243 1.78672 1.78164
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0.111833
|
||||
Visible Energy in Upstream Dead Materials
|
||||
57.2954
|
||||
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 Scondaries 161
|
||||
EmEdep is=19818.9 MeV
|
||||
HadEdep is=0 MeV
|
||||
Edep in FCAL1 FCAl2 : 19818.9 0
|
||||
**** Primary : 16
|
||||
Vertex : (-20.8489,10.8988,32740)
|
||||
Number of F1 Tiles with Positive energy : 63
|
||||
Number of F1 Tiles with Positive energy : 49
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.09616 1.72415 2.58245
|
||||
4.5549 1.54044 1.85046
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 38.5703
|
||||
0 26.0934
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4009.07
|
||||
1176.05
|
||||
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 99
|
||||
N Scondaries 167
|
||||
EmEdep is=14625.6 MeV
|
||||
HadEdep is=0.193778 MeV
|
||||
Edep in FCAL1 FCAl2 : 14625.6 0.193778
|
||||
N Tracks out of world 45
|
||||
N Scondaries 158
|
||||
EmEdep is=18309 MeV
|
||||
HadEdep is=0.605847 MeV
|
||||
Edep in FCAL1 FCAl2 : 18309 0.605847
|
||||
**** Primary : 17
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 39
|
||||
Number of F1 Tiles with Positive energy : 38
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.24319 2.25922 3.39082
|
||||
1.54614 1.81657 1.97244
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 5.08517
|
||||
0 0.000962751
|
||||
Visible Energy in Upstream Dead Materials
|
||||
4.11404
|
||||
5.37345
|
||||
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 Scondaries 189
|
||||
EmEdep is=19878.3 MeV
|
||||
HadEdep is=9.0789 MeV
|
||||
Edep in FCAL1 FCAl2 : 19878.3 9.0789
|
||||
N Tracks out of world 1
|
||||
N Scondaries 152
|
||||
EmEdep is=19800 MeV
|
||||
HadEdep is=2.98151 MeV
|
||||
Edep in FCAL1 FCAl2 : 19800 2.98151
|
||||
**** Primary : 18
|
||||
Vertex : (-9.96316,-9.33478,32740)
|
||||
Number of F1 Tiles with Positive energy : 43
|
||||
Number of F1 Tiles with Positive energy : 56
|
||||
Number of F2 tiles with Positive energy : 0
|
||||
Visisble Energy in S1 , S2 , S3 in (MeV)
|
||||
2.28363 2.6558 1.59609
|
||||
1.60294 1.5119 1.44372
|
||||
Visible Energy in Hole Counter (MeV)
|
||||
0 0
|
||||
0 3.40818
|
||||
Visible Energy in Upstream Dead Materials
|
||||
5.9764
|
||||
577.333
|
||||
Visible Energy in Tail Catcher Scintillator
|
||||
0 0 0 0 0 0 0
|
||||
Visible Energy in Tail Catcher Absorber
|
||||
0 0 0 0 0 0
|
||||
N Tracks out of world 4
|
||||
N Scondaries 201
|
||||
EmEdep is=19839.9 MeV
|
||||
HadEdep is=1.90063 MeV
|
||||
Edep in FCAL1 FCAl2 : 19839.9 1.90063
|
||||
N Tracks out of world 24
|
||||
N Scondaries 127
|
||||
EmEdep is=18506.8 MeV
|
||||
HadEdep is=7.06229 MeV
|
||||
Edep in FCAL1 FCAl2 : 18506.8 7.06229
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 18
|
||||
User=13.49s Real=13.51s Sys=0.01s
|
||||
User=10.3s Real=10.33s Sys=0.01s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
@@ -1271,21 +1274,21 @@ RunManager is deleting RunManagerKernel.
|
||||
G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
Total navigation history collections cleaned: 285
|
||||
Total navigation history collections cleaned: 347
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.345 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.431 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.103 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.122 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.206 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.0346 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.00481 MB
|
||||
Pool ID '7G4Track', size : 0.243 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.0413 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.00577 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.7 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.85 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -812,7 +812,7 @@ Index : 12 used in the geometry : Yes
|
||||
|
||||
====================================================================
|
||||
|
||||
##### Create analysis manager 0x1cb2700
|
||||
##### Create analysis manager 0x29eaa60
|
||||
Using Root analysis manager
|
||||
All Ntuples have been created
|
||||
-> Event # 1 generated
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -192,13 +192,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Total memory consumed for geometry optimisation: 0 kByte
|
||||
Total CPU time elapsed for geometry optimisation: 0 seconds
|
||||
### Run 0 starts.
|
||||
##### Create analysis manager 0x1a03af0
|
||||
##### Create analysis manager 0x1e02e40
|
||||
Using Root analysis manager
|
||||
... open Root analysis file : microelectronics.root - done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0s Real=0.01s Sys=0s
|
||||
User=0.01s Real=0s Sys=0s
|
||||
... write Root file : microelectronics.root - done
|
||||
... close Root file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
@@ -245,13 +245,13 @@ Index : 1 used in the geometry : Yes
|
||||
====================================================================
|
||||
|
||||
### Run 1 starts.
|
||||
##### Create analysis manager 0x1a03af0
|
||||
##### Create analysis manager 0x1e02e40
|
||||
Using Root analysis manager
|
||||
... open Root analysis file : microelectronics.root - done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0s Real=0.01s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
... write Root file : microelectronics.root - done
|
||||
... close Root file : microelectronics.root - done
|
||||
Number and type of particles created outside region "Target" :
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -75,34 +75,24 @@ Checking overlaps for volume GoldCylinder1_phys ... OK!
|
||||
Checking overlaps for volume GoldCylinder2_phys ... OK!
|
||||
Checking overlaps for volume GoldCylinder3_phys ... OK!
|
||||
### G4EmConfigurator::AddModels n= 0
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
PhysicsList::SetCuts:CutLength : 10 nm
|
||||
|
||||
### === Deexcitation model UAtomDeexcitation is activated for 1 region:
|
||||
@@ -416,32 +406,32 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
|
||||
180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
eCoulombScattering : Emin= 0 eV Emax= 1 TeV
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
|
||||
@@ -782,6 +772,19 @@ hPairProd: for pi- SubType= 4
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 1
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -70,38 +70,18 @@ User Limits:
|
||||
theMinEKine: 250 eV
|
||||
minRoomMinEKine: 250 eV
|
||||
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
DMXPhysicsList::SetCuts:CutLength : 1 um
|
||||
Verbosity Set to: 0
|
||||
|
||||
@@ -328,22 +308,22 @@ muPairProd: for mu- SubType= 4
|
||||
Sampling table 9x1001 from 1 GeV to 0.1 TeV
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
muPairProd : Emin= 0 eV Emax= 100 GeV
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
|
||||
msc: for pi+ SubType= 10
|
||||
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
|
||||
@@ -564,6 +544,32 @@ hBrems: for pi- SubType= 3
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -2867,7 +2867,7 @@ Created histos
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=1.73s Real=1.75s Sys=0s
|
||||
User=0.64s Real=0.75s Sys=0s
|
||||
Going to save histograms
|
||||
... write Root file : xrayfluo.root - done
|
||||
... close Root file : xrayfluo.root - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -380,7 +380,7 @@ Opening output file xraytel ... done
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.06s Real=0.07s Sys=0s
|
||||
User=0.02s Real=0.02s Sys=0s
|
||||
##########################################
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -63,16 +63,6 @@ Available colours:
|
||||
Checking overlaps for volume Envelope ... OK!
|
||||
Checking overlaps for volume Shape1 ... OK!
|
||||
Checking overlaps for volume Shape2 ... OK!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
|
||||
|
||||
phot: for gamma SubType= 12 BuildTable= 0
|
||||
@@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
--> Event 100 starts.
|
||||
@@ -777,7 +780,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.1075 nanoGy rms = 147.637 picoGy
|
||||
Cumulated dose per run, in scoring volume : 5.03046 nanoGy rms = 144.653 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -130,16 +130,6 @@ Checking overlaps for volume Chamber_PV ... OK!
|
||||
Checking overlaps for volume Chamber_PV ... OK!
|
||||
Checking overlaps for volume Chamber_PV ... OK!
|
||||
Checking overlaps for volume Chamber_PV ... OK!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -823,6 +813,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -126,16 +126,6 @@ Checking overlaps for parameterised volume Chamber ... OK!
|
||||
There are 5 chambers in the tracker region.
|
||||
The chambers are 20 cm of G4_Xe
|
||||
The distance between chamber is 80 cm
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -819,6 +809,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
--> Event 0 starts.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK!
|
||||
------------------------------------------------------------
|
||||
---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ]
|
||||
------------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK!
|
||||
------------------------------------------------------------
|
||||
---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ]
|
||||
------------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
... open Root analysis file : B4.root - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK!
|
||||
------------------------------------------------------------
|
||||
---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ]
|
||||
------------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -107,16 +107,6 @@ G4SDManager::AddNewCollection : the collection <Absorber/Edep> is registered at
|
||||
G4SDManager::AddNewCollection : the collection <Absorber/TrackLength> is registered at 2
|
||||
G4SDManager::AddNewCollection : the collection <Gap/Edep> is registered at 3
|
||||
G4SDManager::AddNewCollection : the collection <Gap/TrackLength> is registered at 4
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -800,6 +790,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B4.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
+153
-170
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -200,16 +200,6 @@ Checking overlaps for volume wirePlane2Physical ... OK!
|
||||
Checking overlaps for volume EMcalorimeterPhysical ... OK!
|
||||
Checking overlaps for volume HadCalorimeterPhysical ... OK!
|
||||
Checking overlaps for volume HadCalScintiPhysical ... OK!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -893,6 +883,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
@@ -900,14 +903,12 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
>>> Event 0 >>> Simulation truth : proton (-0,0,100000)
|
||||
Hodoscope 1 has 2 hits.
|
||||
Hodoscope[7] 4.9870028631879 (nsec)
|
||||
Hodoscope[10] 5.2512123134404 (nsec)
|
||||
Hodoscope[10] 5.2312480754604 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.187442586229 (nsec)
|
||||
Drift Chamber 1 has 7 hits.
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.67124216588 (nsec) --- local (x,y) -0.018532662783075, 0.0011782691981271
|
||||
Layer[0] : time 7.1038037267594 (nsec) --- local (x,y) 479.27191354966, 41.346990806472
|
||||
Layer[1] : time 8.3391361087098 (nsec) --- local (x,y) -0.03365876163577, 0.0094391447049121
|
||||
Layer[1] : time 8.9935473109974 (nsec) --- local (x,y) 588.32970167358, -177.6834399824
|
||||
Layer[2] : time 10.00703005185 (nsec) --- local (x,y) -0.050530989921065, 0.017719896878703
|
||||
Layer[3] : time 11.674923995494 (nsec) --- local (x,y) -0.070055505011856, 0.02673344766899
|
||||
Layer[4] : time 13.342817939158 (nsec) --- local (x,y) -0.089521656852301, 0.03444705670676
|
||||
@@ -917,8 +918,8 @@ Drift Chamber 2 has 5 hits.
|
||||
Layer[2] : time 38.191411246546 (nsec) --- local (x,y) -206.94959359523, 0.090563331470607
|
||||
Layer[3] : time 39.862212545388 (nsec) --- local (x,y) -236.48472658101, 0.092028008145595
|
||||
Layer[4] : time 41.533014322332 (nsec) --- local (x,y) -266.02228921832, 0.092607224561399
|
||||
EM Calorimeter has 40 hits. Total Edep is 484.76298455807 (MeV)
|
||||
Hadron Calorimeter has 12 hits. Total Edep is 3641.671782832 (MeV)
|
||||
EM Calorimeter has 39 hits. Total Edep is 314.22563326261 (MeV)
|
||||
Hadron Calorimeter has 12 hits. Total Edep is 3898.5618596792 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 1 starts.
|
||||
@@ -927,117 +928,99 @@ Hadron Calorimeter has 12 hits. Total Edep is 3641.671782832 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867880839397 (nsec)
|
||||
Hodoscope 2 has 13 hits.
|
||||
Hodoscope[10] 42.693845269414 (nsec)
|
||||
Hodoscope[19] 860.65236307414 (nsec)
|
||||
Hodoscope[9] 61.976221982387 (nsec)
|
||||
Hodoscope[3] 351.67093229411 (nsec)
|
||||
Hodoscope[1] 359.99668870371 (nsec)
|
||||
Hodoscope[4] 121.92543842822 (nsec)
|
||||
Hodoscope[7] 316.12358435998 (nsec)
|
||||
Hodoscope[21] 256.49888127288 (nsec)
|
||||
Hodoscope[18] 331.0259657115 (nsec)
|
||||
Hodoscope[17] 441.93937988259 (nsec)
|
||||
Hodoscope[22] 789.2447454611 (nsec)
|
||||
Hodoscope[24] 284.49133966085 (nsec)
|
||||
Hodoscope[8] 381.52289877569 (nsec)
|
||||
Hodoscope[7] 4.9867880839576 (nsec)
|
||||
Hodoscope 2 has 2 hits.
|
||||
Hodoscope[10] 42.694237485012 (nsec)
|
||||
Hodoscope[16] 332.58268984194 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709548428042 (nsec) --- local (x,y) -0.0014157871586749, -0.016258499667063
|
||||
Layer[1] : time 8.3387769450319 (nsec) --- local (x,y) -0.0023535510554497, -0.028649043200036
|
||||
Layer[2] : time 10.006599047452 (nsec) --- local (x,y) -0.0034164030312951, -0.043083076119764
|
||||
Layer[3] : time 11.674421150027 (nsec) --- local (x,y) -0.0070634467657052, -0.058654187725746
|
||||
Layer[4] : time 13.342243252386 (nsec) --- local (x,y) -0.011300370330243, -0.071765135654534
|
||||
Drift Chamber 2 has 11 hits.
|
||||
Layer[0] : time 34.366535075849 (nsec) --- local (x,y) -82.679158489136, -0.28376352877477
|
||||
Layer[0] : time 79.952027443331 (nsec) --- local (x,y) -417.39098578031, -251.80441033814
|
||||
Layer[1] : time 36.03526772122 (nsec) --- local (x,y) -99.203319432133, -0.30510086652813
|
||||
Layer[1] : time 76.354211281489 (nsec) --- local (x,y) -395.93672923734, -218.49018748353
|
||||
Layer[2] : time 37.704000532665 (nsec) --- local (x,y) -115.72898779297, -0.32625355024602
|
||||
Layer[2] : time 72.762926774167 (nsec) --- local (x,y) -375.29135961601, -190.69797154605
|
||||
Layer[3] : time 39.37273349901 (nsec) --- local (x,y) -132.25606475303, -0.34505470547559
|
||||
Layer[3] : time 69.175014026755 (nsec) --- local (x,y) -354.48942370805, -162.79939397906
|
||||
Layer[4] : time 41.041466401553 (nsec) --- local (x,y) -148.78256632172, -0.36030924597599
|
||||
Layer[4] : time 65.590388389057 (nsec) --- local (x,y) -332.70330140587, -134.60453943101
|
||||
Layer[4] : time 72.089730240629 (nsec) --- local (x,y) -46.974064056039, -283.37700584991
|
||||
EM Calorimeter has 57 hits. Total Edep is 75575.253088053 (MeV)
|
||||
Hadron Calorimeter has 12 hits. Total Edep is 666.90089211808 (MeV)
|
||||
Layer[0] : time 6.6709548423586 (nsec) --- local (x,y) 0.00021151149758172, -0.010132253362352
|
||||
Layer[1] : time 8.3387769441526 (nsec) --- local (x,y) 0.0020309348336474, -0.015017499134163
|
||||
Layer[2] : time 10.006599045964 (nsec) --- local (x,y) 0.0056758512473074, -0.019247171812615
|
||||
Layer[3] : time 11.674421147741 (nsec) --- local (x,y) 0.0088804370383822, -0.022370524984524
|
||||
Layer[4] : time 13.342243249525 (nsec) --- local (x,y) 0.012545593937828, -0.025094077453974
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.366915979992 (nsec) --- local (x,y) -82.645029863701, -0.000184681579031
|
||||
Layer[1] : time 36.03565088531 (nsec) --- local (x,y) -99.189703130113, 0.0047057355620961
|
||||
Layer[2] : time 37.704385983768 (nsec) --- local (x,y) -115.73612675316, 0.010479690582926
|
||||
Layer[3] : time 39.373121028171 (nsec) --- local (x,y) -132.28206039537, 0.016101615624278
|
||||
Layer[4] : time 41.041856001756 (nsec) --- local (x,y) -148.82735243814, 0.020697036727392
|
||||
EM Calorimeter has 57 hits. Total Edep is 32787.468275966 (MeV)
|
||||
Hadron Calorimeter has 15 hits. Total Edep is 2279.7179858769 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 2 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,100000)
|
||||
>>> Event 0 >>> Simulation truth : e+ (-0,0,100000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832233217 (nsec)
|
||||
Hodoscope[7] 4.9867832233759 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.185830879903 (nsec)
|
||||
Hodoscope[9] 43.186247967068 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6709483401964 (nsec) --- local (x,y) 0.00112168607348, -0.011803496170352
|
||||
Layer[1] : time 8.3387688162638 (nsec) --- local (x,y) -4.7253799964136e-05, -0.01642345574739
|
||||
Layer[2] : time 10.006589292411 (nsec) --- local (x,y) -0.0041578863248889, -0.021866153477021
|
||||
Layer[3] : time 11.674409768528 (nsec) --- local (x,y) -0.0071487027883982, -0.027126031393993
|
||||
Layer[4] : time 13.342230244563 (nsec) --- local (x,y) -0.010238011332357, -0.028859099757816
|
||||
Layer[0] : time 6.670948343375 (nsec) --- local (x,y) 0.014039107478544, -0.038466899699779
|
||||
Layer[1] : time 8.3387688225118 (nsec) --- local (x,y) 0.029013825948968, -0.065275947802531
|
||||
Layer[2] : time 10.006589301175 (nsec) --- local (x,y) 0.043338823706523, -0.089635874945854
|
||||
Layer[3] : time 11.674409779835 (nsec) --- local (x,y) 0.057785915178459, -0.11394206803956
|
||||
Layer[4] : time 13.342230258481 (nsec) --- local (x,y) 0.072517883304809, -0.1379310432186
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.848584074315 (nsec) --- local (x,y) -147.62077027868, -0.0051687766391103
|
||||
Layer[1] : time 36.519308284918 (nsec) --- local (x,y) -177.13814678685, -0.00050666820557199
|
||||
Layer[2] : time 38.190032648412 (nsec) --- local (x,y) -206.65630105937, 0.004140956496581
|
||||
Layer[3] : time 39.860756657931 (nsec) --- local (x,y) -236.1726542061, 0.010802438406376
|
||||
Layer[4] : time 41.531480219888 (nsec) --- local (x,y) -265.68672975404, 0.019981530277797
|
||||
EM Calorimeter has 38 hits. Total Edep is 92959.764539936 (MeV)
|
||||
Hadron Calorimeter has 5 hits. Total Edep is 24.860214483776 (MeV)
|
||||
Layer[0] : time 34.848998338402 (nsec) --- local (x,y) -147.37135172772, -0.37590144258291
|
||||
Layer[1] : time 36.519722612662 (nsec) --- local (x,y) -176.88904498261, -0.39686350642539
|
||||
Layer[2] : time 38.190447070378 (nsec) --- local (x,y) -206.40766920165, -0.42080435856835
|
||||
Layer[3] : time 39.861171657733 (nsec) --- local (x,y) -235.9269531043, -0.44444501800138
|
||||
Layer[4] : time 41.531896527039 (nsec) --- local (x,y) -265.44767191121, -0.4671600758979
|
||||
EM Calorimeter has 38 hits. Total Edep is 92385.775475691 (MeV)
|
||||
Hadron Calorimeter has 5 hits. Total Edep is 39.160509835891 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 3 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (0,0,10000)
|
||||
>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0086960140352 (nsec)
|
||||
Hodoscope[7] 5.0086956603414 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.374651037796 (nsec)
|
||||
Hodoscope[9] 43.377639474491 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7002643087864 (nsec) --- local (x,y) -0.075812890820955, 0.1144158779046
|
||||
Layer[1] : time 8.3754162802687 (nsec) --- local (x,y) -0.1538288286879, 0.15381839787373
|
||||
Layer[2] : time 10.050568383341 (nsec) --- local (x,y) -0.23028996721813, 0.24647181265929
|
||||
Layer[3] : time 11.725720610458 (nsec) --- local (x,y) -0.31757342856099, 0.33371849442827
|
||||
Layer[4] : time 13.400872957139 (nsec) --- local (x,y) -0.37675659068728, 0.41506228999335
|
||||
Drift Chamber 2 has 6 hits.
|
||||
Layer[0] : time 35.000779378324 (nsec) --- local (x,y) -148.16701760266, 1.4743972666059
|
||||
Layer[1] : time 36.678848566377 (nsec) --- local (x,y) -177.67671218368, 1.580902607473
|
||||
Layer[1] : time 37.058631859509 (nsec) --- local (x,y) -297.32904800583, -21.10956222707
|
||||
Layer[2] : time 38.356912753191 (nsec) --- local (x,y) -207.15815077603, 1.7724185494815
|
||||
Layer[3] : time 40.034971770081 (nsec) --- local (x,y) -236.61256053807, 1.999588667821
|
||||
Layer[4] : time 41.71303113134 (nsec) --- local (x,y) -266.06784847122, 2.2305246291866
|
||||
EM Calorimeter has 21 hits. Total Edep is 201.04491723817 (MeV)
|
||||
Hadron Calorimeter has 8 hits. Total Edep is 358.74418508389 (MeV)
|
||||
Layer[0] : time 6.7002638903709 (nsec) --- local (x,y) 0.071470537496708, 0.16485400284577
|
||||
Layer[1] : time 8.3754158205109 (nsec) --- local (x,y) 0.13216280223728, 0.30792105223104
|
||||
Layer[2] : time 10.050567885088 (nsec) --- local (x,y) 0.18999572275694, 0.46627545784655
|
||||
Layer[3] : time 11.725720114386 (nsec) --- local (x,y) 0.21649917933798, 0.59616803708745
|
||||
Layer[4] : time 13.400872962094 (nsec) --- local (x,y) 0.23773266224589, 0.75503040095252
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 35.003513410352 (nsec) --- local (x,y) -147.31823492568, 2.7076150382167
|
||||
Layer[1] : time 36.68162135377 (nsec) --- local (x,y) -177.02143084166, 2.8850702368507
|
||||
Layer[2] : time 38.359734204177 (nsec) --- local (x,y) -206.74887003841, 3.0126334466119
|
||||
Layer[3] : time 40.037848997185 (nsec) --- local (x,y) -236.48554067935, 3.1229010864219
|
||||
Layer[4] : time 41.715964289028 (nsec) --- local (x,y) -266.22428951295, 3.2202204779976
|
||||
EM Calorimeter has 26 hits. Total Edep is 249.75318706489 (MeV)
|
||||
Hadron Calorimeter has 11 hits. Total Edep is 574.51517992377 (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.9872691884335 (nsec)
|
||||
Hodoscope[7] 4.9872691779859 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[10] 42.698960310705 (nsec)
|
||||
Hodoscope[7] 42.778156460898 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.671598527447 (nsec) --- local (x,y) -0.16582683026096, 0.14124251833665
|
||||
Layer[1] : time 8.339581633293 (nsec) --- local (x,y) -0.26861100237289, 0.16362196342471
|
||||
Layer[2] : time 10.00756472568 (nsec) --- local (x,y) -0.34297946956181, 0.19035852241434
|
||||
Layer[3] : time 11.675547822324 (nsec) --- local (x,y) -0.41218536536106, 0.22948083534908
|
||||
Layer[4] : time 13.343530922318 (nsec) --- local (x,y) -0.48499546398557, 0.25992368971666
|
||||
Layer[0] : time 6.6715984791324 (nsec) --- local (x,y) 0.090607257386662, 0.0052212921134115
|
||||
Layer[1] : time 8.3395815497207 (nsec) --- local (x,y) 0.10706599953825, 0.023504636387262
|
||||
Layer[2] : time 10.007564634145 (nsec) --- local (x,y) 0.14911312303536, -0.0055613217277153
|
||||
Layer[3] : time 11.675547725331 (nsec) --- local (x,y) 0.21473021415382, -0.025223750884095
|
||||
Layer[4] : time 13.343530829444 (nsec) --- local (x,y) 0.30151413326356, -0.027903970590398
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.370823617856 (nsec) --- local (x,y) -82.61297508863, 0.32096609401532
|
||||
Layer[1] : time 36.039721418499 (nsec) --- local (x,y) -99.173707966138, 0.28336695347861
|
||||
Layer[2] : time 37.708618509207 (nsec) --- local (x,y) -115.72799769035, 0.25931841757623
|
||||
Layer[3] : time 39.377517373888 (nsec) --- local (x,y) -132.29831408887, 0.23751869525978
|
||||
Layer[4] : time 41.046416010183 (nsec) --- local (x,y) -148.86654971028, 0.24092692593556
|
||||
EM Calorimeter has 2 hits. Total Edep is 230.88541915934 (MeV)
|
||||
Hadron Calorimeter has 7 hits. Total Edep is 249.95644012501 (MeV)
|
||||
Layer[0] : time 34.396390461087 (nsec) --- local (x,y) -240.3144890403, -7.5441363236265
|
||||
Layer[1] : time 36.076017032417 (nsec) --- local (x,y) -299.53494780161, -9.3677505228456
|
||||
Layer[2] : time 37.755652856005 (nsec) --- local (x,y) -358.77947328986, -11.175059360923
|
||||
Layer[3] : time 39.43530153614 (nsec) --- local (x,y) -418.05627834154, -12.997024973848
|
||||
Layer[4] : time 41.114954614537 (nsec) --- local (x,y) -477.34382892089, -14.833556709721
|
||||
EM Calorimeter has 3 hits. Total Edep is 214.89578477245 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 42.667211045375 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 5 starts.
|
||||
@@ -1046,38 +1029,25 @@ Hadron Calorimeter has 7 hits. Total Edep is 249.95644012501 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : e+ (0,0,10000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 4.9867832257787 (nsec)
|
||||
Hodoscope[7] 4.9867832252215 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.184232274839 (nsec)
|
||||
Drift Chamber 1 has 20 hits.
|
||||
Layer[0] : time 6.6709484097253 (nsec) --- local (x,y) -0.028057384385367, 0.13731811637602
|
||||
Layer[1] : time 8.3387689577974 (nsec) --- local (x,y) -0.058886631783981, 0.28083995813304
|
||||
Layer[2] : time 10.006589507177 (nsec) --- local (x,y) -0.089624966954927, 0.42511098853306
|
||||
Layer[3] : time 11.674410078691 (nsec) --- local (x,y) -0.16400355351859, 0.5740907523785
|
||||
Layer[3] : time 12.086427335935 (nsec) --- local (x,y) 260.57541763109, -103.41401586103
|
||||
Layer[4] : time 13.342230665917 (nsec) --- local (x,y) -0.26613453928483, 0.72540032406541
|
||||
Layer[4] : time 13.342657839265 (nsec) --- local (x,y) -0.26616087523223, 0.72543907349462
|
||||
Layer[4] : time 13.342657839265 (nsec) --- local (x,y) -0.26616087523223, 0.72543907349462
|
||||
Layer[4] : time 13.344102850466 (nsec) --- local (x,y) -0.34168706037297, 0.71399626958038
|
||||
Layer[4] : time 13.34556578982 (nsec) --- local (x,y) -0.41908492495192, 0.69431020903882
|
||||
Layer[4] : time 13.347045272666 (nsec) --- local (x,y) -0.47336870238929, 0.63445296420964
|
||||
Layer[4] : time 13.348516148906 (nsec) --- local (x,y) -0.52765024101907, 0.59956103054886
|
||||
Layer[4] : time 13.349993475134 (nsec) --- local (x,y) -0.56438968635374, 0.59298121420683
|
||||
Layer[4] : time 13.373612968223 (nsec) --- local (x,y) -0.64327110767112, 0.97495990762418
|
||||
Layer[4] : time 13.374746598056 (nsec) --- local (x,y) -0.67775198566135, 0.94780949064854
|
||||
Layer[4] : time 13.375890747262 (nsec) --- local (x,y) -0.65260825594145, 0.9261032869502
|
||||
Layer[4] : time 13.377048723313 (nsec) --- local (x,y) -0.63884620170602, 0.93286727763876
|
||||
Layer[4] : time 13.378404933315 (nsec) --- local (x,y) -0.62707323704953, 0.93651216779631
|
||||
Layer[4] : time 13.379590695559 (nsec) --- local (x,y) -0.59827986369198, 0.93931117104372
|
||||
Layer[4] : time 15.01187373819 (nsec) --- local (x,y) 886.19967320032, -214.83415213454
|
||||
Hodoscope[7] 43.20885807433 (nsec)
|
||||
Drift Chamber 1 has 7 hits.
|
||||
Layer[0] : time 6.6709483583328 (nsec) --- local (x,y) -0.068157470142592, 0.014651909667236
|
||||
Layer[0] : time 6.9540154857074 (nsec) --- local (x,y) -229.89267580058, 143.40889886661
|
||||
Layer[1] : time 8.33876884601 (nsec) --- local (x,y) -0.12592658951061, 0.0035587223121364
|
||||
Layer[1] : time 8.8086145740518 (nsec) --- local (x,y) -424.61635784399, 205.5688152184
|
||||
Layer[2] : time 10.006589325693 (nsec) --- local (x,y) -0.15852117974118, 0.0046310157629761
|
||||
Layer[3] : time 11.67440980651 (nsec) --- local (x,y) -0.194473067917, -0.0051016078748026
|
||||
Layer[4] : time 13.342230284218 (nsec) --- local (x,y) -0.2020454189972, -0.025332461548471
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.846835945193 (nsec) --- local (x,y) -149.26487923396, 2.3936314818129
|
||||
Layer[1] : time 36.51758393095 (nsec) --- local (x,y) -178.90275181992, 2.5032683059395
|
||||
Layer[2] : time 38.188338792778 (nsec) --- local (x,y) -208.57544182594, 2.6128345698654
|
||||
Layer[3] : time 39.859091180213 (nsec) --- local (x,y) -238.23564710883, 2.7114508931787
|
||||
Layer[4] : time 41.52984612048 (nsec) --- local (x,y) -267.90880567285, 2.7997441078234
|
||||
EM Calorimeter has 18 hits. Total Edep is 9668.6129614944 (MeV)
|
||||
Hadron Calorimeter has 1 hits. Total Edep is 1.2518752838611 (MeV)
|
||||
Layer[0] : time 34.847750142529 (nsec) --- local (x,y) -240.3068279609, 0.47524612999312
|
||||
Layer[1] : time 36.523258790228 (nsec) --- local (x,y) -288.3709212613, 0.57988185086455
|
||||
Layer[2] : time 38.198759733688 (nsec) --- local (x,y) -336.41079746881, 0.71428331724465
|
||||
Layer[3] : time 39.874265526984 (nsec) --- local (x,y) -384.46583242826, 0.86324213510351
|
||||
Layer[4] : time 41.549771867343 (nsec) --- local (x,y) -432.52262975077, 0.99574919394405
|
||||
EM Calorimeter has 19 hits. Total Edep is 8603.1376860756 (MeV)
|
||||
Hadron Calorimeter has 3 hits. Total Edep is 3.9043359194893 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 6 starts.
|
||||
@@ -1086,67 +1056,80 @@ Hadron Calorimeter has 1 hits. Total Edep is 1.2518752838611 (MeV)
|
||||
|
||||
>>> Event 0 >>> Simulation truth : proton (0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 6.8397807442116 (nsec)
|
||||
Hodoscope[7] 6.8393823821317 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 59.371279727488 (nsec)
|
||||
Hodoscope[9] 59.4011276379 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 9.1544172104109 (nsec) --- local (x,y) -0.78718732060772, -3.4706529506627
|
||||
Layer[1] : time 11.446864911405 (nsec) --- local (x,y) -1.9865724522216, -4.9205490584396
|
||||
Layer[2] : time 13.739452247177 (nsec) --- local (x,y) -3.2615357926275, -6.1781971650349
|
||||
Layer[3] : time 16.032229611326 (nsec) --- local (x,y) -4.7688342186568, -6.9364006956199
|
||||
Layer[4] : time 18.32527656504 (nsec) --- local (x,y) -5.8031060440209, -7.6293459079815
|
||||
Layer[0] : time 9.153403609769 (nsec) --- local (x,y) 0.27660809283799, -0.79236399282942
|
||||
Layer[1] : time 11.445214612946 (nsec) --- local (x,y) 0.81210156906032, -1.2228736997056
|
||||
Layer[2] : time 13.737238569884 (nsec) --- local (x,y) 1.1012274892347, -1.2313795130515
|
||||
Layer[3] : time 16.029437072357 (nsec) --- local (x,y) 1.4214949826935, -1.2469009399884
|
||||
Layer[4] : time 18.321816326323 (nsec) --- local (x,y) 1.6634060619879, -1.0341382407455
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 47.888370222871 (nsec) --- local (x,y) -170.48187123106, -15.346123304812
|
||||
Layer[1] : time 50.189142218059 (nsec) --- local (x,y) -202.23645396105, -16.632510660962
|
||||
Layer[2] : time 52.490055839766 (nsec) --- local (x,y) -233.83979443748, -17.887087258788
|
||||
Layer[3] : time 54.791167175562 (nsec) --- local (x,y) -265.46764600142, -19.204321018226
|
||||
Layer[4] : time 57.092410430717 (nsec) --- local (x,y) -296.87234985122, -20.576330405208
|
||||
EM Calorimeter has 5 hits. Total Edep is 373.48423478716 (MeV)
|
||||
Hadron Calorimeter has 1 hits. Total Edep is 1.8376484481565 (MeV)
|
||||
Layer[0] : time 47.918707418288 (nsec) --- local (x,y) -151.49228677226, -12.444262595747
|
||||
Layer[1] : time 50.219158851931 (nsec) --- local (x,y) -183.67437189321, -14.863324749023
|
||||
Layer[2] : time 52.519958632154 (nsec) --- local (x,y) -216.38043226138, -17.971867389565
|
||||
Layer[3] : time 54.821008951187 (nsec) --- local (x,y) -249.23114048547, -21.044472510521
|
||||
Layer[4] : time 57.122286403318 (nsec) --- local (x,y) -282.17449872721, -23.43152296868
|
||||
EM Calorimeter has 2 hits. Total Edep is 293.77489831842 (MeV)
|
||||
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
### Run 7 starts.
|
||||
... open Root analysis file : B5.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
>>> Event 0 >>> Simulation truth : pi+ (0,0,1000)
|
||||
>>> Event 0 >>> Simulation truth : pi+ (-0,0,1000)
|
||||
Hodoscope 1 has 1 hits.
|
||||
Hodoscope[7] 5.0351615644564 (nsec)
|
||||
Hodoscope[7] 5.0351584507587 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[18] 41.862249836078 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.7415003844466 (nsec) --- local (x,y) -40.425394362961, -2.1627110960031
|
||||
Layer[1] : time 8.4313139721907 (nsec) --- local (x,y) -81.688857709177, -4.1486189017267
|
||||
Layer[2] : time 10.121092772983 (nsec) --- local (x,y) -122.8190560411, -6.0430392410656
|
||||
Layer[3] : time 11.810844093608 (nsec) --- local (x,y) -167.82177919786, -6.3995626434186
|
||||
Layer[4] : time 13.500442169941 (nsec) --- local (x,y) -222.5616677758, -2.7187840184854
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 33.195201993465 (nsec) --- local (x,y) -16.088829256964, 41.931977678264
|
||||
Layer[1] : time 34.93158833174 (nsec) --- local (x,y) 114.99994484443, 46.037451780742
|
||||
Layer[2] : time 36.668297472836 (nsec) --- local (x,y) 246.46561339992, 50.109310677199
|
||||
Layer[3] : time 38.405111679065 (nsec) --- local (x,y) 378.04824558091, 54.313105655969
|
||||
Layer[4] : time 40.141994528991 (nsec) --- local (x,y) 509.71443797046, 58.300952325428
|
||||
EM Calorimeter has 2 hits. Total Edep is 167.1897396414 (MeV)
|
||||
Hadron Calorimeter has 1 hits. Total Edep is 18.67023265046 (MeV)
|
||||
Hodoscope[10] 43.182081950465 (nsec)
|
||||
Drift Chamber 1 has 9 hits.
|
||||
Layer[0] : time 6.7357608599839 (nsec) --- local (x,y) 1.170565947884, -0.97527503161469
|
||||
Layer[0] : time 6.7361605904545 (nsec) --- local (x,y) 1.1708549892613, -0.97531219226997
|
||||
Layer[0] : time 6.7361605904545 (nsec) --- local (x,y) 1.1708549892613, -0.97531219226997
|
||||
Layer[0] : time 6.7373789944023 (nsec) --- local (x,y) 1.1832347944421, -0.94596810758235
|
||||
Layer[0] : time 6.7386997697359 (nsec) --- local (x,y) 1.2184315843266, -0.91041839980919
|
||||
Layer[1] : time 8.4198632370521 (nsec) --- local (x,y) 2.2750307068364, -1.1794899282492
|
||||
Layer[2] : time 10.103966810097 (nsec) --- local (x,y) 3.2560247482333, -1.2588341054096
|
||||
Layer[3] : time 11.78807250329 (nsec) --- local (x,y) 4.1451123412204, -1.0138236599293
|
||||
Layer[4] : time 13.472180776137 (nsec) --- local (x,y) 5.0074477702348, -0.8760745553473
|
||||
Drift Chamber 2 has 8 hits.
|
||||
Layer[0] : time 34.767395575498 (nsec) --- local (x,y) -95.70371409981, 4.4217249578346
|
||||
Layer[0] : time 30.906573312961 (nsec) --- local (x,y) -1018.8006854845, -108.5898618409
|
||||
Layer[0] : time 31.021582132624 (nsec) --- local (x,y) -1009.757062866, -80.390972991994
|
||||
Layer[1] : time 36.453605781347 (nsec) --- local (x,y) -119.46500690643, 5.0766649072997
|
||||
Layer[1] : time 32.837053903371 (nsec) --- local (x,y) -795.36988693981, -280.58312290505
|
||||
Layer[2] : time 38.139820212909 (nsec) --- local (x,y) -143.22181797816, 6.1987506182654
|
||||
Layer[3] : time 39.826066936187 (nsec) --- local (x,y) -167.15082117984, 7.4870448717827
|
||||
Layer[4] : time 41.512350880551 (nsec) --- local (x,y) -191.28850866016, 8.8592293514675
|
||||
EM Calorimeter has 19 hits. Total Edep is 238.39065034028 (MeV)
|
||||
Hadron Calorimeter has 7 hits. Total Edep is 36.248440510336 (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.9867869198589 (nsec)
|
||||
Hodoscope 2 has 0 hits.
|
||||
Hodoscope[7] 4.9867833326091 (nsec)
|
||||
Hodoscope 2 has 1 hits.
|
||||
Hodoscope[9] 43.19616908327 (nsec)
|
||||
Drift Chamber 1 has 5 hits.
|
||||
Layer[0] : time 6.6710116391753 (nsec) --- local (x,y) -4.2382996748459, -3.9533524430919
|
||||
Layer[1] : time 8.3388904830769 (nsec) --- local (x,y) -7.0679318382756, -7.0323914439979
|
||||
Layer[2] : time 10.006775356353 (nsec) --- local (x,y) -9.8361901471152, -10.404061955743
|
||||
Layer[3] : time 11.674675602791 (nsec) --- local (x,y) -12.746760288263, -14.333052647724
|
||||
Layer[4] : time 13.342576251069 (nsec) --- local (x,y) -15.577006143265, -18.335803784485
|
||||
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)
|
||||
Layer[0] : time 6.6709508131839 (nsec) --- local (x,y) -0.0065595298467736, -0.72092457283458
|
||||
Layer[1] : time 8.338773841525 (nsec) --- local (x,y) 0.42361335766434, -1.474508405349
|
||||
Layer[2] : time 10.006596796517 (nsec) --- local (x,y) 1.1225794031369, -1.9771763364805
|
||||
Layer[3] : time 11.674419475943 (nsec) --- local (x,y) 1.5886119395617, -2.6403582368155
|
||||
Layer[4] : time 13.342242740298 (nsec) --- local (x,y) 1.8777334744089, -3.5040981825274
|
||||
Drift Chamber 2 has 5 hits.
|
||||
Layer[0] : time 34.857230330519 (nsec) --- local (x,y) -149.7724895288, -19.94798462539
|
||||
Layer[1] : time 36.528236610125 (nsec) --- local (x,y) -180.6469320994, -21.607281505143
|
||||
Layer[2] : time 38.199258676164 (nsec) --- local (x,y) -211.60936546418, -23.042037834
|
||||
Layer[3] : time 39.870328876695 (nsec) --- local (x,y) -242.81534375519, -24.212678763039
|
||||
Layer[4] : time 41.541449563153 (nsec) --- local (x,y) -274.27591952959, -24.966503044254
|
||||
EM Calorimeter has 8 hits. Total Edep is 963.1430795106 (MeV)
|
||||
Hadron Calorimeter has 2 hits. Total Edep is 0.98932812962652 (MeV)
|
||||
... write Root file : B5.root - done
|
||||
... close Root file : B5.root - done
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -99,16 +99,6 @@ Available colours:
|
||||
------------------------------------------------------------
|
||||
---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of G4_lAr ]
|
||||
------------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -792,6 +782,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 start.
|
||||
... open Root analysis file : AnaEx01.root - done
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -50,16 +50,6 @@
|
||||
------------------------------------------------------------
|
||||
---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of G4_lAr ]
|
||||
------------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -792,6 +782,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 start.
|
||||
|
||||
----> Output file is open in AnaEx02.root
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -14,16 +14,6 @@
|
||||
Checking overlaps for volume Envelope ... OK!
|
||||
Checking overlaps for volume Shape1 ... OK!
|
||||
Checking overlaps for volume Shape2 ... OK!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
|
||||
Visualization Manager instantiating with verbosity "warnings (3)"...
|
||||
Visualization Manager initialising...
|
||||
@@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 start.
|
||||
|
||||
---> Begin of event: 0
|
||||
@@ -776,13 +779,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
R = 0.0889053
|
||||
SHIFT = 1.78837e-13
|
||||
VOV = 0.0089262
|
||||
FOM = 1054.3
|
||||
FOM = 1581.45
|
||||
THE LARGEST SCORE = 5.55155e-13 and it happend at 5th event
|
||||
Affected Mean = 4.50333e-14 and its ratio to orignal is 1.01146
|
||||
Affected VAR = 1.59133e-26 and its ratio to orignal is 1.01562
|
||||
Affected R = 0.088538 and its ratio to orignal is 0.995868
|
||||
Affected SHIFT = 1.79324e-13 and its ratio to orignal is 1.00273
|
||||
Affected FOM = 1054.3 and its ratio to orignal is 1
|
||||
Affected FOM = 1581.45 and its ratio to orignal is 1
|
||||
MEAN distribution is RANDOM
|
||||
r follows 1/std::sqrt(N)
|
||||
r is monotonically decrease
|
||||
@@ -796,22 +799,22 @@ This result passes 6 / 8 Convergence Test.
|
||||
|
||||
G4ConvergenceTester Output History of DOSE_TALLY
|
||||
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
|
||||
1 62 5.47726e-14 1.89905e-26 1.37806e-13 0.316982 0.127305 82.9371 1.79367e-13 0.206349 0.0610501 0.0378328
|
||||
2 124 5.73411e-14 2.07988e-26 1.44218e-13 0.224956 0.0547426 164.673 1.77575e-13 0.2 0.032 0.0182005
|
||||
3 187 4.59343e-14 1.62797e-26 1.27592e-13 0.202585 0.0496736 203.05 1.837e-13 0.175532 0.0249839 0.0158385
|
||||
4 249 4.76015e-14 1.67468e-26 1.2941e-13 0.17194 0.0361214 281.881 1.83419e-13 0.18 0.0182222 0.0112228
|
||||
5 312 5.01532e-14 1.71426e-26 1.3093e-13 0.147559 0.0255973 382.724 1.74495e-13 0.191693 0.0134718 0.00823242
|
||||
6 374 4.5541e-14 1.58633e-26 1.25949e-13 0.142816 0.0245389 408.567 1.80888e-13 0.181333 0.0120392 0.00830289
|
||||
7 437 4.21231e-14 1.47979e-26 1.21647e-13 0.137989 0.0231649 437.655 1.83892e-13 0.171233 0.0110502 0.00794715
|
||||
8 499 4.33339e-14 1.50823e-26 1.2281e-13 0.126742 0.0189683 518.773 1.79575e-13 0.174 0.00949425 0.00653715
|
||||
9 562 4.35618e-14 1.5546e-26 1.24684e-13 0.120628 0.0165036 572.691 1.81574e-13 0.168739 0.00875012 0.00577523
|
||||
10 624 4.56042e-14 1.63614e-26 1.27912e-13 0.112193 0.013885 662.047 1.80607e-13 0.176 0.00749091 0.00507617
|
||||
11 687 4.6396e-14 1.65308e-26 1.28572e-13 0.105651 0.0121191 746.575 1.78001e-13 0.175872 0.00681097 0.00433488
|
||||
12 749 4.49456e-14 1.60642e-26 1.26745e-13 0.10297 0.0117228 785.952 1.80157e-13 0.174667 0.00630025 0.00428846
|
||||
13 812 4.47091e-14 1.60861e-26 1.26831e-13 0.099491 0.0108767 841.882 1.81016e-13 0.177122 0.00571443 0.00417186
|
||||
14 874 4.44065e-14 1.58666e-26 1.25963e-13 0.095894 0.010173 906.225 1.80158e-13 0.177143 0.00530876 0.00387639
|
||||
15 937 4.54158e-14 1.59159e-26 1.26158e-13 0.0907 0.00923288 1012.99 1.77302e-13 0.181237 0.00481625 0.00340147
|
||||
16 999 4.45231e-14 1.56685e-26 1.25174e-13 0.0889053 0.0089262 1054.3 1.78837e-13 0.181 0.00452486 0.00337139
|
||||
1 62 5.47726e-14 1.89905e-26 1.37806e-13 0.316982 0.127305 124.406 1.79367e-13 0.206349 0.0610501 0.0378328
|
||||
2 124 5.73411e-14 2.07988e-26 1.44218e-13 0.224956 0.0547426 247.01 1.77575e-13 0.2 0.032 0.0182005
|
||||
3 187 4.59343e-14 1.62797e-26 1.27592e-13 0.202585 0.0496736 304.575 1.837e-13 0.175532 0.0249839 0.0158385
|
||||
4 249 4.76015e-14 1.67468e-26 1.2941e-13 0.17194 0.0361214 422.822 1.83419e-13 0.18 0.0182222 0.0112228
|
||||
5 312 5.01532e-14 1.71426e-26 1.3093e-13 0.147559 0.0255973 574.085 1.74495e-13 0.191693 0.0134718 0.00823242
|
||||
6 374 4.5541e-14 1.58633e-26 1.25949e-13 0.142816 0.0245389 612.85 1.80888e-13 0.181333 0.0120392 0.00830289
|
||||
7 437 4.21231e-14 1.47979e-26 1.21647e-13 0.137989 0.0231649 656.483 1.83892e-13 0.171233 0.0110502 0.00794715
|
||||
8 499 4.33339e-14 1.50823e-26 1.2281e-13 0.126742 0.0189683 778.16 1.79575e-13 0.174 0.00949425 0.00653715
|
||||
9 562 4.35618e-14 1.5546e-26 1.24684e-13 0.120628 0.0165036 859.036 1.81574e-13 0.168739 0.00875012 0.00577523
|
||||
10 624 4.56042e-14 1.63614e-26 1.27912e-13 0.112193 0.013885 993.071 1.80607e-13 0.176 0.00749091 0.00507617
|
||||
11 687 4.6396e-14 1.65308e-26 1.28572e-13 0.105651 0.0121191 1119.86 1.78001e-13 0.175872 0.00681097 0.00433488
|
||||
12 749 4.49456e-14 1.60642e-26 1.26745e-13 0.10297 0.0117228 1178.93 1.80157e-13 0.174667 0.00630025 0.00428846
|
||||
13 812 4.47091e-14 1.60861e-26 1.26831e-13 0.099491 0.0108767 1262.82 1.81016e-13 0.177122 0.00571443 0.00417186
|
||||
14 874 4.44065e-14 1.58666e-26 1.25963e-13 0.095894 0.010173 1359.34 1.80158e-13 0.177143 0.00530876 0.00387639
|
||||
15 937 4.54158e-14 1.59159e-26 1.26158e-13 0.0907 0.00923288 1519.48 1.77302e-13 0.181237 0.00481625 0.00340147
|
||||
16 999 4.45231e-14 1.56685e-26 1.25174e-13 0.0889053 0.0089262 1581.45 1.78837e-13 0.181 0.00452486 0.00337139
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 gamma of 6 MeV
|
||||
@@ -841,24 +844,24 @@ i/16 till_ith mean var sd r vov
|
||||
---> Begin of event: 900
|
||||
|
||||
G4ConvergenceTester Output Result of DOSE_TALLY
|
||||
EFFICIENCY = 0.635
|
||||
MEAN = 5.1075e-12
|
||||
VAR = 2.18186e-23
|
||||
SD = 4.67103e-12
|
||||
R = 0.0289204
|
||||
SHIFT = -1.67334e-14
|
||||
VOV = 0.000147739
|
||||
FOM = 1271.93
|
||||
THE LARGEST SCORE = 1.0761e-11 and it happend at 764th event
|
||||
Affected Mean = 5.11315e-12 and its ratio to orignal is 1.00111
|
||||
Affected VAR = 2.18287e-23 and its ratio to orignal is 1.00046
|
||||
Affected R = 0.0288807 and its ratio to orignal is 0.998628
|
||||
Affected SHIFT = -2.10374e-14 and its ratio to orignal is 1.25721
|
||||
Affected FOM = 1271.93 and its ratio to orignal is 1
|
||||
EFFICIENCY = 0.631
|
||||
MEAN = 5.03046e-12
|
||||
VAR = 2.09456e-23
|
||||
SD = 4.57663e-12
|
||||
R = 0.0287699
|
||||
SHIFT = 1.36898e-15
|
||||
VOV = 0.000182109
|
||||
FOM = 2013.6
|
||||
THE LARGEST SCORE = 1.06427e-11 and it happend at 133th event
|
||||
Affected Mean = 5.03607e-12 and its ratio to orignal is 1.00111
|
||||
Affected VAR = 2.09561e-23 and its ratio to orignal is 1.0005
|
||||
Affected R = 0.0287307 and its ratio to orignal is 0.998638
|
||||
Affected SHIFT = -2.82122e-15 and its ratio to orignal is -2.06081
|
||||
Affected FOM = 2013.6 and its ratio to orignal 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.0289204
|
||||
r is less than 0.1. r = 0.0287699
|
||||
VOV follows 1/std::sqrt(N)
|
||||
VOV is monotonically decrease
|
||||
FOM distribution is not RANDOM
|
||||
@@ -868,26 +871,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.53065e-12 2.11539e-23 4.59934e-12 0.104773 0.00345181 96.9113 -4.40351e-13 0.666667 0.00793651 0.0028666
|
||||
2 124 5.21427e-12 2.12833e-23 4.61338e-12 0.0791354 0.00146416 169.876 -9.22854e-14 0.656 0.00419512 0.00201718
|
||||
3 187 4.80438e-12 2.14275e-23 4.62899e-12 0.07027 0.00102027 215.443 2.89404e-13 0.62234 0.00322786 0.00168375
|
||||
4 249 4.84843e-12 2.16468e-23 4.65261e-12 0.0606912 0.000690051 288.816 2.3154e-13 0.624 0.00241026 0.00125843
|
||||
5 312 5.11328e-12 2.1776e-23 4.66648e-12 0.0515842 0.000499835 399.796 6.54981e-15 0.645367 0.00175561 0.000896825
|
||||
6 374 5.05058e-12 2.1849e-23 4.67429e-12 0.0477924 0.000405729 465.753 6.1819e-14 0.634667 0.00153501 0.000743004
|
||||
7 437 5.0899e-12 2.17646e-23 4.66526e-12 0.0437954 0.000352594 554.644 2.21414e-14 0.634703 0.00131402 0.000599643
|
||||
8 499 5.06795e-12 2.18137e-23 4.67052e-12 0.0412143 0.000310055 626.292 4.12079e-14 0.63 0.0011746 0.000520616
|
||||
9 562 5.01284e-12 2.18003e-23 4.66908e-12 0.0392549 0.000277056 690.375 8.90387e-14 0.626998 0.00105666 0.000481545
|
||||
10 624 4.91961e-12 2.17383e-23 4.66243e-12 0.037909 0.000256105 740.266 1.72942e-13 0.6272 0.00095102 0.000483772
|
||||
11 687 5.01907e-12 2.17233e-23 4.66083e-12 0.0354034 0.00022996 848.754 8.14949e-14 0.633721 0.00084009 0.000411491
|
||||
12 749 5.09551e-12 2.1806e-23 4.66969e-12 0.0334634 0.000202725 950.019 8.38385e-15 0.637333 0.000758717 0.000359589
|
||||
13 812 5.00488e-12 2.18574e-23 4.67519e-12 0.0327612 0.000184474 991.179 8.62371e-14 0.624846 0.000738492 0.000333486
|
||||
14 874 5.11023e-12 2.1852e-23 4.67461e-12 0.0309244 0.000170058 1112.42 -1.69642e-14 0.632 0.000665461 0.000289764
|
||||
15 937 5.10732e-12 2.18525e-23 4.67467e-12 0.0298852 0.000157073 1191.13 -9.68995e-15 0.634328 0.000614574 0.000277599
|
||||
16 999 5.1075e-12 2.18186e-23 4.67103e-12 0.0289204 0.000147739 1271.93 -1.67334e-14 0.635 0.000574803 0.00026075
|
||||
1 62 4.8425e-12 2.11277e-23 4.59649e-12 0.119588 0.00320077 116.54 1.24176e-13 0.571429 0.0119048 0.00216943
|
||||
2 124 4.5137e-12 2.08137e-23 4.5622e-12 0.0904038 0.00172398 203.927 4.25225e-13 0.568 0.00608451 0.00202296
|
||||
3 187 4.5484e-12 2.12944e-23 4.61459e-12 0.0739938 0.000987755 304.409 3.9034e-13 0.558511 0.00420466 0.0012413
|
||||
4 249 4.65867e-12 2.11346e-23 4.59724e-12 0.0624117 0.00076412 427.875 3.34298e-13 0.584 0.00284932 0.00103032
|
||||
5 312 4.6235e-12 2.17027e-23 4.65861e-12 0.0569525 0.000548115 513.834 3.80465e-13 0.56869 0.00242309 0.000810138
|
||||
6 374 4.63931e-12 2.13445e-23 4.62001e-12 0.0514249 0.000490849 630.233 3.53744e-13 0.578667 0.00194163 0.000695843
|
||||
7 437 4.57617e-12 2.12164e-23 4.60613e-12 0.0480947 0.00044567 720.534 4.12199e-13 0.577626 0.00166946 0.000638353
|
||||
8 499 4.6657e-12 2.12777e-23 4.61277e-12 0.0442141 0.000359186 852.566 3.1898e-13 0.586 0.00141297 0.000538004
|
||||
9 562 4.72049e-12 2.10569e-23 4.58878e-12 0.040969 0.000333495 992.974 2.74593e-13 0.596803 0.00119999 0.000475487
|
||||
10 624 4.79255e-12 2.11101e-23 4.59457e-12 0.0383476 0.000287207 1133.37 2.10887e-13 0.6016 0.00105957 0.000408614
|
||||
11 687 4.87204e-12 2.1073e-23 4.59053e-12 0.0359218 0.000262284 1291.61 1.46399e-13 0.610465 0.000927464 0.000361036
|
||||
12 749 4.92191e-12 2.10199e-23 4.58474e-12 0.0340134 0.000243613 1440.61 1.03457e-13 0.616 0.000831169 0.000324203
|
||||
13 812 5.00885e-12 2.10157e-23 4.58429e-12 0.0320988 0.000221836 1617.6 1.61632e-14 0.622386 0.000746272 0.000282792
|
||||
14 874 4.97202e-12 2.09478e-23 4.57688e-12 0.0311195 0.000207449 1721.01 4.91775e-14 0.622857 0.000692005 0.000275311
|
||||
15 937 4.99055e-12 2.08759e-23 4.56902e-12 0.0298932 0.000195212 1865.1 3.32652e-14 0.628998 0.000628817 0.000263836
|
||||
16 999 5.03046e-12 2.09456e-23 4.57663e-12 0.0287699 0.000182109 2013.6 1.36898e-15 0.631 0.000584786 0.000242091
|
||||
|
||||
--------------------End of Global Run-----------------------
|
||||
The run consists of 1000 proton of 210 MeV
|
||||
Dose in scoring volume : 5.1075 nanoGy +- 147.637 picoGy
|
||||
Dose in scoring volume : 5.03046 nanoGy +- 144.653 picoGy
|
||||
------------------------------------------------------------
|
||||
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -12,16 +12,6 @@
|
||||
|
||||
<<< Geant4 Physics List simulation engine: FTFP_BERT 2.0
|
||||
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -781,6 +771,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
++ ConcreteSD/Collisions id 0
|
||||
++ ConcreteSD/CollWeight id 1
|
||||
++ ConcreteSD/Population id 2
|
||||
@@ -798,26 +801,26 @@ 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 | 38 | 129 | 38 | 38 | 0.159189 | 3.93155 | 1 | 8082.78 | 8082.78 | 6143.41 | 31777.8 | 977.965 |
|
||||
cell_01 | 147 | 175 | 512 | 512 | 0.0234011 | 4.50537 | 1 | 24122.5 | 24122.5 | 128701 | 108681 | 3011.75 |
|
||||
cell_02 | 154 | 257 | 1283 | 641.5 | 0.0132114 | 2.84829 | 0.5 | 47671.3 | 23835.6 | 162492 | 67890.8 | 2146.76 |
|
||||
cell_03 | 217 | 359 | 1797 | 449.25 | 0.00771804 | 2.16402 | 0.25 | 63266.6 | 15816.6 | 152850 | 34227.5 | 1179.7 |
|
||||
cell_04 | 298 | 449 | 2508 | 313.5 | 0.00444296 | 1.64284 | 0.125 | 80316.3 | 10039.5 | 137255 | 16493.3 | 609.819 |
|
||||
cell_05 | 316 | 464 | 3093 | 193.312 | 0.0029678 | 1.14639 | 0.0625 | 89919.4 | 5619.96 | 91865.5 | 6442.69 | 272.639 |
|
||||
cell_06 | 292 | 412 | 2466 | 77.0625 | 0.00324867 | 1.12579 | 0.03125 | 75120.3 | 2347.51 | 35066.8 | 2642.8 | 113.921 |
|
||||
cell_07 | 281 | 405 | 2869 | 44.8281 | 0.00259938 | 1.0063 | 0.015625 | 82711.3 | 1292.36 | 21654 | 1300.51 | 56.2871 |
|
||||
cell_08 | 220 | 307 | 2017 | 15.7578 | 0.00202507 | 0.864205 | 0.0078125 | 57075.1 | 445.9 | 8537.85 | 385.349 | 17.2898 |
|
||||
cell_09 | 207 | 294 | 1951 | 7.62109 | 0.00193322 | 0.866714 | 0.00390625 | 54477.4 | 212.802 | 4354.37 | 184.439 | 8.41797 |
|
||||
cell_10 | 171 | 251 | 1618 | 3.16016 | 0.0021047 | 0.776897 | 0.00195312 | 45977.2 | 89.7992 | 1678.16 | 69.7647 | 3.53201 |
|
||||
cell_11 | 141 | 202 | 1432 | 1.39844 | 0.00238711 | 0.715644 | 0.000976562 | 41466.9 | 40.495 | 638.582 | 28.98 | 1.52436 |
|
||||
cell_12 | 139 | 197 | 1318 | 0.643555 | 0.00195435 | 0.738886 | 0.000488281 | 37379.9 | 18.2519 | 359.767 | 13.4861 | 0.703111 |
|
||||
cell_13 | 127 | 184 | 1393 | 0.340088 | 0.00234259 | 0.597097 | 0.000244141 | 39615.9 | 9.67186 | 137.829 | 5.77504 | 0.322876 |
|
||||
cell_14 | 108 | 154 | 926 | 0.113037 | 0.00144701 | 0.681425 | 0.00012207 | 24968.9 | 3.04797 | 72.1566 | 2.07696 | 0.104411 |
|
||||
cell_15 | 80 | 109 | 830 | 0.0506592 | 0.00126008 | 0.527462 | 6.10352e-05 | 21781.5 | 1.32944 | 28.8661 | 0.701227 | 0.0363735 |
|
||||
cell_16 | 51 | 75 | 485 | 0.014801 | 0.00156348 | 0.555657 | 3.05176e-05 | 12851.4 | 0.392194 | 7.68356 | 0.217925 | 0.0120131 |
|
||||
cell_17 | 33 | 47 | 255 | 0.00389099 | 0.00170679 | 0.580506 | 1.52588e-05 | 7488.17 | 0.11426 | 2.38382 | 0.0663288 | 0.00406868 |
|
||||
cell_18 | 19 | 35 | 161 | 0.00122833 | 0.00473311 | 0.70104 | 7.62939e-06 | 5140.12 | 0.039216 | 0.370179 | 0.027492 | 0.0017521 |
|
||||
cell_19 | 14 | 14 | 14 | 0.000106812 | 0.00536291 | 0.760101 | 7.62939e-06 | 2278.22 | 0.0173814 | 0.145278 | 0.0132117 | 0.000779115 |
|
||||
cell_00 | 39 | 133 | 39 | 39 | 0.10904 | 1.847 | 1 | 7314.45 | 7314.45 | 5023.53 | 13509.8 | 547.766 |
|
||||
cell_01 | 150 | 174 | 529 | 529 | 0.0191438 | 4.3571 | 1 | 24776.1 | 24776.1 | 158346 | 107952 | 3031.35 |
|
||||
cell_02 | 185 | 281 | 1161 | 580.5 | 0.0113294 | 2.8294 | 0.5 | 42409.6 | 21204.8 | 166951 | 59997 | 1891.45 |
|
||||
cell_03 | 259 | 378 | 2045 | 511.25 | 0.00701385 | 2.36574 | 0.25 | 69002.2 | 17250.6 | 192206 | 40810.4 | 1348.11 |
|
||||
cell_04 | 332 | 477 | 2669 | 333.625 | 0.00556124 | 1.9901 | 0.125 | 86766.9 | 10845.9 | 134430 | 21584.3 | 747.597 |
|
||||
cell_05 | 375 | 572 | 3490 | 218.125 | 0.00411284 | 1.60753 | 0.0625 | 108628 | 6789.22 | 96286.5 | 10913.9 | 396.011 |
|
||||
cell_06 | 374 | 544 | 3382 | 105.688 | 0.00406769 | 1.42661 | 0.03125 | 103232 | 3226.01 | 44105.6 | 4602.27 | 179.408 |
|
||||
cell_07 | 390 | 558 | 3678 | 57.4688 | 0.00235337 | 1.1076 | 0.015625 | 103117 | 1611.21 | 31041.7 | 1784.58 | 73.0524 |
|
||||
cell_08 | 322 | 465 | 3122 | 24.3906 | 0.00263579 | 1.08198 | 0.0078125 | 87754 | 685.578 | 12004.9 | 741.778 | 31.6423 |
|
||||
cell_09 | 300 | 413 | 2794 | 10.9141 | 0.00277678 | 1.02977 | 0.00390625 | 81975.2 | 320.216 | 5016.14 | 329.747 | 13.9287 |
|
||||
cell_10 | 268 | 402 | 2512 | 4.90625 | 0.00300105 | 1.12219 | 0.00195312 | 73299.7 | 143.163 | 2229.69 | 160.657 | 6.6914 |
|
||||
cell_11 | 215 | 315 | 2083 | 2.03418 | 0.00351093 | 1.21322 | 0.000976562 | 63135.3 | 61.6556 | 866.631 | 74.8015 | 3.04268 |
|
||||
cell_12 | 182 | 288 | 1698 | 0.829102 | 0.00336218 | 1.26154 | 0.000488281 | 51732.6 | 25.2601 | 377.732 | 31.8666 | 1.27 |
|
||||
cell_13 | 179 | 281 | 1860 | 0.454102 | 0.00329636 | 1.18124 | 0.000244141 | 55119.6 | 13.4569 | 198.138 | 15.8958 | 0.653134 |
|
||||
cell_14 | 194 | 286 | 1783 | 0.217651 | 0.00388223 | 1.21878 | 0.00012207 | 54032.7 | 6.59579 | 86.0927 | 8.03883 | 0.334232 |
|
||||
cell_15 | 209 | 307 | 2009 | 0.12262 | 0.00340077 | 1.19782 | 6.10352e-05 | 61609.1 | 3.76032 | 57.2078 | 4.5042 | 0.19455 |
|
||||
cell_16 | 191 | 296 | 1721 | 0.0525208 | 0.00419752 | 1.23058 | 3.05176e-05 | 53101.7 | 1.62053 | 20.4162 | 1.9942 | 0.0856975 |
|
||||
cell_17 | 173 | 260 | 1725 | 0.0263214 | 0.0029313 | 1.10115 | 1.52588e-05 | 50473.6 | 0.770166 | 12.4802 | 0.848072 | 0.0365832 |
|
||||
cell_18 | 111 | 205 | 1151 | 0.00878143 | 0.00451357 | 1.1056 | 7.62939e-06 | 34016.7 | 0.259527 | 2.83551 | 0.286934 | 0.0127983 |
|
||||
cell_19 | 71 | 71 | 71 | 0.000541687 | 0.00684046 | 1.6655 | 7.62939e-06 | 10890.2 | 0.0830856 | 0.786876 | 0.138379 | 0.0053826 |
|
||||
=============================================
|
||||
=== G4ProcessPlacer::RemoveProcess: for: neutron
|
||||
ProcessName: ImportanceProcess, will be removed!
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -65,36 +65,7 @@ DoIt Vector:
|
||||
================================================
|
||||
GeomSampler Configured!!!
|
||||
Running in singlethreaded mode!!!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels is changed to 68
|
||||
B03PhysicsList::SetCuts:CutLength : 1 (mm)
|
||||
ghost world: ParallelBiasingWorld
|
||||
adding cell: 1 replica: 0 name: cell_01
|
||||
@@ -498,6 +469,32 @@ hIoni: for pi- SubType= 2
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
++ ConcreteSD/Collisions id 0
|
||||
++ ConcreteSD/CollWeight id 1
|
||||
++ ConcreteSD/Population id 2
|
||||
@@ -513,7 +510,7 @@ hIoni: for pi- SubType= 2
|
||||
*** G4Exception : GeomBias1001
|
||||
issued by : G4ImportanceAlgorithm::Warning()
|
||||
Calculate() - ipre_over_ipost ! in [0.25, 4].
|
||||
ipre_over_ipost = 4096.
|
||||
ipre_over_ipost = 8192.
|
||||
*** This is just a warning message. ***
|
||||
-------- WWWW -------- G4Exception-END --------- WWWW -------
|
||||
|
||||
@@ -533,26 +530,26 @@ ipre_over_ipost = 4096.
|
||||
=============================================================
|
||||
=============================================================
|
||||
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
|
||||
cell_00 | 35 | 133 | 0 | 0 | 1.24683 | 3.02032 | 1 | 6543.05 | 6543.05 | 570.278 | 19762.1 | 711.038 |
|
||||
cell_01 | 147 | 183 | 512 | 512 | 0.689648 | 4.44226 | 1 | 22609.6 | 22609.6 | 4170.21 | 100438 | 2875.98 |
|
||||
cell_02 | 156 | 262 | 1228 | 614 | 0.293652 | 2.74735 | 0.5 | 44899.8 | 22449.9 | 6752.21 | 61677.8 | 1982.8 |
|
||||
cell_03 | 191 | 341 | 1627 | 406.75 | 0.232076 | 2.63801 | 0.25 | 56651.5 | 14162.9 | 5119.69 | 37361.8 | 1188.15 |
|
||||
cell_04 | 215 | 367 | 1759 | 219.875 | 0.188215 | 2.3795 | 0.125 | 58140.9 | 7267.61 | 2990.95 | 17293.3 | 562.942 |
|
||||
cell_05 | 244 | 397 | 1899 | 118.688 | 0.191235 | 2.10345 | 0.0625 | 66265.7 | 4141.61 | 1618.53 | 8711.66 | 309.519 |
|
||||
cell_06 | 282 | 459 | 2242 | 70.0625 | 0.186034 | 2.08815 | 0.03125 | 76440.2 | 2388.76 | 962.175 | 4988.09 | 178.998 |
|
||||
cell_07 | 308 | 492 | 2706 | 42.2812 | 0.158886 | 1.77647 | 0.015625 | 86511.3 | 1351.74 | 569.718 | 2401.32 | 90.5205 |
|
||||
cell_08 | 318 | 510 | 2701 | 21.1016 | 0.133471 | 1.50145 | 0.0078125 | 84640.2 | 661.252 | 296.247 | 992.835 | 39.5405 |
|
||||
cell_09 | 325 | 476 | 2666 | 10.4141 | 0.124234 | 1.33054 | 0.00390625 | 85665.6 | 334.631 | 150.896 | 445.24 | 18.7465 |
|
||||
cell_10 | 313 | 480 | 2878 | 5.62109 | 0.117983 | 1.28097 | 0.00195312 | 85723.7 | 167.429 | 77.5702 | 214.471 | 9.15195 |
|
||||
cell_11 | 270 | 400 | 2367 | 2.31152 | 0.105955 | 1.19511 | 0.000976562 | 72268.5 | 70.5747 | 35.0292 | 84.3447 | 3.71152 |
|
||||
cell_12 | 256 | 394 | 2129 | 1.03955 | 0.137258 | 1.35987 | 0.000488281 | 65553.6 | 32.0086 | 13.658 | 43.5275 | 1.87468 |
|
||||
cell_13 | 249 | 356 | 2233 | 0.545166 | 0.101676 | 1.22937 | 0.000244141 | 68040.2 | 16.6114 | 8.45268 | 20.4216 | 0.859434 |
|
||||
cell_14 | 211 | 319 | 1789 | 0.218384 | 0.114427 | 1.3403 | 0.00012207 | 56707.9 | 6.92235 | 3.34116 | 9.27806 | 0.38232 |
|
||||
cell_15 | 187 | 300 | 1834 | 0.111938 | 0.115719 | 1.30993 | 6.10352e-05 | 56245.4 | 3.43295 | 1.62668 | 4.49693 | 0.188238 |
|
||||
cell_16 | 181 | 300 | 1709 | 0.0521545 | 0.108321 | 1.25071 | 3.05176e-05 | 50757.5 | 1.549 | 0.760427 | 1.93735 | 0.0823699 |
|
||||
cell_17 | 150 | 244 | 1480 | 0.022583 | 0.0913458 | 1.13875 | 1.52588e-05 | 41970.7 | 0.640423 | 0.344666 | 0.729284 | 0.0314838 |
|
||||
cell_18 | 85 | 168 | 942 | 0.00718689 | 0.137986 | 1.57199 | 7.62939e-06 | 29412.7 | 0.224401 | 0.102615 | 0.352755 | 0.0141595 |
|
||||
cell_19 | 56 | 56 | 0 | 0 | 0.36184 | 2.5269 | 7.62939e-06 | 7796.83 | 0.0594851 | 0.0155328 | 0.150313 | 0.00562039 |
|
||||
cell_00 | 38 | 131 | 0 | 0 | 0.615797 | 3.54717 | 1 | 7764.55 | 7764.55 | 1446.41 | 27542.2 | 890.696 |
|
||||
cell_01 | 141 | 172 | 559 | 559 | 0.452871 | 4.11041 | 1 | 23144.2 | 23144.2 | 5872.88 | 95132 | 2659.66 |
|
||||
cell_02 | 149 | 263 | 1037 | 518.5 | 0.301368 | 3.06565 | 0.5 | 38748.3 | 19374.1 | 6035.26 | 59394.3 | 1818.83 |
|
||||
cell_03 | 215 | 354 | 1670 | 417.5 | 0.243482 | 2.43315 | 0.25 | 58023.4 | 14505.9 | 4816.75 | 35294.9 | 1172.79 |
|
||||
cell_04 | 227 | 381 | 1932 | 241.5 | 0.185452 | 2.07363 | 0.125 | 66787 | 8348.37 | 3257.61 | 17311.4 | 604.131 |
|
||||
cell_05 | 244 | 411 | 2126 | 132.875 | 0.168608 | 1.81913 | 0.0625 | 69047.8 | 4315.49 | 1710.4 | 7850.42 | 288.386 |
|
||||
cell_06 | 256 | 406 | 2148 | 67.125 | 0.16032 | 1.8576 | 0.03125 | 69619.5 | 2175.61 | 923.281 | 4041.42 | 148.02 |
|
||||
cell_07 | 292 | 423 | 2391 | 37.3594 | 0.148577 | 1.57139 | 0.015625 | 75858.8 | 1185.29 | 484.816 | 1862.55 | 72.0325 |
|
||||
cell_08 | 277 | 436 | 2431 | 18.9922 | 0.125756 | 1.42518 | 0.0078125 | 75164.9 | 587.226 | 267.904 | 836.902 | 33.6905 |
|
||||
cell_09 | 261 | 413 | 2178 | 8.50781 | 0.137057 | 1.52669 | 0.00390625 | 69034.3 | 269.665 | 119.175 | 411.696 | 16.3338 |
|
||||
cell_10 | 297 | 435 | 2365 | 4.61914 | 0.124018 | 1.36421 | 0.00195312 | 75338.1 | 147.145 | 67.432 | 200.736 | 8.36276 |
|
||||
cell_11 | 316 | 478 | 2821 | 2.75488 | 0.114359 | 1.19705 | 0.000976562 | 87062 | 85.0215 | 39.8396 | 101.775 | 4.556 |
|
||||
cell_12 | 278 | 431 | 2576 | 1.25781 | 0.112178 | 1.22026 | 0.000488281 | 75947.9 | 37.0839 | 17.4092 | 45.2521 | 1.95292 |
|
||||
cell_13 | 252 | 371 | 2192 | 0.535156 | 0.0996486 | 1.11984 | 0.000244141 | 66109 | 16.1399 | 8.03034 | 18.074 | 0.800212 |
|
||||
cell_14 | 221 | 336 | 2076 | 0.253418 | 0.0946568 | 1.13656 | 0.00012207 | 60910.8 | 7.4354 | 3.98966 | 8.45078 | 0.377648 |
|
||||
cell_15 | 186 | 290 | 1861 | 0.113586 | 0.110914 | 1.0462 | 6.10352e-05 | 55839.9 | 3.40819 | 1.57606 | 3.56566 | 0.174807 |
|
||||
cell_16 | 148 | 232 | 1494 | 0.0455933 | 0.0632583 | 0.797689 | 3.05176e-05 | 42309.8 | 1.29119 | 0.817666 | 1.02997 | 0.0517241 |
|
||||
cell_17 | 115 | 181 | 1131 | 0.0172577 | 0.10909 | 1.04002 | 1.52588e-05 | 34875.2 | 0.532153 | 0.247801 | 0.553449 | 0.0270326 |
|
||||
cell_18 | 69 | 132 | 780 | 0.00595093 | 0.102372 | 0.894151 | 7.62939e-06 | 23056.4 | 0.175906 | 0.0806366 | 0.157287 | 0.00825496 |
|
||||
cell_19 | 42 | 42 | 0 | 0 | 0.19215 | 1.46111 | 7.62939e-06 | 6806.72 | 0.0519311 | 0.0177029 | 0.0758772 | 0.0034016 |
|
||||
=============================================
|
||||
=== G4ProcessPlacer::RemoveProcess: for: neutron
|
||||
ProcessName: ImportanceProcess, will be removed!
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -17,16 +17,6 @@
|
||||
********** processes are wrapped for biasing ************
|
||||
*********************************************************
|
||||
Attaching biasing operator TestManyExponentialTransform to logical volume test.logical
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = gamma, Track ID = 1, Parent ID = 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -17,16 +17,6 @@
|
||||
********** processes are wrapped for biasing ************
|
||||
*********************************************************
|
||||
Attaching biasing operator TestManyForceCollision to logical volume test.logical
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
*********************************************************************************************************
|
||||
* G4Track Information: Particle = gamma, Track ID = 1, Parent ID = 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -72,16 +72,6 @@ G4SDManager::AddNewCollection : the collection <Calor_abs/nCharged> is registere
|
||||
G4SDManager::AddNewCollection : the collection <Calor_gap/eDep> is registered at 4
|
||||
G4SDManager::AddNewCollection : the collection <Calor_gap/nNeutral> is registered at 5
|
||||
G4SDManager::AddNewCollection : the collection <Calor_gap/nCharged> is registered at 6
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -765,6 +755,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -824,7 +827,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.16s Real=0.17s Sys=0s
|
||||
User=0.12s Real=0.13s Sys=0s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -884,7 +887,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.73s Real=0.74s Sys=0s
|
||||
User=0.17s Real=0.16s Sys=0s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
@@ -896,22 +899,22 @@ RunManager is deleting RunManagerKernel.
|
||||
G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
Total navigation history collections cleaned: 93
|
||||
Total navigation history collections cleaned: 78
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.145 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.121 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0375 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.0346 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.074 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.0115 MB
|
||||
Pool ID '7G4Track', size : 0.0683 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00961 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.00192 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.28 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.24 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -17,16 +17,6 @@
|
||||
********** processes are wrapped for biasing ************
|
||||
*********************************************************
|
||||
Attaching biasing operator BremSplittingOperator to logical volume test.logical
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -1209,7 +1212,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.01s Real=0s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -2528,7 +2531,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.01s Real=0.02s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -3706,7 +3709,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0s Real=0s Sys=0s
|
||||
User=0.01s Real=0s Sys=0s
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
G4 kernel has come to Quit state.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -321,11 +321,11 @@ nb event 175000
|
||||
1% Precision reached!
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Run Aborted after 176420 events processed.
|
||||
User=183.82s Real=184.32s Sys=0.13s
|
||||
Run Aborted after 177760 events processed.
|
||||
User=93.7s Real=94.2s Sys=0.19s
|
||||
Results of reverse/adjoint simulation!
|
||||
normalised edep [MeV] = 0.00165028
|
||||
error[MeV] = 1.65024e-05
|
||||
normalised edep [MeV] = 0.00167089
|
||||
error[MeV] = 1.67088e-05
|
||||
|
||||
----> Histogram Tree is saved in adjoint_sim.root
|
||||
Graphics systems deleted.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -334,7 +334,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 2000
|
||||
User=5.18s Real=5.19s Sys=0s
|
||||
User=1.48s Real=1.48s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -131,7 +131,7 @@ Lorentz Factor XTR photon number
|
||||
8.085e+04 3.149
|
||||
9.283e+04 3.149
|
||||
|
||||
total time for build X-ray TR energy loss tables = 0.06 s
|
||||
total time for build X-ray TR energy loss tables = 0.04 s
|
||||
|
||||
msc: for e+ SubType= 10
|
||||
RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
|
||||
@@ -217,7 +217,7 @@ Lorentz Factor XTR photon number
|
||||
8.085e+04 3.149
|
||||
9.283e+04 3.149
|
||||
|
||||
total time for build X-ray TR energy loss tables = 0.05 s
|
||||
total time for build X-ray TR energy loss tables = 0.04 s
|
||||
|
||||
msc: for proton SubType= 10
|
||||
RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
|
||||
@@ -541,7 +541,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.94s Real=0.94s Sys=0s
|
||||
User=0.28s Real=0.28s Sys=0s
|
||||
================== run summary =====================
|
||||
End of Run TotNbofEvents = 1000
|
||||
Mean energy deposit in absorber = 0.0481175 +-0.0195904 MeV
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -456,7 +456,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 20000
|
||||
User=5.26s Real=5.29s Sys=0s
|
||||
User=1.93s Real=1.93s Sys=0s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -164,7 +164,7 @@ Type of PIXE cross section for e+- Livermore
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=2.98s Real=2.98s Sys=0s
|
||||
User=1.54s Real=1.54s Sys=0s
|
||||
|
||||
======================== run summary =====================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -427,7 +427,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=4.5s Real=4.5s Sys=0s
|
||||
User=2.29s Real=2.29s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -494,7 +494,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=9s Real=9.04s Sys=0s
|
||||
User=3.47s Real=3.5s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -466,7 +466,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=13.58s Real=13.66s Sys=0s
|
||||
User=4.48s Real=4.5s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -535,7 +535,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000000
|
||||
User=10.03s Real=10.06s Sys=0s
|
||||
User=4.89s Real=4.89s Sys=0.01s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -488,7 +488,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.31s Real=0.32s Sys=0s
|
||||
User=0.1s Real=0.1s Sys=0s
|
||||
|
||||
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
|
||||
|
||||
@@ -558,7 +558,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=0.35s Real=0.35s Sys=0s
|
||||
User=0.13s Real=0.13s Sys=0s
|
||||
|
||||
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -268,7 +268,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.72s Real=0.72s Sys=0s
|
||||
User=0.23s Real=0.23s Sys=0s
|
||||
Summary for synchrotron radiation :
|
||||
Number of photons = 64554
|
||||
Emean = 20.24 +/- 0.1449 keV
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -185,7 +185,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=3.94s Real=3.98s Sys=0s
|
||||
User=1.71s Real=1.71s Sys=0s
|
||||
|
||||
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
@@ -246,7 +246,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=3.4s Real=3.42s Sys=0s
|
||||
User=1.58s Real=1.59s Sys=0s
|
||||
|
||||
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
@@ -306,7 +306,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=2.38s Real=2.39s Sys=0s
|
||||
User=1.51s Real=1.51s Sys=0s
|
||||
|
||||
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -436,7 +436,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=3.16s Real=3.18s Sys=0s
|
||||
User=1.35s Real=1.34s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -558,7 +558,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=9.62s Real=9.71s Sys=0s
|
||||
User=3s Real=3.01s Sys=0s
|
||||
|
||||
===== SUMMARY =====
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -499,7 +499,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=3.15s Real=3.15s Sys=0s
|
||||
User=2.04s Real=2.04s Sys=0s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
@@ -944,7 +944,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=3.23s Real=3.24s Sys=0s
|
||||
User=1.99s Real=1.99s Sys=0s
|
||||
|
||||
------------------------------------------------------------
|
||||
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -140,7 +140,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=2.16s Real=2.17s Sys=0s
|
||||
User=1.06s Real=1.08s Sys=0s
|
||||
|
||||
--------- Ranecu engine status ---------
|
||||
Initial seed (index) = 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -433,7 +433,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=2.19s Real=2.19s Sys=0s
|
||||
User=1.08s Real=1.09s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -857,7 +857,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=1.95s Real=1.96s Sys=0s
|
||||
User=1.11s Real=1.11s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -1286,7 +1286,7 @@ Index : 3 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=5.14s Real=5.15s Sys=0s
|
||||
User=2.34s Real=2.34s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -1721,7 +1721,7 @@ Index : 4 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=1.32s Real=1.34s Sys=0s
|
||||
User=0.98s Real=0.98s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
@@ -2157,7 +2157,7 @@ Index : 5 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 50000
|
||||
User=17.71s Real=17.75s Sys=0s
|
||||
User=10.1s Real=10.12s Sys=0s
|
||||
|
||||
======================== run summary ======================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -192,7 +192,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 5
|
||||
User=0s Real=0s Sys=0s
|
||||
User=0s Real=0.01s Sys=0s
|
||||
|
||||
Number of process calls ---> GammaToMuPair : 5... write Root file : testem6_0.root - done
|
||||
... close Root file : testem6_0.root - done
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -507,7 +507,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10000
|
||||
User=14.6s Real=14.65s Sys=0s
|
||||
User=7.53s Real=7.58s Sys=0s
|
||||
|
||||
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
@@ -565,7 +565,7 @@ Index : 1 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=5.25s Real=5.27s Sys=0s
|
||||
User=4.15s Real=4.18s Sys=0s
|
||||
|
||||
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
@@ -966,7 +966,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=2.03s Real=2.05s Sys=0s
|
||||
User=1.82s Real=1.82s Sys=0s
|
||||
|
||||
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
|
||||
|
||||
@@ -1361,7 +1361,7 @@ Index : 3 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0s Real=0.01s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
|
||||
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 kg/m3 )
|
||||
|
||||
@@ -1754,7 +1754,7 @@ Index : 3 used in the geometry : No
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.02s Real=0.02s Sys=0s
|
||||
User=0.01s Real=0.01s Sys=0s
|
||||
|
||||
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
|
||||
|
||||
@@ -2156,7 +2156,7 @@ Index : 4 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=13.83s Real=13.97s Sys=0.08s
|
||||
User=6.32s Real=6.4s Sys=0.07s
|
||||
|
||||
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
|
||||
|
||||
@@ -2564,7 +2564,7 @@ Index : 5 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=1.03s Real=1.03s Sys=0s
|
||||
User=0.85s Real=0.85s Sys=0s
|
||||
|
||||
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -862,7 +862,7 @@ Index : 2 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=0.14s Real=0.13s Sys=0s
|
||||
User=0.12s Real=0.13s Sys=0s
|
||||
RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0159235
|
||||
====================================================
|
||||
Beam Particle: proton
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -490,7 +490,7 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.59s Real=2.6s Sys=0s
|
||||
User=1.31s Real=1.33s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 0
|
||||
=================================================================
|
||||
@@ -600,7 +600,7 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1000
|
||||
User=4.96s Real=5s Sys=0s
|
||||
User=2.11s Real=2.11s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 1
|
||||
=================================================================
|
||||
@@ -1099,7 +1099,7 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=2.46s Real=2.47s Sys=0s
|
||||
User=0.9s Real=0.9s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 2
|
||||
=================================================================
|
||||
@@ -1598,7 +1598,7 @@ Index : 7 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=3.76s Real=3.76s Sys=0s
|
||||
User=1.22s Real=1.22s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started RunID# 3
|
||||
=================================================================
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
*************************************************************
|
||||
|
||||
creating G4RunManagerKernel 0x166aff0
|
||||
creating G4RunManagerKernel 0x19b0340
|
||||
|
||||
The materials defined are :
|
||||
|
||||
@@ -83,15 +83,15 @@ Current application state is PreInit
|
||||
Warning : Geant4 kernel is not Init state : Assuming Init state.
|
||||
physicsList->Construct() start.
|
||||
G4Transportation constructor> set fShortStepOptimisation to false
|
||||
0x18b3e70G4ErrorPhysicsList:: particle process manager e+ = 0x18b6670
|
||||
0x18b3ce0G4ErrorPhysicsList:: particle process manager e- = 0x18b7c60
|
||||
0x18b3a20G4ErrorPhysicsList:: particle process manager gamma = 0x18b7ed0
|
||||
0x18b5520G4ErrorPhysicsList:: particle process manager geantino = 0x18b8120
|
||||
0x18b4080G4ErrorPhysicsList:: particle process manager mu+ = 0x18b8370
|
||||
0x18b4520G4ErrorPhysicsList:: particle process manager mu- = 0x18b85c0
|
||||
0x18b49c0G4ErrorPhysicsList:: particle process manager pi+ = 0x18b8810
|
||||
0x18b4e40G4ErrorPhysicsList:: particle process manager pi- = 0x18b8a60
|
||||
0x18b52c0G4ErrorPhysicsList:: particle process manager proton = 0x18b8cb0
|
||||
0x1bf90f0G4ErrorPhysicsList:: particle process manager e+ = 0x1bfb8f0
|
||||
0x1bf8f60G4ErrorPhysicsList:: particle process manager e- = 0x1bfcee0
|
||||
0x1bf8ca0G4ErrorPhysicsList:: particle process manager gamma = 0x1bfd150
|
||||
0x1bfa7a0G4ErrorPhysicsList:: particle process manager geantino = 0x1bfd3a0
|
||||
0x1bf9300G4ErrorPhysicsList:: particle process manager mu+ = 0x1bfd5f0
|
||||
0x1bf97a0G4ErrorPhysicsList:: particle process manager mu- = 0x1bfd840
|
||||
0x1bf9c40G4ErrorPhysicsList:: particle process manager pi+ = 0x1bfda90
|
||||
0x1bfa0c0G4ErrorPhysicsList:: particle process manager pi- = 0x1bfdce0
|
||||
0x1bfa540G4ErrorPhysicsList:: particle process manager proton = 0x1bfdf30
|
||||
physicsList->CheckParticleList() start.
|
||||
physicsList->setCut() start.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: ExG4DetectorConstruction01Messenger.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: ExG4DetectorConstruction01Messenger.hh 85714 2014-11-04 14:30:40Z ihrivnac $
|
||||
//
|
||||
/// \file ExG4DetectorConstruction01Messenger.hh
|
||||
/// \brief Definition of the ExG4DetectorConstruction01Messenger class
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: ExG4DetectorConstruction02Messenger.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: ExG4DetectorConstruction02Messenger.hh 85714 2014-11-04 14:30:40Z ihrivnac $
|
||||
//
|
||||
/// \file ExG4DetectorConstruction02Messenger.hh
|
||||
/// \brief Definition of the ExG4DetectorConstruction02Messenger class
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: ExG4DetectorConstruction01Messenger.cc 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: ExG4DetectorConstruction01Messenger.cc 85714 2014-11-04 14:30:40Z ihrivnac $
|
||||
//
|
||||
/// \file ExG4DetectorConstruction01Messenger.cc
|
||||
/// \brief Implementation of the ExG4DetectorConstruction01Messenger class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: EDecayType.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: EDecayType.hh 66586 2012-12-21 10:48:39Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/include/EDecayType.hh
|
||||
/// \brief Definition of the EDecayType enumeration
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4Pythia6Decayer.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: G4Pythia6Decayer.hh 98497 2016-07-20 15:39:38Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh
|
||||
/// \brief Definition of the G4Pythia6Decayer class
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4Pythia6DecayerMessenger.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: G4Pythia6DecayerMessenger.hh 66586 2012-12-21 10:48:39Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh
|
||||
/// \brief Definition of the G4Pythia6DecayerMessenger class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: P6DExtDecayerPhysics.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: P6DExtDecayerPhysics.hh 66586 2012-12-21 10:48:39Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh
|
||||
/// \brief Definition of the P6DExtDecayerPhysics class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: Pythia6.hh 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: Pythia6.hh 66586 2012-12-21 10:48:39Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/include/Pythia6.hh
|
||||
/// \brief Definition of the Pythia6 class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4Pythia6Decayer.cc 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: G4Pythia6Decayer.cc 98498 2016-07-20 15:39:59Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc
|
||||
/// \brief Implementation of the G4Pythia6Decayer class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4Pythia6DecayerMessenger.cc 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: G4Pythia6DecayerMessenger.cc 66586 2012-12-21 10:48:39Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc
|
||||
/// \brief Implementation of the G4Pythia6DecayerMessenger class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: P6DExtDecayerPhysics.cc 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: P6DExtDecayerPhysics.cc 100121 2016-10-14 13:21:59Z gunter $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc
|
||||
/// \brief Implementation of the P6DExtDecayerPhysics class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: Pythia6.cc 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: Pythia6.cc 98526 2016-07-21 11:15:24Z ihrivnac $
|
||||
//
|
||||
/// \file eventgenerator/pythia/decayer6/src/Pythia6.cc
|
||||
/// \brief Implementation of the Pythia6 class
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: pythia6_common_address.c 100687 2016-10-31 11:20:33Z gcosmo $
|
||||
// $Id: pythia6_common_address.c 98526 2016-07-21 11:15:24Z ihrivnac $
|
||||
//
|
||||
// According to pythia6_common_address.c provided in Root
|
||||
// Pythia6 distribution:
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -91,7 +91,7 @@ Index : 0 used in the geometry : Yes
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100000
|
||||
User=1.55s Real=1.56s Sys=0s
|
||||
User=0.35s Real=0.36s Sys=0s
|
||||
G4 kernel has come to Quit state.
|
||||
================== Deleting memory pools ===================
|
||||
Number of memory pools allocated: 9 of which, static: 0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -19,36 +19,6 @@ XLatticeManager3::registerLattice: Registering Lattice.Total number of lattices:
|
||||
G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used
|
||||
### WARNING: G4EmProcessOptions class is obsolete and will be removed in the next public release
|
||||
Please, try to use G4EmParameters class and/or UI interface to EM parameters
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
ExExChProcessChanneling::Constructor:Geometry surface tolerance is: 1e-09 mm
|
||||
|
||||
@@ -59,7 +29,7 @@ PhysicsList::AddChanneling: Channeling process added...
|
||||
### === Deexcitation model UAtomDeexcitation is activated for 1 region:
|
||||
DefaultRegionForTheWorld 1 1 0
|
||||
### === Auger cascade flag: 1
|
||||
### === Ignore cuts flag: 1
|
||||
### === Ignore cuts flag: 0
|
||||
|
||||
compt: for gamma SubType= 13 BuildTable= 1
|
||||
Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
|
||||
@@ -710,6 +680,45 @@ msc: for pi- SubType= 10
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 1
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 1
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 1
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
... open Root analysis file : ExExCh.root - done
|
||||
--> Event 0 starts.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -19,7 +19,7 @@ G4PhysListFactory::GetReferencePhysList <FTFP_BERT> EMoption= 0
|
||||
|
||||
/monopole/setup
|
||||
Monopole is created: m(GeV)= 100 Qel= 0 Qmag= 68.518
|
||||
/control/execute /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/exoticphysics/monopole/monopole.in
|
||||
/control/execute /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/exoticphysics/monopole/monopole.in
|
||||
/control/verbose 1
|
||||
/run/verbose 0
|
||||
/testex/run/verbose 1
|
||||
@@ -38,16 +38,6 @@ Monopole is created: m(GeV)= 100 Qel= 0 Qmag= 68.518
|
||||
---> The Absorber is 10 cm of G4_Si
|
||||
|
||||
---------------------------------------------------------
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -758,6 +748,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
### Run 0 starts.
|
||||
### Run 0 start.
|
||||
### Histo::Save: Opended file <monopole.root> for 5 histograms
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
/run/verbose 1
|
||||
/control/verbose 2
|
||||
/event/verbose 1
|
||||
/tracking/verbose 1
|
||||
#/tracking/verbose 1
|
||||
/ucnboundary/verbose 1
|
||||
#
|
||||
/run/beamOn 1
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -15,6 +15,9 @@ track of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
February 14th, 2016 Gunter Folger (ExUCN-V10-02-03)
|
||||
- ExUCN.in: reduce verbosity.
|
||||
|
||||
November 2, 2016 L.Garnier (ExUCN-V10-02-02)
|
||||
- remove icons.mac. Automatically include since interfaces-V10-02-07
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -204,16 +204,6 @@
|
||||
F01FieldSetup::CreateStepperAndChordFinder() called to reset Stepper.
|
||||
G4ClassicalRK4 (default) is chosen
|
||||
The minimal step is equal to 1 mm
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -949,6 +939,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -1037,7 +1040,7 @@ Step# X Y Z Direction x dir y dir
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0s Real=0.01s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -202,16 +202,6 @@
|
||||
|
||||
G4ClassicalRK4 (default) is called
|
||||
The minimal step is equal to 0.01 mm
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -946,6 +936,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -5088,7 +5091,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.09s Real=0.12s Sys=0.02s
|
||||
User=0.03s Real=0.03s Sys=0.01s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -209,16 +209,6 @@ zModule = 21790 mm
|
||||
21790 mm
|
||||
G4ClassicalRK4 (default) is called
|
||||
The minimal step is equal to 0.25 mm
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -953,6 +943,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -987,7 +990,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0s Real=0s Sys=0s
|
||||
User=0.01s Real=0.01s Sys=0s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
@@ -1009,7 +1012,7 @@ WARNING: Scene "none" not found.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.03s Real=0.03s Sys=0s
|
||||
User=0.01s Real=0.01s Sys=0s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Set field value to (0,0,1000) Gauss
|
||||
|
||||
@@ -1031,7 +1034,7 @@ WARNING: Scene "none" not found.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0s Real=0s Sys=0s
|
||||
User=0.01s Real=0.01s Sys=0s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -231,16 +231,6 @@ G4NistMaterialBuilder::FindOrBuildMaterial G4_W
|
||||
G4ClassicalRK4 (default) is called
|
||||
Accuracy Parameters: MinStep=0.01 DeltaChord=3 DeltaOneStep=0.01
|
||||
DeltaIntersection=0.1 EpsMin=2.5e-07 EpsMax=0.05
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
|
||||
### Birks coeffitients used in run time
|
||||
F04PhysicsList::SetCuts:CutLength : 1 mm
|
||||
@@ -969,6 +959,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -2301,7 +2301,7 @@ Terminate current event processing.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.05s Real=0.06s Sys=0s
|
||||
User=0.02s Real=0.02s Sys=0s
|
||||
#
|
||||
Graphics systems deleted.
|
||||
Visualization Manager deleting...
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
argc 4
|
||||
Geometry data file: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat
|
||||
Geometry data file: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat
|
||||
evaluating -m
|
||||
|
||||
############################################
|
||||
@@ -7,17 +7,17 @@ evaluating -m
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
*************************************************************
|
||||
|
||||
Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
|
||||
Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
|
||||
<<< Geant4 Physics List simulation engine: FTFP_BERT 2.0
|
||||
|
||||
Instantiated unit rotation matrix irot=0
|
||||
Reading the call List file /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
|
||||
Reading the call List file /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
|
||||
G4ggclos: setting top-level VolTableEntry
|
||||
Dump of VTD - 26 entries:
|
||||
Instantiated 26 volume table entries
|
||||
@@ -62,16 +62,6 @@ Top-level G3toG4 logical volume HALL G4VisAttributes: invisible, daughters visib
|
||||
line segments per circle: not forced.
|
||||
time range: (-1.79769e+308,1.79769e+308)
|
||||
G4AttValue pointer is zero, G4AttDef pointer is zero
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -804,6 +794,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume
|
||||
This region is in the mass world.
|
||||
@@ -863,7 +866,7 @@ WARNING: Scene "none" not found.
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0s Real=0.01s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <HALL> world volume
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -91,7 +91,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 1
|
||||
User=0.01s Real=0s Sys=0s
|
||||
User=0s Real=0s Sys=0s
|
||||
G4 kernel has come to Quit state.
|
||||
UserDetectorConstruction deleted.
|
||||
UserPhysicsList deleted.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#### Starting: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment ####
|
||||
#### Starting: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment ####
|
||||
MT RNG Seed: 62737819
|
||||
|
||||
############################################
|
||||
@@ -6,7 +6,7 @@ MT RNG Seed: 62737819
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -336,28 +336,18 @@ Checking overlaps for volume NeutronSource ... OK!
|
||||
Checking overlaps for volume Poly ... OK!
|
||||
Checking overlaps for volume Detector_Shell ... OK!
|
||||
Checking overlaps for volume Detector_BF3_Core ... OK!
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
Visualization Manager instantiating with verbosity "warnings (3)"...
|
||||
Visualization Manager initialising...
|
||||
Registering graphics systems...
|
||||
@@ -703,22 +693,22 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
|
||||
180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
|
||||
===== EM models for the G4Region DefaultRegionForTheWorld ======
|
||||
eCoulombScattering : Emin= 0 eV Emax= 100 TeV
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
|
||||
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
|
||||
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic
|
||||
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
|
||||
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
|
||||
Fission fragment production is now activated in HP package for Z = 92, A = 235
|
||||
As currently modeled this option precludes production of delayed neutrons from fission fragments.
|
||||
Fission fragment production is now activated in HP package for Z = 92, A = 238
|
||||
@@ -1126,6 +1116,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
Shooting event 1
|
||||
Emission Location: r: (3.9412,0,444.628)
|
||||
Emission Direction: r: (-0.720729,0.12139,-0.682506)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -48,16 +48,6 @@ G4PhysListFactory::GetReferencePhysList <FTFP_BERT> EMoption= 0
|
||||
|
||||
|
||||
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
|
||||
FTFP_BERT : new threshold between BERT and FTFP is over the interval
|
||||
for pions : 3 to 12 GeV
|
||||
@@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
========= Table of registered couples ==============================
|
||||
|
||||
@@ -772,7 +775,7 @@ EventAction: Event # 0 started
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 10
|
||||
User=0.09s Real=0.09s Sys=0s
|
||||
User=0.02s Real=0.01s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started
|
||||
### Fill Cross Sections for proton off Al
|
||||
@@ -1584,6 +1587,6 @@ HistoManager: End of run actions are started
|
||||
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.039 MB
|
||||
Dynamic pools deleted: 11 / Total memory freed: 0.037 MB
|
||||
============================================================
|
||||
RunManagerKernel is deleted. Good bye :)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
############################################
|
||||
|
||||
*************************************************************
|
||||
Geant4 version Name: geant4-10-03 (9-December-2016)
|
||||
Geant4 version Name: geant4-10-03-patch-01 (24-February-2017)
|
||||
Copyright : Geant4 Collaboration
|
||||
Reference : NIM A 506 (2003), 250-303
|
||||
WWW : http://cern.ch/geant4
|
||||
@@ -51,16 +51,6 @@ userDetector->Construct() start.
|
||||
|
||||
World is registered to the default region.
|
||||
physicsList->Construct() start.
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.1
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1e+07
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
|
||||
physicsList->CheckParticleList() start.
|
||||
physicsList->setCut() start.
|
||||
@@ -740,6 +730,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
|
||||
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
|
||||
|
||||
================================================================
|
||||
=======================================================================
|
||||
====== Pre-compound/De-excitation Physics Parameters ========
|
||||
=======================================================================
|
||||
Type of pre-compound inverse x-section 3
|
||||
Type of de-excitation inverse x-section 3
|
||||
Min excitation energy (keV) 0.01
|
||||
Level density (1/MeV) 0.1
|
||||
Time limit for long lived isomeres (ns) 1000
|
||||
Use new data files 1
|
||||
Use complete data files 0
|
||||
Correlated gamma emission flag 0
|
||||
=======================================================================
|
||||
Number of de-excitation channels 8
|
||||
|
||||
Region <DefaultRegionForTheWorld> -- -- appears in <World> world volume
|
||||
This region is in the mass world.
|
||||
@@ -789,7 +792,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
|
||||
100.00 10k 1 197 200 0.00 Check
|
||||
### Run 0 starts.
|
||||
### Run 0 start
|
||||
RunAction::BeginOfRunAction: User=1.17s Real=1.19s Sys=0.01s
|
||||
RunAction::BeginOfRunAction: User=1.04s Real=1.08s Sys=0.02s
|
||||
NuclearData: User=0s Real=0s Sys=0s
|
||||
EventAction: Event # 0 started
|
||||
EventAction: Event # 10 started
|
||||
@@ -804,33 +807,33 @@ EventAction: Event # 90 started
|
||||
Run terminated.
|
||||
Run Summary
|
||||
Number of events processed : 100
|
||||
User=0.28s Real=0.3s Sys=0.01s
|
||||
User=0.11s Real=0.1s Sys=0s
|
||||
RunAction: End of run actions are started
|
||||
HistoManager: End of run actions are started
|
||||
========================================================
|
||||
Beam particle proton
|
||||
Beam Energy(MeV) 3000
|
||||
Number of events 100
|
||||
Average energy deposit (MeV) 69.25 RMS(MeV) 57.7
|
||||
Average number of steps 219.8
|
||||
Average number of gamma 2.16
|
||||
Average number of e- 3.93
|
||||
Average number of e+ 0.1
|
||||
Average number of neutrons 1.3
|
||||
Average number of protons 1.14
|
||||
Average energy deposit (MeV) 67.12 RMS(MeV) 62.35
|
||||
Average number of steps 206.6
|
||||
Average number of gamma 1.57
|
||||
Average number of e- 3.69
|
||||
Average number of e+ 0.04
|
||||
Average number of neutrons 1.15
|
||||
Average number of protons 1.18
|
||||
Average number of antiprotons 0
|
||||
Average number of pi+ & pi- 0.36
|
||||
Average number of pi0 0.19
|
||||
Average number of pi+ & pi- 0.21
|
||||
Average number of pi0 0.12
|
||||
Average number of kaons 0
|
||||
Average number of muons 0.02
|
||||
Average number of deuterons+tritons 0.27
|
||||
Average number of He3+alpha 0.29
|
||||
Average number of ions 0.46
|
||||
Average number of forward neutrons 0.15
|
||||
Average number of reflected neutrons 1.02
|
||||
Average number of leaked neutrons 0.04
|
||||
Average number of proton leak 0.54
|
||||
Average number of pion leak 0.3
|
||||
Average number of muons 0.01
|
||||
Average number of deuterons+tritons 0.24
|
||||
Average number of He3+alpha 0.23
|
||||
Average number of ions 0.48
|
||||
Average number of forward neutrons 0.1
|
||||
Average number of reflected neutrons 0.96
|
||||
Average number of leaked neutrons 0.02
|
||||
Average number of proton leak 0.52
|
||||
Average number of pion leak 0.18
|
||||
========================================================
|
||||
|
||||
#
|
||||
@@ -843,22 +846,22 @@ RunManager is deleting RunManagerKernel.
|
||||
G4SDManager deleted.
|
||||
EventManager deleted.
|
||||
Units table cleared.
|
||||
Total navigation history collections cleaned: 14
|
||||
Total navigation history collections cleaned: 15
|
||||
================== Deleting memory pools ===================
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0192 MB
|
||||
Pool ID '20G4NavigationLevelRep', size : 0.0211 MB
|
||||
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.00481 MB
|
||||
Pool ID '17G4DynamicParticle', size : 0.00577 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.00961 MB
|
||||
Pool ID '7G4Track', size : 0.0115 MB
|
||||
Pool ID '18G4TouchableHistory', size : 0.00192 MB
|
||||
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
|
||||
Pool ID '10G4Fragment', size : 0.00192 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.00288 MB
|
||||
Pool ID '17G4ReactionProduct', size : 0.00192 MB
|
||||
Number of memory pools allocated: 12 of which, static: 0
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.046 MB
|
||||
Dynamic pools deleted: 12 / Total memory freed: 0.05 MB
|
||||
============================================================
|
||||
G4Allocator objects are deleted.
|
||||
UImanager deleted.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user