Import Geant4 11.2.2 source tree
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user