ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
RunAction.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file RunAction.cc
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
28
//
29
//
30
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
33
#include "RunAction.hh"
34
35
#include "DetectorConstruction.hh"
36
#include "PrimaryGeneratorAction.hh"
37
#include "RunActionMessenger.hh"
38
#include "HistoManager.hh"
39
#include "Run.hh"
40
#include "
G4Timer.hh
"
41
#include "
G4RunManager.hh
"
42
#include "
Randomize.hh
"
43
44
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45
46
RunAction::RunAction
(
DetectorConstruction
* det,
PrimaryGeneratorAction
* prim)
47
:
G4UserRunAction
(), fDetector(det), fPrimary(prim), fRun(nullptr),
48
fTimer(nullptr)
49
{
50
fRunMessenger
=
new
RunActionMessenger
(
this
);
51
fHistoManager
=
new
HistoManager
();
52
}
53
54
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55
56
RunAction::~RunAction
()
57
{
58
delete
fRunMessenger
;
59
}
60
61
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62
63
G4Run
*
RunAction::GenerateRun
()
64
{
65
fRun
=
new
Run
(
fDetector
);
66
return
fRun
;
67
}
68
69
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70
71
void
RunAction::BeginOfRunAction
(
const
G4Run
*)
72
{
73
// keep run condition
74
if
(
fPrimary
) {
75
G4ParticleDefinition
*
particle
76
=
fPrimary
->
GetParticleGun
()->
GetParticleDefinition
();
77
G4double
energy
=
fPrimary
->
GetParticleGun
()->
GetParticleEnergy
();
78
fRun
->
SetPrimary
(particle, energy);
79
}
80
81
//histograms
82
//
83
G4AnalysisManager
*
analysis
=
G4AnalysisManager::Instance
();
84
if
(analysis->
IsActive
()) analysis->
OpenFile
();
85
86
// save Rndm status and open the timer
87
88
if
(
isMaster
) {
89
// G4Random::showEngineStatus();
90
fTimer
=
new
G4Timer
();
91
fTimer
->
Start
();
92
}
93
}
94
95
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96
97
void
RunAction::EndOfRunAction
(
const
G4Run
*)
98
{
99
// compute and print statistic
100
if
(
isMaster
) {
101
fTimer
->
Stop
();
102
if
(!((
G4RunManager::GetRunManager
()->GetRunManagerType() ==
103
G4RunManager::sequentialRM
))) {
104
G4cout
<<
"\n"
<<
"Total number of events: "
105
<<
fRun
->
GetNumberOfEvent
() <<
G4endl
;
106
G4cout
<<
"Master thread time: "
<< *
fTimer
<<
G4endl
;
107
}
108
delete
fTimer
;
109
fRun
->
EndOfRun
();
110
}
111
//save histograms
112
G4AnalysisManager
* analysis =
G4AnalysisManager::Instance
();
113
if
(analysis->
IsActive
()) {
114
analysis->
Write
();
115
analysis->
CloseFile
();
116
}
117
118
// show Rndm status
119
// if (isMaster) G4Random::showEngineStatus();
120
}
121
122
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123
124
void
RunAction::SetEdepAndRMS
(
G4int
i,
G4double
edep
,
G4double
rms,
G4double
lim)
125
{
126
if
(
fRun
)
fRun
->
SetEdepAndRMS
(i, edep, rms, lim);
127
}
128
129
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
130
131
void
RunAction::SetApplyLimit
(
G4bool
val)
132
{
133
if
(
fRun
)
fRun
->
SetApplyLimit
(val);
134
}
135
136
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
geant4
tree
geant4-10.6-release
examples
extended
electromagnetic
TestEm3
src
RunAction.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:52
using
1.8.2 with
ECCE GitHub integration