Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GammaGeneralProcess.cc
Go to the documentation of this file.
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//
27// -------------------------------------------------------------------
28//
29// GEANT4 Class file
30//
31//
32// File name: G4GammaGeneralProcess
33//
34// Author: Vladimir Ivanchenko
35//
36// Creation date: 19.07.2018
37//
38// Modifications:
39//
40// Class Description:
41//
42
43// -------------------------------------------------------------------
44//
45//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
46//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
47
49#include "G4VDiscreteProcess.hh"
51#include "G4SystemOfUnits.hh"
52#include "G4ProcessManager.hh"
54#include "G4LossTableBuilder.hh"
55#include "G4HadronicProcess.hh"
56#include "G4LossTableManager.hh"
57#include "G4Step.hh"
58#include "G4Track.hh"
60#include "G4DataVector.hh"
61#include "G4PhysicsTable.hh"
62#include "G4PhysicsLogVector.hh"
64#include "G4VParticleChange.hh"
66#include "G4EmParameters.hh"
67#include "G4EmProcessSubType.hh"
68#include "G4Material.hh"
71#include "G4Gamma.hh"
72
73#include "G4Log.hh"
74#include <iostream>
75
76//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
77
78G4EmDataHandler* G4GammaGeneralProcess::theHandler = nullptr;
79G4bool G4GammaGeneralProcess::theT[nTables] =
80 {true,false,true,true,true,false,true,true,true,
81 true,true,true,true,true,true};
82G4String G4GammaGeneralProcess::nameT[nTables] =
83 {"0","1","2","3","4","5","6","7","8",
84 "9","10","11","12","13","14"};
85
88 minPEEnergy(150*CLHEP::keV),
89 minEEEnergy(2*CLHEP::electron_mass_c2),
90 minMMEnergy(100*CLHEP::MeV)
91{
95 if (nullptr == theHandler) {
96 theHandler = new G4EmDataHandler(nTables);
97 }
98}
99
100//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
101
103{
104 if(isTheMaster) {
105 delete theHandler;
106 theHandler = nullptr;
107 }
108}
109
110//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
111
116
117//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
118
120{
121 if(nullptr == ptr) { return; }
122 G4int stype = ptr->GetProcessSubType();
123 if(stype == fRayleigh) { theRayleigh = ptr; }
124 else if(stype == fPhotoElectricEffect) { thePhotoElectric = ptr; }
125 else if(stype == fComptonScattering) { theCompton = ptr; }
126 else if(stype == fGammaConversion) { theConversionEE = ptr; }
127}
128
129//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
130
132{
133 theConversionMM = ptr;
134}
135
136//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
137
142
143//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
144
146{
147 SetParticle(&part);
148 preStepLambda = 0.0;
149 idxEnergy = 0;
150 currentCouple = nullptr;
151
153
154 // initialise base material for the current run
158
159 if(1 < verboseLevel) {
160 G4cout << "G4GammaGeneralProcess::PreparePhysicsTable() for "
161 << GetProcessName()
162 << " and particle " << part.GetParticleName()
163 << " isMaster: " << isTheMaster << G4endl;
164 }
165
166 // 3 sub-processes must be always defined
167 if(thePhotoElectric == nullptr || theCompton == nullptr ||
168 theConversionEE == nullptr) {
170 ed << "### G4GeneralGammaProcess is initialized incorrectly"
171 << "\n Photoelectric: " << thePhotoElectric
172 << "\n Compton: " << theCompton
173 << "\n Conversion: " << theConversionEE;
174 G4Exception("G4GeneralGammaProcess","em0004",
175 FatalException, ed,"");
176 return;
177 }
178
179 thePhotoElectric->PreparePhysicsTable(part);
180 theCompton->PreparePhysicsTable(part);
181 theConversionEE->PreparePhysicsTable(part);
182 if (nullptr != theRayleigh) { theRayleigh->PreparePhysicsTable(part); }
183 if (nullptr != theGammaNuclear) { theGammaNuclear->PreparePhysicsTable(part); }
184 if (nullptr != theConversionMM) { theConversionMM->PreparePhysicsTable(part); }
185
186 InitialiseProcess(&part);
187}
188
189//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
190
192{
193 if(isTheMaster) {
194
197
198 // tables are created and its size is defined only once
199 if (nullptr != theRayleigh) { theT[1] = true; }
200
201 theHandler->SetMasterProcess(thePhotoElectric);
202 theHandler->SetMasterProcess(theCompton);
203 theHandler->SetMasterProcess(theConversionEE);
204 theHandler->SetMasterProcess(theRayleigh);
205
206 auto bld = man->GetTableBuilder();
207
208 const G4ProductionCutsTable* theCoupleTable=
210 std::size_t numOfCouples = theCoupleTable->GetTableSize();
211
212 G4double mine = param->MinKinEnergy();
213 G4double maxe = param->MaxKinEnergy();
214 G4int nd = param->NumberOfBinsPerDecade();
215 std::size_t nbin1 = std::max(5, nd*G4lrint(std::log10(minPEEnergy/mine)));
216 std::size_t nbin2 = std::max(5, nd*G4lrint(std::log10(maxe/minMMEnergy)));
217
218 G4PhysicsVector* vec = nullptr;
219 G4PhysicsLogVector aVector(mine,minPEEnergy,nbin1,true);
220 G4PhysicsLogVector bVector(minPEEnergy,minEEEnergy,nLowE,false);
221 G4PhysicsLogVector cVector(minEEEnergy,minMMEnergy,nHighE,false);
222 G4PhysicsLogVector dVector(minMMEnergy,maxe,nbin2,true);
223
224 for(std::size_t i=0; i<nTables; ++i) {
225 if(!theT[i]) { continue; }
226 //G4cout << "## PreparePhysTable " << i << "." << G4endl;
227 G4PhysicsTable* table = theHandler->MakeTable(i);
228 //G4cout << " make table " << table << G4endl;
229 for(std::size_t j=0; j<numOfCouples; ++j) {
230 vec = (*table)[j];
231 if (bld->GetFlag(j) && nullptr == vec) {
232 if(i<=1) {
233 vec = new G4PhysicsVector(aVector);
234 } else if(i<=5) {
235 vec = new G4PhysicsVector(bVector);
236 } else if(i<=9) {
237 vec = new G4PhysicsVector(cVector);
238 } else {
239 vec = new G4PhysicsVector(dVector);
240 }
242 }
243 }
244 }
245 }
246}
247
248//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
249
251{
252 if(1 < verboseLevel) {
253 G4cout << "### G4VEmProcess::BuildPhysicsTable() for "
254 << GetProcessName()
255 << " and particle " << part.GetParticleName()
256 << G4endl;
257 }
258 if(!isTheMaster) {
259 thePhotoElectric->SetEmMasterProcess(theHandler->GetMasterProcess(0));
260 baseMat = theHandler->GetMasterProcess(0)->UseBaseMaterial();
261 }
262 thePhotoElectric->BuildPhysicsTable(part);
263
264 if(!isTheMaster) {
265 theCompton->SetEmMasterProcess(theHandler->GetMasterProcess(1));
266 }
267 theCompton->BuildPhysicsTable(part);
268
269 if(!isTheMaster) {
270 theConversionEE->SetEmMasterProcess(theHandler->GetMasterProcess(2));
271 }
272 theConversionEE->BuildPhysicsTable(part);
273
274 if(theRayleigh != nullptr) {
275 if(!isTheMaster) {
276 theRayleigh->SetEmMasterProcess(theHandler->GetMasterProcess(3));
277 }
278 theRayleigh->BuildPhysicsTable(part);
279 }
280 if(theGammaNuclear != nullptr) { theGammaNuclear->BuildPhysicsTable(part); }
281 if(theConversionMM != nullptr) { theConversionMM->BuildPhysicsTable(part); }
282
283 if(isTheMaster) {
284 const G4ProductionCutsTable* theCoupleTable=
286 G4int numOfCouples = (G4int)theCoupleTable->GetTableSize();
287
289 const std::vector<G4PhysicsTable*>& tables = theHandler->GetTables();
290
292 ? theGammaNuclear->GetCrossSectionDataStore() : nullptr;
293 G4DynamicParticle* dynParticle =
295
296 G4double sigComp(0.), sigPE(0.), sigConv(0.), sigR(0.),
297 sigN(0.), sigM(0.), val(0.);
298
299 for(G4int i=0; i<numOfCouples; ++i) {
300
301 if (bld->GetFlag(i)) {
302 G4int idx = (!baseMat) ? i : DensityIndex(i);
303 const G4MaterialCutsCouple* couple =
304 theCoupleTable->GetMaterialCutsCouple(i);
305 const G4Material* material = couple->GetMaterial();
306
307 // energy interval 0
308 std::size_t nn = (*(tables[0]))[idx]->GetVectorLength();
309 if(1 < verboseLevel) {
310 G4cout << "======= Zone 0 ======= N= " << nn
311 << " for " << material->GetName() << G4endl;
312 }
313 for(std::size_t j=0; j<nn; ++j) {
314 G4double e = (*(tables[0]))[idx]->Energy(j);
315 G4double loge = G4Log(e);
316 sigComp = theCompton->GetLambda(e, couple, loge);
317 sigR = (nullptr != theRayleigh) ?
318 theRayleigh->GetLambda(e, couple, loge) : 0.0;
319 G4double sum = sigComp + sigR;
320 if(1 < verboseLevel) {
321 G4cout << j << ". E= " << e << " xs= " << sum
322 << " compt= " << sigComp << " Rayl= " << sigR << G4endl;
323 }
324 (*(tables[0]))[idx]->PutValue(j, sum);
325 if(theT[1]) {
326 val = sigR/sum;
327 (*(tables[1]))[idx]->PutValue(j, val);
328 }
329 }
330
331 // energy interval 1
332 nn = (*(tables[2]))[idx]->GetVectorLength();
333 if(1 < verboseLevel) {
334 G4cout << "======= Zone 1 ======= N= " << nn << G4endl;
335 }
336 for(std::size_t j=0; j<nn; ++j) {
337 G4double e = (*(tables[2]))[idx]->Energy(j);
338 G4double loge = G4Log(e);
339 sigComp = theCompton->GetLambda(e, couple, loge);
340 sigR = (nullptr != theRayleigh) ?
341 theRayleigh->GetLambda(e, couple, loge) : 0.0;
342 sigPE = thePhotoElectric->GetLambda(e, couple, loge);
343 G4double sum = sigComp + sigR + sigPE;
344 if(1 < verboseLevel) {
345 G4cout << j << ". E= " << e << " xs= " << sum
346 << " compt= " << sigComp << " conv= " << sigConv
347 << " PE= " << sigPE << " Rayl= " << sigR
348 << " GN= " << sigN << G4endl;
349 }
350 (*(tables[2]))[idx]->PutValue(j, sum);
351
352 val = sigPE/sum;
353 (*(tables[3]))[idx]->PutValue(j, val);
354
355 val = (sigR > 0.0) ? (sigComp + sigPE)/sum : 1.0;
356 (*(tables[4]))[idx]->PutValue(j, val);
357 }
358
359 // energy interval 2
360 nn = (*(tables[6]))[idx]->GetVectorLength();
361 if(1 < verboseLevel) {
362 G4cout << "======= Zone 2 ======= N= " << nn << G4endl;
363 }
364 for(std::size_t j=0; j<nn; ++j) {
365 G4double e = (*(tables[6]))[idx]->Energy(j);
366 G4double loge = G4Log(e);
367 sigComp = theCompton->GetLambda(e, couple, loge);
368 sigConv = theConversionEE->GetLambda(e, couple, loge);
369 sigPE = thePhotoElectric->GetLambda(e, couple, loge);
370 sigN = 0.0;
371 if(nullptr != gn) {
372 dynParticle->SetKineticEnergy(e);
373 sigN = gn->ComputeCrossSection(dynParticle, material);
374 }
375 G4double sum = sigComp + sigConv + sigPE + sigN;
376 if(1 < verboseLevel) {
377 G4cout << j << ". E= " << e << " xs= " << sum
378 << " compt= " << sigComp << " conv= " << sigConv
379 << " PE= " << sigPE
380 << " GN= " << sigN << G4endl;
381 }
382 (*(tables[6]))[idx]->PutValue(j, sum);
383
384 val = sigConv/sum;
385 (*(tables[7]))[idx]->PutValue(j, val);
386
387 val = (sigConv + sigComp)/sum;
388 (*(tables[8]))[idx]->PutValue(j, val);
389
390 val = (sigN > 0.0) ? (sigConv + sigComp + sigPE)/sum : 1.0;
391 (*(tables[9]))[idx]->PutValue(j, val);
392 }
393
394 // energy interval 3
395 nn = (*(tables[10]))[idx]->GetVectorLength();
396 if(1 < verboseLevel) {
397 G4cout << "======= Zone 3 ======= N= " << nn
398 << " for " << material->GetName() << G4endl;
399 }
400 for(std::size_t j=0; j<nn; ++j) {
401 G4double e = (*(tables[10]))[idx]->Energy(j);
402 G4double loge = G4Log(e);
403 sigComp = theCompton->GetLambda(e, couple, loge);
404 sigConv = theConversionEE->GetLambda(e, couple, loge);
405 sigPE = thePhotoElectric->GetLambda(e, couple, loge);
406 sigN = 0.0;
407 if(nullptr != gn) {
408 dynParticle->SetKineticEnergy(e);
409 sigN = gn->ComputeCrossSection(dynParticle, material);
410 }
411 sigM = 0.0;
412 if(nullptr != theConversionMM) {
413 val = theConversionMM->ComputeMeanFreePath(e, material);
414 sigM = (val < DBL_MAX) ? 1./val : 0.0;
415 }
416 G4double sum = sigComp + sigConv + sigPE + sigN + sigM;
417 if(1 < verboseLevel) {
418 G4cout << j << ". E= " << e << " xs= " << sum
419 << " compt= " << sigComp << " conv= " << sigConv
420 << " PE= " << sigPE
421 << " GN= " << sigN << G4endl;
422 }
423 (*(tables[10]))[idx]->PutValue(j, sum);
424
425 val = (sigComp + sigPE + sigN + sigM)/sum;
426 (*(tables[11]))[idx]->PutValue(j, val);
427
428 val = (sigPE + sigN + sigM)/sum;
429 (*(tables[12]))[idx]->PutValue(j, val);
430
431 val = (sigN + sigM)/sum;
432 (*(tables[13]))[idx]->PutValue(j, val);
433
434 val = sigM/sum;
435 (*(tables[14]))[idx]->PutValue(j, val);
436 }
437 for(std::size_t k=0; k<nTables; ++k) {
438 if(theT[k] && (k <= 1 || k >= 10)) {
439 //G4cout <<"BuildPhysTable spline iTable="<<k<<" jCouple="<< idx << G4endl;
440 (*(tables[k]))[idx]->FillSecondDerivatives();
441 }
442 }
443 }
444 }
445 delete dynParticle;
446 }
447
448 if(1 < verboseLevel) {
449 G4cout << "### G4VEmProcess::BuildPhysicsTable() done for "
450 << GetProcessName()
451 << " and particle " << part.GetParticleName()
452 << G4endl;
453 }
454}
455
456//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
457
462
463//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
464
466 const G4Track& track,
467 G4double previousStepSize,
469{
471 G4double x = DBL_MAX;
472
473 G4double energy = track.GetKineticEnergy();
474 const G4MaterialCutsCouple* couple = track.GetMaterialCutsCouple();
475
476 // compute mean free path
477 G4bool recompute = false;
478 if(couple != currentCouple) {
479 currentCouple = couple;
481 currentMaterial = couple->GetMaterial();
482 factor = 1.0;
483 if(baseMat) {
486 }
487 recompute = true;
488 }
489 if(energy != preStepKinEnergy) {
490 preStepKinEnergy = energy;
492 recompute = true;
493 }
494 if(recompute) {
496
497 // zero cross section
498 if(preStepLambda <= 0.0) {
501 }
502 }
503
504 // non-zero cross section
505 if(preStepLambda > 0.0) {
506
508
509 // beggining of tracking (or just after DoIt of this process)
512
513 } else if(currentInteractionLength < DBL_MAX) {
514
516 previousStepSize/currentInteractionLength;
519 }
520
521 // new mean free path and step limit for the next step
524 }
525 /*
526 G4cout << "PostStepGetPhysicalInteractionLength: e= " << energy
527 << " idxe= " << idxEnergy << " xs= " << preStepLambda
528 << " x= " << x << G4endl;
529 */
530 return x;
531}
532
533//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
534
536{
537 G4double cross = 0.0;
538 /*
539 G4cout << "#Total: " << preStepKinEnergy << " " << minPEEnergy << " "
540 << minEEEnergy << " " << minMMEnergy<< G4endl;
541 G4cout << " idxE= " << idxEnergy
542 << " idxC= " << currentCoupleIndex << G4endl;
543 */
544 if(preStepKinEnergy < minPEEnergy) {
545 cross = ComputeGeneralLambda(0, 0);
546 //G4cout << "XS1: " << cross << G4endl;
547 peLambda = thePhotoElectric->GetLambda(preStepKinEnergy, currentCouple, preStepLogE);
548 cross += peLambda;
549 //G4cout << "XS2: " << peLambda << G4endl;
550
551 } else if(preStepKinEnergy < minEEEnergy) {
552 cross = ComputeGeneralLambda(1, 2);
553 //G4cout << "XS3: " << cross << G4endl;
554
555 } else if(preStepKinEnergy < minMMEnergy) {
556 cross = ComputeGeneralLambda(2, 6);
557 //G4cout << "XS4: " << cross << G4endl;
558
559 } else {
560 cross = ComputeGeneralLambda(3, 10);
561 //G4cout << "XS5: " << cross << G4endl;
562 }
563 /*
564 G4cout << "xs= " << cross << " idxE= " << idxEnergy
565 << " idxC= " << currentCoupleIndex
566 << " E= " << preStepKinEnergy << G4endl;
567 */
568 return cross;
569}
570
571//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
572
574 const G4Step& step)
575{
576 // In all cases clear number of interaction lengths
578 selectedProc = nullptr;
580 /*
581 G4cout << "PostStep: preStepLambda= " << preStepLambda
582 << " PE= " << peLambda << " q= " << q << " idxE= " << idxEnergy
583 << G4endl;
584 */
585 switch (idxEnergy) {
586 case 0:
587 if(preStepLambda*q <= peLambda) {
588 SelectEmProcess(step, thePhotoElectric);
589 } else {
590 if(theT[1] && preStepLambda*q < (preStepLambda - peLambda)*GetProbability(1) + peLambda) {
591 SelectEmProcess(step, theRayleigh);
592 } else {
593 SelectEmProcess(step, theCompton);
594 }
595 }
596 break;
597
598 case 1:
599 if(q <= GetProbability(3)) {
600 SelectEmProcess(step, thePhotoElectric);
601 } else if(q <= GetProbability(4)) {
602 SelectEmProcess(step, theCompton);
603 } else if(theRayleigh) {
604 SelectEmProcess(step, theRayleigh);
605 } else {
606 SelectEmProcess(step, thePhotoElectric);
607 }
608 break;
609
610 case 2:
611 if(q <= GetProbability(7)) {
612 SelectEmProcess(step, theConversionEE);
613 } else if(q <= GetProbability(8)) {
614 SelectEmProcess(step, theCompton);
615 } else if(q <= GetProbability(9)) {
616 SelectEmProcess(step, thePhotoElectric);
617 } else if(theGammaNuclear) {
618 SelectHadProcess(track, step, theGammaNuclear);
619 } else {
620 SelectEmProcess(step, theConversionEE);
621 }
622 break;
623
624 case 3:
625 if(q + GetProbability(11) <= 1.0) {
626 SelectEmProcess(step, theConversionEE);
627 } else if(q + GetProbability(12) <= 1.0) {
628 SelectEmProcess(step, theCompton);
629 } else if(q + GetProbability(13) <= 1.0) {
630 SelectEmProcess(step, thePhotoElectric);
631 } else if(theGammaNuclear && q + GetProbability(14) <= 1.0) {
632 SelectHadProcess(track, step, theGammaNuclear);
633 } else if(theConversionMM) {
634 SelectedProcess(step, theConversionMM);
635 } else {
636 SelectEmProcess(step, theConversionEE);
637 }
638 break;
639 }
640 // sample secondaries
641 if(selectedProc != nullptr) {
642 return selectedProc->PostStepDoIt(track, step);
643 }
644 // no interaction - exception case
645 fParticleChange.InitializeForPostStep(track);
646 return &fParticleChange;
647}
648
649//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
650
658
659//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
660
662 const G4String& directory,
663 G4bool ascii)
664{
665 G4bool yes = true;
666 if(!isTheMaster) { return yes; }
667 if(!thePhotoElectric->StorePhysicsTable(part, directory, ascii))
668 { yes = false; }
669 if(!theCompton->StorePhysicsTable(part, directory, ascii))
670 { yes = false; }
671 if(!theConversionEE->StorePhysicsTable(part, directory, ascii))
672 { yes = false; }
673 if(theRayleigh != nullptr &&
674 !theRayleigh->StorePhysicsTable(part, directory, ascii))
675 { yes = false; }
676
677 for(std::size_t i=0; i<nTables; ++i) {
678 if(theT[i]) {
679 G4String nam = (0==i || 2==i || 6==i || 10==i)
680 ? "LambdaGeneral" + nameT[i] : "ProbGeneral" + nameT[i];
681 G4String fnam = GetPhysicsTableFileName(part,directory,nam,ascii);
682 if(!theHandler->StorePhysicsTable(i, part, fnam, ascii)) { yes = false; }
683 }
684 }
685 return yes;
686}
687
688//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
689
690G4bool
692 const G4String& directory,
693 G4bool ascii)
694{
695 if (!isTheMaster) { return true; }
696 if(1 < verboseLevel) {
697 G4cout << "G4GammaGeneralProcess::RetrievePhysicsTable() for "
698 << part->GetParticleName() << " and process "
699 << GetProcessName() << G4endl;
700 }
701 G4bool yes = true;
702 if(!thePhotoElectric->RetrievePhysicsTable(part, directory, ascii))
703 { yes = false; }
704 if(!theCompton->RetrievePhysicsTable(part, directory, ascii))
705 { yes = false; }
706 if(!theConversionEE->RetrievePhysicsTable(part, directory, ascii))
707 { yes = false; }
708 if(theRayleigh != nullptr &&
709 !theRayleigh->RetrievePhysicsTable(part, directory, ascii))
710 { yes = false; }
711
712 for(std::size_t i=0; i<nTables; ++i) {
713 if(theT[i]) {
714 G4String nam = (0==i || 2==i || 6==i || 10==i)
715 ? "LambdaGeneral" + nameT[i] : "ProbGeneral" + nameT[i];
716 G4String fnam = GetPhysicsTableFileName(part,directory,nam,ascii);
717 G4bool spline = (i <= 1 || i >= 10);
718 if(!theHandler->RetrievePhysicsTable(i, part, fnam, ascii, spline))
719 { yes = false; }
720 }
721 }
722 return yes;
723}
724
725//....Ooooo0ooooo ........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
726
734
735//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
736
737void G4GammaGeneralProcess::ProcessDescription(std::ostream& out) const
738{
739 thePhotoElectric->ProcessDescription(out);
740 theCompton->ProcessDescription(out);
741 theConversionEE->ProcessDescription(out);
742 if(theRayleigh) { theRayleigh->ProcessDescription(out); }
743 if(theGammaNuclear) { theGammaNuclear->ProcessDescription(out); }
744 if(theConversionMM) { theConversionMM->ProcessDescription(out); }
745}
746
747//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
748
750{
751 return (selectedProc) ? selectedProc->GetProcessName()
753}
754
755//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
756
758{
759 return (selectedProc) ? selectedProc->GetProcessSubType()
761}
762
763//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
764
766{
767 G4VEmProcess* proc = nullptr;
768 if(name == thePhotoElectric->GetProcessName()) {
769 proc = thePhotoElectric;
770 } else if(name == theCompton->GetProcessName()) {
771 proc = theCompton;
772 } else if(name == theConversionEE->GetProcessName()) {
773 proc = theConversionEE;
774 } else if(theRayleigh != nullptr && name == theRayleigh->GetProcessName()) {
775 proc = theRayleigh;
776 }
777 return proc;
778}
779
780//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
781
786
787//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
@ fGammaGeneralProcess
@ fGammaConversion
@ fRayleigh
@ fComptonScattering
@ fPhotoElectricEffect
G4double condition(const G4ErrorSymMatrix &m)
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4ForceCondition
@ NotForced
G4double G4Log(G4double x)
Definition G4Log.hh:227
@ fElectromagnetic
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
#define G4UniformRand()
Definition Randomize.hh:52
G4double ComputeCrossSection(const G4DynamicParticle *, const G4Material *)
G4double GetLogKineticEnergy() const
void SetKineticEnergy(G4double aEnergy)
static G4EmParameters * Instance()
G4double MinKinEnergy() const
G4int NumberOfBinsPerDecade() const
G4double MaxKinEnergy() const
void AddHadProcess(G4HadronicProcess *)
void SelectedProcess(const G4Step &step, G4VProcess *ptr)
G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &) override
void SelectHadProcess(const G4Track &, const G4Step &, G4HadronicProcess *)
G4bool StorePhysicsTable(const G4ParticleDefinition *, const G4String &directory, G4bool ascii=false) override
G4bool IsApplicable(const G4ParticleDefinition &) override
void AddEmProcess(G4VEmProcess *)
void StartTracking(G4Track *) override
void BuildPhysicsTable(const G4ParticleDefinition &) override
void AddMMProcess(G4GammaConversionToMuons *)
void ProcessDescription(std::ostream &outFile) const override
G4double ComputeGeneralLambda(std::size_t idxe, std::size_t idxt)
const G4String & GetSubProcessName() const
G4GammaGeneralProcess(const G4String &pname="GammaGeneralProc")
G4VEmProcess * GetEmProcess(const G4String &name) override
void PreparePhysicsTable(const G4ParticleDefinition &) override
const G4VProcess * GetCreatorProcess() const override
void InitialiseProcess(const G4ParticleDefinition *) override
void SelectEmProcess(const G4Step &, G4VEmProcess *)
G4double GetProbability(std::size_t idxt)
G4HadronicProcess * theGammaNuclear
G4double GetMeanFreePath(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
G4bool RetrievePhysicsTable(const G4ParticleDefinition *, const G4String &directory, G4bool ascii) override
G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
static G4Gamma * Gamma()
Definition G4Gamma.cc:81
G4CrossSectionDataStore * GetCrossSectionDataStore()
static G4bool GetBaseMaterialFlag()
void InitialiseBaseMaterials(const G4PhysicsTable *table=nullptr)
static G4bool GetFlag(std::size_t idx)
static G4LossTableManager * Instance()
G4LossTableBuilder * GetTableBuilder()
const G4Material * GetMaterial() const
const G4String & GetName() const
const G4String & GetParticleName() const
static void SetPhysicsVector(G4PhysicsTable *physTable, std::size_t idx, G4PhysicsVector *vec)
const G4MaterialCutsCouple * GetMaterialCutsCouple(G4int i) const
std::size_t GetTableSize() const
static G4ProductionCutsTable * GetProductionCutsTable()
const G4DynamicParticle * GetDynamicParticle() const
G4double GetKineticEnergy() const
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
G4double MeanFreePath(const G4Track &track)
G4VEmProcess(const G4String &name, G4ProcessType type=fElectromagnetic)
G4double preStepLambda
G4int DensityIndex(G4int idx) const
std::size_t currentCoupleIndex
std::size_t basedCoupleIndex
G4double DensityFactor(G4int idx) const
const G4MaterialCutsCouple * currentCouple
G4double preStepKinEnergy
G4ParticleChangeForGamma fParticleChange
void SetParticle(const G4ParticleDefinition *p)
const G4Material * currentMaterial
G4double currentInteractionLength
G4double theInitialNumberOfInteractionLength
void SetVerboseLevel(G4int value)
G4VProcess(const G4String &aName="NoName", G4ProcessType aType=fNotDefined)
Definition G4VProcess.cc:46
G4int verboseLevel
G4double theNumberOfInteractionLengthLeft
void SetProcessSubType(G4int)
G4int GetProcessSubType() const
const G4String & GetPhysicsTableFileName(const G4ParticleDefinition *, const G4String &directory, const G4String &tableName, G4bool ascii=false)
const G4String & GetProcessName() const
int G4lrint(double ad)
Definition templates.hh:134
#define DBL_MAX
Definition templates.hh:62