71 lines
2.3 KiB
Plaintext
71 lines
2.3 KiB
Plaintext
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4PAIenergyLoss.icc,v 1.3.8.1 1999/12/07 20:50:50 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
// $Id:
|
|
// ---------------------------------------------------------------
|
|
// GEANT 4 class inlined methods file
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, IT Division, ASD group
|
|
// History: based on object model of
|
|
// 2nd December 1995, G.Cosmo
|
|
// ------------ G4PAIenergyLoss physics process ------------
|
|
// by Laszlo Urban, 30 May 1997
|
|
// ***************************************************************
|
|
// It is the first implementation of the NEW UNIFIED ENERGY LOSS PROCESS.
|
|
// It calculates the energy loss of charged hadrons.
|
|
// ***************************************************************
|
|
// corrected by L.Urban on 24/09/97
|
|
//
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
inline G4double
|
|
G4PAIenergyLoss::GetConstraints(const G4DynamicParticle *aParticle,
|
|
G4Material *aMaterial )
|
|
{
|
|
// G4cout<<"G4PAIenergyLoss::GetConstraints is called"<<endl ;
|
|
return 2*mm ;
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
/* ***********************************************************************
|
|
|
|
inline G4double G4PAIenergyLoss::GetContinuousStepLimit(
|
|
const G4Track& track,
|
|
G4double,
|
|
G4double currentMinimumStep,
|
|
G4double&)
|
|
{
|
|
|
|
G4double Step =
|
|
GetConstraints(track.GetDynamicParticle(),track.GetMaterial()) ;
|
|
|
|
if( (Step > 0.0) && (Step < currentMinimumStep) ) currentMinimumStep = Step ;
|
|
|
|
return Step ;
|
|
}
|
|
|
|
*********************************************************** */
|
|
|
|
inline G4bool G4PAIenergyLoss::IsApplicable(const G4ParticleDefinition&
|
|
particle)
|
|
{
|
|
return(particle.GetPDGCharge()!= 0.);
|
|
}
|
|
|