71{
73 std::size_t
n = ListOfPrimaryAdjParticles.size();
74 index_particle = std::size_t(evt_id) -
n * (std::size_t(evt_id) /
n);
75
78 if (ListOfPrimaryAdjParticles[index_particle] == nullptr)
80
81 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_proton") {
82 E1 = EminIon;
83 E2 = EmaxIon;
84 }
85 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleType() == "adjoint_nucleus") {
86 G4int A = ListOfPrimaryAdjParticles[index_particle]->GetAtomicMass();
89 }
90
91 theAdjointPrimaryGenerator->GenerateFwdPrimaryVertex(
92 anEvent, ListOfPrimaryFwdParticles[index_particle], E1, E2);
94
98 G4double m0 = ListOfPrimaryFwdParticles[index_particle]->GetPDGMass();
99 G4double ekin = std::sqrt(m0 * m0 + pmag * pmag) - m0;
100
102
104
105 weight_correction = 1.;
106
107 if (ListOfPrimaryFwdParticles[index_particle] ==
G4Gamma::Gamma() && nb_fwd_gammas_per_event > 1)
108 {
109 G4double weight = (1. / nb_fwd_gammas_per_event);
111 for (
G4int i = 0; i < nb_fwd_gammas_per_event - 1; ++i) {
112 auto newFwdPrimVertex = new G4PrimaryVertex();
113 newFwdPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
114 newFwdPrimVertex->SetT0(0.);
115 auto aPrimParticle =
116 new G4PrimaryParticle(ListOfPrimaryFwdParticles[index_particle], p.x(), p.y(), p.z());
117 newFwdPrimVertex->SetPrimary(aPrimParticle);
118 newFwdPrimVertex->SetWeight(weight);
120 }
121 }
122
123
124 auto adjPrimVertex = new G4PrimaryVertex();
125 adjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
126 adjPrimVertex->SetT0(0.);
127 auto aPrimParticle =
128 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
129
130 adjPrimVertex->SetPrimary(aPrimParticle);
132
133
136 weight_correction * ComputeEnergyDistWeight(ekin, E1, E2) * adjoint_source_area *
pi;
137 if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_gamma") {
138
139
140 adjoint_weight = adjoint_weight / nb_adj_primary_gammas_per_event;
141 for (
G4int i = 0; i < nb_adj_primary_gammas_per_event - 1; ++i) {
142 auto newAdjPrimVertex = new G4PrimaryVertex();
143 newAdjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
144 newAdjPrimVertex->SetT0(0.);
145 aPrimParticle =
146 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
147 newAdjPrimVertex->SetPrimary(aPrimParticle);
148 newAdjPrimVertex->SetWeight(adjoint_weight);
150 }
151 }
152 else if (ListOfPrimaryAdjParticles[index_particle]->GetParticleName() == "adj_electron") {
153
154
155 adjoint_weight = adjoint_weight / nb_adj_primary_electrons_per_event;
156 for (
G4int i = 0; i < nb_adj_primary_electrons_per_event - 1; ++i) {
157 auto newAdjPrimVertex = new G4PrimaryVertex();
158 newAdjPrimVertex->SetPosition(pos.x(), pos.y(), pos.z());
159 newAdjPrimVertex->SetT0(0.);
160 aPrimParticle =
161 new G4PrimaryParticle(ListOfPrimaryAdjParticles[index_particle], -p.x(), -p.y(), -p.z());
162 newAdjPrimVertex->SetPrimary(aPrimParticle);
163 newAdjPrimVertex->SetWeight(adjoint_weight);
165 }
166 }
167 adjPrimVertex->SetWeight(adjoint_weight);
168
169
173}
CLHEP::Hep3Vector G4ThreeVector
void ClearEndOfAdjointTrackInfoVectors()
void SetAdjointTrackingMode(G4bool aBool)
G4double GetAdjointSourceArea()
void ResetDidOneAdjPartReachExtSourceDuringEvent()
static G4AdjointSimManager * GetInstance()
G4PrimaryVertex * GetPrimaryVertex(G4int i=0) const
void AddPrimaryVertex(G4PrimaryVertex *aPrimaryVertex)
G4ThreeVector GetMomentum() const
G4ThreeVector GetPosition() const
void SetWeight(G4double w)
G4PrimaryParticle * GetPrimary(G4int i=0) const