89{
90 auto result = new G4ReactionProduct;
91 auto Z =
static_cast<G4int>(massCode / 1000);
92 auto A =
static_cast<G4int>(massCode - 1000 * Z);
93
94 if (massCode == 0) {
96 }
100 }
104 }
107 }
110 if (Z == 2) result->SetDefinition(
G4He3::He3());
111 }
114 if (Z != 2) throw G4HadronicException(__FILE__, __LINE__, "Unknown ion case 1");
115 }
116 else {
117 throw G4HadronicException(__FILE__, __LINE__,
118 "G4ParticleHPDiscreteTwoBody: Unknown ion case 2");
119 }
120
121
124 for (i = 0; i < nEnergy; i++) {
125 it = i;
126 if (theCoeff[i].GetEnergy() > anEnergy) break;
127 }
128 if (it == 0 || it == nEnergy - 1) {
129 if (theCoeff[it].GetRepresentation() == 0) {
130
131 G4ParticleHPLegendreStore theStore(1);
132 theStore.SetCoeff(0, theCoeff);
133 theStore.SetManager(theManager);
134
135
136 cosTh = theStore.SampleDiscreteTwoBody(anEnergy);
137 }
138 else if (theCoeff[it].GetRepresentation() == 12)
139 {
140 G4ParticleHPVector theStore;
141 G4InterpolationManager aManager;
142 aManager.
Init(
LINLIN, theCoeff[it].GetNumberOfPoly() / 2);
144 for (i = 0; i < theCoeff[it].GetNumberOfPoly(); i += 2) {
145
146
147
148 theStore.
SetX(i / 2, theCoeff[it].GetCoeff(i));
149 theStore.
SetY(i / 2, theCoeff[it].GetCoeff(i + 1));
150 }
151 cosTh = theStore.
Sample();
152 }
153 else if (theCoeff[it].GetRepresentation() == 14)
154 {
155 G4ParticleHPVector theStore;
156 G4InterpolationManager aManager;
157 aManager.
Init(
LOGLIN, theCoeff[it].GetNumberOfPoly() / 2);
159 for (i = 0; i < theCoeff[it].GetNumberOfPoly(); i += 2) {
160
161
162
163 theStore.
SetX(i / 2, theCoeff[it].GetCoeff(i));
164 theStore.
SetY(i / 2, theCoeff[it].GetCoeff(i + 1));
165 }
166 cosTh = theStore.
Sample();
167 }
168 else {
169 throw G4HadronicException(__FILE__, __LINE__,
170 "unknown representation type in Two-body scattering");
171 }
172 }
173 else {
174 if (!bCheckDiffCoeffRepr
175 || theCoeff[it].GetRepresentation() == theCoeff[it - 1].GetRepresentation())
176 {
177 if (theCoeff[it].GetRepresentation() == 0) {
178
179 G4ParticleHPLegendreStore theStore(2);
180 theStore.SetCoeff(0, &(theCoeff[it - 1]));
181 theStore.SetCoeff(1, &(theCoeff[it]));
182 G4InterpolationManager aManager;
183 aManager.
Init(theManager.GetScheme(it), 2);
184 theStore.SetManager(aManager);
185
186 cosTh = theStore.SampleDiscreteTwoBody(anEnergy);
187 }
188 else if (theCoeff[it].GetRepresentation() == 12)
189 {
190 G4ParticleHPVector theBuff1;
191 G4InterpolationManager aManager1;
192 aManager1.
Init(
LINLIN, theCoeff[it - 1].GetNumberOfPoly() / 2);
194 for (i = 0; i < theCoeff[it - 1].GetNumberOfPoly(); i += 2) {
195
196 theBuff1.
SetX(i / 2, theCoeff[it - 1].GetCoeff(i));
197 theBuff1.
SetY(i / 2, theCoeff[it - 1].GetCoeff(i + 1));
198 }
199 G4ParticleHPVector theBuff2;
200 G4InterpolationManager aManager2;
201 aManager2.
Init(
LINLIN, theCoeff[it].GetNumberOfPoly() / 2);
203 for (i = 0; i < theCoeff[it].GetNumberOfPoly(); i += 2) {
204 theBuff2.
SetX(i / 2, theCoeff[it].GetCoeff(i));
205 theBuff2.
SetY(i / 2, theCoeff[it].GetCoeff(i + 1));
206 }
207
208 G4double x1 = theCoeff[it - 1].GetEnergy();
209 G4double x2 = theCoeff[it].GetEnergy();
212
213 G4ParticleHPVector theStore1;
215 G4ParticleHPVector theStore2;
217 G4ParticleHPVector theStore;
218
219
221 mu = theBuff1.
GetX(i);
222 y1 = theBuff1.
GetY(i);
223 y2 = theBuff2.
GetY(mu);
224 y = theInt.Interpolate(theManager.GetScheme(it), x, x1, x2, y1, y2);
226 }
228 mu = theBuff2.
GetX(i);
229 y1 = theBuff2.
GetY(i);
230 y2 = theBuff1.
GetY(mu);
231 y = theInt.Interpolate(theManager.GetScheme(it), x, x1, x2, y1, y2);
233 }
234 theStore.
Merge(&theStore1, &theStore2);
235 cosTh = theStore.
Sample();
236 }
237 else if (theCoeff[it].GetRepresentation() == 14)
238 {
239 G4ParticleHPVector theBuff1;
240 G4InterpolationManager aManager1;
241 aManager1.
Init(
LOGLIN, theCoeff[it - 1].GetNumberOfPoly() / 2);
243 for (i = 0; i < theCoeff[it - 1].GetNumberOfPoly(); i += 2) {
244
245 theBuff1.
SetX(i / 2, theCoeff[it - 1].GetCoeff(i));
246 theBuff1.
SetY(i / 2, theCoeff[it - 1].GetCoeff(i + 1));
247 }
248
249 G4ParticleHPVector theBuff2;
250 G4InterpolationManager aManager2;
251 aManager2.
Init(
LOGLIN, theCoeff[it].GetNumberOfPoly() / 2);
253 for (i = 0; i < theCoeff[it].GetNumberOfPoly(); i += 2) {
254
255 theBuff2.
SetX(i / 2, theCoeff[it].GetCoeff(i));
256 theBuff2.
SetY(i / 2, theCoeff[it].GetCoeff(i + 1));
257 }
258
259 G4double x1 = theCoeff[it - 1].GetEnergy();
260 G4double x2 = theCoeff[it].GetEnergy();
263
264 G4ParticleHPVector theStore1;
266 G4ParticleHPVector theStore2;
268 G4ParticleHPVector theStore;
269
270
272 mu = theBuff1.
GetX(i);
273 y1 = theBuff1.
GetY(i);
274 y2 = theBuff2.
GetY(mu);
275 y = theInt.Interpolate(theManager.GetScheme(it), x, x1, x2, y1, y2);
277 }
279 mu = theBuff2.
GetX(i);
280 y1 = theBuff2.
GetY(i);
281 y2 = theBuff1.
GetY(mu);
282 y = theInt.Interpolate(theManager.GetScheme(it), x, x1, x2, y1, y2);
284 }
285 theStore.
Merge(&theStore1, &theStore2);
286 cosTh = theStore.
Sample();
287 }
288 else {
289 throw G4HadronicException(__FILE__, __LINE__,
290 "Two neighbouring distributions with different interpolation");
291 }
292 }
293 else {
294 G4cout <<
" theCoeff[it].GetRepresent MEM " << it <<
" " << &theCoeff[it] <<
" "
295 << &theCoeff[it - 1] <<
G4endl;
296 G4cout <<
" theCoeff[it].GetRepresent " << it <<
" " << theCoeff[it].GetRepresentation()
297 <<
" != " << theCoeff[it - 1].GetRepresentation() <<
G4endl;
298
299 throw G4HadronicException(__FILE__, __LINE__,
300 "unknown representation type in Two-body scattering, case 2");
301 }
302 }
303
304
305
306
307
308
309
310
311
312
313
316
317
319 G4double kinE = (A1 + 1 - A1prim) / (A1 + 1) / (A1 + 1) * (A1 * E1 + (1 + A1) *
GetQValue());
320
321 result->SetKineticEnergy(kinE);
322 if (cosTh > 1.0) { cosTh = 1.0; }
323 else if(cosTh < -1.0) { cosTh = -1.0; }
325 G4double sinth = std::sqrt((1.0 + cosTh)*(1.0 - cosTh));
326 G4double mtot = result->GetTotalMomentum();
327 G4ThreeVector tempVector(mtot * sinth * std::cos(phi), mtot * sinth * std::sin(phi),
328 mtot * cosTh);
329 result->SetMomentum(tempVector);
330 return result;
331}
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
static G4Deuteron * Deuteron()
static G4Electron * Electron()
void Init(G4int aScheme, G4int aRange)
static G4Neutron * Neutron()
void SetY(G4int i, G4double x)
void SetX(G4int i, G4double e)
void SetData(G4int i, G4double x, G4double y)
void SetInterpolationManager(const G4InterpolationManager &aManager)
G4double GetY(G4double x)
G4double GetX(G4int i) const
void Merge(G4ParticleHPVector *active, G4ParticleHPVector *passive)
G4int GetVectorLength() const
static G4Positron * Positron()
static G4Proton * Proton()
static G4Triton * Triton()
G4ReactionProduct * GetTarget() const
G4double GetQValue() const
G4ReactionProduct * GetProjectileRP() const