Import Geant4 10.5.0.beta source tree
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user