199 if (
nullptr != theRayleigh) { theT[1] =
true; }
201 theHandler->SetMasterProcess(thePhotoElectric);
202 theHandler->SetMasterProcess(theCompton);
203 theHandler->SetMasterProcess(theConversionEE);
204 theHandler->SetMasterProcess(theRayleigh);
210 std::size_t numOfCouples = theCoupleTable->
GetTableSize();
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)));
224 for(std::size_t i=0; i<nTables; ++i) {
225 if(!theT[i]) {
continue; }
229 for(std::size_t j=0; j<numOfCouples; ++j) {
231 if (bld->GetFlag(j) &&
nullptr == vec) {
253 G4cout <<
"### G4VEmProcess::BuildPhysicsTable() for "
259 thePhotoElectric->SetEmMasterProcess(theHandler->GetMasterProcess(0));
260 baseMat = theHandler->GetMasterProcess(0)->UseBaseMaterial();
262 thePhotoElectric->BuildPhysicsTable(part);
265 theCompton->SetEmMasterProcess(theHandler->GetMasterProcess(1));
267 theCompton->BuildPhysicsTable(part);
270 theConversionEE->SetEmMasterProcess(theHandler->GetMasterProcess(2));
272 theConversionEE->BuildPhysicsTable(part);
274 if(theRayleigh !=
nullptr) {
276 theRayleigh->SetEmMasterProcess(theHandler->GetMasterProcess(3));
278 theRayleigh->BuildPhysicsTable(part);
281 if(theConversionMM !=
nullptr) { theConversionMM->BuildPhysicsTable(part); }
289 const std::vector<G4PhysicsTable*>& tables = theHandler->GetTables();
296 G4double sigComp(0.), sigPE(0.), sigConv(0.), sigR(0.),
297 sigN(0.), sigM(0.), val(0.);
299 for(
G4int i=0; i<numOfCouples; ++i) {
308 std::size_t nn = (*(tables[0]))[idx]->GetVectorLength();
310 G4cout <<
"======= Zone 0 ======= N= " << nn
313 for(std::size_t j=0; j<nn; ++j) {
314 G4double e = (*(tables[0]))[idx]->Energy(j);
316 sigComp = theCompton->GetLambda(e, couple, loge);
317 sigR = (
nullptr != theRayleigh) ?
318 theRayleigh->GetLambda(e, couple, loge) : 0.0;
321 G4cout << j <<
". E= " << e <<
" xs= " << sum
322 <<
" compt= " << sigComp <<
" Rayl= " << sigR <<
G4endl;
324 (*(tables[0]))[idx]->PutValue(j, sum);
327 (*(tables[1]))[idx]->PutValue(j, val);
332 nn = (*(tables[2]))[idx]->GetVectorLength();
336 for(std::size_t j=0; j<nn; ++j) {
337 G4double e = (*(tables[2]))[idx]->Energy(j);
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;
345 G4cout << j <<
". E= " << e <<
" xs= " << sum
346 <<
" compt= " << sigComp <<
" conv= " << sigConv
347 <<
" PE= " << sigPE <<
" Rayl= " << sigR
348 <<
" GN= " << sigN <<
G4endl;
350 (*(tables[2]))[idx]->PutValue(j, sum);
353 (*(tables[3]))[idx]->PutValue(j, val);
355 val = (sigR > 0.0) ? (sigComp + sigPE)/sum : 1.0;
356 (*(tables[4]))[idx]->PutValue(j, val);
360 nn = (*(tables[6]))[idx]->GetVectorLength();
364 for(std::size_t j=0; j<nn; ++j) {
365 G4double e = (*(tables[6]))[idx]->Energy(j);
367 sigComp = theCompton->GetLambda(e, couple, loge);
368 sigConv = theConversionEE->GetLambda(e, couple, loge);
369 sigPE = thePhotoElectric->GetLambda(e, couple, loge);
375 G4double sum = sigComp + sigConv + sigPE + sigN;
377 G4cout << j <<
". E= " << e <<
" xs= " << sum
378 <<
" compt= " << sigComp <<
" conv= " << sigConv
380 <<
" GN= " << sigN <<
G4endl;
382 (*(tables[6]))[idx]->PutValue(j, sum);
385 (*(tables[7]))[idx]->PutValue(j, val);
387 val = (sigConv + sigComp)/sum;
388 (*(tables[8]))[idx]->PutValue(j, val);
390 val = (sigN > 0.0) ? (sigConv + sigComp + sigPE)/sum : 1.0;
391 (*(tables[9]))[idx]->PutValue(j, val);
395 nn = (*(tables[10]))[idx]->GetVectorLength();
397 G4cout <<
"======= Zone 3 ======= N= " << nn
400 for(std::size_t j=0; j<nn; ++j) {
401 G4double e = (*(tables[10]))[idx]->Energy(j);
403 sigComp = theCompton->GetLambda(e, couple, loge);
404 sigConv = theConversionEE->GetLambda(e, couple, loge);
405 sigPE = thePhotoElectric->GetLambda(e, couple, loge);
412 if(
nullptr != theConversionMM) {
413 val = theConversionMM->ComputeMeanFreePath(e, material);
414 sigM = (val <
DBL_MAX) ? 1./val : 0.0;
416 G4double sum = sigComp + sigConv + sigPE + sigN + sigM;
418 G4cout << j <<
". E= " << e <<
" xs= " << sum
419 <<
" compt= " << sigComp <<
" conv= " << sigConv
421 <<
" GN= " << sigN <<
G4endl;
423 (*(tables[10]))[idx]->PutValue(j, sum);
425 val = (sigComp + sigPE + sigN + sigM)/sum;
426 (*(tables[11]))[idx]->PutValue(j, val);
428 val = (sigPE + sigN + sigM)/sum;
429 (*(tables[12]))[idx]->PutValue(j, val);
431 val = (sigN + sigM)/sum;
432 (*(tables[13]))[idx]->PutValue(j, val);
435 (*(tables[14]))[idx]->PutValue(j, val);
437 for(std::size_t k=0; k<nTables; ++k) {
438 if(theT[k] && (k <= 1 || k >= 10)) {
440 (*(tables[k]))[idx]->FillSecondDerivatives();
449 G4cout <<
"### G4VEmProcess::BuildPhysicsTable() done for "
667 if(!thePhotoElectric->StorePhysicsTable(part, directory, ascii))
669 if(!theCompton->StorePhysicsTable(part, directory, ascii))
671 if(!theConversionEE->StorePhysicsTable(part, directory, ascii))
673 if(theRayleigh !=
nullptr &&
674 !theRayleigh->StorePhysicsTable(part, directory, ascii))
677 for(std::size_t i=0; i<nTables; ++i) {
679 G4String nam = (0==i || 2==i || 6==i || 10==i)
680 ?
"LambdaGeneral" + nameT[i] :
"ProbGeneral" + nameT[i];
682 if(!theHandler->StorePhysicsTable(i, part, fnam, ascii)) { yes =
false; }
697 G4cout <<
"G4GammaGeneralProcess::RetrievePhysicsTable() for "
702 if(!thePhotoElectric->RetrievePhysicsTable(part, directory, ascii))
704 if(!theCompton->RetrievePhysicsTable(part, directory, ascii))
706 if(!theConversionEE->RetrievePhysicsTable(part, directory, ascii))
708 if(theRayleigh !=
nullptr &&
709 !theRayleigh->RetrievePhysicsTable(part, directory, ascii))
712 for(std::size_t i=0; i<nTables; ++i) {
714 G4String nam = (0==i || 2==i || 6==i || 10==i)
715 ?
"LambdaGeneral" + nameT[i] :
"ProbGeneral" + nameT[i];
717 G4bool spline = (i <= 1 || i >= 10);
718 if(!theHandler->RetrievePhysicsTable(i, part, fnam, ascii, spline))