Import Geant4 11.2.2 source tree

This commit is contained in:
Gabriele Cosmo
2024-06-21 15:46:33 +02:00
parent dda54bbdcf
commit f7b23877ed
411 changed files with 22817 additions and 21317 deletions
+5
View File
@@ -6,6 +6,11 @@ It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2024-04-21 Gabriele Cosmo (track-V11-01-02)
- Fixed compilation error in G4VParticleChange on Windows VC++ with
C++20 Standard enabled.
Based on [GitHub PR#69](https://github.com/Geant4/geant4/pull/69).
## 2023-09-12 Makoto Asai (track-V11-01-01)
- Adding fSuspendAndWait to G4TrackStatus.
- G4TrackStatus is mutable in G4Track so that it may be modified in stacking.
+1 -1
View File
@@ -133,7 +133,7 @@ G4Step* G4VParticleChange::UpdateStepForPostStep(G4Step* Step)
void G4VParticleChange::DumpInfo() const
{
auto vol = theCurrentTrack->GetVolume();
G4String vname = (nullptr == vol) ? "" : vol->GetName();
G4String vname = (nullptr == vol) ? G4String("") : vol->GetName();
G4long olprc = G4cout.precision(8);
G4cout << " -----------------------------------------------" << G4endl;
G4cout << " G4VParticleChange Information " << G4endl;