Import Geant4 11.1.1 source tree
This commit is contained in:
@@ -6,6 +6,9 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2022-12-09 Vladimir Ivanchenko (phys-ctor-em-V11-00-36)
|
||||
- G4GammaGeneralProcess - in all cases select sub-process (fix problem #2521)
|
||||
|
||||
## 2022-11-24 Gabriele Cosmo (phys-ctor-em-V11-00-35)
|
||||
- Fixed compilation warnings for implicit type conversions on macOS/XCode 14.1.
|
||||
|
||||
|
||||
@@ -604,6 +604,8 @@ G4VParticleChange* G4GammaGeneralProcess::PostStepDoIt(const G4Track& track,
|
||||
SelectEmProcess(step, theCompton);
|
||||
} else if(theRayleigh) {
|
||||
SelectEmProcess(step, theRayleigh);
|
||||
} else {
|
||||
SelectEmProcess(step, thePhotoElectric);
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -616,6 +618,8 @@ G4VParticleChange* G4GammaGeneralProcess::PostStepDoIt(const G4Track& track,
|
||||
SelectEmProcess(step, thePhotoElectric);
|
||||
} else if(theGammaNuclear) {
|
||||
SelectHadProcess(track, step, theGammaNuclear);
|
||||
} else {
|
||||
SelectEmProcess(step, theConversionEE);
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -630,6 +634,8 @@ G4VParticleChange* G4GammaGeneralProcess::PostStepDoIt(const G4Track& track,
|
||||
SelectHadProcess(track, step, theGammaNuclear);
|
||||
} else if(theConversionMM) {
|
||||
SelectedProcess(step, theConversionMM);
|
||||
} else {
|
||||
SelectEmProcess(step, theConversionEE);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user