291{
292 if (verboseLevel > 2) {
293 G4cout <<
"Calling SampleSecondaries() of G4JAEAElasticScatteringModel."
295 }
296
298
299
300 if (photonEnergy0 <= lowEnergyLimit)
301 {
303 fParticleChange->SetProposedKineticEnergy(0.);
304 fParticleChange->ProposeLocalEnergyDeposit(photonEnergy0);
305 return;
306 }
307
308
311 Xi1=gammaPolarization0.
x();
312 Xi2=gammaPolarization0.
y();
313 Xi3=gammaPolarization0.
z();
314
315 G4double polarization_magnitude=Xi1*Xi1+Xi2*Xi2+Xi3*Xi3;
316 if ((polarization_magnitude)>0 || (Xi1*Xi1>0) || (Xi2*Xi2>0) || (Xi3*Xi3>0))
317 {
318 G4cout<<
"WARNING: G4JAEAElasticScatteringModel is only compatible with non-polarized photons."
321 return;
322 }
323
324
325 const G4ParticleDefinition* particle = aDynamicGamma->
GetDefinition();
328
329 G4int energyindex=round(100*photonEnergy0)-1;
330
331
332
333
336 for (
G4int i=0;i<=180;++i)
337 {
338 a1=ES_Data[Z]->at(4*i+300+181*4*(energyindex));
339 a2=ES_Data[Z]->at(4*i+1+300+181*4*(energyindex));
340 a3=ES_Data[Z]->at(4*i+2+300+181*4*(energyindex));
341 a4=ES_Data[Z]->at(4*i+3+300+181*4*(energyindex));
342 distribution[i]=a1*a1+a2*a2+a3*a3+a4*a4;
343 normdist += distribution[i];
344 }
345
346
347 for (
G4int i =0;i<=180;++i)
348 pdf[i]=distribution[i]/normdist;
349 cdf[0]=0;
351 for (
G4int i=0; i<=180;++i)
352 {
353 cdfsum=cdfsum+pdf[i];
354 cdf[i]=cdfsum;
355 }
356
358 G4double *cdfptr=lower_bound(cdf,cdf+181,r);
360 G4double cdfinv = (r-cdf[cdfindex])/(cdf[cdfindex+1]-cdf[cdfindex]);
361 G4double theta = (cdfindex+cdfinv)/180.;
362
363 theta = theta*CLHEP::pi;
364
365
366
367
368
369
370
371
372
374
375 G4ThreeVector finaldirection(sin(theta)*cos(phi), sin(theta)*sin(phi), cos(theta));
377
378 fParticleChange->ProposeMomentumDirection(finaldirection);
379 fParticleChange->SetProposedKineticEnergy(photonEnergy0);
380}
CLHEP::Hep3Vector G4ThreeVector
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
const G4ThreeVector & GetPolarization() const
const G4Element * SelectRandomAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)