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