Import Geant4 7.0.0 source tree
This commit is contained in:
@@ -21,22 +21,34 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4FastStep.icc,v 1.3 2001/07/11 10:08:24 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-05-02-patch-01 $
|
||||
// $Id: G4FastStep.icc,v 1.4 2004/11/25 23:34:13 mverderi Exp $
|
||||
// GEANT4 tag $Name: geant4-07-00-cand-01 $
|
||||
//
|
||||
// $id: G4ParticleChange.icc,v 1.6 1998/04/14 02:25:54 kurasige Exp $
|
||||
|
||||
inline void
|
||||
G4FastStep::SetPrimaryTrackFinalTime(G4double time)
|
||||
G4FastStep::ProposePrimaryTrackFinalTime(G4double time)
|
||||
{
|
||||
theTimeChange = time;
|
||||
}
|
||||
|
||||
inline void
|
||||
G4FastStep::SetPrimaryTrackFinalProperTime(G4double properTime)
|
||||
G4FastStep:: SetPrimaryTrackFinalTime(G4double time)
|
||||
{
|
||||
ProposePrimaryTrackFinalTime(time);
|
||||
}
|
||||
|
||||
|
||||
inline void
|
||||
G4FastStep::ProposePrimaryTrackFinalProperTime(G4double properTime)
|
||||
{
|
||||
theProperTimeChange = properTime;
|
||||
}
|
||||
inline void
|
||||
G4FastStep:: SetPrimaryTrackFinalProperTime(G4double properTime)
|
||||
{
|
||||
ProposePrimaryTrackFinalProperTime(properTime);
|
||||
}
|
||||
|
||||
|
||||
inline void
|
||||
G4FastStep::
|
||||
@@ -45,10 +57,16 @@ SetPrimaryTrackFinalKineticEnergy(G4double kineticEnergy)
|
||||
theEnergyChange = kineticEnergy;
|
||||
}
|
||||
|
||||
|
||||
inline void
|
||||
G4FastStep::ProposePrimaryTrackPathLength(G4double pathLength)
|
||||
{
|
||||
ProposeTrueStepLength(pathLength);
|
||||
}
|
||||
inline void
|
||||
G4FastStep::SetPrimaryTrackPathLength(G4double pathLength)
|
||||
{
|
||||
SetTrueStepLength(pathLength);
|
||||
ProposePrimaryTrackPathLength(pathLength);
|
||||
}
|
||||
//-----------------------------------------
|
||||
//
|
||||
@@ -77,9 +95,13 @@ inline G4Track* G4FastStep::GetSecondaryTrack(G4int i)
|
||||
//---------------------------------------
|
||||
//
|
||||
//---------------------------------------
|
||||
inline void G4FastStep::ProposeTotalEnergyDeposited(G4double anEnergyPart)
|
||||
{
|
||||
ProposeLocalEnergyDeposit(anEnergyPart);
|
||||
}
|
||||
inline void G4FastStep::SetTotalEnergyDeposited(G4double anEnergyPart)
|
||||
{
|
||||
SetLocalEnergyDeposit(anEnergyPart);
|
||||
ProposeTotalEnergyDeposited(anEnergyPart);
|
||||
}
|
||||
|
||||
|
||||
@@ -91,7 +113,7 @@ inline G4double G4FastStep::GetTotalEnergyDeposited() const
|
||||
|
||||
inline void G4FastStep::ForceSteppingHitInvocation()
|
||||
{
|
||||
SetSteppingControl(NormalCondition);
|
||||
ProposeSteppingControl(NormalCondition);
|
||||
}
|
||||
|
||||
inline
|
||||
@@ -105,14 +127,21 @@ void G4FastStep::SetMomentumChange(
|
||||
theMomentumChange.setZ(Pz);
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void G4FastStep::SetMomentumChange(const G4ThreeVector& P)
|
||||
{
|
||||
theMomentumChange = P;
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void G4FastStep::SetPrimaryTrackFinalEventBiasingWeight (G4double w)
|
||||
void G4FastStep::ProposePrimaryTrackFinalEventBiasingWeight (G4double w)
|
||||
{
|
||||
theWeightChange = w;
|
||||
}
|
||||
inline
|
||||
void G4FastStep::SetPrimaryTrackFinalEventBiasingWeight (G4double w)
|
||||
{
|
||||
ProposePrimaryTrackFinalEventBiasingWeight(w);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user