Import Geant4 11.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2023-12-08 10:43:34 +01:00
parent dd1f179cda
commit 860a2b92bf
3962 changed files with 139318 additions and 164259 deletions
@@ -27,69 +27,54 @@
//
// $id: G4ParticleChange.icc,v 1.6 1998/04/14 02:25:54 kurasige Exp $
inline void
G4FastStep::ProposePrimaryTrackFinalTime(G4double time)
inline void G4FastStep::ProposePrimaryTrackFinalTime(G4double time)
{
theTimeChange = time;
}
inline void
G4FastStep:: SetPrimaryTrackFinalTime(G4double time)
inline void G4FastStep::SetPrimaryTrackFinalTime(G4double time)
{
ProposePrimaryTrackFinalTime(time);
}
inline void
G4FastStep::ProposePrimaryTrackFinalProperTime(G4double properTime)
inline void G4FastStep::ProposePrimaryTrackFinalProperTime(G4double properTime)
{
theProperTimeChange = properTime;
}
inline void
G4FastStep:: SetPrimaryTrackFinalProperTime(G4double properTime)
inline void G4FastStep::SetPrimaryTrackFinalProperTime(G4double properTime)
{
ProposePrimaryTrackFinalProperTime(properTime);
}
inline void
G4FastStep::
ProposePrimaryTrackFinalKineticEnergy(G4double kineticEnergy)
inline void G4FastStep::ProposePrimaryTrackFinalKineticEnergy(G4double kineticEnergy)
{
theEnergyChange = kineticEnergy;
}
inline void
G4FastStep::
SetPrimaryTrackFinalKineticEnergy(G4double kineticEnergy)
inline void G4FastStep::SetPrimaryTrackFinalKineticEnergy(G4double kineticEnergy)
{
ProposePrimaryTrackFinalKineticEnergy(kineticEnergy);
}
inline void
G4FastStep::ProposePrimaryTrackPathLength(G4double pathLength)
inline void G4FastStep::ProposePrimaryTrackPathLength(G4double pathLength)
{
ProposeTrueStepLength(pathLength);
}
inline void
G4FastStep::SetPrimaryTrackPathLength(G4double pathLength)
inline void G4FastStep::SetPrimaryTrackPathLength(G4double pathLength)
{
ProposePrimaryTrackPathLength(pathLength);
}
//-----------------------------------------
//
// Creation of eventual secondaries:
// Creation of eventual secondaries:
//
//-----------------------------------------
inline void
G4FastStep::SetNumberOfSecondaryTracks(G4int nSecondaries)
inline void G4FastStep::SetNumberOfSecondaryTracks(G4int nSecondaries)
{
SetNumberOfSecondaries(nSecondaries);
}
inline G4int
G4FastStep::GetNumberOfSecondaryTracks()
inline G4int G4FastStep::GetNumberOfSecondaryTracks()
{
return GetNumberOfSecondaries();
}
@@ -99,7 +84,6 @@ inline G4Track* G4FastStep::GetSecondaryTrack(G4int i)
return GetSecondary(i);
}
//---------------------------------------
//
//---------------------------------------
@@ -112,44 +96,33 @@ inline void G4FastStep::SetTotalEnergyDeposited(G4double anEnergyPart)
ProposeTotalEnergyDeposited(anEnergyPart);
}
inline G4double G4FastStep::GetTotalEnergyDeposited() const
{
return GetLocalEnergyDeposit();
}
inline void G4FastStep::ForceSteppingHitInvocation()
{
ProposeSteppingControl(NormalCondition);
}
inline
void G4FastStep::SetMomentumChange(
G4double Px,
G4double Py,
G4double Pz )
inline void G4FastStep::SetMomentumChange(G4double Px, G4double Py, G4double Pz)
{
theMomentumChange.setX(Px);
theMomentumChange.setY(Py);
theMomentumChange.setZ(Pz);
}
inline
void G4FastStep::SetMomentumChange(const G4ThreeVector& P)
inline void G4FastStep::SetMomentumChange(const G4ThreeVector& P)
{
theMomentumChange = P;
}
inline
void G4FastStep::ProposePrimaryTrackFinalEventBiasingWeight (G4double w)
inline void G4FastStep::ProposePrimaryTrackFinalEventBiasingWeight(G4double w)
{
theWeightChange = w;
}
inline
void G4FastStep::SetPrimaryTrackFinalEventBiasingWeight (G4double w)
inline void G4FastStep::SetPrimaryTrackFinalEventBiasingWeight(G4double w)
{
ProposePrimaryTrackFinalEventBiasingWeight(w);
}