Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AdjointPrimaryGeneratorAction Class Reference

#include <G4AdjointPrimaryGeneratorAction.hh>

Inheritance diagram for G4AdjointPrimaryGeneratorAction:

Public Member Functions

 G4AdjointPrimaryGeneratorAction ()
 ~G4AdjointPrimaryGeneratorAction () override
 G4AdjointPrimaryGeneratorAction (const G4AdjointPrimaryGeneratorAction &)=delete
G4AdjointPrimaryGeneratorActionoperator= (const G4AdjointPrimaryGeneratorAction &)=delete
void GeneratePrimaries (G4Event *) override
void SetEmin (G4double val)
void SetEmax (G4double val)
void SetEminIon (G4double val)
void SetEmaxIon (G4double val)
void SetSphericalAdjointPrimarySource (G4double radius, G4ThreeVector pos)
void SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume (const G4String &volume_name)
void ConsiderParticleAsPrimary (const G4String &particle_name)
void NeglectParticleAsPrimary (const G4String &particle_name)
void SetPrimaryIon (G4ParticleDefinition *adjointIon, G4ParticleDefinition *fwdIon)
void UpdateListOfPrimaryParticles ()
void SetRndmFlag (const G4String &val)
size_t GetNbOfAdjointPrimaryTypes ()
std::vector< G4ParticleDefinition * > * GetListOfPrimaryFwdParticles ()
const G4StringGetPrimaryIonName ()
void SetNbPrimaryFwdGammasPerEvent (G4int nb)
void SetNbAdjointPrimaryGammasPerEvent (G4int nb)
void SetNbAdjointPrimaryElectronsPerEvent (G4int nb)
G4ParticleDefinitionGetLastGeneratedFwdPrimaryParticle ()
Public Member Functions inherited from G4VUserPrimaryGeneratorAction
 G4VUserPrimaryGeneratorAction ()
virtual ~G4VUserPrimaryGeneratorAction ()=default

Detailed Description

Definition at line 80 of file G4AdjointPrimaryGeneratorAction.hh.

Constructor & Destructor Documentation

◆ G4AdjointPrimaryGeneratorAction() [1/2]

G4AdjointPrimaryGeneratorAction::G4AdjointPrimaryGeneratorAction ( )

Definition at line 48 of file G4AdjointPrimaryGeneratorAction.cc.

49{
50
51 PrimariesConsideredInAdjointSim[G4String("e-")] = false;
52 PrimariesConsideredInAdjointSim[G4String("gamma")] = false;
53 PrimariesConsideredInAdjointSim[G4String("proton")] = false;
54 PrimariesConsideredInAdjointSim[G4String("ion")] = false;
55
56 ListOfPrimaryFwdParticles.clear();
57 ListOfPrimaryAdjParticles.clear();
58}

Referenced by G4AdjointPrimaryGeneratorAction(), and operator=().

◆ ~G4AdjointPrimaryGeneratorAction()

G4AdjointPrimaryGeneratorAction::~G4AdjointPrimaryGeneratorAction ( )
override

Definition at line 62 of file G4AdjointPrimaryGeneratorAction.cc.

63{
64}

◆ G4AdjointPrimaryGeneratorAction() [2/2]

G4AdjointPrimaryGeneratorAction::G4AdjointPrimaryGeneratorAction ( const G4AdjointPrimaryGeneratorAction & )
delete

Member Function Documentation

◆ ConsiderParticleAsPrimary()

void G4AdjointPrimaryGeneratorAction::ConsiderParticleAsPrimary ( const G4String & particle_name)

Definition at line 246 of file G4AdjointPrimaryGeneratorAction.cc.

247{
248 if (PrimariesConsideredInAdjointSim.find(particle_name) != PrimariesConsideredInAdjointSim.end())
249 {
250 PrimariesConsideredInAdjointSim[particle_name] = true;
251 }
253}

◆ GeneratePrimaries()

void G4AdjointPrimaryGeneratorAction::GeneratePrimaries ( G4Event * anEvent)
overridevirtual

Implements G4VUserPrimaryGeneratorAction.

Definition at line 68 of file G4AdjointPrimaryGeneratorAction.cc.

69{
70 G4int evt_id = anEvent->GetEventID();
71 std::size_t n = ListOfPrimaryAdjParticles.size();
72 index_particle = std::size_t(evt_id) - n * (std::size_t(evt_id) / n);
73
74 G4double E1 = Emin;
75 G4double E2 = Emax;
76 if (ListOfPrimaryAdjParticles[index_particle] == nullptr)
77 UpdateListOfPrimaryParticles(); // ion has not been created yet
78
79 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_proton") {
80 E1 = EminIon;
81 E2 = EmaxIon;
82 }
83 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleType() == "adjoint_nucleus") {
84 G4int A = ListOfPrimaryAdjParticles[index_particle]->GetAtomicMass();
85 E1 = EminIon * A;
86 E2 = EmaxIon * A;
87 }
88 // Generate first the forwrad primaries
89 G4AdjointPrimaryGenerator::GetInstance()->GenerateFwdPrimaryVertex(anEvent, ListOfPrimaryFwdParticles[index_particle], E1, E2);
90
91 G4PrimaryVertex* fwdPrimVertex = anEvent->GetPrimaryVertex();
92
93 p = fwdPrimVertex->GetPrimary()->GetMomentum();
94 pos = fwdPrimVertex->GetPosition();
95 G4double pmag = p.mag();
96 G4double m0 = ListOfPrimaryFwdParticles[index_particle]->GetPDGMass();
97 G4double ekin = std::sqrt(m0 * m0 + pmag * pmag) - m0;
98
99 G4double weight_correction = 1.;
100 // For gamma generate the particle along the backward ray
101 G4ThreeVector dir = -p / p.mag();
102
103 weight_correction = 1.;
104
105 if (ListOfPrimaryFwdParticles[index_particle] == G4Gamma::Gamma() && nb_fwd_gammas_per_event > 1)
106 {
107 G4double weight = (1. / nb_fwd_gammas_per_event);
108 fwdPrimVertex->SetWeight(weight);
109 for (G4int i = 0; i < nb_fwd_gammas_per_event - 1; ++i) {
110 auto newFwdPrimVertex = new G4PrimaryVertex();
111 newFwdPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
112 newFwdPrimVertex->SetT0(0.);
113 auto aPrimParticle =
114 new G4PrimaryParticle(ListOfPrimaryFwdParticles[index_particle], p.x(), p.y(), p.z());
115 newFwdPrimVertex->SetPrimary(aPrimParticle);
116 newFwdPrimVertex->SetWeight(weight);
117 anEvent->AddPrimaryVertex(newFwdPrimVertex);
118 }
119 }
120
121 // Now generate the adjoint primaries
122 auto adjPrimVertex = new G4PrimaryVertex();
123 adjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
124 adjPrimVertex->SetT0(0.);
125 auto aPrimParticle =
126 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
127
128 adjPrimVertex->SetPrimary(aPrimParticle);
129 anEvent->AddPrimaryVertex(adjPrimVertex);
130
131 // The factor pi is to normalise the weight to the directional flux
133 G4double adjoint_weight =
134 weight_correction * ComputeEnergyDistWeight(ekin, E1, E2) * adjoint_source_area * pi;
135 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_gamma") {
136 // The weight will be corrected at the end of the track if splitted tracks
137 // are used
138 adjoint_weight = adjoint_weight / nb_adj_primary_gammas_per_event;
139 for (G4int i = 0; i < nb_adj_primary_gammas_per_event - 1; ++i) {
140 auto newAdjPrimVertex = new G4PrimaryVertex();
141 newAdjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
142 newAdjPrimVertex->SetT0(0.);
143 aPrimParticle =
144 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
145 newAdjPrimVertex->SetPrimary(aPrimParticle);
146 newAdjPrimVertex->SetWeight(adjoint_weight);
147 anEvent->AddPrimaryVertex(newAdjPrimVertex);
148 }
149 }
150 else if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_electron") {
151 // The weight will be corrected at the end of the track if splitted tracks
152 // are used
153 adjoint_weight = adjoint_weight / nb_adj_primary_electrons_per_event;
154 for (G4int i = 0; i < nb_adj_primary_electrons_per_event - 1; ++i) {
155 auto newAdjPrimVertex = new G4PrimaryVertex();
156 newAdjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
157 newAdjPrimVertex->SetT0(0.);
158 aPrimParticle =
159 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
160 newAdjPrimVertex->SetPrimary(aPrimParticle);
161 newAdjPrimVertex->SetWeight(adjoint_weight);
162 anEvent->AddPrimaryVertex(newAdjPrimVertex);
163 }
164 }
165 adjPrimVertex->SetWeight(adjoint_weight);
166
167 // Call some methods of G4AdjointSimManager
171}
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
const G4double A[17]
double mag() const
static G4AdjointPrimaryGenerator * GetInstance()
void GenerateFwdPrimaryVertex(G4Event *anEvt, G4ParticleDefinition *adj_part, G4double E1, G4double E2)
void SetAdjointTrackingMode(G4bool aBool)
void ResetDidOneAdjPartReachExtSourceDuringEvent()
static G4AdjointSimManager * GetInstance()
G4PrimaryVertex * GetPrimaryVertex(G4int i=0) const
Definition G4Event.hh:145
G4int GetEventID() const
Definition G4Event.hh:126
void AddPrimaryVertex(G4PrimaryVertex *aPrimaryVertex)
Definition G4Event.hh:129
static G4Gamma * Gamma()
Definition G4Gamma.cc:81
G4ThreeVector GetMomentum() const
G4ThreeVector GetPosition() const
void SetWeight(G4double w)
G4PrimaryParticle * GetPrimary(G4int i=0) const
const G4double pi

◆ GetLastGeneratedFwdPrimaryParticle()

G4ParticleDefinition * G4AdjointPrimaryGeneratorAction::GetLastGeneratedFwdPrimaryParticle ( )
inline

Definition at line 117 of file G4AdjointPrimaryGeneratorAction.hh.

118 {
119 return ListOfPrimaryFwdParticles[index_particle];
120 }

◆ GetListOfPrimaryFwdParticles()

std::vector< G4ParticleDefinition * > * G4AdjointPrimaryGeneratorAction::GetListOfPrimaryFwdParticles ( )
inline

Definition at line 103 of file G4AdjointPrimaryGeneratorAction.hh.

104 {
105 return &ListOfPrimaryFwdParticles;
106 }

◆ GetNbOfAdjointPrimaryTypes()

size_t G4AdjointPrimaryGeneratorAction::GetNbOfAdjointPrimaryTypes ( )
inline

Definition at line 102 of file G4AdjointPrimaryGeneratorAction.hh.

102{ return ListOfPrimaryAdjParticles.size(); }

◆ GetPrimaryIonName()

const G4String & G4AdjointPrimaryGeneratorAction::GetPrimaryIonName ( )
inline

Definition at line 107 of file G4AdjointPrimaryGeneratorAction.hh.

107{ return ion_name; }

◆ NeglectParticleAsPrimary()

void G4AdjointPrimaryGeneratorAction::NeglectParticleAsPrimary ( const G4String & particle_name)

Definition at line 257 of file G4AdjointPrimaryGeneratorAction.cc.

258{
259 if (PrimariesConsideredInAdjointSim.find(particle_name) != PrimariesConsideredInAdjointSim.end())
260 {
261 PrimariesConsideredInAdjointSim[particle_name] = false;
262 }
264}

◆ operator=()

G4AdjointPrimaryGeneratorAction & G4AdjointPrimaryGeneratorAction::operator= ( const G4AdjointPrimaryGeneratorAction & )
delete

◆ SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume()

void G4AdjointPrimaryGeneratorAction::SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume ( const G4String & volume_name)

Definition at line 237 of file G4AdjointPrimaryGeneratorAction.cc.

239{
240 type_of_adjoint_source = "ExternalSurfaceOfAVolume";
242}
void SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume(const G4String &v_name)

◆ SetEmax()

void G4AdjointPrimaryGeneratorAction::SetEmax ( G4double val)

Definition at line 183 of file G4AdjointPrimaryGeneratorAction.cc.

184{
185 Emax = val;
186 EmaxIon = val;
187}

◆ SetEmaxIon()

void G4AdjointPrimaryGeneratorAction::SetEmaxIon ( G4double val)

Definition at line 198 of file G4AdjointPrimaryGeneratorAction.cc.

199{
200 EmaxIon = val;
201}

◆ SetEmin()

void G4AdjointPrimaryGeneratorAction::SetEmin ( G4double val)

Definition at line 175 of file G4AdjointPrimaryGeneratorAction.cc.

176{
177 Emin = val;
178 EminIon = val;
179}

◆ SetEminIon()

void G4AdjointPrimaryGeneratorAction::SetEminIon ( G4double val)

Definition at line 191 of file G4AdjointPrimaryGeneratorAction.cc.

192{
193 EminIon = val;
194}

◆ SetNbAdjointPrimaryElectronsPerEvent()

void G4AdjointPrimaryGeneratorAction::SetNbAdjointPrimaryElectronsPerEvent ( G4int nb)
inline

Definition at line 113 of file G4AdjointPrimaryGeneratorAction.hh.

114 {
115 nb_adj_primary_electrons_per_event = nb;
116 }

◆ SetNbAdjointPrimaryGammasPerEvent()

void G4AdjointPrimaryGeneratorAction::SetNbAdjointPrimaryGammasPerEvent ( G4int nb)
inline

Definition at line 109 of file G4AdjointPrimaryGeneratorAction.hh.

110 {
111 nb_adj_primary_gammas_per_event = nb;
112 }

◆ SetNbPrimaryFwdGammasPerEvent()

void G4AdjointPrimaryGeneratorAction::SetNbPrimaryFwdGammasPerEvent ( G4int nb)
inline

Definition at line 108 of file G4AdjointPrimaryGeneratorAction.hh.

108{ nb_fwd_gammas_per_event = nb; }

◆ SetPrimaryIon()

void G4AdjointPrimaryGeneratorAction::SetPrimaryIon ( G4ParticleDefinition * adjointIon,
G4ParticleDefinition * fwdIon )

Definition at line 299 of file G4AdjointPrimaryGeneratorAction.cc.

301{
302 fwd_ion = fwdIon;
303 adj_ion = adjointIon;
305}

◆ SetRndmFlag()

void G4AdjointPrimaryGeneratorAction::SetRndmFlag ( const G4String & val)
inline

Definition at line 101 of file G4AdjointPrimaryGeneratorAction.hh.

101{ rndmFlag = val; }

◆ SetSphericalAdjointPrimarySource()

void G4AdjointPrimaryGeneratorAction::SetSphericalAdjointPrimarySource ( G4double radius,
G4ThreeVector pos )

Definition at line 226 of file G4AdjointPrimaryGeneratorAction.cc.

228{
229 radius_spherical_source = radius;
230 center_spherical_source = center_pos;
231 type_of_adjoint_source = "Spherical";
233}
void SetSphericalAdjointPrimarySource(G4double radius, G4ThreeVector pos)

◆ UpdateListOfPrimaryParticles()

void G4AdjointPrimaryGeneratorAction::UpdateListOfPrimaryParticles ( )

Definition at line 268 of file G4AdjointPrimaryGeneratorAction.cc.

269{
270 G4ParticleTable* theParticleTable = G4ParticleTable::GetParticleTable();
271 ListOfPrimaryFwdParticles.clear();
272 ListOfPrimaryAdjParticles.clear();
273 for (const auto& iter : PrimariesConsideredInAdjointSim) {
274 if (iter.second) {
275 G4String fwd_particle_name = iter.first;
276 if (fwd_particle_name != "ion") {
277 G4String adj_particle_name = G4String("adj_") + fwd_particle_name;
278 ListOfPrimaryFwdParticles.push_back(theParticleTable->FindParticle(fwd_particle_name));
279 ListOfPrimaryAdjParticles.push_back(theParticleTable->FindParticle(adj_particle_name));
280 }
281 else {
282 if (fwd_ion != nullptr) {
283 ion_name = fwd_ion->GetParticleName();
284 G4String adj_ion_name = G4String("adj_") + ion_name;
285 ListOfPrimaryFwdParticles.push_back(fwd_ion);
286 ListOfPrimaryAdjParticles.push_back(adj_ion);
287 }
288 else {
289 ListOfPrimaryFwdParticles.push_back(nullptr);
290 ListOfPrimaryAdjParticles.push_back(nullptr);
291 }
292 }
293 }
294 }
295}
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()

Referenced by ConsiderParticleAsPrimary(), GeneratePrimaries(), NeglectParticleAsPrimary(), and SetPrimaryIon().


The documentation for this class was generated from the following files: