Import Geant4 11.0.2 source tree

This commit is contained in:
Gabriele Cosmo
2022-05-25 15:50:57 +02:00
parent de4f28d823
commit b3bf75a2a1
341 changed files with 93127 additions and 39343 deletions
+5
View File
@@ -16,6 +16,11 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 5th 2022, Gabriele Cosmo transport-V10-07-04
----------------------------
- G4Transportation, G4CoupledTransportation: fixed misuse of bitwise '|'
operator instead of logical.
Sep 23rd 2021, Alberto Ribon transport-V10-07-03
----------------------------
- Added PARALLEL_WORLD_PROCESS to G4TransportationProcessType
@@ -189,8 +189,8 @@ AlongStepGetPhysicalInteractionLength( const G4Track& track,
//
*selection = CandidateForSelection ;
fFirstStepInMassVolume = fNewTrack | fMassGeometryLimitedStep ;
fFirstStepInAnyVolume = fNewTrack | fAnyGeometryLimitedStep ;
fFirstStepInMassVolume = fNewTrack || fMassGeometryLimitedStep ;
fFirstStepInAnyVolume = fNewTrack || fAnyGeometryLimitedStep ;
#ifdef G4DEBUG_TRANSPORT
G4cout << " CoupledTransport::AlongStep GPIL: "
@@ -692,7 +692,7 @@ G4VParticleChange* G4Transportation::PostStepDoIt( const G4Track& track,
// Update the Step flag which identifies the Last Step in a volume
if( !fFieldExertedForce )
isLastStep = fLinearNavigator->ExitedMotherVolume()
| fLinearNavigator->EnteredDaughterVolume() ;
|| fLinearNavigator->EnteredDaughterVolume() ;
else
isLastStep = fFieldPropagator->IsLastStepInVolume();
}