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
Run.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file Run.hh
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
#ifndef Run_h
34
#define Run_h 1
35
36
#include "
G4Run.hh
"
37
38
#include "
G4Gamma.hh
"
39
#include "
G4Electron.hh
"
40
#include "
G4Positron.hh
"
41
42
#include "
globals.hh
"
43
44
class
DetectorConstruction
;
45
class
G4ParticleDefinition
;
46
47
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48
49
class
Run
:
public
G4Run
50
{
51
public
:
52
Run
(
DetectorConstruction
*);
53
~Run
();
54
55
public
:
56
57
void
SetPrimary
(
G4ParticleDefinition
*
particle
,
G4double
energy
);
58
59
void
AddEnergy
(
G4double
edep
)
60
{
fEnergyDeposit
+=
edep
;
fEnergyDeposit2
+= edep*
edep
;};
61
62
void
AddTrakLenCharg
(
G4double
length
)
63
{
fTrakLenCharged
+=
length
;
fTrakLenCharged2
+= length*
length
;};
64
65
void
AddTrakLenNeutr
(
G4double
length
)
66
{
fTrakLenNeutral
+=
length
;
fTrakLenNeutral2
+= length*
length
;};
67
68
void
AddMscProjTheta
(
G4double
theta
)
69
{
if
(
std::abs
(theta) <=
fMscThetaCentral
) {
fMscEntryCentral
++;
70
fMscProjecTheta
+=
theta
;
fMscProjecTheta2
+= theta*
theta
;}
71
};
72
73
void
CountStepsCharg
(
G4int
nSteps)
74
{
fNbStepsCharged
+= nSteps;
fNbStepsCharged2
+= nSteps*nSteps;};
75
76
void
CountStepsNeutr
(
G4int
nSteps)
77
{
fNbStepsNeutral
+= nSteps;
fNbStepsNeutral2
+= nSteps*nSteps;};
78
79
void
CountParticles
(
G4ParticleDefinition
*
part
)
80
{
if
(part ==
G4Gamma::Gamma
())
fNbGamma
++ ;
81
else
if
(part ==
G4Electron::Electron
())
fNbElect
++ ;
82
else
if
(part ==
G4Positron::Positron
())
fNbPosit
++ ; };
83
84
void
CountTransmit
(
G4int
flag)
85
{
if
(flag == 1)
fTransmit
[0]++;
86
else
if
(flag == 2) {
fTransmit
[0]++;
fTransmit
[1]++; }};
87
88
void
CountReflect
(
G4int
flag)
89
{
if
(flag == 1)
fReflect
[0]++;
90
else
if
(flag == 2) {
fReflect
[0]++;
fReflect
[1]++; }};
91
92
void
AddEnergyLeak
(
G4double
eleak,
G4int
index)
93
{
fEnergyLeak
[index] += eleak;
fEnergyLeak2
[index] += eleak*eleak;};
94
95
G4double
ComputeMscHighland
();
96
97
virtual
void
Merge
(
const
G4Run
*);
98
99
void
EndOfRun
();
100
101
private
:
102
DetectorConstruction
*
fDetector
;
103
G4ParticleDefinition
*
fParticle
;
104
G4double
fEkin
;
105
106
G4double
fEnergyDeposit
,
fEnergyDeposit2
;
107
G4double
fTrakLenCharged
,
fTrakLenCharged2
;
108
G4double
fTrakLenNeutral
,
fTrakLenNeutral2
;
109
G4double
fNbStepsCharged
,
fNbStepsCharged2
;
110
G4double
fNbStepsNeutral
,
fNbStepsNeutral2
;
111
G4double
fMscProjecTheta
,
fMscProjecTheta2
;
112
G4double
fMscThetaCentral
;
113
114
G4int
fNbGamma
,
fNbElect
,
fNbPosit
;
115
G4int
fTransmit
[2],
fReflect
[2];
116
G4int
fMscEntryCentral
;
117
118
G4double
fEnergyLeak
[2],
fEnergyLeak2
[2];
119
};
120
121
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
122
123
#endif
124
geant4
tree
geant4-10.6-release
examples
extended
electromagnetic
TestEm5
include
Run.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:53
using
1.8.2 with
ECCE GitHub integration