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
PrimaryGeneratorAction.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PrimaryGeneratorAction.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
//
26
// This example is provided by the Geant4-DNA collaboration
27
// Any report or published results obtained using the Geant4-DNA software
28
// shall cite the following Geant4-DNA collaboration publications:
29
// Med. Phys. 37 (2010) 4692-4708
30
// Phys. Med. 31 (2015) 861-874
31
// The Geant4-DNA web site is available at http://geant4-dna.org
32
//
35
36
#include "PrimaryGeneratorAction.hh"
37
#include "DetectorConstruction.hh"
38
39
#include "
G4Event.hh
"
40
#include "
G4ParticleGun.hh
"
41
#include "
G4ParticleTable.hh
"
42
#include "
G4ParticleDefinition.hh
"
43
#include "
G4PhysicalConstants.hh
"
44
#include "
G4SystemOfUnits.hh
"
45
#include "
Randomize.hh
"
46
#include "
G4RandomDirection.hh
"
47
#include "
G4RunManager.hh
"
48
#include "
G4StateManager.hh
"
49
50
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52
PrimaryGeneratorAction::PrimaryGeneratorAction
()
53
:
G4VUserPrimaryGeneratorAction
(),
G4VStateDependent
(),
54
fParticleGun(0),
55
fDetector(0)
56
{
57
fDetector
=
58
dynamic_cast<
const
DetectorConstruction
*
>
(
G4RunManager::GetRunManager
()
59
->
GetUserDetectorConstruction
());
60
}
61
62
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63
64
PrimaryGeneratorAction::~PrimaryGeneratorAction
()
65
{
66
G4StateManager::GetStateManager
()->
DeregisterDependent
(
this
);
67
if
(
fParticleGun
)
delete
fParticleGun
;
68
}
69
70
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71
72
void
PrimaryGeneratorAction::GeneratePrimaries
(
G4Event
* anEvent)
73
{
74
G4double
thickness
=
fDetector
->
GetCytoThickness
();
75
G4double
radius
=
fDetector
->
GetNuclRadius
();
76
77
G4double
rx=1*
m
;
78
G4double
ry=1*
m
;
79
G4double
rz=1*
m
;
80
G4double
myRadius = 0;
81
82
do
83
{
84
rx = (2*
G4UniformRand
()-1)*(radius+thickness)*1.01;
85
ry = (2*
G4UniformRand
()-1)*(radius+thickness)*1.01;
86
rz = (2*
G4UniformRand
()-1)*(radius+thickness)*1.01;
87
myRadius = std::sqrt(rx*rx+ry*ry+rz*rz);
88
89
}
while
(myRadius>radius+thickness || myRadius<radius) ;
90
91
fParticleGun
->
SetParticlePosition
(
G4ThreeVector
(rx,ry,rz));
92
fParticleGun
->
SetParticleMomentumDirection
(
G4RandomDirection
());
93
fParticleGun
->
GeneratePrimaryVertex
(anEvent);
94
}
95
96
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97
98
G4bool
PrimaryGeneratorAction::Notify
(
G4ApplicationState
requestedState)
99
{
100
if
(requestedState ==
G4State_Idle
)
101
{
102
if
(
fParticleGun
!= 0)
return
true
;
103
104
fParticleGun
=
new
G4ParticleGun
(1);
105
106
// Define default primary
107
G4ParticleDefinition
*
particle
108
=
G4ParticleTable::GetParticleTable
()->
FindParticle
(
"e-"
);
109
fParticleGun
->
SetParticleDefinition
(particle);
110
fParticleGun
->
SetParticleEnergy
(0*
eV
);
111
fParticleGun
->
SetParticlePosition
(
G4ThreeVector
());
112
fParticleGun
->
SetParticleMomentumDirection
(
G4ThreeVector
(1,0,0));
113
}
114
115
return
true
;
116
}
117
geant4
tree
geant4-10.6-release
examples
extended
medical
dna
svalue
src
PrimaryGeneratorAction.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:51
using
1.8.2 with
ECCE GitHub integration