Import Geant4 9.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:46:55 +02:00
parent 89a9605df1
commit b1eb5424d2
10957 changed files with 888481 additions and 160139 deletions
@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
set(name LXe)
project(${name})
find_package(Geant4 REQUIRED)
include(${Geant4_USE_FILE})
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include ${Geant4_INCLUDE_DIR})
file(GLOB sources ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cc)
add_executable(${name} EXCLUDE_FROM_ALL ${name}.cc ${sources})
target_link_libraries(${name} ${Geant4_LIBRARIES})
+1 -1
View File
@@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.2 2004/06/01 07:05:03 gcosmo Exp $
# $Id: GNUmakefile,v 1.2 2004-06-01 07:05:03 gcosmo Exp $
# --------------------------------------------------------------
# GNUmakefile for LXe example.
# --------------------------------------------------------------
+4 -1
View File
@@ -1,4 +1,4 @@
$Id: History,v 1.15 2010/10/25 15:16:41 gunter Exp $
$Id: History,v 1.15 2010-10-25 15:16:41 gunter Exp $
-------------------------------------------------------------------
=========================================================
@@ -15,6 +15,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
08 November 2011 Peter Gumplinger (LXe-V09-04-00)
- exercise the optics_engine in LXe.in
03 June 2010 Peter Gumplinger (LXe-V09-03-01)
- in LXeEventAction.cc fix initialisation of G4ThreeVector required by
CLHEP 2.1.x.
+10 -2
View File
@@ -4,10 +4,18 @@
#** a single event with the default configuration
#**
#**************
/run/verbose 1
#/LXe/detector/MainScintYield 100
/LXe/eventVerbose 1
#/tracking/verbose 1
/tracking/verbose 1
#/optics_engine/selectOpProcess Scintillation
#/optics_engine/setOpProcessUse false
#/optics_engine/setOpProcessVerbose 1
#/optics_engine/setTrackSecondariesFirst false
/run/initialize
#/optics_engine/selectOpProcess OpBoundary
#/optics_engine/setOpProcessVerbose 1
#/optics_engine/setOpProcessVerbose 0
/optics_engine/selectOpProcess Scintillation
#/optics_engine/setOpProcessVerbose 0
/optics_engine/setTrackSecondariesFirst false
/run/beamOn 3
File diff suppressed because it is too large Load Diff
@@ -30,6 +30,7 @@
#include "LXeMuonPhysics.hh"
#include "G4OpticalPhysics.hh"
#include "G4OpticalProcessIndex.hh"
LXePhysicsList::LXePhysicsList(): G4VModularPhysicsList()
{
@@ -57,7 +58,8 @@ LXePhysicsList::LXePhysicsList(): G4VModularPhysicsList()
opticalPhysics->SetMaxNumPhotonsPerStep(100);
opticalPhysics->SetMaxBetaChangePerStep(10.0);
opticalPhysics->SetTrackSecondariesFirst(true);
opticalPhysics->SetTrackSecondariesFirst(kCerenkov,true);
opticalPhysics->SetTrackSecondariesFirst(kScintillation,true);
}
@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
set(name wls)
project(${name})
find_package(Geant4 REQUIRED)
include(${Geant4_USE_FILE})
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include ${Geant4_INCLUDE_DIR})
file(GLOB sources ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cc)
add_executable(${name} EXCLUDE_FROM_ALL ${name}.cc ${sources})
target_link_libraries(${name} ${Geant4_LIBRARIES})
+1 -1
View File
@@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.2 2010/01/11 16:47:50 gcosmo Exp $
# $Id: GNUmakefile,v 1.2 2010-01-11 16:47:50 gcosmo Exp $
# --------------------------------------------------------------
# GNUmakefile for WLS example.
# --------------------------------------------------------------
+19 -1
View File
@@ -1,4 +1,4 @@
$Id: History,v 1.9 2010/11/21 00:50:09 gum Exp $
$Id: History,v 1.9 2010-11-21 00:50:09 gum Exp $
-------------------------------------------------------------------
=========================================================
@@ -13,8 +13,26 @@ track of all tags.
----------------------------------------------------------
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
Nov 18th, 2011 Gunter Folger (WLS-V09-04-03)
-----------------------------------------------
migrate to new G4Exception
Oct 14th, 2011 Peter Gumpinger (WLS-V09-04-02)
-----------------------------------------------
modify to work with materials-V09-04-15
Oct 10th, 2011 Gunter Folger (WLS-V09-04-01)
-----------------------------------------------
Fix compilation gcc46 compilation warning in WLSMaterials.cc and
WLSPrimaryGeneratorAction.cc
Feb 3rd, 2011 Gunter Folger (WLS-V09-04-00)
-----------------------------------------------
add missing #include <ctime> in src/WLSRunAction.cc (Windows)
Nov 20th, 2010 Peter Gumplinger (WLS-V09-03-04)
-----------------------------------------------
do not make a new Sensitive Detector at every UpdateGeometry()
@@ -88,7 +88,7 @@ void WLSMaterials::CreateMaterials()
// Vacuum
//--------------------------------------------------
G4Material* mat = nistMan->FindOrBuildMaterial("G4_Galactic");
nistMan->FindOrBuildMaterial("G4_Galactic");
//--------------------------------------------------
// Air
@@ -176,7 +176,7 @@ void WLSMaterials::CreateMaterials()
// Aluminium
//--------------------------------------------------
mat = nistMan->FindOrBuildMaterial("G4_Al");
nistMan->FindOrBuildMaterial("G4_Al");
//--------------------------------------------------
// TiO2
@@ -208,8 +208,10 @@ void WLSPhysicsList::RemoveFromPhysicsList(const G4String& name)
}
}
if (!success) {
std::ostringstream message;
message << "PhysicsList::RemoveFromEMPhysicsList "<< name << "not found"; G4Exception(message.str().c_str());
G4ExceptionDescription message;
message << "PhysicsList::RemoveFromEMPhysicsList "<< name << "not found";
G4Exception("example WLSPhysicsList::RemoveFromPhysicsList()",
"ExamWLSPhysicsList01",FatalException,message);
}
}
@@ -107,11 +107,9 @@ void WLSPrimaryGeneratorAction::BuildEmissionSpectrum()
aMaterialPropertiesTable->GetProperty("WLSCOMPONENT");
if (theWLSVector) {
theWLSVector->ResetIterator();
++(*theWLSVector);
G4double currentIN = theWLSVector->GetProperty();
G4double currentIN = (*theWLSVector)[0];
if (currentIN >= 0.0) {
G4double currentPM = theWLSVector->GetPhotonEnergy();
G4double currentPM = theWLSVector->Energy(0);
G4double currentCII = 0.0;
aPhysicsOrderedFreeVector->
InsertValues(currentPM , currentCII);
@@ -119,9 +117,12 @@ void WLSPrimaryGeneratorAction::BuildEmissionSpectrum()
G4double prevCII = currentCII;
G4double prevIN = currentIN;
while(++(*theWLSVector)) {
currentPM = theWLSVector->GetPhotonEnergy();
currentIN=theWLSVector->GetProperty();
for (size_t i = 1;
i < theWLSVector->GetVectorLength();
i++)
{
currentPM = theWLSVector->Energy(i);
currentIN = (*theWLSVector)[i];
currentCII = 0.5 * (prevIN + currentIN);
currentCII = prevCII + (currentPM - prevPM) * currentCII;
aPhysicsOrderedFreeVector->
@@ -144,6 +145,8 @@ void WLSPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
BuildEmissionSpectrum();
}
#ifdef use_sampledEnergy
const G4MaterialTable* theMaterialTable = G4Material::GetMaterialTable();
G4double sampledEnergy = 3*eV;
@@ -170,6 +173,7 @@ void WLSPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
}
//particleGun->SetParticleEnergy(sampledEnergy);
#endif
if(particleGun->GetParticleDefinition()->GetParticleName()=="opticalphoton"){
SetOptPhotonPolar();
@@ -37,6 +37,8 @@
#include "WLSDetectorConstruction.hh"
#include "WLSSteppingAction.hh"
#include <ctime>
WLSRunAction::WLSRunAction()
: saveRndm(0), autoSeed(false)
{
+245 -177
View File
@@ -4,15 +4,16 @@
############################################
*************************************************************
Geant4 version Name: geant4-09-04-ref-00 (17-December-2010)
Geant4 version Name: geant4-09-05-ref-00 (2-December-2011)
Copyright : Geant4 Collaboration
Reference : NIM A 506 (2003), 250-303
WWW : http://cern.ch/geant4
*************************************************************
G4PhysListFactory::GetReferencePhysList <QGSP_BERT_EMV> EMoption= 1
<<< Geant4 Physics List simulation engine: QGSP_BERT 3.4
<<< Geant4 Physics List engine packaging library: PACK 5.5
<<< Geant4 Physics List simulation engine: QGSP_BERT_EMV 1.1
<<< Reference Physics List QGSP_BERT_EMV is built
RegisterPhysics: G4EmStandard_opt1
RegisterPhysics: G4GammaLeptoNuclearPhys
@@ -58,11 +59,16 @@ Registered filter factories:
originVolumeFilter
attributeFilter
Some /vis commands (optionally) take a string to specify colour.
Available colours:
black, blue, cyan, gray, green, grey, magenta, red, white, yellow
### NIST DataBase for Materials is used
G4NistMaterialBuilder::FindOrBuildMaterial G4_Galactic
G4NistMaterialBuilder: BuildMaterial #289
G4NistMaterialBuilder: BuildMaterial #286
New material nComponents= 1
G4NistElementBuilder: Build Element <H> Z= 1 A= 1.00794 with natural isotope composition
G4Material: Mean excitation energy is changed for G4_Galactic Iold= 19.2eV; Inew= 21.8 eV;
G4NistMaterialBuilder::FindOrBuildMaterial G4_AIR
G4NistMaterialBuilder: BuildMaterial #103
New material nComponents= 4
@@ -70,36 +76,43 @@ G4NistElementBuilder: Build Element <C> Z= 6 A= 12.0107 with natural isotope
G4NistElementBuilder: Build Element <N> Z= 7 A= 14.0068 with natural isotope composition
G4NistElementBuilder: Build Element <O> Z= 8 A= 15.9994 with natural isotope composition
G4NistElementBuilder: Build Element <Ar> Z= 18 A= 39.9477 with natural isotope composition
New material PMMA is prepeared; nMaterials= 315 nComponents= 843 nCurrent= 3
### NIST DataBase for Elements is used
G4NistMaterialBuilder: BuildMaterial PMMA
G4NistMaterialBuilder: BuildMaterial #314
G4Material: Mean excitation energy is changed for G4_AIR Iold= 85.6689eV; Inew= 85.7 eV;
G4NistMaterialBuilder::FindOrBuildMaterial PMMA
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <PMMA> is not found out
New material PMMA is prepeared; nMaterials= 314 nComponents= 806 nCurrent= 3
G4NistMaterialBuilder: BuildMaterial #313
New material nComponents= 3
New material Pethylene is prepeared; nMaterials= 316 nComponents= 846 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial Pethylene
G4NistMaterialBuilder::FindOrBuildMaterial Pethylene
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <Pethylene> is not found out
New material Pethylene is prepeared; nMaterials= 315 nComponents= 809 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial #314
New material nComponents= 2
G4NistMaterialBuilder::FindOrBuildMaterial FPethylene
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <FPethylene> is not found out
New material FPethylene is prepeared; nMaterials= 316 nComponents= 811 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial #315
New material nComponents= 2
New material FPethylene is prepeared; nMaterials= 317 nComponents= 848 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial FPethylene
G4NistMaterialBuilder::FindOrBuildMaterial Polystyrene
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <Polystyrene> is not found out
New material Polystyrene is prepeared; nMaterials= 317 nComponents= 813 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial #316
New material nComponents= 2
New material Polystyrene is prepeared; nMaterials= 318 nComponents= 850 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial Polystyrene
G4NistMaterialBuilder::FindOrBuildMaterial Silicone
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <Silicone> is not found out
New material Silicone is prepeared; nMaterials= 318 nComponents= 815 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial #317
New material nComponents= 2
New material Silicone is prepeared; nMaterials= 319 nComponents= 852 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial Silicone
G4NistMaterialBuilder: BuildMaterial #318
New material nComponents= 2
G4NistMaterialBuilder::FindOrBuildMaterial G4_Al
G4NistMaterialBuilder: BuildMaterial #12
New material nComponents= 1
G4NistElementBuilder: Build Element <Al> Z= 13 A= 26.9815 with natural isotope composition
New material TiO2 is prepeared; nMaterials= 320 nComponents= 854 nCurrent= 2
G4NistElementBuilder: Build Element <Ti> Z= 22 A= 47.8667 with natural isotope composition
G4NistMaterialBuilder: BuildMaterial TiO2
G4NistMaterialBuilder: BuildMaterial #319
G4Material: Mean excitation energy is changed for G4_Al Iold= 166eV; Inew= 166 eV;
G4NistMaterialBuilder::FindOrBuildMaterial TiO2
G4NistMaterialBuilder::FindOrBuildMaterial WARNING: material <TiO2> is not found out
New material TiO2 is prepeared; nMaterials= 319 nComponents= 817 nCurrent= 2
G4NistMaterialBuilder: BuildMaterial #318
New material nComponents= 2
G4NistElementBuilder: Build Element <Ti> Z= 22 A= 47.8667 with natural isotope composition
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
WLSExtraPhysics:: Add Extra Physics Processes
WLSOpticalPhysics:: Add Optical Physics Processes
@@ -109,370 +122,425 @@ Required change in UserPhysicsList:
change: pmanager->AddContinuousProcess(theCerenkovProcess);
to: pmanager->AddProcess(theCerenkovProcess);
pmanager->SetProcessOrdering(theCerenkovProcess,idxPostStep);
WLSPhysicsList::SetCuts:CutLength : 1 mm
phot: for gamma, applyCuts: 1 SubType= 12
===== EM models for the G4Region DefaultRegionForTheWorld ======
PhotoElectric : Emin= 0 eV Emax= 10 TeV
PhotoElectric : Emin= 0 eV Emax= 10 TeV FluoActive
compt: for gamma, applyCuts: 1 SubType= 13
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
Klein-Nishina : Emin= 0 eV Emax= 10 TeV
Klein-Nishina : Emin= 0 eV Emax= 10 TeV
conv: for gamma, applyCuts: 1 SubType= 14
Lambda tables from 1.022 MeV to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 10 TeV
BetheHeitler : Emin= 0 eV Emax= 10 TeV
msc: for e- SubType= 10
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
UrbanMsc93 : Emin= 0 eV Emax= 10 TeV
UrbanMsc95 : Emin= 0 eV Emax= 10 TeV
eIoni: for e- SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
MollerBhabha : Emin= 0 eV Emax= 10 TeV
MollerBhabha : Emin= 0 eV Emax= 10 TeV
eBrem: for e- SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
LPM flag: 1 for E > 1 GeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
eBrem : Emin= 0 eV Emax= 1 GeV AngularGenUrban
eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGenUrban
eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGenUrban
eIoni: for e+ SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
MollerBhabha : Emin= 0 eV Emax= 10 TeV
MollerBhabha : Emin= 0 eV Emax= 10 TeV
eBrem: for e+ SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
LPM flag: 1 for E > 1 GeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
eBrem : Emin= 0 eV Emax= 1 GeV AngularGenUrban
eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGenUrban
eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGenUrban
annihil: for e+, applyCuts: 1 SubType= 5
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
eplus2gg : Emin= 0 eV Emax= 10 TeV
eplus2gg : Emin= 0 eV Emax= 10 TeV
msc: for proton SubType= 10
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
hIoni: for proton SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
Bragg : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
Bragg : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
hBrems: for proton SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hBrem : Emin= 0 eV Emax= 10 TeV
hBrem : Emin= 0 eV Emax= 10 TeV
hPairProd: for proton SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hPairProd : Emin= 0 eV Emax= 10 TeV
hPairProd : Emin= 0 eV Emax= 10 TeV
msc: for GenericIon SubType= 10
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
ionIoni: for GenericIon SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 0.1, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
BraggIon : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
BraggIon : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
hIoni: for anti_proton SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
ICRU73QO : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
ICRU73QO : Emin= 0 eV Emax= 2 MeV
BetheBloch : Emin= 2 MeV Emax= 10 TeV
msc: for kaon+ SubType= 10
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
hIoni: for kaon+ SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
Bragg : Emin= 0 eV Emax= 1.05231 MeV
BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV
Bragg : Emin= 0 eV Emax= 1.05231 MeV
BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV
hBrems: for kaon+ SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hBrem : Emin= 0 eV Emax= 10 TeV
hBrem : Emin= 0 eV Emax= 10 TeV
hPairProd: for kaon+ SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hPairProd : Emin= 0 eV Emax= 10 TeV
hPairProd : Emin= 0 eV Emax= 10 TeV
hIoni: for kaon- SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV
ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV
hBrems: for kaon- SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hBrem : Emin= 0 eV Emax= 10 TeV
hBrem : Emin= 0 eV Emax= 10 TeV
hPairProd: for kaon- SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hPairProd : Emin= 0 eV Emax= 10 TeV
hPairProd : Emin= 0 eV Emax= 10 TeV
muMsc: for mu+ SubType= 10
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 0
RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
WentzelVIUni : Emin= 0 eV Emax= 10 TeV
WentzelVIUni : Emin= 0 eV Emax= 10 TeV
muIoni: for mu+ SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
Bragg : Emin= 0 eV Emax= 200 keV
BetheBloch : Emin= 200 keV Emax= 1 GeV
MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
Bragg : Emin= 0 eV Emax= 200 keV
BetheBloch : Emin= 200 keV Emax= 1 GeV
MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
muBrems: for mu+ SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
MuBrem : Emin= 0 eV Emax= 10 TeV
MuBrem : Emin= 0 eV Emax= 10 TeV
muPairProd: for mu+ SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
muPairProd : Emin= 0 eV Emax= 10 TeV
muPairProd : Emin= 0 eV Emax= 10 TeV
CoulombScat: for mu+, applyCuts: 1 SubType= 1
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
0 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
eCoulombScattering : Emin= 0 eV Emax= 10 TeV
eCoulombScattering : Emin= 0 eV Emax= 10 TeV
muIoni: for mu- SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
ICRU73QO : Emin= 0 eV Emax= 200 keV
BetheBloch : Emin= 200 keV Emax= 1 GeV
MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
ICRU73QO : Emin= 0 eV Emax= 200 keV
BetheBloch : Emin= 200 keV Emax= 1 GeV
MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
muBrems: for mu- SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
MuBrem : Emin= 0 eV Emax= 10 TeV
MuBrem : Emin= 0 eV Emax= 10 TeV
muPairProd: for mu- SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
muPairProd : Emin= 0 eV Emax= 10 TeV
muPairProd : Emin= 0 eV Emax= 10 TeV
CoulombScat: for mu-, applyCuts: 1 SubType= 1
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
0 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
180 < Theta(degree) < 180; pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
eCoulombScattering : Emin= 0 eV Emax= 10 TeV
eCoulombScattering : Emin= 0 eV Emax= 10 TeV
hIoni: for pi+ SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
Bragg : Emin= 0 eV Emax= 297.505 keV
BetheBloch : Emin= 297.505 keV Emax= 10 TeV
Bragg : Emin= 0 eV Emax= 297.505 keV
BetheBloch : Emin= 297.505 keV Emax= 10 TeV
hBrems: for pi+ SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hBrem : Emin= 0 eV Emax= 10 TeV
hBrem : Emin= 0 eV Emax= 10 TeV
hPairProd: for pi+ SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hPairProd : Emin= 0 eV Emax= 10 TeV
hPairProd : Emin= 0 eV Emax= 10 TeV
msc: for pi- SubType= 10
Lambda tables from 100 eV to 10 TeV in 77 bins, spline: 1
RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
UrbanMsc90 : Emin= 0 eV Emax= 10 TeV
hIoni: for pi- SubType= 2
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
ICRU73QO : Emin= 0 eV Emax= 297.505 keV
BetheBloch : Emin= 297.505 keV Emax= 10 TeV
ICRU73QO : Emin= 0 eV Emax= 297.505 keV
BetheBloch : Emin= 297.505 keV Emax= 10 TeV
hBrems: for pi- SubType= 3
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hBrem : Emin= 0 eV Emax= 10 TeV
hBrem : Emin= 0 eV Emax= 10 TeV
hPairProd: for pi- SubType= 4
dE/dx and range tables from 100 eV to 10 TeV in 77 bins
Lambda tables from threshold to 10 TeV in 77 bins, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
hPairProd : Emin= 0 eV Emax= 10 TeV
hPairProd : Emin= 0 eV Emax= 10 TeV
============================================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
Hadronic Processes for <anti_neutron>
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
AntiNeutronInelastic Models: G4LEAntiNeutronInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HEAntiNeutronInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
Hadronic Processes for <anti_neutron>
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <anti_proton>
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
AntiProtonInelastic Models: G4LEAntiProtonInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HEAntiProtonInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
hadElastic Crs sctns: GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <e->
ElectroNuclear Models: CHIPS: Emin(GeV)= 0 Emax(GeV)= 30000
AntiNeutronInelastic Models: G4LEAntiNeutronInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HEAntiNeutronInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
Hadronic Processes for <gamma>
PhotonInelastic Models: CHIPS: Emin(GeV)= 0 Emax(GeV)= 3.5
TheoFSGenerator: Emin(GeV)= 3 Emax(GeV)= 100000
AntiNeutronInelastic Crs sctns: GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <kaon+>
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
KaonPlusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEKaonPlusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
Hadronic Processes for <kaon->
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
KaonMinusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEKaonMinusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
Hadronic Processes for <anti_proton>
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 0.1
AntiAElastic: Emin(GeV)= 0.1 Emax(GeV)= 100000
hadElastic Crs sctns: AntiAGlauber: Emin(GeV)= 0 Emax(GeV)= 1.79769e+305
GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
AntiProtonInelastic Models: G4LEAntiProtonInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HEAntiProtonInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
AntiProtonInelastic Crs sctns: GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <e->
-----------------------------------
ElectroNuclear Models: CHIPSElectroNuclear: Emin(GeV)= 0 Emax(GeV)= 30000
ElectroNuclear Crs sctns: ElectroNuclearXS: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <gamma>
-----------------------------------
PhotonInelastic Models: CHIPSGammaNuclear: Emin(GeV)= 0 Emax(GeV)= 3.5
TheoFSGenerator: Emin(GeV)= 3 Emax(GeV)= 100000
PhotonInelastic Crs sctns: PhotoNuclearXS: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <kaon+>
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
hadElastic Crs sctns: GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
KaonPlusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEKaonPlusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
KaonPlusInelastic Crs sctns: GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <kaon->
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
hadElastic Crs sctns: GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
KaonMinusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEKaonMinusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
KaonMinusInelastic Crs sctns: GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <lambda>
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
hadElastic Crs sctns: GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
LambdaInelastic Models: G4LELambdaInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HELambdaInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
LambdaInelastic Crs sctns: GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <lambda>
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 100000
LambdaInelastic Models: G4LELambdaInelastic: Emin(GeV)= 0 Emax(GeV)= 25
G4HELambdaInelastic: Emin(GeV)= 20 Emax(GeV)= 100000
Hadronic Processes for <mu->
muMinusCaptureAtRest
Hadronic Processes for <neutron>
hadElastic Models: hElasticCHIPS: Emin(GeV)= 0 Emax(GeV)= 100000
NeutronInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LENeutronInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
nCapture Models: G4LCapture: Emin(GeV)= 0 Emax(GeV)= 20000
nFission Models: G4LFission: Emin(GeV)= 0 Emax(GeV)= 20000
Hadronic Processes for <neutron>
-----------------------------------
hadElastic Models: hElasticCHIPS: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <pi+>
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 1
hElasticGlauber: Emin(GeV)= 1 Emax(GeV)= 100000
PionPlusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEPionPlusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
hadElastic Crs sctns: CHIPSElasticXS: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <pi->
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 1
hElasticGlauber: Emin(GeV)= 1 Emax(GeV)= 100000
PionMinusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEPionMinusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
NeutronInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LENeutronInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
NeutronInelastic Crs sctns: G4CrossSectionPairGG: Emin(GeV)= 0 Emax(GeV)= 100000
G4CrossSectionPairGG: Wellisch-Laidlaw cross sections
below 91 GeV, Glauber-Gribov above
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
nCapture Models: G4LCapture: Emin(GeV)= 0 Emax(GeV)= 20000
nCapture Crs sctns: GheishaCaptureXS: Emin(GeV)= 0 Emax(GeV)= 100000
nFission Models: G4LFission: Emin(GeV)= 0 Emax(GeV)= 20000
nFission Crs sctns: GheishaFissionXS: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <pi+>
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 1
hElasticGlauber: Emin(GeV)= 1 Emax(GeV)= 100000
hadElastic Crs sctns: Barashenkov-Glauber: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
PionPlusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEPionPlusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
PionPlusInelastic Crs sctns: G4CrossSectionPairGG: Emin(GeV)= 0 Emax(GeV)= 100000
G4CrossSectionPairGG: G4PiNuclearCrossSection cross sections
below 91 GeV, Glauber-Gribov above
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <pi->
-----------------------------------
hadElastic Models: hElasticLHEP: Emin(GeV)= 0 Emax(GeV)= 1
hElasticGlauber: Emin(GeV)= 1 Emax(GeV)= 100000
hadElastic Crs sctns: Barashenkov-Glauber: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
PionMinusInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEPionMinusInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
PionMinusInelastic Crs sctns: G4CrossSectionPairGG: Emin(GeV)= 0 Emax(GeV)= 100000
G4CrossSectionPairGG: G4PiNuclearCrossSection cross sections
below 91 GeV, Glauber-Gribov above
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <proton>
-----------------------------------
hadElastic Models: hElasticCHIPS: Emin(GeV)= 0 Emax(GeV)= 100000
hadElastic Crs sctns: CHIPSElasticXS: Emin(GeV)= 0 Emax(GeV)= 100000
GheishaElastic: Emin(GeV)= 0 Emax(GeV)= 100000
ProtonInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEProtonInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
BertiniCascade: Emin(GeV)= 0 Emax(GeV)= 9.9
ProtonInelastic Crs sctns: G4CrossSectionPairGG: Emin(GeV)= 0 Emax(GeV)= 100000
G4CrossSectionPairGG: Axen-Wellisch cross sections
below 91 GeV, Glauber-Gribov above
GheishaInelastic: Emin(GeV)= 0 Emax(GeV)= 100000
Hadronic Processes for <proton>
hadElastic Models: hElasticCHIPS: Emin(GeV)= 0 Emax(GeV)= 100000
ProtonInelastic Models: QGSP: Emin(GeV)= 12 Emax(GeV)= 100000
G4LEProtonInelastic: Emin(GeV)= 9.5 Emax(GeV)= 25
Bertini Cascade: Emin(GeV)= 0 Emax(GeV)= 9.9
============================================================================================
========= Table of registered couples ==============================
Index : 0 used in the geometry : Yes recalculation needed : No
Material : G4_AIR
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 0 fm
Energy thresholds : gamma 990 eV e- 990 eV e+ 990 eV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 1 used in the geometry : Yes recalculation needed : No
Material : Coating
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 0 fm
Energy thresholds : gamma 3.43206 keV e- 451.206 keV e+ 436.298 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 2 used in the geometry : Yes recalculation needed : No
Material : Polystyrene
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 0 fm
Energy thresholds : gamma 2.41988 keV e- 356.639 keV e+ 349.521 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 3 used in the geometry : Yes recalculation needed : No
Material : PMMA
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 0 fm
Energy thresholds : gamma 2.78665 keV e- 389.196 keV e+ 376.336 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 4 used in the geometry : Yes recalculation needed : No
Material : G4_Al
Range cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 0 fm
Energy thresholds : gamma 6.90363 keV e- 598.345 keV e+ 570.85 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
====================================================================
### Run 0 start.
--------- Ranecu engine status ---------