Import Geant4 10.5.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2018-06-29 10:58:11 +02:00
parent fe81a77428
commit 6aa23be517
1581 changed files with 124288 additions and 83758 deletions
+10 -1
View File
@@ -1,4 +1,4 @@
$Id: History 101677 2016-11-21 09:26:55Z gcosmo $
$Id: History 110043 2018-05-15 06:03:57Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -15,6 +15,15 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 14, 2018 J. Allison (exampleRE01-V10-04-01)
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
May 08, 2018 B.Morgan (exampleRE01-V10-04-00)
- Include G4Types before use of G4MULTITHREADED. For forward
compatibility with move to #defines over -D for G4 preprocessor
symbols.
Nov 19, 2016 A. Dotti (exampleRE01-V10-02-02)
- Explicitly add SD to manager
+14 -20
View File
@@ -29,16 +29,17 @@
//
// $Id: $
//
//
//
// --------------------------------------------------------------
// GEANT4 - RE01 exsample code
//
// --------------------------------------------------------------
// Comments
//
//
//
// --------------------------------------------------------------
#include "G4Types.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
@@ -54,17 +55,17 @@
#include "G4ParallelWorldPhysics.hh"
#include "RE01ActionInitialization.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
int main(int argc,char** argv)
{
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
#ifdef G4MULTITHREADED
G4MTRunManager * runManager = new G4MTRunManager;
//runManager->SetNumberOfThreads(4);
@@ -72,11 +73,9 @@ int main(int argc,char** argv)
G4RunManager * runManager = new G4RunManager;
#endif
#ifdef G4VIS_USE
// Visualization manager construction
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
G4String parallelWorldName = "ReadoutWorld";
G4VUserDetectorConstruction* detector
@@ -90,31 +89,26 @@ int main(int argc,char** argv)
physicsList->RegisterPhysics(
new G4ParallelWorldPhysics(parallelWorldName));
runManager->SetUserInitialization(physicsList);
runManager->SetUserInitialization(
new RE01ActionInitialization);
runManager->Initialize();
if(argc==1)
if(ui)
{
#ifdef G4UI_USE
G4UIExecutive* ui = new G4UIExecutive(argc, argv);
ui->SessionStart();
delete ui;
#endif
}
else
{
G4UImanager* UImanager = G4UImanager::GetUIpointer();
G4UImanager* UImanager = G4UImanager::GetUIpointer();
G4String command = "/control/execute ";
G4String fileName = argv[1];
UImanager->ApplyCommand(command+fileName);
}
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
File diff suppressed because it is too large Load Diff
+13 -2
View File
@@ -1,4 +1,4 @@
$Id: History 110134 2018-05-16 06:51:34Z gcosmo $
$Id: History 109785 2018-05-09 08:15:23Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -15,7 +15,18 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
March 14, 2018 M. Asai (exampleRE02-V10-03-00)
08 May 2018 J.Allison (exampleRE02-V10-04-01)
- RE02.cc:
o Remove G4_VIS_USE and G4UI_USE.
o Move instantiation of G4UIExecutive to start of main.
- vis.mac: Remove
/vis/viewer/set/targetPoint 0 100 0 mm
/vis/viewer/zoomTo 10000000
21 March 2018 G.Folger (no tag)
- update reference outputs run.out, run3.log, and run4.log
March 14, 2018 M. Asai (exampleRE02-V10-04-00)
- RE02EventAction.cc and RE02Run.cc are modified to shorten the
output.
+10 -18
View File
@@ -27,7 +27,7 @@
/// \brief Main program of the runAndEvent/RE02 example
//
//
// $Id: RE02.cc 76292 2013-11-08 13:10:20Z gcosmo $
// $Id: RE02.cc 109785 2018-05-09 08:15:23Z gcosmo $
//
//
@@ -44,17 +44,18 @@
#include "G4UImanager.hh"
#include "G4SystemOfUnits.hh"
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
//
int main(int argc,char** argv) {
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
// Run manager
#ifdef G4MULTITHREADED
G4MTRunManager * runManager = new G4MTRunManager;
@@ -82,12 +83,10 @@ int main(int argc,char** argv) {
//
runManager->SetUserInitialization(new QGS_BIC());
#ifdef G4VIS_USE
// Visualization, if you choose to have it!
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
// UserAction classes
runManager->SetUserInitialization(new RE02ActionInitialization);
@@ -97,17 +96,12 @@ int main(int argc,char** argv) {
//get the pointer to the User Interface manager
G4UImanager * pUI = G4UImanager::GetUIpointer();
if(argc==1)
if(ui)
// Define (G)UI terminal for interactive mode
{
#ifdef G4UI_USE
G4UIExecutive* ui = new G4UIExecutive(argc, argv);
#ifdef G4VIS_USE
pUI->ApplyCommand("/control/execute vis.mac");
#endif
pUI->ApplyCommand("/control/execute vis.mac");
ui->SessionStart();
delete ui;
#endif
}
else
// Batch mode
@@ -117,9 +111,7 @@ int main(int argc,char** argv) {
pUI->ApplyCommand(command+fileName);
}
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
return 0;
+114 -132
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -205,8 +205,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -574,8 +574,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -824,7 +822,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -849,7 +846,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -882,8 +878,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFB: 9.5 GeV ---> 25 GeV
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
@@ -1032,16 +1026,10 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -4.93 3.97 -191 0.268 0 0 0 PhantomSens initStep
1 -4.94 3.99 -191 0.235 0.0327 0.0241 0.0241 PhantomSens msc
2 -4.93 3.99 -191 0.22 0.0154 0.00695 0.0311 PhantomSens msc
3 -4.93 3.98 -191 0.205 0.015 0.00817 0.0392 PhantomSens msc
4 -4.92 3.99 -191 0.195 0.00961 0.0117 0.0509 PhantomSens msc
5 -4.91 3.99 -191 0.182 0.013 0.00899 0.0599 PhantomSens msc
6 -4.91 3.99 -191 0.157 0.0254 0.00837 0.0683 PhantomSens msc
7 -4.91 3.98 -191 0.134 0.0223 0.0083 0.0766 PhantomSens msc
8 -4.91 3.98 -191 0.121 0.0132 0.0109 0.0876 PhantomSens msc
9 -4.92 3.98 -191 0.0961 0.0252 0.0115 0.0991 PhantomSens msc
10 -4.92 3.98 -191 0 0.0961 0.0257 0.125 PhantomSens eIoni
1 -4.91 3.97 -191 0.248 0.0199 0.0241 0.0241 PhantomSens msc
2 -4.9 3.97 -191 0.206 0.0414 0.0208 0.045 PhantomSens msc
3 -4.89 3.97 -191 0.173 0.0336 0.0199 0.0649 PhantomSens msc
4 -4.89 3.97 -191 0 0.173 0.0651 0.13 PhantomSens eIoni
>>> Event 1
*********************************************************************************************************
@@ -1049,31 +1037,35 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -2.55 2.37 -1e+03 0.356 0 0 0 World initStep
1 -2.55 2.37 -200 0.356 0 800 800 PhantomSens Transportation
2 -2.55 2.37 -199 0.309 0 0.677 801 PhantomSens compt
3 -3.09 2.01 -199 0 0.0883 1.03 802 PhantomSens phot
0 0.111 -1.23 -1e+03 0.356 0 0 0 World initStep
1 0.111 -1.23 -200 0.356 0 800 800 PhantomSens Transportation
2 0.111 -1.23 -198 0.274 0 1.97 802 PhantomSens compt
3 0.101 -1.19 -198 0.274 0 0.0463 802 PhantomSens Transportation
4 -4.16e-17 -0.831 -198 0.274 0 0.46 802 PhantomSens Transportation
5 -0.00553 -0.811 -198 0 0.0883 0.0251 803 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -3.09 2.01 -199 0.221 0 0 0 PhantomSens initStep
1 -3.09 2.02 -199 0.203 0.0177 0.00802 0.00802 PhantomSens msc
2 -3.09 2.01 -199 0.167 0.0355 0.014 0.022 PhantomSens msc
3 -3.09 2.02 -199 0.158 0.00911 0.00763 0.0296 PhantomSens msc
4 -3.09 2.02 -199 0.144 0.0142 0.0103 0.04 PhantomSens msc
5 -3.09 2.03 -199 0.136 0.00802 0.0111 0.0511 PhantomSens msc
6 -3.09 2.03 -199 0 0.136 0.0447 0.0958 PhantomSens eIoni
0 -0.00553 -0.811 -198 0.186 0 0 0 PhantomSens initStep
1 -0.00546 -0.811 -198 0.183 0.00292 0.00366 0.00366 PhantomSens msc
2 -0.00519 -0.811 -198 0.17 0.0124 0.00382 0.00749 PhantomSens msc
3 -0.00673 -0.812 -198 0.158 0.012 0.00375 0.0112 PhantomSens msc
4 -0.00966 -0.812 -198 0.151 0.00715 0.00424 0.0155 PhantomSens msc
5 -0.014 -0.812 -198 0.143 0.00825 0.00554 0.021 PhantomSens msc
6 -0.0164 -0.817 -198 0.137 0.00626 0.0078 0.0288 PhantomSens msc
7 -0.0204 -0.816 -198 0.0954 0.0413 0.00982 0.0386 PhantomSens msc
8 -0.0208 -0.815 -198 0 0.0954 0.0254 0.0641 PhantomSens eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -2.55 2.37 -199 0.0472 0 0 0 PhantomSens initStep
1 -2.55 2.37 -199 0 0.0472 0.00811 0.00811 PhantomSens eIoni
0 0.111 -1.23 -198 0.0821 0 0 0 PhantomSens initStep
1 0.112 -1.23 -198 0 0.0821 0.0199 0.0199 PhantomSens eIoni
>>> Event 2
*********************************************************************************************************
@@ -1081,29 +1073,17 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -2.61 -3.33 -1e+03 0.356 0 0 0 World initStep
1 -2.61 -3.33 -200 0.356 0 800 800 PhantomSens Transportation
2 -2.61 -3.33 -198 0.356 0 2 802 PhantomSens Transportation
3 -2.61 -3.33 -196 0.356 0 2 804 PhantomSens Transportation
4 -2.61 -3.33 -194 0.356 0 2 806 PhantomSens Transportation
5 -2.61 -3.33 -193 0.341 0 0.786 807 PhantomSens compt
6 -2.24 -3.47 -192 0 0.0883 1.15 808 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -2.24 -3.47 -192 0.253 0 0 0 PhantomSens initStep
1 -2.24 -3.47 -192 0 0.253 0.116 0.116 PhantomSens eIoni
0 4.99 3.83 -1e+03 0.356 0 0 0 World initStep
1 4.99 3.83 -200 0.356 0 800 800 PhantomSens Transportation
2 4.99 3.83 -198 0 0.0883 1.56 802 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -2.61 -3.33 -193 0.0149 0 0 0 PhantomSens initStep
1 -2.61 -3.33 -193 0 0.0149 0.00128 0.00128 PhantomSens eIoni
0 4.99 3.83 -198 0.268 0 0 0 PhantomSens initStep
1 4.98 3.83 -198 0 0.268 0.126 0.126 PhantomSens eIoni
>>> Event 3
*********************************************************************************************************
@@ -1111,17 +1091,44 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -3.28 2.25 -1e+03 0.356 0 0 0 World initStep
1 -3.28 2.25 -200 0.356 0 800 800 PhantomSens Transportation
2 -3.28 2.25 -200 0 0.0883 0.236 800 PhantomSens phot
0 -3.87 -0.34 -1e+03 0.356 0 0 0 World initStep
1 -3.87 -0.34 -200 0.356 0 800 800 PhantomSens Transportation
2 -3.87 -0.34 -198 0 0.0883 1.97 802 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -3.28 2.25 -200 0.268 0 0 0 PhantomSens initStep
1 -3.28 2.26 -200 0 0.268 0.126 0.126 PhantomSens eIoni
0 -3.87 -0.34 -198 0.268 0 0 0 PhantomSens initStep
1 -3.87 -0.342 -198 0.246 0.0221 0.0158 0.0158 PhantomSens msc
2 -3.86 -0.338 -198 0.23 0.0158 0.00956 0.0254 PhantomSens msc
3 -3.86 -0.335 -198 0.223 0.00676 0.00503 0.0304 PhantomSens msc
4 -3.87 -0.333 -198 0.215 0.00821 0.0047 0.0351 PhantomSens msc
5 -3.87 -0.332 -198 0.202 0.0124 0.00568 0.0408 PhantomSens msc
6 -3.87 -0.332 -198 0.196 0.00645 0.00422 0.045 PhantomSens msc
7 -3.87 -0.333 -198 0.186 0.00951 0.0034 0.0484 PhantomSens Transportation
8 -3.87 -0.335 -198 0.182 0.00466 0.00311 0.0515 PhantomSens msc
9 -3.87 -0.337 -198 0.174 0.00792 0.00306 0.0546 PhantomSens msc
10 -3.87 -0.337 -198 0.174 3.42e-05 6.07e-05 0.0547 PhantomSens Transportation
11 -3.87 -0.337 -198 0.17 0.00347 0.00238 0.057 PhantomSens msc
12 -3.87 -0.335 -198 0.165 0.00541 0.00263 0.0597 PhantomSens msc
13 -3.87 -0.335 -198 0.164 0.000914 0.00265 0.0623 PhantomSens msc
14 -3.87 -0.335 -198 0.16 0.00392 0.0027 0.065 PhantomSens msc
15 -3.87 -0.335 -198 0.158 0.00225 0.00153 0.0665 PhantomSens Transportation
16 -3.87 -0.335 -198 0.156 0.00233 0.00204 0.0686 PhantomSens msc
17 -3.87 -0.333 -198 0.149 0.00642 0.00276 0.0713 PhantomSens msc
18 -3.87 -0.331 -198 0.147 0.00198 0.00241 0.0737 PhantomSens msc
19 -3.87 -0.33 -198 0.146 0.00127 0.00179 0.0755 PhantomSens msc
20 -3.87 -0.329 -198 0.145 0.00134 0.00213 0.0777 PhantomSens msc
21 -3.87 -0.329 -198 0.136 0.00848 0.0024 0.0801 PhantomSens msc
22 -3.87 -0.328 -198 0.133 0.00265 0.00301 0.0831 PhantomSens msc
23 -3.88 -0.327 -198 0.115 0.0186 0.00479 0.0879 PhantomSens msc
24 -3.88 -0.326 -198 0.101 0.0137 0.00723 0.0951 PhantomSens msc
25 -3.88 -0.329 -198 0.0923 0.00882 0.00407 0.0991 PhantomSens msc
26 -3.88 -0.33 -198 0.0857 0.00665 0.00453 0.104 PhantomSens msc
27 -3.88 -0.33 -198 0.0585 0.0271 0.00432 0.108 PhantomSens msc
28 -3.88 -0.33 -198 0 0.0585 0.0115 0.12 PhantomSens eIoni
>>> Event 4
*********************************************************************************************************
@@ -1129,18 +1136,31 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 0.966 -2.55 -1e+03 0.356 0 0 0 World initStep
1 0.966 -2.55 -200 0.356 0 800 800 PhantomSens Transportation
2 0.966 -2.55 -198 0.356 0 2 802 PhantomSens Transportation
3 0.966 -2.55 -197 0 0.0883 0.503 803 PhantomSens phot
0 -2.73 4.47 -1e+03 0.356 0 0 0 World initStep
1 -2.73 4.47 -200 0.356 0 800 800 PhantomSens Transportation
2 -2.73 4.47 -198 0.356 0 2 802 PhantomSens Transportation
3 -2.73 4.47 -197 0.276 0 1.24 803 PhantomSens compt
4 -2 4.32 -196 0.276 0 0.914 804 PhantomSens Transportation
5 -1.97 4.31 -196 0 0.0883 0.033 804 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -1.97 4.31 -196 0.188 0 0 0 PhantomSens initStep
1 -1.97 4.3 -196 0.177 0.0112 0.0121 0.0121 PhantomSens msc
2 -1.98 4.29 -196 0.158 0.0185 0.0147 0.0268 PhantomSens msc
3 -1.97 4.28 -196 0.132 0.0266 0.0135 0.0402 PhantomSens msc
4 -1.97 4.29 -196 0 0.132 0.0425 0.0828 PhantomSens eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 0.966 -2.55 -197 0.268 0 0 0 PhantomSens initStep
1 0.969 -2.55 -197 0 0.268 0.126 0.126 PhantomSens eIoni
0 -2.73 4.47 -197 0.0797 0 0 0 PhantomSens initStep
1 -2.73 4.47 -197 0 0.0797 0.019 0.019 PhantomSens eIoni
>>> Event 5
*********************************************************************************************************
@@ -1148,24 +1168,19 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 1.14 -2.52 -1e+03 0.356 0 0 0 World initStep
1 1.14 -2.52 -200 0.356 0 800 800 PhantomSens Transportation
2 1.14 -2.52 -198 0.356 0 2 802 PhantomSens Transportation
3 1.14 -2.52 -196 0.356 0 2 804 PhantomSens Transportation
4 1.14 -2.52 -194 0.356 0 2 806 PhantomSens Transportation
5 1.14 -2.52 -192 0.356 0 2 808 PhantomSens Transportation
6 1.14 -2.52 -190 0.356 0 2 810 PhantomSens Transportation
7 1.14 -2.52 -188 0.356 0 2 812 PhantomSens Transportation
8 1.14 -2.52 -186 0.356 0 2 814 PhantomSens Transportation
9 1.14 -2.52 -185 0 0.0883 0.836 815 PhantomSens phot
0 2.95 0.115 -1e+03 0.356 0 0 0 World initStep
1 2.95 0.115 -200 0.356 0 800 800 PhantomSens Transportation
2 2.95 0.115 -198 0 0.0883 1.94 802 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 1.14 -2.52 -185 0.268 0 0 0 PhantomSens initStep
1 1.15 -2.52 -185 0 0.268 0.126 0.126 PhantomSens eIoni
0 2.95 0.115 -198 0.268 0 0 0 PhantomSens initStep
1 2.95 0.134 -198 0.232 0.0362 0.0352 0.0352 PhantomSens msc
2 2.94 0.141 -198 0.186 0.0459 0.024 0.0592 PhantomSens msc
3 2.93 0.146 -198 0 0.186 0.0726 0.132 PhantomSens eIoni
>>> Event 6
*********************************************************************************************************
@@ -1173,51 +1188,18 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 3.93 0.758 -1e+03 0.356 0 0 0 World initStep
1 3.93 0.758 -200 0.356 0 800 800 PhantomSens Transportation
2 3.93 0.758 -198 0.356 0 2 802 PhantomSens Transportation
3 3.93 0.758 -196 0.356 0 2 804 PhantomSens Transportation
4 3.93 0.758 -194 0.356 0 2 806 PhantomSens Transportation
5 3.93 0.758 -193 0.316 0 1.4 807 PhantomSens compt
6 3.92 1.18 -192 0.316 0 0.735 808 PhantomSens Transportation
7 3.91 2 -191 0.316 0 1.43 810 PhantomSens Transportation
8 3.9 2.27 -190 0.27 0 0.474 810 PhantomSens compt
9 3.22 3.26 -190 0.21 0 1.27 811 PhantomSens compt
10 3.22 3.28 -190 0 0.0158 0.0306 811 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 3.22 3.28 -190 0.195 0 0 0 PhantomSens initStep
1 3.22 3.29 -190 0.175 0.0194 0.0157 0.0157 PhantomSens msc
2 3.24 3.28 -190 0.139 0.0365 0.0197 0.0354 PhantomSens msc
3 3.24 3.28 -190 0 0.139 0.0461 0.0816 PhantomSens eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 3.22 3.26 -190 0.0599 0 0 0 PhantomSens initStep
1 3.22 3.26 -190 0 0.0599 0.012 0.012 PhantomSens eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 3.9 2.27 -190 0.0459 0 0 0 PhantomSens initStep
1 3.9 2.27 -190 0 0.0459 0.00777 0.00777 PhantomSens eIoni
0 1.09 0.406 -1e+03 0.356 0 0 0 World initStep
1 1.09 0.406 -200 0.356 0 800 800 PhantomSens Transportation
2 1.09 0.406 -198 0.356 0 2 802 PhantomSens Transportation
3 1.09 0.406 -197 0 0.00382 1.19 803 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 3.93 0.758 -193 0.0398 0 0 0 PhantomSens initStep
1 3.93 0.758 -193 0 0.0398 0.00615 0.00615 PhantomSens eIoni
0 1.09 0.406 -197 0.352 0 0 0 PhantomSens initStep
1 1.09 0.407 -197 0 0.352 0.188 0.188 PhantomSens eIoni
>>> Event 7
*********************************************************************************************************
@@ -1225,18 +1207,18 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -3.3 1.58 -1e+03 0.356 0 0 0 World initStep
1 -3.3 1.58 -200 0.356 0 800 800 PhantomSens Transportation
2 -3.3 1.58 -198 0.356 0 2 802 PhantomSens Transportation
3 -3.3 1.58 -196 0 0.0883 1.86 804 PhantomSens phot
0 -3.82 0.385 -1e+03 0.356 0 0 0 World initStep
1 -3.82 0.385 -200 0.356 0 800 800 PhantomSens Transportation
2 -3.82 0.385 -198 0.356 0 2 802 PhantomSens Transportation
3 -3.82 0.385 -198 0 0.0883 0.409 802 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -3.3 1.58 -196 0.268 0 0 0 PhantomSens initStep
1 -3.31 1.58 -196 0 0.268 0.126 0.126 PhantomSens eIoni
0 -3.82 0.385 -198 0.268 0 0 0 PhantomSens initStep
1 -3.82 0.39 -198 0 0.268 0.126 0.126 PhantomSens eIoni
>>> Event 8
*********************************************************************************************************
@@ -1244,48 +1226,48 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 4.15 -0.274 -1e+03 0.356 0 0 0 World initStep
1 4.15 -0.274 -200 0.356 0 800 800 PhantomSens Transportation
2 4.15 -0.274 -200 0 0.0883 0.168 800 PhantomSens phot
0 3.83 -4.92 -1e+03 0.356 0 0 0 World initStep
1 3.83 -4.92 -200 0.356 0 800 800 PhantomSens Transportation
2 3.83 -4.92 -198 0 0.0883 1.89 802 PhantomSens phot
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 4.15 -0.274 -200 0.268 0 0 0 PhantomSens initStep
1 4.16 -0.281 -200 0 0.268 0.126 0.126 PhantomSens eIoni
0 3.83 -4.92 -198 0.268 0 0 0 PhantomSens initStep
1 3.83 -4.91 -198 0 0.268 0.126 0.126 PhantomSens eIoni
>>> Event 9
Run terminated.
Run Summary
Number of events processed : 10
User=0s Real=0.01s Sys=0s
User=0.000000s Real=0.004206s Sys=0.000000s
PrimitiveScorer RUN PhantomSD,totalEDep
Number of entries 10
Number of entries 13
PrimitiveScorer RUN PhantomSD,protonEDep
Number of entries 0
PrimitiveScorer RUN PhantomSD,protonNStep
Number of entries 0
PrimitiveScorer RUN PhantomSD,chargedPassCellFlux
Number of entries 0
Number of entries 2
PrimitiveScorer RUN PhantomSD,chargedCellFlux
Number of entries 10
Number of entries 13
PrimitiveScorer RUN PhantomSD,chargedSurfFlux
Number of entries 0
Number of entries 1
PrimitiveScorer RUN PhantomSD,gammaSurfCurr000
Number of entries 0
PrimitiveScorer RUN PhantomSD,gammaSurfCurr001
Number of entries 0
PrimitiveScorer RUN PhantomSD,gammaSurfCurr002
Number of entries 30
Number of entries 21
PrimitiveScorer RUN PhantomSD,gammaSurfCurr003
Number of entries 0
=============================================================
Number of event processed : 10
=============================================================
#Z Cell# totalEDep protonEDep protonNStep chargedPassCellFlux chargedCellFlux chargedSurfFlux gammaSurfCurr000 gammaSurfCurr001 gammaSurfCurr002 gammaSurfCurr003
0 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
1 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
0 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
1 356 keV 0 eV 0 0 /cm22.346201943946124 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
2 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
3 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
4 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1509,11 +1491,11 @@ 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.00192 MB
Pool ID '7G4Track', size : 0.000961 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Number of memory pools allocated: 11 of which, static: 0
Dynamic pools deleted: 11 / Total memory freed: 0.017 MB
Dynamic pools deleted: 11 / Total memory freed: 0.016 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
File diff suppressed because it is too large Load Diff
+87 -91
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -203,8 +203,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -572,8 +572,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -822,7 +820,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -847,7 +844,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -880,8 +876,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFB: 9.5 GeV ---> 25 GeV
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
@@ -1017,99 +1011,99 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
User=17.67s Real=18.55s Sys=0.04s
User=13.970000s Real=14.079001s Sys=0.040000s
PrimitiveScorer RUN PhantomSD,totalEDep
Number of entries 50059
Number of entries 51340
PrimitiveScorer RUN PhantomSD,protonEDep
Number of entries 11
Number of entries 13
PrimitiveScorer RUN PhantomSD,protonNStep
Number of entries 11
Number of entries 13
PrimitiveScorer RUN PhantomSD,chargedPassCellFlux
Number of entries 18852
Number of entries 20323
PrimitiveScorer RUN PhantomSD,chargedCellFlux
Number of entries 49969
Number of entries 51229
PrimitiveScorer RUN PhantomSD,chargedSurfFlux
Number of entries 11226
Number of entries 11961
PrimitiveScorer RUN PhantomSD,gammaSurfCurr000
Number of entries 43
Number of entries 40
PrimitiveScorer RUN PhantomSD,gammaSurfCurr001
Number of entries 372
Number of entries 398
PrimitiveScorer RUN PhantomSD,gammaSurfCurr002
Number of entries 49915
Number of entries 50626
PrimitiveScorer RUN PhantomSD,gammaSurfCurr003
Number of entries 69785
Number of entries 71781
=============================================================
Number of event processed : 10000
=============================================================
#Z Cell# totalEDep protonEDep protonNStep chargedPassCellFlux chargedCellFlux chargedSurfFlux gammaSurfCurr000 gammaSurfCurr001 gammaSurfCurr002 gammaSurfCurr003
0 43.348 MeV 0 eV 0 2897.91 /cm2 3084.22 /cm2 2429.4 /cm2 25 /cm2 25 /cm2 425 /cm2 400 /cm2
1 516.184 MeV 0 eV 0 3873.5 /cm2 4913.03 /cm2 3644.62 /cm2 25 /cm2 125 /cm2 1500 /cm2 750 /cm2
2 60.1382 MeV 0 eV 0 3908.32 /cm2 4197.07 /cm2 5055.59 /cm2 0 /cm2 0 /cm2 4025 /cm2 4275 /cm2
3 330.813 MeV 0 eV 0 1653.05 /cm2 3062.72 /cm2 4423.78 /cm2 0 /cm2 75 /cm2 3750 /cm2 4225 /cm2
4 26.5946 MeV 0 eV 0 1712.72 /cm2 1847.41 /cm2 1454.73 /cm2 0 /cm2 0 /cm2 3225 /cm2 4100 /cm2
5 144.154 MeV 0 eV 0 499.654 /cm2 1322.53 /cm2 1976.55 /cm2 0 /cm2 50 /cm2 3250 /cm2 3250 /cm2
6 8.7287 MeV 0 eV 0 492.585 /cm2 542.375 /cm2 501.236 /cm2 0 /cm2 0 /cm2 2225 /cm2 3300 /cm2
7 61.5413 MeV 0 eV 0 49.5014 /cm2 543.542 /cm2 1692.63 /cm2 0 /cm2 25 /cm2 1775 /cm2 3150 /cm2
8 4.33424 MeV 0 eV 0 214.698 /cm2 276.344 /cm2 155.143 /cm2 0 /cm2 0 /cm2 1325 /cm2 2500 /cm2
9 50.0547 MeV 0 eV 0 89.5299 /cm2 461.9 /cm2 318.872 /cm2 0 /cm2 0 /cm2 975 /cm2 2550 /cm2
10 3.89621 MeV 0 eV 0 199.64 /cm2 243.844 /cm2 1031.04 /cm2 0 /cm2 0 /cm2 850 /cm2 1850 /cm2
11 27.7038 MeV 0 eV 0 75.3189 /cm2 251.543 /cm2 249.183 /cm2 0 /cm2 0 /cm2 725 /cm2 1525 /cm2
12 3.61182 MeV 0 eV 0 185.122 /cm2 237.578 /cm2 115.404 /cm2 0 /cm2 0 /cm2 575 /cm2 1300 /cm2
13 20.3866 MeV 0 eV 0 86.5516 /cm2 184.349 /cm2 459.997 /cm2 0 /cm2 0 /cm2 500 /cm2 925 /cm2
14 3.37527 MeV 0 eV 0 166.483 /cm2 192.075 /cm2 1907.05 /cm2 0 /cm2 0 /cm2 350 /cm2 1000 /cm2
15 15.0643 MeV 0 eV 0 41.8563 /cm2 128.811 /cm2 266.595 /cm2 0 /cm2 0 /cm2 500 /cm2 925 /cm2
16 1.53485 MeV 0 eV 0 81.5649 /cm2 99.7281 /cm2 42.6852 /cm2 0 /cm2 0 /cm2 275 /cm2 675 /cm2
17 9.13168 MeV 0 eV 0 14.6827 /cm2 77.9613 /cm2 87.6526 /cm2 0 /cm2 0 /cm2 425 /cm2 650 /cm2
18 1.36129 MeV 0 eV 0 67.2249 /cm2 74.481 /cm2 33.8686 /cm2 0 /cm2 0 /cm2 300 /cm2 625 /cm2
19 3.80112 MeV 0 eV 0 18.4949 /cm2 31.5368 /cm2 0 /cm2 0 /cm2 0 /cm2 375 /cm2 625 /cm2
20 808.587 keV 0 eV 0 32.9364 /cm2 48.6401 /cm2 70.1378 /cm2 0 /cm2 0 /cm2 325 /cm2 500 /cm2
21 9.04903 MeV 0 eV 0 15.538 /cm2 74.0084 /cm2 65.5928 /cm2 0 /cm2 0 /cm2 225 /cm2 625 /cm2
22 1.46614 MeV 0 eV 0 50.0832 /cm2 89.1918 /cm2 55.9531 /cm2 0 /cm2 0 /cm2 200 /cm2 425 /cm2
23 3.94921 MeV 0 eV 0 2.65892 /cm2 35.7564 /cm2 110.237 /cm2 0 /cm2 0 /cm2 250 /cm2 375 /cm2
24 815.978 keV 0 eV 0 31.03 /cm2 44.1137 /cm2 35.4777 /cm2 0 /cm2 0 /cm2 100 /cm2 175 /cm2
25 5.88018 MeV 0 eV 0 0 /cm2 51.7943 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2 325 /cm2
26 194.502 keV 0 eV 0 16.8233 /cm2 16.8233 /cm2 26.61 /cm2 0 /cm2 0 /cm2 100 /cm2 225 /cm2
27 2.28733 MeV 0 eV 0 0.100306 /cm2 11.2533 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 225 /cm2
28 539.816 keV 0 eV 0 0 /cm2 24.9357 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2 175 /cm2
29 2.76324 MeV 0 eV 0 0 /cm2 18.9006 /cm2 0 /cm2 0 /cm2 0 /cm2 125 /cm2 75 /cm2
30 508.216 keV 0 eV 0 0 /cm2 25.5188 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 75 /cm2
31 318.754 keV 0 eV 0 3.69271 /cm2 3.72241 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2 75 /cm2
32 139.783 keV 0 eV 0 9.14443 /cm2 9.14443 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
33 5.82022 MeV 0 eV 0 12.7294 /cm2 60.9401 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2 50 /cm2
34 364.874 keV 0 eV 0 28.5129 /cm2 28.5129 /cm2 65.9681 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
35 1.15822 MeV 0 eV 0 0 /cm2 6.66013 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
36 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
37 656.91 keV 0 eV 0 8.8741 /cm2 8.8741 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
38 244.677 keV 0 eV 0 18.1614 /cm2 18.1614 /cm2 44.3393 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
39 987.486 keV 0 eV 0 0 /cm2 7.02012 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 0 /cm2
40 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
41 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
42 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
43 1.58834 MeV 0 eV 0 17.2812 /cm2 17.2812 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
44 299.704 keV 0 eV 0 25.6893 /cm2 25.6893 /cm2 25.5426 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
45 922.089 keV 0 eV 0 11.2401 /cm2 11.2401 /cm2 25.7667 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
0 36.5084 MeV 0 eV 0 2516.28 /cm2 2547.25 /cm2 2299.06 /cm2 0 /cm2 25 /cm2 650 /cm2 250 /cm2
1 523.521 MeV 0 eV 0 3643.26 /cm2 4952.35 /cm2 3667.35 /cm2 0 /cm2 50 /cm2 1325 /cm2 850 /cm2
2 61.7423 MeV 0 eV 0 3918.31 /cm2 4259.27 /cm2 5197.34 /cm2 0 /cm2 0 /cm2 4275 /cm2 4325 /cm2
3 283.216 MeV 0 eV 0 1555.04 /cm2 2685.31 /cm2 3906.42 /cm2 0 /cm2 25 /cm2 3825 /cm2 4025 /cm2
4 19.6917 MeV 0 eV 0 1263.1 /cm2 1373.89 /cm2 1411.56 /cm2 0 /cm2 0 /cm2 3000 /cm2 4500 /cm2
5 95.5318 MeV 0 eV 0 416.859 /cm2 859.048 /cm2 1594.94 /cm2 0 /cm2 0 /cm2 2825 /cm2 3225 /cm2
6 10.7711 MeV 0 eV 0 589.864 /cm2 683.65 /cm2 748.06 /cm2 0 /cm2 0 /cm2 1975 /cm2 2950 /cm2
7 51.9081 MeV 0 eV 0 108.899 /cm2 436.404 /cm2 1137.61 /cm2 0 /cm2 0 /cm2 1500 /cm2 2700 /cm2
8 2.66969 MeV 0 eV 0 113.628 /cm2 139.81 /cm2 883.394 /cm2 0 /cm2 0 /cm2 1375 /cm2 2175 /cm2
9 51.0145 MeV 0 eV 0 62.9122 /cm2 452.806 /cm2 224.82 /cm2 0 /cm2 0 /cm2 975 /cm2 2200 /cm2
10 3.9308 MeV 0 eV 0 165.507 /cm2 251.13 /cm2 111.179 /cm2 0 /cm2 0 /cm2 950 /cm2 2050 /cm2
11 37.0621 MeV 0 eV 0 86.1077 /cm2 350.501 /cm2 387.934 /cm2 25 /cm2 0 /cm2 825 /cm2 1875 /cm2
12 4.16542 MeV 0 eV 0 208.694 /cm2 260.552 /cm2 144.375 /cm2 0 /cm2 0 /cm2 900 /cm2 1225 /cm2
13 18.8995 MeV 0 eV 0 48.4471 /cm2 163.538 /cm2 283.001 /cm2 0 /cm2 0 /cm2 700 /cm2 900 /cm2
14 572.76 keV 0 eV 0 34.299 /cm2 36.3054 /cm2 26.6555 /cm2 0 /cm2 0 /cm2 375 /cm2 900 /cm2
15 20.429 MeV 0 eV 0 35.3687 /cm2 206.904 /cm2 172.263 /cm2 0 /cm2 0 /cm2 450 /cm2 825 /cm2
16 885.331 keV 0 eV 0 70.7676 /cm2 70.7676 /cm2 32.0406 /cm2 0 /cm2 0 /cm2 200 /cm2 775 /cm2
17 23.967 MeV 0 eV 0 27.0657 /cm2 239.231 /cm2 28.0721 /cm2 0 /cm2 0 /cm2 350 /cm2 700 /cm2
18 2.082 MeV 0 eV 0 138.418 /cm2 138.418 /cm2 100.666 /cm2 0 /cm2 0 /cm2 325 /cm2 775 /cm2
19 10.8985 MeV 0 eV 0 7.55017 /cm2 96.0712 /cm2 190.692 /cm2 0 /cm2 0 /cm2 175 /cm2 600 /cm2
20 328.486 keV 0 eV 0 27.1816 /cm2 27.1816 /cm2 31.0718 /cm2 0 /cm2 0 /cm2 200 /cm2 400 /cm2
21 5.02376 MeV 0 eV 0 0.794126 /cm2 45.5671 /cm2 31.787 /cm2 0 /cm2 0 /cm2 150 /cm2 325 /cm2
22 293.837 keV 0 eV 0 21.9072 /cm2 21.9072 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 375 /cm2
23 2.85888 MeV 0 eV 0 13.1126 /cm2 22.1398 /cm2 178.077 /cm2 0 /cm2 0 /cm2 125 /cm2 325 /cm2
24 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 325 /cm2
25 4.89735 MeV 0 eV 0 0 /cm2 44.1338 /cm2 0 /cm2 0 /cm2 0 /cm2 125 /cm2 225 /cm2
26 565.277 keV 0 eV 0 0 /cm2 29.463 /cm2 26.6474 /cm2 0 /cm2 0 /cm2 175 /cm2 200 /cm2
27 5.10448 MeV 0 eV 0 0 /cm2 41.9714 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2 300 /cm2
28 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2 300 /cm2
29 453.7 keV 0 eV 0 0 /cm2 2.47462 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 300 /cm2
30 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2 250 /cm2
31 1.19123 MeV 0 eV 0 0 /cm2 9.99322 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 250 /cm2
32 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 200 /cm2
33 1.62531 MeV 0 eV 0 0 /cm2 16.4318 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 175 /cm2
34 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 125 /cm2
35 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 175 /cm2
36 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 100 /cm2
37 6.49127 MeV 0 eV 0 0 /cm2 59.1908 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 125 /cm2
38 354.211 keV 0 eV 0 24.8501 /cm2 24.8501 /cm2 35.7745 /cm2 0 /cm2 0 /cm2 25 /cm2 100 /cm2
39 405.501 keV 0 eV 0 0 /cm2 3.35778 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 100 /cm2
40 2.24531 MeV 0 eV 0 30.8541 /cm2 119.226 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 100 /cm2
41 1.77965 MeV 0 eV 0 7.02103 /cm2 17.4238 /cm2 134.481 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2
42 378.996 keV 0 eV 0 27.3292 /cm2 27.3292 /cm2 30.2329 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
43 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
44 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
45 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
46 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
47 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
48 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
49 353.966 keV 0 eV 0 0 /cm2 1.5594 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
50 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 50 /cm2
51 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 25 /cm2
47 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
48 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2
49 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
50 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
51 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
52 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
53 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
54 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
55 143.294 keV 0 eV 0 0 /cm2 0.749734 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
53 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
54 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
55 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
56 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
57 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
58 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
59 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
60 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
58 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
59 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
60 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
61 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
62 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
62 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
63 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
64 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
65 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
66 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
67 2.62839 MeV 0 eV 0 0 /cm2 25.1485 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
66 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
67 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
68 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
69 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
70 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1121,7 +1115,7 @@ Run Summary
76 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
77 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
78 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
79 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
79 394.995 keV 0 eV 0 0 /cm2 2.71365 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
80 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
81 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
82 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1133,12 +1127,12 @@ Run Summary
88 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
89 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
90 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
91 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
92 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
93 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
94 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
95 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
96 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
91 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
92 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
93 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
94 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
95 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
96 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
97 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
98 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
99 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1261,17 +1255,19 @@ Total navigation history collections cleaned: 19
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 0.0279 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.00961 MB
Pool ID '17G4DynamicParticle', size : 0.00865 MB
Pool ID '16G4HitsCollection', size : 0 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.0183 MB
Pool ID '7G4Track', size : 0.0173 MB
Pool ID '18G4TouchableHistory', size : 0.00192 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Number of memory pools allocated: 11 of which, static: 0
Dynamic pools deleted: 11 / Total memory freed: 0.063 MB
Pool ID '10G4Fragment', size : 0.000961 MB
Pool ID '17G4ReactionProduct', size : 0.000961 MB
Number of memory pools allocated: 13 of which, static: 0
Dynamic pools deleted: 13 / Total memory freed: 0.063 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
File diff suppressed because it is too large Load Diff
+10 -16
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -205,8 +205,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -574,8 +574,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -824,7 +822,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -849,7 +846,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: QGSB: 12 GeV ---> 100 TeV
@@ -882,8 +878,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFB: 9.5 GeV ---> 25 GeV
Model: Binary Cascade: 0 eV ---> 9.9 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
@@ -1019,23 +1013,23 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
User=0.26s Real=0.26s Sys=0s
User=0.210000s Real=0.215196s Sys=0.000000s
PrimitiveScorer RUN PhantomSD,totalEDep
Number of entries 83
Number of entries 81
PrimitiveScorer RUN PhantomSD,protonEDep
Number of entries 0
PrimitiveScorer RUN PhantomSD,protonNStep
Number of entries 0
PrimitiveScorer RUN PhantomSD,chargedPassCellFlux
Number of entries 20
Number of entries 22
PrimitiveScorer RUN PhantomSD,chargedCellFlux
Number of entries 83
Number of entries 81
PrimitiveScorer RUN PhantomSD,chargedSurfFlux
Number of entries 24
PrimitiveScorer RUN PhantomSD,gammaSurfCurr000
Number of entries 0
PrimitiveScorer RUN PhantomSD,gammaSurfCurr001
Number of entries 67
Number of entries 64
PrimitiveScorer RUN PhantomSD,gammaSurfCurr002
Number of entries 0
PrimitiveScorer RUN PhantomSD,gammaSurfCurr003
@@ -1044,8 +1038,8 @@ Run Summary
Number of event processed : 10000
=============================================================
#Z Cell# totalEDep protonEDep protonNStep chargedPassCellFlux chargedCellFlux chargedSurfFlux gammaSurfCurr000 gammaSurfCurr001 gammaSurfCurr002 gammaSurfCurr003
0 463.532 keV 0 eV 0 0 /cm2 4.13395 /cm2 0 /cm2 0 /cm2 9250 /cm2 0 /cm2 0 /cm2
1 20.7745 MeV 0 eV 0 0 /cm2 36.5574 /cm2 97.5034 /cm2 0 /cm2 8825 /cm2 0 /cm2 0 /cm2
0 217.67 keV 0 eV 0 0 /cm2 1.84782 /cm2 0 /cm2 0 /cm2 9300 /cm2 0 /cm2 0 /cm2
1 21.3384 MeV 0 eV 0 0 /cm2 37.3035 /cm2 36.2941 /cm2 0 /cm2 9025 /cm2 0 /cm2 0 /cm2
2 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
3 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
4 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -27,7 +27,7 @@
/// \brief Implementation of the RE02EventAction class
//
//
// $Id: RE02EventAction.cc 110134 2018-05-16 06:51:34Z gcosmo $
// $Id: RE02EventAction.cc 108892 2018-03-15 07:06:47Z gcosmo $
//
#include "RE02EventAction.hh"
@@ -27,7 +27,7 @@
/// \brief Implementation of the RE02Run class
//
//
// $Id: RE02Run.cc 110134 2018-05-16 06:51:34Z gcosmo $
// $Id: RE02Run.cc 108892 2018-03-15 07:06:47Z gcosmo $
//
//=====================================================================
@@ -74,9 +74,6 @@
# To superimpose all of the events from a given run:
/vis/scene/endOfEventAction accumulate
#
/vis/viewer/set/targetPoint 0 100 0 mm
/vis/viewer/zoomTo 10000000
#
# Re-establish auto refreshing and verbosity:
/vis/viewer/set/autoRefresh true
/vis/verbose warnings
@@ -40,7 +40,7 @@ target_link_libraries(RE03 ${Geant4_LIBRARIES} )
# relies on these scripts being in the current working directory.
#
set(RE03_SCRIPTS
drawCylinderSlice.mac drawSlice.mac run1.mac run2.mac run3.mac run4.mac vis.mac
drawCylinderSlice.mac drawSlice.mac batchrun1.mac run1.mac run2.mac run3.mac run4.mac vis.mac
)
foreach(_script ${RE03_SCRIPTS})
+17 -1
View File
@@ -1,4 +1,4 @@
$Id: History 99162 2016-09-07 08:14:24Z gcosmo $
$Id: History 110440 2018-05-23 11:28:07Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -15,6 +15,22 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 23, 2018 M. Asai (exampleRE03-V10-04-01)
- Add batchrun1.mac for batch job and update CMakelists.txt
accordingly.
May 16, 2018 J. Allison
- Minor fixes to run*.mac files.
May 14, 2018 J. Allison (exampleRE03-V10-04-00)
- Add #include "G4Types.hh".
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
- vis.mac: Tidy.
o No need to create empty scene - /vis/drawVolume creates a new one.
o No need to /tracking/storeTrajectories - /vis/scene/add/trajectories does.
- run1.mac: Tidy.
Sep 02, 2016 M. Asai (exampleRE03-V10-02-00)
- Migrate to G4THitsMap<G4StatDouble>.
+13 -18
View File
@@ -28,7 +28,10 @@
//
//
// $Id: $
//
//
#include "G4Types.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
#else
@@ -41,13 +44,8 @@
#include "FTFP_BERT.hh"
#include "RE03ActionInitialization.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
//====================================================================
// Un-comment this line for user defined score writer
@@ -56,6 +54,12 @@
int main(int argc,char** argv)
{
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
// Construct the run manager
//
#ifdef G4MULTITHREADED
@@ -87,12 +91,10 @@ int main(int argc,char** argv)
RE03ActionInitialization* actions = new RE03ActionInitialization;
runManager->SetUserInitialization(actions);
#ifdef G4VIS_USE
// Visualization manager
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
// Initialize G4 kernel
//
runManager->Initialize();
@@ -101,16 +103,11 @@ int main(int argc,char** argv)
//
G4UImanager* UImanager = G4UImanager::GetUIpointer();
if (argc==1) // Define UI session for interactive mode
if (ui) // Define UI session for interactive mode
{
#ifdef G4UI_USE
G4UIExecutive* ui = new G4UIExecutive(argc, argv);
#ifdef G4VIS_USE
UImanager->ApplyCommand("/control/execute vis.mac");
#endif
UImanager->ApplyCommand("/control/execute vis.mac");
ui->SessionStart();
delete ui;
#endif
}
else // Batch mode
{
@@ -124,9 +121,7 @@ int main(int argc,char** argv)
// owned and deleted by the run manager, so they should not
// be deleted in the main() program !
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
return 0;
@@ -0,0 +1,38 @@
########################################
#
# define scoring mesh
#
/score/create/boxMesh boxMesh_1
#
/score/mesh/boxSize 100. 100. 100. cm
/score/mesh/nBin 30 30 30
#
/score/quantity/energyDeposit eDep
/score/quantity/nOfStep nOfStepGamma
/score/filter/particle gammaFilter gamma
/score/quantity/nOfStep nOfStepEMinus
/score/filter/particle eMinusFilter e-
/score/quantity/nOfStep nOfStepEPlus
/score/filter/particle ePlusFilter e+
#
/score/close
#
/score/list
#
########################################
#
/control/verbose 2
/run/verbose 1
/gun/particle e-
/run/beamOn 2000
#
########################################
#
# Dump scorers to a file
#
/score/dumpQuantityToFile boxMesh_1 eDep eDep.txt
/score/dumpQuantityToFile boxMesh_1 nOfStepGamma nOfStepGamma.txt
/score/dumpQuantityToFile boxMesh_1 nOfStepEMinus nOfStepEMinus.txt
/score/dumpQuantityToFile boxMesh_1 nOfStepEPlus nOfStepEPlus.txt
#
#
+6 -3
View File
@@ -26,6 +26,7 @@
/run/verbose 1
#######/event/verbose 1
#######/tracking/verbose 1
#######/vis/verbose confirmations
/gun/particle e-
/run/beamOn 2000
/vis/enable
@@ -43,14 +44,16 @@
#
# drawing slices
#
/vis/scene/create
/vis/sceneHandler/attach scene-2
# new scene and viewer
/vis/open OGL
/vis/drawVolume world
/vis/viewer/copyViewFrom viewer-0
/score/colorMap/setMinMax ! 0. 800.
/control/loop drawSlice.mac iColumn 0 29 7
#
########################################
#
# Dump scores to a file
# Dump scorers to a file
#
/score/dumpQuantityToFile boxMesh_1 nOfStepGamma nOfStepGamma.txt
#
@@ -36,8 +36,6 @@
#
# drawing slices
#
/vis/scene/create
/vis/sceneHandler/attach scene-2
/score/colorMap/setMinMax ! 0. 200.
/control/alias iAxis 1
/control/loop drawCylinderSlice.mac iColumn 0 29 7
+6 -14
View File
@@ -1,18 +1,11 @@
#
# create empty scene
#
/vis/scene/create
#
# Create a scene handler for a specific graphics system
# (Edit the next line(s) to choose another graphic system)
#
# (Edit the next line to choose another graphic system)
/vis/open OGL
#
# draw scene
#
/vis/drawVolume worlds
#
/vis/viewer/set/viewpointThetaPhi 105 165 deg
# Set specific colur for identification
# Set specific color for identification
###/vis/geometry/set/colour Calor-AP_LayerLog ! yellow
###/vis/geometry/set/colour Calor-BP_LayerLog ! yellow
###/vis/geometry/set/colour Calor-CP_LayerLog ! yellow
@@ -20,8 +13,7 @@
##############/vis/viewer/flush
#
# for drawing the tracks
# (if too many tracks cause core dump => storeTrajectory 0)
/tracking/storeTrajectory 1
##/vis/scene/endOfEventAction accumulate
##/vis/scene/add/trajectories
/vis/scene/endOfEventAction accumulate
/vis/scene/add/trajectories
# If too many tracks, /vis/disable before running many events
@@ -13,6 +13,18 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 10, 2018 J. Allison (exampleRE04-V10-04-01)
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
- vis.mac: Tidied.
o No need to create empty scene - /vis/drawVolume creates a new one.
o No need to /tracking/storeTrajectories - /vis/scene/add/trajectories does.
May 10, 2018 B. Morgan (exampleRE04-V10-04-00)
- Include G4Types before use of G4MULTITHREADED. For forward
compatibility with move to #defines over -D for G4 preprocessor
symbols.
Mar 29, 2016 J. Allison (exampleRE04-V10-02-00)
- vis.mac: Added "/vis/drawVolume worlds".
+15 -21
View File
@@ -28,6 +28,8 @@
//
// $Id: $
//
#include "G4Types.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
#else
@@ -36,13 +38,8 @@
#include "G4ScoringManager.hh"
#include "G4UImanager.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
#include "RE04ActionInitialization.hh"
#include "RE04DetectorConstruction.hh"
@@ -53,7 +50,13 @@
int main(int argc,char** argv)
{
// Construct the run manager
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
// Construct the run manager
//
#ifdef G4MULTITHREADED
G4MTRunManager * runManager = new G4MTRunManager;
@@ -78,36 +81,29 @@ int main(int argc,char** argv)
physicsList->RegisterPhysics
(new G4ParallelWorldPhysics(paraWorldName,true));
runManager->SetUserInitialization(physicsList);
// Set user action classes
//
runManager->SetUserInitialization(new RE04ActionInitialization);
#ifdef G4VIS_USE
// Visualization manager
//
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
// Initialize G4 kernel
//
runManager->Initialize();
// Get the pointer to the User Interface manager
//
G4UImanager* pUImanager = G4UImanager::GetUIpointer();
G4UImanager* pUImanager = G4UImanager::GetUIpointer();
if (argc==1) // Define UI session for interactive mode
if (ui) // Define UI session for interactive mode
{
#ifdef G4UI_USE
G4UIExecutive * ui = new G4UIExecutive(argc,argv);
#ifdef G4VIS_USE
pUImanager->ApplyCommand("/control/execute vis.mac");
#endif
ui->SessionStart();
delete ui;
#endif
}
else // Batch mode
{
@@ -116,9 +112,7 @@ int main(int argc,char** argv)
pUImanager->ApplyCommand(command+fileName);
}
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
return 0;
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -145,8 +145,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -513,7 +513,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: BertiniCascade: 0 eV ---> 12 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -756,7 +755,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
@@ -773,7 +771,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
@@ -797,7 +794,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 0 eV ---> 12 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
+3 -8
View File
@@ -1,9 +1,4 @@
#
# create empty scene
#
/vis/scene/create
#
# Create a scene handler for a specific graphics system
# (Edit the next line(s) to choose another graphic system)
#
/vis/open OGL
@@ -13,9 +8,9 @@
#
/vis/viewer/zoom 1.4
#
# for drawing the tracks
# (if too many tracks cause core dump => storeTrajectory 0)
/tracking/storeTrajectory 1
/vis/scene/endOfEventAction accumulate
#
# for drawing the tracks
/vis/scene/add/trajectories
# (if too many tracks cause core dump => storeTrajectory 0)
+9 -1
View File
@@ -1,4 +1,4 @@
$Id: History 104017 2017-05-08 07:31:29Z gcosmo $
$Id: History 110007 2018-05-14 08:23:07Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -17,6 +17,14 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
10-05-18 J. Allison (exampleRE05-V10-04-02)
- Move deletion of vis manager to top scope. For batch jobs it was
not being deleted.
10-05-18 J. Allison (exampleRE05-V10-04-01)
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
05-05-17 M. Asai (exampleRE05-V10-03-00)
- RE05PrimaryGeneratorAction.cc : fix potential rare race condition
issue.
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: exampleRE05.cc 98775 2016-08-09 14:30:39Z gcosmo $
// $Id: exampleRE05.cc 110007 2018-05-14 08:23:07Z gcosmo $
//
/// \file RE05/exampleRE05.cc
/// \brief Main program of the RE05 example
@@ -32,6 +32,8 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#include "G4Types.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
#include "RE05WorkerInitialization.hh"
@@ -48,16 +50,17 @@
#include "G4ParallelWorldPhysics.hh"
#include "RE05ActionInitialization.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
int main(int argc,char** argv)
{
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
#ifdef G4MULTITHREADED
G4MTRunManager* runManager = new G4MTRunManager;
G4int number_of_threads = 4; // default number of threads
@@ -87,36 +90,27 @@ int main(int argc,char** argv)
runManager->Initialize();
#ifdef G4VIS_USE
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
//get the pointer to the User Interface manager
G4UImanager* UImanager = G4UImanager::GetUIpointer();
if (argc!=1) // batch mode
if (!ui) // batch mode
{
G4String command = "/control/execute ";
G4String fileName = argv[1];
UImanager->ApplyCommand(command+fileName);
}
else // interactive mode : define UI session
{
#ifdef G4UI_USE
G4UIExecutive * ui = new G4UIExecutive(argc,argv);
#ifdef G4VIS_USE
UImanager->ApplyCommand("/control/execute vis.mac");
#endif
{
UImanager->ApplyCommand("/control/execute vis.mac");
ui->SessionStart();
delete ui;
#endif
#ifdef G4VIS_USE
delete visManager;
#endif
}
delete visManager;
// Job termination
// Free the store: user actions, physics_list and detector_description are
// owned and deleted by the run manager, so they should not
+199 -205
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -80,8 +80,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -448,8 +448,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 1 GeV ---> 5 GeV
Model: Binary Cascade: 0 eV ---> 1.5 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -690,13 +689,11 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 0 eV ---> 5 GeV
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for pi-
@@ -705,13 +702,11 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 0 eV ---> 5 GeV
Cr_sctns: Barashenkov-Glauber-Gribov: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: hBertiniCaptureAtRest
@@ -721,15 +716,12 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticCHIPS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: ChipsProtonElasticXS: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: protonInelastic
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 1 GeV ---> 5 GeV
Model: Binary Cascade: 0 eV ---> 1.5 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Cr_sctns: G4ParticleInelasticXS: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
@@ -845,9 +837,9 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
### Run 0 start.
G4HEPEvtInterface - reading 484 HEPEvt particles from pythia_event.data.
>>> Event 0
46 hits are stored in RE05TrackerHitsCollection.
43 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.0777899382923 (GeV)
40 hits are stored in RE05TrackerHitsCollection.
45 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.9876680156825 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
>>> Event 1
@@ -865,19 +857,19 @@ G4HEPEvtInterface - reading 448 HEPEvt particles from pythia_event.data.
>>> Event 3
0 hits are stored in RE05TrackerHitsCollection.
3 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.53060689733116 (GeV)
Total energy deposition in calorimeter : 0.51881512893474 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 945 HEPEvt particles from pythia_event.data.
>>> Event 4
95 hits are stored in RE05TrackerHitsCollection.
62 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.778192523656 (GeV)
125 hits are stored in RE05TrackerHitsCollection.
73 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.84626309108 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 837 HEPEvt particles from pythia_event.data.
>>> Event 5
42 hits are stored in RE05TrackerHitsCollection.
46 hits are stored in RE05TrackerHitsCollection.
7 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.8987483752869 (GeV)
Total energy deposition in calorimeter : 2.895132946601 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data.
>>> Event 6
@@ -887,33 +879,33 @@ G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 627 HEPEvt particles from pythia_event.data.
>>> Event 7
29 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.9348038446587 (GeV)
50 hits are stored in RE05TrackerHitsCollection.
29 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.2832997452549 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 682 HEPEvt particles from pythia_event.data.
>>> Event 8
47 hits are stored in RE05TrackerHitsCollection.
55 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.5556565450705 (GeV)
56 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.6557714948055 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 330 HEPEvt particles from pythia_event.data.
>>> Event 9
15 hits are stored in RE05TrackerHitsCollection.
25 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.7528998396768 (GeV)
29 hits are stored in RE05TrackerHitsCollection.
22 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.2760498317921 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1060 HEPEvt particles from pythia_event.data.
>>> Event 10
91 hits are stored in RE05TrackerHitsCollection.
83 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 12.847670765647 (GeV)
121 hits are stored in RE05TrackerHitsCollection.
57 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.3043750282642 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1010 HEPEvt particles from pythia_event.data.
>>> Event 11
0 hits are stored in RE05TrackerHitsCollection.
17 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.863919307922 (GeV)
Total energy deposition in calorimeter : 2.8670831513603 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data.
>>> Event 12
@@ -923,15 +915,15 @@ G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 815 HEPEvt particles from pythia_event.data.
>>> Event 13
130 hits are stored in RE05TrackerHitsCollection.
61 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.2065683592309 (GeV)
66 hits are stored in RE05TrackerHitsCollection.
49 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.271924185806 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 702 HEPEvt particles from pythia_event.data.
>>> Event 14
85 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05TrackerHitsCollection.
36 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.6391341789687 (GeV)
Total energy deposition in calorimeter : 8.539420011831 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data.
>>> Event 15
@@ -941,15 +933,15 @@ G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 405 HEPEvt particles from pythia_event.data.
>>> Event 16
18 hits are stored in RE05TrackerHitsCollection.
29 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.0876670387095 (GeV)
28 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.4179752794378 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 533 HEPEvt particles from pythia_event.data.
>>> Event 17
0 hits are stored in RE05TrackerHitsCollection.
5 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.96092310411843 (GeV)
Total energy deposition in calorimeter : 0.97971871085496 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data.
>>> Event 18
@@ -959,15 +951,15 @@ G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
>>> Event 19
45 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.6437427667821 (GeV)
43 hits are stored in RE05TrackerHitsCollection.
36 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.274166598493 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 906 HEPEvt particles from pythia_event.data.
>>> Event 20
73 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.3986852198729 (GeV)
49 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.1595580783501 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data.
>>> Event 21
@@ -977,9 +969,9 @@ G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 387 HEPEvt particles from pythia_event.data.
>>> Event 22
31 hits are stored in RE05TrackerHitsCollection.
31 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.9605016257202 (GeV)
59 hits are stored in RE05TrackerHitsCollection.
25 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.9498747012185 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 359 HEPEvt particles from pythia_event.data.
>>> Event 23
@@ -997,7 +989,7 @@ G4HEPEvtInterface - reading 786 HEPEvt particles from pythia_event.data.
>>> Event 25
0 hits are stored in RE05TrackerHitsCollection.
7 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 1.2165691288539 (GeV)
Total energy deposition in calorimeter : 1.2037671366696 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data.
>>> Event 26
@@ -1008,14 +1000,14 @@ G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data.
G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
>>> Event 27
0 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.4667915472124 (GeV)
45 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.0553755629186 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 694 HEPEvt particles from pythia_event.data.
>>> Event 28
0 hits are stored in RE05TrackerHitsCollection.
8 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 1.4010918293305 (GeV)
Total energy deposition in calorimeter : 1.4124118985279 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data.
>>> Event 29
@@ -1025,15 +1017,15 @@ G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 425 HEPEvt particles from pythia_event.data.
>>> Event 30
42 hits are stored in RE05TrackerHitsCollection.
27 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.0820643400286 (GeV)
38 hits are stored in RE05TrackerHitsCollection.
28 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.8364763195359 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 466 HEPEvt particles from pythia_event.data.
>>> Event 31
72 hits are stored in RE05TrackerHitsCollection.
35 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.8350946612013 (GeV)
25 hits are stored in RE05TrackerHitsCollection.
38 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.1995802318475 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data.
>>> Event 32
@@ -1043,15 +1035,15 @@ G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 575 HEPEvt particles from pythia_event.data.
>>> Event 33
102 hits are stored in RE05TrackerHitsCollection.
82 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.7417711679191 (GeV)
71 hits are stored in RE05TrackerHitsCollection.
16 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.949020825888 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1002 HEPEvt particles from pythia_event.data.
>>> Event 34
107 hits are stored in RE05TrackerHitsCollection.
62 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.3152871448597 (GeV)
137 hits are stored in RE05TrackerHitsCollection.
63 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.104756222983 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 440 HEPEvt particles from pythia_event.data.
>>> Event 35
@@ -1067,51 +1059,51 @@ G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 318 HEPEvt particles from pythia_event.data.
>>> Event 37
7 hits are stored in RE05TrackerHitsCollection.
14 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.8671253682214 (GeV)
0 hits are stored in RE05MuonHitsCollection.
27 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.7006040353546 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 367 HEPEvt particles from pythia_event.data.
>>> Event 38
50 hits are stored in RE05TrackerHitsCollection.
49 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.9347817367621 (GeV)
49 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.1958400334765 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1000 HEPEvt particles from pythia_event.data.
>>> Event 39
0 hits are stored in RE05TrackerHitsCollection.
4 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.72218128804242 (GeV)
Total energy deposition in calorimeter : 0.7353696756248 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 253 HEPEvt particles from pythia_event.data.
>>> Event 40
26 hits are stored in RE05TrackerHitsCollection.
24 hits are stored in RE05TrackerHitsCollection.
31 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.750296245303 (GeV)
Total energy deposition in calorimeter : 4.5186221171966 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 474 HEPEvt particles from pythia_event.data.
>>> Event 41
23 hits are stored in RE05TrackerHitsCollection.
25 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.8832971510158 (GeV)
33 hits are stored in RE05TrackerHitsCollection.
20 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.4447887271054 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 695 HEPEvt particles from pythia_event.data.
>>> Event 42
84 hits are stored in RE05TrackerHitsCollection.
47 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.6152759655826 (GeV)
78 hits are stored in RE05TrackerHitsCollection.
41 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.4417821471572 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 760 HEPEvt particles from pythia_event.data.
>>> Event 43
0 hits are stored in RE05TrackerHitsCollection.
13 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.2351123489912 (GeV)
Total energy deposition in calorimeter : 2.2285199943551 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 328 HEPEvt particles from pythia_event.data.
>>> Event 44
0 hits are stored in RE05TrackerHitsCollection.
10 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 1.7706114812265 (GeV)
Total energy deposition in calorimeter : 1.77527916383 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data.
>>> Event 45
@@ -1121,21 +1113,21 @@ G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 420 HEPEvt particles from pythia_event.data.
>>> Event 46
75 hits are stored in RE05TrackerHitsCollection.
43 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.7156168597548 (GeV)
56 hits are stored in RE05TrackerHitsCollection.
46 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.5790917050409 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1092 HEPEvt particles from pythia_event.data.
>>> Event 47
52 hits are stored in RE05TrackerHitsCollection.
48 hits are stored in RE05TrackerHitsCollection.
54 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.6524651858678 (GeV)
Total energy deposition in calorimeter : 7.3916284771821 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 708 HEPEvt particles from pythia_event.data.
>>> Event 48
49 hits are stored in RE05TrackerHitsCollection.
44 hits are stored in RE05TrackerHitsCollection.
19 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.0474810469902 (GeV)
Total energy deposition in calorimeter : 4.0140819099722 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data.
>>> Event 49
@@ -1145,15 +1137,15 @@ G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 422 HEPEvt particles from pythia_event.data.
>>> Event 50
22 hits are stored in RE05TrackerHitsCollection.
23 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.6742059260867 (GeV)
Total energy deposition in calorimeter : 6.5114588133842 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
>>> Event 51
80 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.0360628537428 (GeV)
43 hits are stored in RE05TrackerHitsCollection.
40 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.6329028166409 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 380 HEPEvt particles from pythia_event.data.
>>> Event 52
@@ -1169,39 +1161,39 @@ G4HEPEvtInterface - reading 780 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 218 HEPEvt particles from pythia_event.data.
>>> Event 54
20 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.6073021130934 (GeV)
19 hits are stored in RE05TrackerHitsCollection.
31 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.8482190494605 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 349 HEPEvt particles from pythia_event.data.
>>> Event 55
41 hits are stored in RE05TrackerHitsCollection.
26 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.2144662274046 (GeV)
62 hits are stored in RE05TrackerHitsCollection.
34 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.7330644577317 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 566 HEPEvt particles from pythia_event.data.
>>> Event 56
63 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.1374651931023 (GeV)
59 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.1784136578357 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 467 HEPEvt particles from pythia_event.data.
>>> Event 57
72 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.3921977750359 (GeV)
44 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.7733272732235 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 745 HEPEvt particles from pythia_event.data.
>>> Event 58
45 hits are stored in RE05TrackerHitsCollection.
43 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.0420218333759 (GeV)
55 hits are stored in RE05TrackerHitsCollection.
41 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.1272575758594 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 742 HEPEvt particles from pythia_event.data.
>>> Event 59
0 hits are stored in RE05TrackerHitsCollection.
12 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.0879842813897 (GeV)
Total energy deposition in calorimeter : 2.0967948995223 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 822 HEPEvt particles from pythia_event.data.
>>> Event 60
@@ -1213,13 +1205,13 @@ G4HEPEvtInterface - reading 324 HEPEvt particles from pythia_event.data.
>>> Event 61
0 hits are stored in RE05TrackerHitsCollection.
1 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.11292574723215 (GeV)
Total energy deposition in calorimeter : 0.11989659461946 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
>>> Event 62
22 hits are stored in RE05TrackerHitsCollection.
19 hits are stored in RE05TrackerHitsCollection.
10 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.1534887080542 (GeV)
Total energy deposition in calorimeter : 3.1685805235336 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data.
>>> Event 63
@@ -1229,21 +1221,21 @@ G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 340 HEPEvt particles from pythia_event.data.
>>> Event 64
7 hits are stored in RE05TrackerHitsCollection.
9 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 1.9337371014919 (GeV)
0 hits are stored in RE05MuonHitsCollection.
61 hits are stored in RE05TrackerHitsCollection.
26 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.0360112403056 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 520 HEPEvt particles from pythia_event.data.
>>> Event 65
39 hits are stored in RE05TrackerHitsCollection.
42 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.0298810714066 (GeV)
40 hits are stored in RE05TrackerHitsCollection.
41 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.3897053804467 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 235 HEPEvt particles from pythia_event.data.
>>> Event 66
13 hits are stored in RE05TrackerHitsCollection.
23 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.9151512526261 (GeV)
7 hits are stored in RE05TrackerHitsCollection.
13 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 2.1123944451152 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data.
>>> Event 67
@@ -1254,14 +1246,14 @@ G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data.
G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
>>> Event 68
0 hits are stored in RE05TrackerHitsCollection.
9 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.96443019179733 (GeV)
7 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.96035430537381 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 264 HEPEvt particles from pythia_event.data.
>>> Event 69
52 hits are stored in RE05TrackerHitsCollection.
29 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.8250068467379 (GeV)
47 hits are stored in RE05TrackerHitsCollection.
37 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.37208377215 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 785 HEPEvt particles from pythia_event.data.
>>> Event 70
@@ -1273,49 +1265,49 @@ G4HEPEvtInterface - reading 618 HEPEvt particles from pythia_event.data.
>>> Event 71
0 hits are stored in RE05TrackerHitsCollection.
4 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.59733465878767 (GeV)
Total energy deposition in calorimeter : 0.60537016417788 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 219 HEPEvt particles from pythia_event.data.
>>> Event 72
73 hits are stored in RE05TrackerHitsCollection.
54 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.1903948116266 (GeV)
Total energy deposition in calorimeter : 5.9802542481416 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 480 HEPEvt particles from pythia_event.data.
>>> Event 73
29 hits are stored in RE05TrackerHitsCollection.
45 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.6943432738474 (GeV)
96 hits are stored in RE05TrackerHitsCollection.
50 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 13.449363534734 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 614 HEPEvt particles from pythia_event.data.
>>> Event 74
0 hits are stored in RE05TrackerHitsCollection.
4 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.57787399080071 (GeV)
Total energy deposition in calorimeter : 0.5772424209993 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 436 HEPEvt particles from pythia_event.data.
>>> Event 75
6 hits are stored in RE05TrackerHitsCollection.
50 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.3152180252057 (GeV)
10 hits are stored in RE05TrackerHitsCollection.
54 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.2327953163012 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 355 HEPEvt particles from pythia_event.data.
>>> Event 76
13 hits are stored in RE05TrackerHitsCollection.
36 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.9155455286848 (GeV)
46 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.736516879922 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
>>> Event 77
17 hits are stored in RE05TrackerHitsCollection.
90 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.834507276681 (GeV)
26 hits are stored in RE05TrackerHitsCollection.
79 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.931176957272 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 752 HEPEvt particles from pythia_event.data.
>>> Event 78
0 hits are stored in RE05TrackerHitsCollection.
4 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.67731498819789 (GeV)
Total energy deposition in calorimeter : 0.66937475846027 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data.
>>> Event 79
@@ -1325,15 +1317,15 @@ G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 564 HEPEvt particles from pythia_event.data.
>>> Event 80
26 hits are stored in RE05TrackerHitsCollection.
63 hits are stored in RE05TrackerHitsCollection.
51 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.8370899900564 (GeV)
Total energy deposition in calorimeter : 5.4411076764242 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 220 HEPEvt particles from pythia_event.data.
>>> Event 81
24 hits are stored in RE05TrackerHitsCollection.
35 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.4326847732988 (GeV)
46 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.6726171826228 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data.
>>> Event 82
@@ -1343,45 +1335,45 @@ G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 914 HEPEvt particles from pythia_event.data.
>>> Event 83
67 hits are stored in RE05TrackerHitsCollection.
56 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.4661236481004 (GeV)
75 hits are stored in RE05TrackerHitsCollection.
47 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 11.520941800012 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
>>> Event 84
30 hits are stored in RE05TrackerHitsCollection.
39 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 11.132533641753 (GeV)
36 hits are stored in RE05TrackerHitsCollection.
34 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 10.425673131464 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1034 HEPEvt particles from pythia_event.data.
>>> Event 85
132 hits are stored in RE05TrackerHitsCollection.
86 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 12.587441576636 (GeV)
129 hits are stored in RE05TrackerHitsCollection.
81 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 12.19480473059 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
>>> Event 86
68 hits are stored in RE05TrackerHitsCollection.
38 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.9890135511244 (GeV)
47 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.4932874721174 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 246 HEPEvt particles from pythia_event.data.
>>> Event 87
35 hits are stored in RE05TrackerHitsCollection.
52 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.4761123377363 (GeV)
38 hits are stored in RE05TrackerHitsCollection.
33 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 3.9369363706747 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 1139 HEPEvt particles from pythia_event.data.
>>> Event 88
0 hits are stored in RE05TrackerHitsCollection.
7 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 1.3360912033447 (GeV)
0 hits are stored in RE05MuonHitsCollection.
89 hits are stored in RE05TrackerHitsCollection.
75 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.6256038323944 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 991 HEPEvt particles from pythia_event.data.
>>> Event 89
107 hits are stored in RE05TrackerHitsCollection.
52 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.3990574081673 (GeV)
124 hits are stored in RE05TrackerHitsCollection.
54 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 9.4090274932472 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data.
>>> Event 90
@@ -1391,21 +1383,21 @@ G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
>>> Event 91
71 hits are stored in RE05TrackerHitsCollection.
30 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.8413845164797 (GeV)
33 hits are stored in RE05TrackerHitsCollection.
41 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.5706871494878 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 410 HEPEvt particles from pythia_event.data.
>>> Event 92
0 hits are stored in RE05TrackerHitsCollection.
5 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.98429038980721 (GeV)
Total energy deposition in calorimeter : 0.97658930604505 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 680 HEPEvt particles from pythia_event.data.
>>> Event 93
51 hits are stored in RE05TrackerHitsCollection.
57 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 8.1265450342211 (GeV)
90 hits are stored in RE05TrackerHitsCollection.
47 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.5182389144442 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data.
>>> Event 94
@@ -1415,15 +1407,15 @@ G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 358 HEPEvt particles from pythia_event.data.
>>> Event 95
20 hits are stored in RE05TrackerHitsCollection.
28 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.1725077191232 (GeV)
15 hits are stored in RE05TrackerHitsCollection.
30 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 5.1007309158479 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 546 HEPEvt particles from pythia_event.data.
>>> Event 96
0 hits are stored in RE05TrackerHitsCollection.
3 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 0.5159598018127 (GeV)
Total energy deposition in calorimeter : 0.52110719123905 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data.
>>> Event 97
@@ -1433,21 +1425,23 @@ G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 298 HEPEvt particles from pythia_event.data.
>>> Event 98
75 hits are stored in RE05TrackerHitsCollection.
29 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 4.9235449030835 (GeV)
157 hits are stored in RE05TrackerHitsCollection.
35 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 6.4134673492518 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
>>> Event 99
62 hits are stored in RE05TrackerHitsCollection.
46 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.485552751577 (GeV)
68 hits are stored in RE05TrackerHitsCollection.
54 hits are stored in RE05CalorimeterHitsCollection.
Total energy deposition in calorimeter : 7.7878349065183 (GeV)
1 hits are stored in RE05MuonHitsCollection.
Run terminated.
Run Summary
Number of events processed : 100
User=19.37s Real=24.85s Sys=0.09s
User=15.780000s Real=16.686950s Sys=0.060000s
#
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
UserDetectorConstruction deleted.
UserPhysicsList deleted.
@@ -1459,30 +1453,30 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
Total navigation history collections cleaned: 499
Total navigation history collections cleaned: 488
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 0.809 MB
Pool ID '20G4NavigationLevelRep', size : 0.79 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.852 MB
Pool ID '17G4DynamicParticle', size : 0.81 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.157 MB
Pool ID '16G4HEPEvtParticle', size : 0.0269 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
Pool ID '7G4Track', size : 1.47 MB
Pool ID '18G4TouchableHistory', size : 0.0596 MB
Pool ID '7G4Track', size : 1.39 MB
Pool ID '18G4TouchableHistory', size : 0.0586 MB
Pool ID '15G4CountedObjectIvE', size : 0.00769 MB
Pool ID '12G4Trajectory', size : 0.0308 MB
Pool ID '17G4TrajectoryPoint', size : 0.194 MB
Pool ID '14RE05TrackerHit', size : 0.00577 MB
Pool ID '18RE05CalorimeterHit', size : 0.0125 MB
Pool ID '12G4Trajectory', size : 0.0317 MB
Pool ID '17G4TrajectoryPoint', size : 0.189 MB
Pool ID '14RE05TrackerHit', size : 0.00673 MB
Pool ID '18RE05CalorimeterHit', size : 0.0115 MB
Pool ID '11RE05MuonHit', size : 0.000961 MB
Pool ID '21G4TrajectoryContainer', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.00865 MB
Pool ID '17G4ReactionProduct', size : 0.0154 MB
Pool ID '10G4Fragment', size : 0.00961 MB
Pool ID '17G4ReactionProduct', size : 0.0125 MB
Number of memory pools allocated: 20 of which, static: 0
Dynamic pools deleted: 20 / Total memory freed: 3.7 MB
Dynamic pools deleted: 20 / Total memory freed: 3.5 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
+10 -1
View File
@@ -1,4 +1,4 @@
$Id: History 101675 2016-11-21 09:24:40Z gcosmo $
$Id: History 109972 2018-05-14 07:07:04Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -17,6 +17,15 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 11, 2018 J. Allison (exampleRE06-V10-04-01)
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
May 08, 2018 B. Morgan (exampleRE06-V10-04-00)
- Include G4Types before use of G4MULTITHREADED. For forward
compatibility with move to #defines over -D for G4 preprocessor
symbols.
Nov 19, 2016 A. Dotti (exampleRE06-V10-02-00)
- Setting SD explicitly to managers
@@ -26,25 +26,22 @@
/// \file RE06/exampleRE06.cc
/// \brief Main program of the RE06 example
//
// $Id: exampleRE06.cc 97979 2016-06-30 09:36:20Z gcosmo $
//
// $Id: exampleRE06.cc 109972 2018-05-14 07:07:04Z gcosmo $
//
// --------------------------------------------------------------
// GEANT 4 - example RE06
// GEANT 4 - example RE06
// --------------------------------------------------------------
#include "G4Types.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
#else
#include "G4RunManager.hh"
#endif
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
#include "G4UImanager.hh"
#include "FTFP_BERT.hh"
@@ -60,6 +57,12 @@
int main(int argc,char** argv)
{
// Instantiate G4UIExecutive if there are no arguments (interactive mode)
G4UIExecutive* ui = nullptr;
if ( argc == 1 ) {
ui = new G4UIExecutive(argc, argv);
}
// Construct the stepping verbose class
RE06SteppingVerbose* verbosity = new RE06SteppingVerbose;
G4VSteppingVerbose::SetInstance(verbosity);
@@ -84,53 +87,44 @@ int main(int argc,char** argv)
G4VModularPhysicsList* physics = new FTFP_BERT;
physics->RegisterPhysics(new G4ParallelWorldPhysics(parallelWorldName));
runManager->SetUserInitialization(physics);
// Set user action classes
//
runManager->SetUserInitialization(new RE06ActionInitialization);
#ifdef G4VIS_USE
// Visualization manager
//
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
#endif
// Initialize G4 kernel
//
runManager->Initialize();
// Get the pointer to the User Interface manager
//
G4UImanager* UImanager = G4UImanager::GetUIpointer();
G4UImanager* UImanager = G4UImanager::GetUIpointer();
if (argc==1) // Define UI session for interactive mode
if (ui) // Define UI session for interactive mode
{
#ifdef G4UI_USE
G4UIExecutive * ui = new G4UIExecutive(argc,argv);
#ifdef G4VIS_USE
UImanager->ApplyCommand("/control/execute vis.mac");
#endif
UImanager->ApplyCommand("/control/execute vis.mac");
ui->SessionStart();
delete ui;
#endif
}
else // Batch mode
{
{
G4String command = "/control/execute ";
G4String fileName = argv[1];
UImanager->ApplyCommand(command+fileName);
}
// Job termination
// Free the store:
// Free the store:
// user actions, physics_list and detector_description are
// owned and deleted by the run manager, so they should not
// be deleted in the main() program !
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
return 0;
+362 -366
View File
@@ -4,7 +4,7 @@
############################################
**************************************************************
Geant4 version Name: geant4-10-04-patch-02 (25-May-2018)
Geant4 version Name: geant4-10-05-beta-01 (29-June-2018)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -222,8 +222,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -590,7 +590,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: BertiniCascade: 0 eV ---> 12 GeV
Cr_sctns: G4NeutronInelasticXS: 0 eV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
Process: nCapture
Model: nRadCapture: 0 eV ---> 100 TeV
@@ -833,7 +832,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi+Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
@@ -850,7 +848,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: hElasticLHEP: 0 eV ---> 1.0001 GeV
Model: hElasticGlauber: 1 GeV ---> 100 TeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: pi-Inelastic
Model: FTFP: 3 GeV ---> 100 TeV
@@ -874,7 +871,6 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Model: FTFP: 3 GeV ---> 100 TeV
Model: BertiniCascade: 0 eV ---> 12 GeV
Cr_sctns: Barashenkov-Glauber: 0 eV ---> 100 TeV
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
---------------------------------------------------
Hadronic Processes for triton
@@ -967,7 +963,7 @@ Index : 6 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
User=1.38s Real=1.71s Sys=0.27s
User=1.370000s Real=1.769188s Sys=0.380000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -975,124 +971,124 @@ Region : Calor-A
Production thresholds :
gamma 1 mm e- 1 mm e+ 1 mm
Energy deposition in an event :
Absorber 3.3495 GeV Gap 392.189 MeV
Absorber 4.61999 GeV Gap 540.852 MeV
Number of secondaries in an event :
gamma in Absorber 1057.7 in Gap 64.2
e- in Absorber 1764.7 in Gap 183.9
e+ in Absorber 115.1 in Gap 2.6
gamma in Absorber 1789.1 in Gap 107.1
e- in Absorber 2950.2 in Gap 294.8
e+ in Absorber 187.4 in Gap 5
Minimum kinetic energy of generated secondaries :
gamma in Absorber 101.922 keV in Gap 6.23798 keV
e- in Absorber 153.145 eV in Gap 160.948 eV
e+ in Absorber 15.9802 keV in Gap 117.685 keV
gamma in Absorber 94.7183 keV in Gap 6.21715 keV
e- in Absorber 158.678 eV in Gap 239.208 eV
e+ in Absorber 577.884 eV in Gap 201.491 keV
Total track length of e+/e- in an event :
Absorber 1.42976 m Gap 95.5966 cm
Absorber 2.326 m Gap 1.67752 m
Total number of steps of e+/e- in an event :
Absorber 4477.9 Gap 663.5
Absorber 7514 Gap 1097.2
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 3461.19 1025.9 1472.8 100.7 2088.29 4109.8
1 158.26 56.9 252.8 9.7 169.886 555
2 58.4711 17.3 103.3 3.2 58.198 220.6
3 30.3722 10.1 54.1 2 30.87 113.3
4 16.5347 5.4 30.2 1 20.6296 68.6
5 7.06748 2.1 13.4 0.4 7.9262 28.6
6 3.33948 1.3 8 0.2 3.48562 16.9
7 2.05384 0.7 4 0.2 2.42863 9.5
8 0.709789 0.1 2.5 0 0.445154 5.2
9 2.05015 0.5 2.8 0.1 2.64566 6.1
10 0.270498 0.2 0.6 0.1 0.143131 1.1
11 0.424439 0.3 1 0.1 0.262528 1.8
12 0.151462 0 0.3 0 0.0747223 0.8
13 0.00812727 0 0 0 0 0
14 0.153602 0 0.4 0 0.0711094 0.6
15 0.110567 0 0.3 0 0.102124 0.5
16 0.467506 1.1 1.9 0 0.26554 2.7
17 0.0293362 0 0.2 0 0.0030871 0.3
18 0.00715376 0 0 0 0 0
19 0.00349149 0 0 0 0 0
0 4661.16 1720.4 2423.2 162.3 3460.14 6750.7
1 290.001 106.6 446.8 16.8 328.216 1016.4
2 114.155 39.3 192 7.5 120.268 435.1
3 47.0878 16.1 86.4 3.5 47.0862 185.5
4 20.4838 5.8 41.5 0.8 21.6858 99.9
5 10.5382 3.1 22 0.7 9.43204 49.7
6 5.36748 1.3 12.4 0.1 4.47508 24.6
7 5.06358 1.7 8.1 0.3 3.66967 19.9
8 1.39237 0.5 3.2 0.1 1.2079 5.9
9 2.52326 0.8 3.4 0.2 2.39536 10.6
10 0.632259 0.2 2.3 0 0.778031 3.8
11 0.749963 0.3 1.2 0.1 0.476643 3.3
12 0.145061 0 0.3 0 0.0781919 0.6
13 0.724227 0.1 0.7 0 2.41519 2.1
14 0.0882311 0 0.1 0 0.0569053 0.3
15 0.314789 0 0.3 0 0.863597 0.7
16 0.373527 0 0.9 0 0.210781 1.9
17 0.0023737 0 0 0 0 0
18 0.0331183 0 0.2 0 0.0662354 0.2
19 0.00251336 0 0 0 0 0
############################################################
Region : Calor-B
Production thresholds :
gamma 1 mm e- 1 mm e+ 1 mm
Energy deposition in an event :
Absorber 2.61718 GeV Gap 346.706 MeV
Absorber 2.50511 GeV Gap 312.025 MeV
Number of secondaries in an event :
gamma in Absorber 670.2 in Gap 42.6
e- in Absorber 1135.1 in Gap 131.4
e+ in Absorber 68.1 in Gap 2.2
gamma in Absorber 608.5 in Gap 34.4
e- in Absorber 1021.7 in Gap 118
e+ in Absorber 61.7 in Gap 1.7
Minimum kinetic energy of generated secondaries :
gamma in Absorber 101.858 keV in Gap 6.24734 keV
e- in Absorber 103.534 eV in Gap 157.687 eV
e+ in Absorber 27.6975 keV in Gap 42.6547 keV
gamma in Absorber 101.883 keV in Gap 6.25619 keV
e- in Absorber 175.937 eV in Gap 112.417 eV
e+ in Absorber 28.5949 keV in Gap 356.432 keV
Total track length of e+/e- in an event :
Absorber 90.9447 cm Gap 72.2652 cm
Absorber 83.0696 cm Gap 55.9308 cm
Total number of steps of e+/e- in an event :
Absorber 2875.6 Gap 501
Absorber 2603.8 Gap 414.1
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 2780.26 651.7 972.9 59.7 1409.94 2704.5
1 104.523 35.8 157.5 4.8 126.089 359
2 40.6315 12.5 64.3 3.2 51.9386 151.7
3 17.1567 5.7 32.5 1.3 18.9409 70
4 7.7196 2 15.4 0.6 8.75799 30.8
5 4.60142 2 8.3 0.2 3.85198 20.7
6 3.17248 1.1 5 0.1 4.94989 10.3
7 1.99634 0.8 3.9 0.1 1.43599 8.2
8 0.576725 0 1.4 0 0.865349 2.6
9 0.770549 0.3 1.7 0.1 0.524213 2.8
10 0.948502 0.3 1 0.1 2.39455 4.6
11 0.0377363 0 0.3 0 0.00777169 0.4
12 0.170904 0.1 0.3 0 0.100794 0.6
13 0.013601 0 0.1 0 0.00672031 0.1
14 0.226395 0 0.1 0 0.732378 1.8
15 0.248358 0.2 0.8 0 0.244853 3.5
16 0.679458 0.3 0.7 0.1 1.08363 4.3
17 0.00268402 0 0 0 0 0
18 0.107211 0 0.2 0 0.215786 0.5
19 5.92725e-05 0 0 0 0 0
0 2647.25 583.9 859.4 52.7 1222.81 2393.6
1 106.38 37.8 159.2 6.5 106.863 360.5
2 32.2268 12.4 60.1 2.5 30.2439 132.6
3 16.1516 4.6 30.9 0.8 17.5085 71.3
4 7.28759 1.9 13.4 0.4 5.10369 25.1
5 3.84589 1.4 8.4 0.3 3.38762 15.9
6 2.37124 0.4 4.5 0.1 2.549 10.5
7 0.284279 0 1.4 0 0.13396 1.9
8 0.698341 0.4 0.7 0.1 0.900708 3.3
9 0.179365 0 0.7 0 0.166053 1.5
10 0.0723004 0 0.4 0 0.0291957 0.6
11 0.0344874 0 0.3 0 0.0696095 0.4
12 0.213105 0 0.2 0 0.144143 0.4
13 2.21606e-05 0 0 0 0 0
14 0.000178801 0 0 0 0 0
15 0.000176818 0 0 0 0 0
16 2.35276e-05 0 0 0 0 0
17 0.00061371 0 0 0 0 0
18 0.00262511 0 0 0 0 0
19 0.135646 0.1 0.1 0 0.0959687 0.3
############################################################
Region : Calor-C
Production thresholds :
gamma 10 cm e- 10 cm e+ 10 cm
Energy deposition in an event :
Absorber 2.64836 GeV Gap 280.269 MeV
Absorber 3.40881 GeV Gap 397.483 MeV
Number of secondaries in an event :
gamma in Absorber 121.2 in Gap 11.4
e- in Absorber 213.9 in Gap 16.4
e+ in Absorber 33.9 in Gap 1.2
gamma in Absorber 290.4 in Gap 36.3
e- in Absorber 416 in Gap 39.8
e+ in Absorber 73.1 in Gap 2.8
Minimum kinetic energy of generated secondaries :
gamma in Absorber 100.123 keV in Gap 56.8972 keV
e- in Absorber 692.125 eV in Gap 1.99515 keV
e+ in Absorber 20.6528 keV in Gap 200.972 keV
gamma in Absorber 85.0855 keV in Gap 57.5514 keV
e- in Absorber 313.399 eV in Gap 656.09 eV
e+ in Absorber 64.3894 keV in Gap 314.979 keV
Total track length of e+/e- in an event :
Absorber 33.8747 cm Gap 22.1432 cm
Absorber 76.6091 cm Gap 69.2027 cm
Total number of steps of e+/e- in an event :
Absorber 595.7 Gap 87.8
Absorber 1247.8 Gap 234.9
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 2861.49 119.6 160.6 29.7 494.604 515
1 45.7354 9.9 39.8 3.9 45.6144 107.9
2 9.65621 1.7 12.8 0.8 8.2789 25.6
3 5.0813 0.4 7 0.2 6.55413 13.7
4 2.91844 0.2 3.8 0.1 2.05357 7.5
5 1.0744 0 1.8 0 1.40059 4.4
6 0.606861 0.2 1.1 0.1 0.391664 1.9
7 0.224944 0 0.7 0 0.164311 1
8 1.04209 0.4 1 0.2 0.626516 2
9 0.521498 0.2 0.7 0.1 0.373901 1.2
10 0.134753 0 0.4 0 0.0621522 1.9
11 0.0979864 0 0.5 0 0.0272527 1.3
12 0.0162719 0 0.1 0 0.0265809 0.1
13 0.00201711 0 0 0 0 0
14 0.00204243 0 0 0 0 0
15 0.00165447 0 0 0 0 0
16 0.00905205 0 0 0 0 0
17 0.00630872 0 0 0 0 0
18 0.0031079 0 0 0 0 0
19 0.000585181 0 0 0 0 0
0 3684.72 303.5 339.2 67.5 1305.62 1193.4
1 85.1904 15.8 66.2 5.9 107.003 174.7
2 18.9478 3.5 22.7 1.4 28.473 51.6
3 7.83013 2.1 12.4 0.8 7.72948 31.4
4 3.76509 0.4 6.6 0.1 4.04734 12.3
5 2.23002 0.2 3.1 0.1 1.73037 7.1
6 0.920694 0.1 1.3 0 0.986675 3.3
7 0.846217 0.5 1.9 0 1.10081 4.4
8 0.392927 0.2 0.7 0 0.379664 1.2
9 0.409833 0 0.6 0 0.293804 1
10 0.727061 0.3 0.5 0.1 0.455786 1.2
11 0.0954372 0.1 0.2 0 0.0292938 0.4
12 0.0110015 0 0 0 0 0
13 0.021999 0 0 0 0 0
14 0.0111176 0 0 0 0 0
15 0.0240857 0 0.1 0 0.00607803 0.2
16 0.0470034 0 0.1 0 0.0977188 0.1
17 0.0184844 0 0 0 0 0
18 0.00385928 0 0 0 0 0
19 0.0291714 0 0.1 0 0.00712547 0.2
############################################################
/run/dumpCouples
@@ -1207,8 +1203,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -1616,7 +1612,7 @@ Index : 6 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
User=5.28s Real=6.73s Sys=1.22s
User=1.760000s Real=2.248970s Sys=0.470000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -1624,124 +1620,124 @@ Region : Calor-A
Production thresholds :
gamma 200 um e- 200 um e+ 200 um
Energy deposition in an event :
Absorber 10.8132 GeV Gap 1.05313 GeV
Absorber 2.63024 GeV Gap 355.545 MeV
Number of secondaries in an event :
gamma in Absorber 6698.9 in Gap 329.6
e- in Absorber 10725.1 in Gap 1053.6
e+ in Absorber 579.9 in Gap 21.4
gamma in Absorber 888.7 in Gap 58.3
e- in Absorber 1581.5 in Gap 233.1
e+ in Absorber 67.3 in Gap 2.6
Minimum kinetic energy of generated secondaries :
gamma in Absorber 47.1851 keV in Gap 2.81079 keV
e- in Absorber 7.72952 eV in Gap 7.37574 eV
e+ in Absorber 160.472 eV in Gap 90.3326 keV
gamma in Absorber 47.2091 keV in Gap 2.80545 keV
e- in Absorber 120.155 eV in Gap 55.774 eV
e+ in Absorber 8.73421 keV in Gap 272.325 keV
Total track length of e+/e- in an event :
Absorber 7.02823 m Gap 4.27368 m
Absorber 1.00364 m Gap 81.6225 cm
Total number of steps of e+/e- in an event :
Absorber 27159.9 Gap 3398.1
Absorber 3884.7 Gap 703.8
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 10322.9 6256.7 9027.1 505.3 9658.39 24225.8
1 912.141 481.7 1521.1 56.6 996.818 3575.1
2 326.278 151.1 609.1 21 331.435 1384.3
3 144.637 65.1 283 8.7 155.055 635.9
4 72.0975 34.4 145.8 4.3 70.7624 314.6
5 36.4737 17 76.1 1.9 36.2179 169.4
6 21.4841 10.1 43.9 1.4 17.4215 87.3
7 10.3419 2.9 26.3 0.6 10.5291 59.7
8 5.78566 2.7 15.8 0.5 9.28609 36.6
9 2.56374 0.8 6.1 0.3 2.34923 12.8
10 3.2857 1.4 6.8 0.2 4.64005 16.2
11 2.91509 1.7 5.2 0.4 3.62618 15.5
12 1.28764 0.5 3.1 0 1.76279 6.1
13 0.847717 0.4 1.6 0.1 0.944268 3.4
14 0.918172 1.2 2.7 0 0.464621 4.4
15 0.583326 0.1 1.2 0 0.843778 2.3
16 0.159514 0 0.4 0 0.0742811 1.3
17 0.226131 0 0.7 0 0.109375 1.1
18 0.425268 0.2 1.2 0 0.421255 3.7
19 0.0992118 0 0.3 0 0.0857277 0.4
0 2787.13 850.6 1466.6 57.1 1570.88 3754.5
1 113.339 57.5 183.2 7.8 157.028 457.6
2 46.4169 22.2 84.5 3 51.7612 194.1
3 19.7399 8.1 40.6 1.1 21.2385 86.5
4 8.44984 4.3 17.8 0.5 7.15828 44.3
5 3.59868 1.2 7.1 0.1 3.09968 13.4
6 2.36489 1 4.8 0.2 1.65685 9.4
7 1.34027 0.5 3.6 0 1.41841 8.7
8 1.33613 0.9 2.1 0.1 3.00375 7.3
9 0.375375 0 0.7 0 0.406191 1.3
10 0.787345 0.2 1.3 0 1.09906 4.6
11 0.286273 0.1 0.8 0 0.613245 3.7
12 0.232408 0.3 0.8 0 0.30718 1.9
13 0.21949 0 0.3 0 0.119348 0.5
14 0.0124005 0 0 0 0 0
15 0.143293 0.1 0.4 0 0.0680092 0.7
16 0.00675773 0 0 0 0 0
17 0.000858742 0 0 0 0 0
18 0.00266147 0 0 0 0 0
19 0.00204424 0 0 0 0 0
############################################################
Region : Calor-B
Production thresholds :
gamma 2 mm e- 2 mm e+ 2 mm
Energy deposition in an event :
Absorber 2.49941 GeV Gap 313.781 MeV
Absorber 2.73547 GeV Gap 343.717 MeV
Number of secondaries in an event :
gamma in Absorber 556.1 in Gap 30.9
e- in Absorber 931.6 in Gap 89.9
e+ in Absorber 60.2 in Gap 1.6
gamma in Absorber 681.1 in Gap 42.4
e- in Absorber 1143.5 in Gap 116.8
e+ in Absorber 73.2 in Gap 2.2
Minimum kinetic energy of generated secondaries :
gamma in Absorber 120.884 keV in Gap 9.17065 keV
e- in Absorber 105.678 eV in Gap 258.391 eV
e+ in Absorber 14.2462 keV in Gap 138.889 keV
gamma in Absorber 85.018 keV in Gap 8.87755 keV
e- in Absorber 141.949 eV in Gap 279.025 eV
e+ in Absorber 16.2011 keV in Gap 928.411 keV
Total track length of e+/e- in an event :
Absorber 77.882 cm Gap 54.3155 cm
Absorber 93.9131 cm Gap 69.7378 cm
Total number of steps of e+/e- in an event :
Absorber 2378.3 Gap 342.3
Absorber 2892.4 Gap 433.2
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 2641.82 525.4 771.9 49.7 1138.09 2147.7
1 108.372 39.9 140.8 7.1 123.299 329.8
2 31.489 11.5 52.7 2.6 30.9638 112.7
3 14.3638 4.4 24.7 1.1 14.35 53.5
4 8.84846 3.2 14.8 0.9 7.22829 41.1
5 2.95155 0.8 7 0.1 2.66236 13.7
6 1.82206 0.5 2.8 0.1 1.12331 5
7 0.520392 0 1.3 0 0.794554 2.4
8 0.79703 0.4 1.2 0.1 1.65504 6.7
9 0.637954 0 1.3 0 0.376085 2
10 0.442269 0.3 0.6 0.1 0.266405 1.1
11 0.450775 0.2 0.8 0 0.305961 2.1
12 0.179969 0.2 0.6 0 0.264552 0.9
13 0.0716651 0 0.2 0 0.0766121 0.3
14 0.0233577 0 0.3 0 0.0113019 0.4
15 0.0123544 0 0 0 0 0
16 0.0414803 0 0.1 0 0.00597589 0.2
17 0.116927 0.1 0.2 0 0.396285 0.5
18 0.15912 0.1 0.2 0 0.101044 0.5
19 0.0280501 0 0 0 0 0
0 2862.12 651.6 917.3 62.9 1428.43 2595.8
1 125.49 44.1 175 7.4 121.871 384.9
2 47.9368 15.6 82.9 2.6 43.7056 172.1
3 19.9214 6.3 36.8 1.3 18.1555 77.4
4 9.66326 2.7 20 0.7 7.86323 41.8
5 5.38871 1.6 9.2 0.2 6.67876 18.6
6 2.70132 0.7 8.3 0.1 2.10496 12.4
7 1.93124 0.3 4.5 0 1.92775 8.3
8 2.06255 0.3 2.7 0.1 3.51879 8.1
9 0.860185 0 1.4 0 1.26642 2.7
10 0.438766 0.3 0.5 0.1 0.372668 1
11 0.239984 0 0.6 0 0.197179 0.9
12 0.119026 0 0.3 0 0.0948001 0.4
13 0.0420235 0 0.2 0 0.124697 0.3
14 0.120408 0 0.1 0 0.0793811 0.2
15 0.0275191 0 0.2 0 0.0596895 0.2
16 0.127068 0 0.3 0 0.0597301 0.5
17 0.0011392 0 0 0 0 0
18 0.000628431 0 0 0 0 0
19 0.000171514 0 0 0 0 0
############################################################
Region : Calor-C
Production thresholds :
gamma 2 cm e- 2 cm e+ 2 cm
Energy deposition in an event :
Absorber 4.22104 GeV Gap 470.889 MeV
Absorber 6.22667 GeV Gap 660.952 MeV
Number of secondaries in an event :
gamma in Absorber 913.3 in Gap 62.9
e- in Absorber 1718.4 in Gap 154.7
e+ in Absorber 155.3 in Gap 5.3
gamma in Absorber 1630.3 in Gap 116.1
e- in Absorber 3055.2 in Gap 275.9
e+ in Absorber 288.6 in Gap 9.8
Minimum kinetic energy of generated secondaries :
gamma in Absorber 148.431 keV in Gap 27.1061 keV
e- in Absorber 110.267 eV in Gap 101.899 eV
e+ in Absorber 941.63 eV in Gap 342.869 keV
gamma in Absorber 70.4834 keV in Gap 27.052 keV
e- in Absorber 38.587 eV in Gap 131.204 eV
e+ in Absorber 2.23672 keV in Gap 28.0648 keV
Total track length of e+/e- in an event :
Absorber 1.76183 m Gap 1.14639 m
Absorber 3.11148 m Gap 2.05299 m
Total number of steps of e+/e- in an event :
Absorber 4242.2 Gap 630.4
Absorber 7626.5 Gap 1072.9
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 4303.14 895.3 1306.4 136.3 2487.71 3648.8
1 224.066 51.1 304.2 14.9 251.442 665.1
2 87.8983 15.8 132.5 4.9 94.7512 285
3 42.1344 8 67.8 2.4 37.5676 136.7
4 13.681 2.2 25.9 0.7 14.2071 49.9
5 8.76603 1.9 14.5 0.8 10.6185 32
6 3.67339 0.5 6.7 0.2 3.52138 13.1
7 2.58782 0.1 5 0 2.0737 12.1
8 2.61075 0.9 2.7 0.3 2.67559 8.6
9 1.37069 0 2.8 0 1.96816 9.2
10 0.689979 0.4 0.9 0.1 0.684602 2
11 0.413178 0 0.7 0 0.38383 1.2
12 0.0626492 0 0.2 0 0.0995421 3.1
13 0.150327 0 0.8 0 0.0931695 3
14 0.362616 0 1.2 0 0.229816 1.8
15 0.0135619 0 0.1 0 1.01269e-05 0.1
16 0.0300974 0 0.3 0 0.0129492 0.4
17 0.173779 0 0.4 0 0.172965 0.5
18 0.0189821 0 0 0 0 0
19 0.035661 0 0 0 0 0
0 6145.43 1580.8 2324.2 251.4 4374.37 6447.2
1 443.922 105 527 27.9 502.979 1241.7
2 151.447 33.3 225.5 10.5 152.526 490.7
3 78.6425 15.1 123.4 4.7 75.0539 255.8
4 32.6731 6.1 57.9 2.1 28.158 116.2
5 14.1629 2 27.9 0.8 12.1049 54
6 7.76814 1 15.8 0.4 7.26126 37.3
7 3.91724 1.1 9.4 0.3 3.07262 19.6
8 4.46531 1.2 8 0.2 3.96907 12.9
9 2.4679 0.2 4.3 0.1 1.58034 8.4
10 0.671108 0 2.4 0 0.752105 3.7
11 0.235165 0 0.7 0 0.250089 1.1
12 0.0464598 0 0.2 0 0.0484668 0.3
13 0.441813 0 1.2 0 1.01191 2.7
14 0.461313 0.3 1.3 0 0.462883 2.1
15 0.238042 0 0.7 0 0.357201 1
16 0.275063 0 0.6 0 0.254261 3.8
17 0.0045074 0 0 0 0 0
18 0.0521529 0 0.1 0 0.103619 0.2
19 0.153134 0 0.2 0 0.0790554 0.3
############################################################
/run/dumpCouples
@@ -1857,8 +1853,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -2296,7 +2292,7 @@ Index : 12 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
User=0.68s Real=0.87s Sys=0.19s
User=0.330000s Real=0.424994s Sys=0.100000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -2304,124 +2300,124 @@ Region : Calor-A
Production thresholds :
gamma 200 um e- 200 um e+ 200 um
Energy deposition in an event :
Absorber 633.486 MeV Gap 272.153 MeV
Absorber 612.1 MeV Gap 266.889 MeV
Number of secondaries in an event :
gamma in Absorber 61.9 in Gap 15.8
e- in Absorber 413.1 in Gap 193
e+ in Absorber 2.5 in Gap 0.5
gamma in Absorber 53.3 in Gap 14.1
e- in Absorber 336.1 in Gap 171.9
e+ in Absorber 2.3 in Gap 0.7
Minimum kinetic energy of generated secondaries :
gamma in Absorber 3.35559 keV in Gap 1.50736 keV
e- in Absorber 100.542 eV in Gap 105.967 eV
e+ in Absorber 375.302 keV in Gap 3.29733 MeV
gamma in Absorber 3.26854 keV in Gap 1.59278 keV
e- in Absorber 118.125 eV in Gap 103.319 eV
e+ in Absorber 231.996 keV in Gap 1.172 MeV
Total track length of e+/e- in an event :
Absorber 58.5819 cm Gap 53.631 cm
Absorber 53.9471 cm Gap 50.4593 cm
Total number of steps of e+/e- in an event :
Absorber 791.5 Gap 389.3
Absorber 683.7 Gap 368
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 839.227 62.5 307.3 2.2 918.903 733
1 24.7156 5.8 64.3 0 77.6518 116.7
2 17.3039 4.8 51.4 0.4 62.8491 84.8
3 7.37351 1.6 37.1 0.1 22.336 50.8
4 3.37313 0.9 32.3 0.2 7.78203 46.9
5 3.41161 0.4 25.5 0 9.65326 34.7
6 2.51158 0.2 19.3 0 5.28358 25.6
7 1.70271 0.1 15.4 0 3.53182 18.5
8 1.12586 0 12.5 0 2.24196 17.7
9 1.12088 0.2 9.1 0 2.44094 11.5
10 0.518551 0.1 8.9 0 0.620687 11.5
11 0.135928 0 3.6 0 0.117844 4
12 0.11336 0 2.9 0 0.141864 3.2
13 0.252203 0 2.9 0 0.694479 3.4
14 0.108773 0 3 0 0.108608 3.5
15 0.175856 0 4 0 0.167774 4.5
16 0.907781 0.5 1.9 0 2.29121 3.3
17 0.165651 0 2 0 0.233784 2.7
18 0.00786543 0 0.7 0 0.00179864 0.7
19 1.29581 0.6 1.2 0.1 4.93484 2.8
0 828.228 55.4 301 2 891.074 734.7
1 29.3855 6.8 52.5 0.6 98.0341 104.2
2 8.84945 3.1 33.3 0.2 25.3321 53
3 2.62676 0.3 21.5 0 6.74142 27.2
4 3.86225 1 22.1 0.1 10.2044 32.2
5 1.47261 0 18.3 0 2.76894 22.6
6 1.11573 0.4 12.4 0.1 2.37861 16.8
7 0.976815 0.1 10 0 2.87312 15.6
8 0.391515 0 10.2 0 0.33839 11.4
9 0.763299 0.1 6.3 0 2.04219 8.5
10 0.281659 0 4.7 0 0.296665 5.9
11 0.291055 0 5.3 0 0.582237 5.8
12 0.133825 0.1 4.6 0 0.145563 5.3
13 0.223204 0 2.1 0 0.554469 3.8
14 0.243404 0.1 0.3 0 0.601499 0.7
15 0.0437716 0 0.8 0 0.0388418 0.9
16 0.0381468 0 0.6 0 0.0264898 0.7
17 0.0384864 0 1 0 0.0198587 1.3
18 0.00375874 0 0.4 0 0.00067378 0.4
19 0.0181596 0 0.4 0 0.00946757 0.5
############################################################
Region : Calor-B
Production thresholds :
gamma 2 mm e- 2 mm e+ 2 mm
Energy deposition in an event :
Absorber 593.568 MeV Gap 259.602 MeV
Absorber 678.903 MeV Gap 292.436 MeV
Number of secondaries in an event :
gamma in Absorber 36.9 in Gap 11.3
e- in Absorber 197.6 in Gap 90.9
e+ in Absorber 2 in Gap 0.2
gamma in Absorber 58.6 in Gap 17.3
e- in Absorber 342.9 in Gap 143.6
e+ in Absorber 3.5 in Gap 0.4
Minimum kinetic energy of generated secondaries :
gamma in Absorber 9.6481 keV in Gap 3.95504 keV
e- in Absorber 107.019 eV in Gap 108.447 eV
e+ in Absorber 415.117 keV in Gap 1.80283 MeV
gamma in Absorber 9.69573 keV in Gap 3.97589 keV
e- in Absorber 102.138 eV in Gap 118.692 eV
e+ in Absorber 955.238 keV in Gap 18.0687 MeV
Total track length of e+/e- in an event :
Absorber 41.819 cm Gap 41.9241 cm
Absorber 61.7708 cm Gap 58.8632 cm
Total number of steps of e+/e- in an event :
Absorber 430.7 Gap 222
Absorber 687.4 Gap 328.8
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 773.809 32.5 80 1 595.069 322.9
1 45.0526 9.1 38.7 0.6 147.677 83.3
2 15.3231 2.7 34 0.1 48.3917 58.9
3 5.67331 1.5 29.8 0.1 14.2208 45.6
4 1.86538 0 21.3 0 4.33014 26.6
5 2.48639 0.1 18.3 0 5.19385 22.7
6 3.82871 1.3 14.8 0.2 10.5274 25.3
7 0.645261 0 11.2 0 1.12805 12.6
8 1.28665 0 8.7 0 3.93304 10.4
9 0.95523 0.4 5.7 0 3.0466 10.1
10 0.158242 0 5 0 0.0966985 5.5
11 0.211454 0 3.2 0 0.219802 3.9
12 0.168864 0 3.8 0 0.179321 4.4
13 0.182575 0 1.9 0 0.284211 2.4
14 0.309291 0 2 0 0.532715 2.7
15 0.538414 0.2 1.9 0 1.25796 2.5
16 0.0702098 0 2 0 0.0448489 2.3
17 0.11664 0 0.7 0 0.450767 1
18 0.0323431 0 1.3 0 0.0108992 1.5
19 0.0197616 0 0.7 0 0.00924196 0.8
0 851.133 52.7 119.6 2.2 849.414 447.2
1 51.5922 10.5 63 0.6 175.109 138.4
2 31.9245 6.2 60.4 0.3 89.9268 107.2
3 13.3928 3 56.1 0.3 37.7003 81.2
4 5.48357 1.1 39.9 0.2 13.5123 53.6
5 2.9572 0.2 34 0 6.39171 43.5
6 2.74041 0.3 26 0.1 5.05037 31.6
7 3.01357 0.2 20.1 0 6.00938 26.3
8 1.46354 0 11.9 0 4.30864 16.7
9 0.911429 0.2 13.5 0 2.0658 16.9
10 2.41153 0.8 10.8 0.1 7.39733 14.5
11 0.591049 0 7.1 0 0.83619 8
12 2.0172 0.4 4.4 0.1 5.13015 7.2
13 0.596475 0.3 5.2 0 1.66303 7
14 0.162041 0 3.6 0 0.156785 4
15 0.175662 0 3.1 0 0.222383 3.6
16 0.0466408 0 1.2 0 0.0238236 1.6
17 0.499638 0 1.5 0 1.16817 2
18 0.0670358 0 1 0 0.084238 1.1
19 0.0615164 0 1.6 0 0.0394755 1.8
############################################################
Region : Calor-C
Production thresholds :
gamma 2 cm e- 2 cm e+ 2 cm
Energy deposition in an event :
Absorber 1.3047 GeV Gap 571.949 MeV
Absorber 600.331 MeV Gap 256.833 MeV
Number of secondaries in an event :
gamma in Absorber 179.8 in Gap 54.1
e- in Absorber 870.5 in Gap 346.4
e+ in Absorber 14.5 in Gap 3.8
gamma in Absorber 26.4 in Gap 7.9
e- in Absorber 149.5 in Gap 65.3
e+ in Absorber 1.6 in Gap 0.6
Minimum kinetic energy of generated secondaries :
gamma in Absorber 28.3112 keV in Gap 10.8753 keV
e- in Absorber 103.417 eV in Gap 119.406 eV
e+ in Absorber 621.208 keV in Gap 334.11 keV
gamma in Absorber 28.5526 keV in Gap 11.6351 keV
e- in Absorber 106.93 eV in Gap 115.634 eV
e+ in Absorber 1.27718 MeV in Gap 3.46283 MeV
Total track length of e+/e- in an event :
Absorber 1.86398 m Gap 1.86294 m
Absorber 30.5293 cm Gap 30.0185 cm
Total number of steps of e+/e- in an event :
Absorber 1596.6 Gap 677.5
Absorber 276.8 Gap 120.2
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 1630.06 197.8 266.2 15.2 3024.06 902
1 130.321 22.7 198.4 1.2 407.154 368.1
2 38.7531 5.6 160.6 0.6 107.583 232.7
3 29.2678 4.7 130.9 0.7 81.2336 181.5
4 15.0215 0.9 106.5 0.1 35.7685 137.4
5 5.8853 0.2 79.2 0 10.3283 96.7
6 5.10394 0.5 60.8 0.1 11.6612 77.2
7 3.56604 0 50.9 0 6.09553 61.6
8 3.89993 0.4 40.2 0.1 7.13608 50.5
9 3.0783 0.3 27.1 0 7.95482 37.9
10 1.85952 0 25.2 0 3.2769 32.8
11 0.846101 0 16.2 0 0.873879 22.5
12 1.19781 0 12.6 0 2.00065 14.6
13 1.88741 0 10.1 0 5.37479 15
14 1.95702 0.3 6.3 0.1 3.95234 9
15 1.15328 0.5 6.5 0.2 4.16612 9.4
16 0.285753 0 4.3 0 0.425266 4.9
17 0.788903 0 3.1 0 2.05125 3.9
18 0.241099 0 2.5 0 0.786993 3.6
19 0.0965 0 1.9 0 0.0828549 2.3
0 805.641 26.1 39.4 1.5 463.405 143
1 31.8805 6.1 36.2 0.6 96.1534 73.8
2 9.08317 1.4 29.7 0 24.0523 44.4
3 2.42388 0 19.6 0 5.07366 25.3
4 2.10407 0.1 19.3 0 5.79658 24
5 1.35542 0.1 19.3 0 2.2287 24.7
6 0.825833 0.1 14.6 0 1.02198 17.9
7 0.42031 0 9.5 0 0.473746 10.9
8 0.204121 0 5.9 0 0.127781 6.8
9 0.312513 0 7.2 0 0.311267 7.6
10 0.698265 0 3.8 0 1.61491 4.6
11 0.794062 0.3 3.1 0.1 1.69241 4.3
12 0.16549 0 2.2 0 0.427746 2.8
13 0.0317573 0 0.8 0 0.0181241 1
14 0.0270833 0 1.4 0 0.00903604 1.7
15 0.0143766 0 1 0 0.00498901 1.2
16 0.00962221 0 0.3 0 0.00307306 0.3
17 0.033169 0 0.1 0 0.0467417 0.1
18 0.012813 0 0.3 0 0.0102041 0.4
19 0.0228805 0 0.6 0 0.0124092 0.6
############################################################
/run/dumpCouples
@@ -2566,8 +2562,8 @@ compt: for gamma SubType= 13 BuildTable= 1
conv: for gamma SubType= 14 BuildTable= 1
Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
BetheHeitler : Emin= 0 eV Emax= 80 GeV
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV
BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
Rayl: for gamma SubType= 11 BuildTable= 1
Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
@@ -3005,7 +3001,7 @@ Index : 12 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
User=1.19s Real=1.54s Sys=0.28s
User=0.450000s Real=0.577283s Sys=0.130000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -3013,124 +3009,124 @@ Region : Calor-A
Production thresholds :
gamma 10 um e- 10 um e+ 10 um
Energy deposition in an event :
Absorber 941.245 MeV Gap 414.541 MeV
Absorber 511.444 MeV Gap 229.549 MeV
Number of secondaries in an event :
gamma in Absorber 179.9 in Gap 42.2
e- in Absorber 1975.2 in Gap 1676.1
e+ in Absorber 8.6 in Gap 2.5
gamma in Absorber 37.2 in Gap 8.2
e- in Absorber 854.6 in Gap 849.3
e+ in Absorber 0.5 in Gap 0.1
Minimum kinetic energy of generated secondaries :
gamma in Absorber 993.737 eV in Gap 1.01246 keV
e- in Absorber 5.201 eV in Gap 114.294 eV
e+ in Absorber 752.744 keV in Gap 384.255 keV
gamma in Absorber 1.0054 keV in Gap 1.15543 keV
e- in Absorber 15.5461 eV in Gap 146.328 eV
e+ in Absorber 1.05897 MeV in Gap 26.909 MeV
Total track length of e+/e- in an event :
Absorber 1.39388 m Gap 1.35207 m
Absorber 32.0994 cm Gap 32.1952 cm
Total number of steps of e+/e- in an event :
Absorber 3413.1 Gap 2834.5
Absorber 1226.9 Gap 1183.5
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 1203.23 180.4 2783.2 8.2 2279.45 4837.4
1 87.7939 26.8 309.4 1.5 291.933 608.9
2 25.9158 6.4 146.2 0.7 81.6468 239.4
3 10.9302 1.9 94.7 0.1 27.2676 133.7
4 6.83297 1.4 75.6 0.1 19.4552 103.3
5 6.92876 1.8 61.4 0.1 18.7086 88.3
6 5.63778 1.5 47.6 0.2 12.0417 65.5
7 2.0892 0.4 35.9 0.1 3.17253 43.3
8 3.11267 0.9 30 0 7.50528 42.1
9 0.797013 0.2 17.7 0 0.837561 23
10 0.820626 0.1 13.5 0 1.46543 17.2
11 0.501267 0 10 0 0.557703 11.6
12 0.227399 0 6.2 0 0.198072 8.3
13 0.423173 0.3 5.7 0.1 1.16385 9
14 0.152494 0 3.1 0 0.233794 4
15 0.0965288 0 3.5 0 0.0507512 3.8
16 0.0874701 0 1.7 0 0.127553 2.1
17 0.0238782 0 0.8 0 0.0213668 1
18 0.0473937 0 1.1 0 0.0331571 1.2
19 0.0166801 0 0.7 0 0.00609667 0.9
0 725.28 40.8 1598.9 0.4 599.449 2244
1 9.8871 2.7 35 0 29.4684 69
2 0.813439 0.1 15.5 0 1.52986 19.9
3 0.516126 0 11.1 0 0.792564 13.3
4 0.433237 0 7.6 0 0.535844 9.4
5 0.191477 0 3.9 0 0.278189 5.1
6 0.343887 0.3 4.9 0 0.716974 8.2
7 0.422496 0.1 2.9 0 1.41264 4.4
8 0.155913 0 3.5 0 0.1261 4.1
9 0.611568 0.4 3.6 0.1 1.75371 5.9
10 0.231281 0 2.9 0 0.501014 5.2
11 1.63524 0.9 6.1 0.1 5.6666 12.2
12 0.277927 0.1 3.1 0 0.543468 4
13 0.100443 0 2.9 0 0.0896397 3.4
14 0.0247377 0 1 0 0.0134742 1.2
15 0 0 0 0 0 0
16 0.00314452 0 0.1 0 0.00188457 0.1
17 0.00679271 0 0.1 0 0.00360777 0.1
18 0.0168409 0 0.2 0 0.0279243 0.2
19 0 0 0 0 0 0
############################################################
Region : Calor-B
Production thresholds :
gamma 100 um e- 100 um e+ 100 um
Energy deposition in an event :
Absorber 553.053 MeV Gap 244.341 MeV
Absorber 519.123 MeV Gap 228.887 MeV
Number of secondaries in an event :
gamma in Absorber 42.2 in Gap 10.2
e- in Absorber 338 in Gap 178.9
e+ in Absorber 1.3 in Gap 0.1
gamma in Absorber 31.6 in Gap 7.8
e- in Absorber 289.5 in Gap 166
e+ in Absorber 0.7 in Gap 0
Minimum kinetic energy of generated secondaries :
gamma in Absorber 2.36965 keV in Gap 1.17029 keV
e- in Absorber 133.335 eV in Gap 114.676 eV
e+ in Absorber 1.91913 MeV in Gap 18.1052 MeV
gamma in Absorber 2.38346 keV in Gap 1.23258 keV
e- in Absorber 103.261 eV in Gap 133.497 eV
e+ in Absorber 2.85739 MeV in Gap 2.88022e+295 J
Total track length of e+/e- in an event :
Absorber 40.4476 cm Gap 39.1375 cm
Absorber 32.0747 cm Gap 30.0228 cm
Total number of steps of e+/e- in an event :
Absorber 639.8 Gap 331.2
Absorber 564.1 Gap 316.9
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 761.512 43.4 365.8 0.9 689.138 730.3
1 20.7017 5.3 38.2 0.3 67.0462 76.2
2 4.27239 1 23.5 0 13.0567 35.4
3 1.69784 0.1 19.5 0 3.33795 26.5
4 1.17506 0.1 11.7 0 2.10429 18.4
5 2.40811 0.8 12.6 0.1 7.81379 19.4
6 1.82062 0.6 9.5 0 5.98118 15.3
7 1.27848 0.3 8 0 2.71856 10.1
8 0.544268 0.4 5.4 0.1 1.0122 8
9 0.788661 0.3 4.2 0 1.6513 7.4
10 0.269402 0 5.1 0 0.397138 5.8
11 0.0596768 0 2.2 0 0.0384425 2.5
12 0.0452516 0 1.9 0 0.0302606 2.2
13 0.168258 0 1.7 0 0.328156 2
14 0.330598 0.1 3 0 0.526198 5.9
15 0.0920823 0 1.9 0 0.153714 2.5
16 0.0324957 0 1.3 0 0.0134271 1.4
17 0.00586372 0 0.3 0 0.00217805 0.3
18 0.0790356 0 0.4 0 0.266994 0.6
19 0.111888 0 0.6 0 0.234122 0.7
0 728.743 36.6 349.3 0.4 563.035 717.1
1 8.77476 1.4 24.6 0 30.0086 50.4
2 3.45175 0.4 18.4 0.1 8.81114 28
3 1.36974 0.1 14.8 0 3.66586 19.9
4 1.00527 0 10.8 0.1 2.62573 13.5
5 0.451055 0.2 6.6 0 1.33935 9.8
6 2.00799 0.5 8.8 0.1 6.29059 13.9
7 0.0892074 0 3.4 0 0.0482751 4
8 1.14778 0.1 3.8 0 3.72363 6.4
9 0.404602 0.1 3.4 0 0.781789 4.1
10 0.0475276 0 2.2 0 0.0249224 2.3
11 0.0400825 0 1.4 0 0.0218002 1.5
12 0.0182766 0 0.8 0 0.0104783 0.9
13 0.00629517 0 0.3 0 0.00382199 0.3
14 0.0774371 0 1.6 0 0.0622664 1.8
15 0.0143419 0 0.4 0 0.00770682 0.4
16 0.00546207 0 0.4 0 0.00114875 0.4
17 0.105513 0 2.8 0 0.117384 3.2
18 0.0217246 0 0.6 0 0.00952812 0.7
19 0.0915396 0 0.3 0 0.203338 1.3
############################################################
Region : Calor-C
Production thresholds :
gamma 1 mm e- 1 mm e+ 1 mm
Energy deposition in an event :
Absorber 522.756 MeV Gap 225.976 MeV
Absorber 616.199 MeV Gap 263.384 MeV
Number of secondaries in an event :
gamma in Absorber 20.4 in Gap 7
e- in Absorber 124.9 in Gap 63.6
e+ in Absorber 0.2 in Gap 0.1
gamma in Absorber 48.4 in Gap 11.6
e- in Absorber 282 in Gap 120.3
e+ in Absorber 1.9 in Gap 0.5
Minimum kinetic energy of generated secondaries :
gamma in Absorber 7.16003 keV in Gap 3.03045 keV
e- in Absorber 121.984 eV in Gap 103.059 eV
e+ in Absorber 4.76776 MeV in Gap 23.9747 MeV
gamma in Absorber 6.92759 keV in Gap 2.96885 keV
e- in Absorber 110.803 eV in Gap 121.215 eV
e+ in Absorber 344.222 keV in Gap 514.59 keV
Total track length of e+/e- in an event :
Absorber 28.2769 cm Gap 25.9243 cm
Absorber 49.8344 cm Gap 44.9836 cm
Total number of steps of e+/e- in an event :
Absorber 312.5 Gap 171.1
Absorber 593.8 Gap 277.8
------------------------------------------------------------
Scores in parallel geometry
layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt
0 726.263 24 94.9 0.1 481.228 341.6
1 8.02985 1.2 18.7 0 21.1811 33.6
2 6.85866 1.1 18.6 0.1 21.2942 29.7
3 2.92517 0.6 13.5 0 7.92932 18.9
4 0.573138 0 9.3 0 0.998632 11.9
5 1.99071 0.3 7.8 0.1 5.97469 16
6 0.859161 0.2 8.3 0 1.58301 10.8
7 0.457078 0 4.5 0 0.927271 6
8 0.140639 0 2.9 0 0.123999 3.2
9 0.119017 0 2.5 0 0.105709 2.9
10 0.0754994 0 1.1 0 0.104855 1.3
11 0.0301828 0 1 0 0.0136193 1.1
12 0.0718311 0 1 0 0.091686 1
13 0.00529704 0 0.7 0 0.0016724 0.7
14 0.0343935 0 1.3 0 0.0139206 1.7
15 0.111517 0 0.5 0 0.214687 0.7
16 0.0477848 0 0.9 0 0.0390471 1.2
17 0.0911061 0 0.3 0 0.146339 0.4
18 0.0150008 0 0.2 0 0.0157108 0.3
19 0 0 0 0 0 0
0 819.296 47.5 140.5 1.5 772.615 480.5
1 30.4875 7.2 56.7 0.3 97.7251 106.4
2 15.4063 3.7 46.5 0.5 48.2145 78.1
3 5.07985 0.9 36.2 0.1 10.8464 48.6
4 3.37378 0.2 27 0 9.33686 36.7
5 1.05147 0 23.4 0 1.16541 29.9
6 1.35564 0 17.7 0 2.2297 24.1
7 0.748084 0 15.4 0 1.09024 18
8 0.577463 0.1 7.3 0 0.970619 9.1
9 0.406446 0 5.6 0 1.01107 7.9
10 0.405222 0.1 4 0 0.677554 4.8
11 0.125982 0 3.5 0 0.133661 3.8
12 0.143784 0 3.6 0 0.173493 3.9
13 0.237408 0 3.4 0 0.411978 3.8
14 0.0808304 0 2.4 0 0.0740931 2.7
15 0.106947 0 2.6 0 0.149053 4.6
16 0.523787 0.3 2.7 0 1.21136 4.2
17 0.0539242 0 1.4 0 0.0513244 1.5
18 0.00552083 0 0.3 0 0.00166309 0.4
19 0.0186979 0 0.5 0 0.00952548 0.7
############################################################
/run/dumpCouples
@@ -3222,6 +3218,6 @@ Visualization Manager deleting...
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 12 of which, static: 0
Dynamic pools deleted: 12 / Total memory freed: 0.77 MB
Dynamic pools deleted: 12 / Total memory freed: 0.76 MB
============================================================
RunManagerKernel is deleted. Good bye :)