Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Static Public Member Functions | Protected Member Functions
G4INCL::CoulombDistortion Class Reference

#include <G4INCLCoulombDistortion.hh>

Static Public Member Functions

static ParticleEntryAvatarbringToSurface (Particle *p, Nucleus *const n)
 Modify the momentum of an incoming particle and position it on the surface of the nucleus. More...
 
static IAvatarList bringToSurface (Cluster *const c, Nucleus *const n)
 Modify the momentum of an incoming cluster and position it on the surface of the target. More...
 
static void distortOut (ParticleList const &pL, Nucleus const *const n)
 Modify the momentum of an outgoing particle. More...
 
static G4double maxImpactParameter (ParticleSpecies const &p, const G4double kinE, Nucleus const *const n)
 Return the maximum impact parameter for Coulomb-distorted trajectories. More...
 
static G4double maxImpactParameter (Particle const *const p, Nucleus const *const n)
 Return the maximum impact parameter for Coulomb-distorted trajectories. More...
 
static void setCoulomb (ICoulomb *const coulomb)
 Set the Coulomb-distortion algorithm. More...
 
static void deleteCoulomb ()
 Delete the Coulomb-distortion object. More...
 

Protected Member Functions

 CoulombDistortion ()
 
 ~CoulombDistortion ()
 

Detailed Description

Coulomb distortion

Definition at line 56 of file G4INCLCoulombDistortion.hh.

Constructor & Destructor Documentation

G4INCL::CoulombDistortion::CoulombDistortion ( )
inlineprotected

Definition at line 125 of file G4INCLCoulombDistortion.hh.

125 {}
G4INCL::CoulombDistortion::~CoulombDistortion ( )
inlineprotected

Definition at line 126 of file G4INCLCoulombDistortion.hh.

126 {}

Member Function Documentation

static ParticleEntryAvatar* G4INCL::CoulombDistortion::bringToSurface ( Particle p,
Nucleus *const  n 
)
inlinestatic

Modify the momentum of an incoming particle and position it on the surface of the nucleus.

This method places Particle p on the surface of Nucleus n and modifies the direction of its momentum to be tangent to the Coulomb trajectory in that point.

The input particle has to be prepared with its asymptotic momentum. Its position is used only for the purpose of computing the asymptotic impact parameter; in other words, this method only uses the components of the position that are perpendicular to the momentum. The remaining component is not used, and can be set to any value.

This method returns a ParticleEntry avatar for the projectile.

Parameters
pincoming particle
ndistorting nucleus
Returns
the ParticleEntryAvatar for the projectile particle

Definition at line 77 of file G4INCLCoulombDistortion.hh.

References G4INCL::ICoulomb::bringToSurface().

Referenced by G4INCL::StandardPropagationModel::shootComposite(), and G4INCL::StandardPropagationModel::shootParticle().

77  {
78  return theCoulomb->bringToSurface(p, n);
79  }
const char * p
Definition: xmltok.h:285
const G4int n
virtual ParticleEntryAvatar * bringToSurface(Particle *const p, Nucleus *const n) const =0
Modify the momentum of an incoming particle and position it on the surface of the nucleus...
static IAvatarList G4INCL::CoulombDistortion::bringToSurface ( Cluster *const  c,
Nucleus *const  n 
)
inlinestatic

Modify the momentum of an incoming cluster and position it on the surface of the target.

Same as the Particle-based bringToSurface method, but for incoming heavy ions.

This method returns a list of ParticleEntry avatars for the participant nucleons

Parameters
cincoming heavy ion
ndistorting nucleus
Returns
a list of ParticleEntryAvatars

Definition at line 94 of file G4INCLCoulombDistortion.hh.

References G4INCL::ICoulomb::bringToSurface().

94  {
95  return theCoulomb->bringToSurface(c, n);
96  }
const G4int n
virtual ParticleEntryAvatar * bringToSurface(Particle *const p, Nucleus *const n) const =0
Modify the momentum of an incoming particle and position it on the surface of the nucleus...
static void G4INCL::CoulombDistortion::deleteCoulomb ( )
inlinestatic

Delete the Coulomb-distortion object.

Definition at line 119 of file G4INCLCoulombDistortion.hh.

Referenced by G4INCL::INCL::~INCL().

119  {
120  delete theCoulomb;
121  theCoulomb = 0;
122  }
static void G4INCL::CoulombDistortion::distortOut ( ParticleList const &  pL,
Nucleus const *const  n 
)
inlinestatic

Modify the momentum of an outgoing particle.

Definition at line 99 of file G4INCLCoulombDistortion.hh.

References G4INCL::ICoulomb::distortOut().

99  {
100  theCoulomb->distortOut(pL, n);
101  }
const G4int n
virtual void distortOut(ParticleList const &pL, Nucleus const *const n) const =0
Modify the momenta of the outgoing particles.
static G4double G4INCL::CoulombDistortion::maxImpactParameter ( ParticleSpecies const &  p,
const G4double  kinE,
Nucleus const *const  n 
)
inlinestatic

Return the maximum impact parameter for Coulomb-distorted trajectories.

Definition at line 105 of file G4INCLCoulombDistortion.hh.

References G4INCL::ICoulomb::maxImpactParameter().

Referenced by maxImpactParameter(), G4INCL::INCL::prepareReaction(), G4INCL::StandardPropagationModel::shootComposite(), and G4INCL::StandardPropagationModel::shootParticle().

105  {
106  return theCoulomb->maxImpactParameter(p, kinE, n);
107  }
const char * p
Definition: xmltok.h:285
virtual G4double maxImpactParameter(ParticleSpecies const &p, const G4double kinE, Nucleus const *const n) const =0
Return the maximum impact parameter for Coulomb-distorted trajectories.
const G4int n
static G4double G4INCL::CoulombDistortion::maxImpactParameter ( Particle const *const  p,
Nucleus const *const  n 
)
inlinestatic

Return the maximum impact parameter for Coulomb-distorted trajectories.

Definition at line 111 of file G4INCLCoulombDistortion.hh.

References G4INCL::Particle::getKineticEnergy(), G4INCL::Particle::getSpecies(), maxImpactParameter(), and n.

111  {
112  return maxImpactParameter(p->getSpecies(), p->getKineticEnergy(), n);
113  }
const char * p
Definition: xmltok.h:285
static G4double maxImpactParameter(ParticleSpecies const &p, const G4double kinE, Nucleus const *const n)
Return the maximum impact parameter for Coulomb-distorted trajectories.
const G4int n
static void G4INCL::CoulombDistortion::setCoulomb ( ICoulomb *const  coulomb)
inlinestatic

Set the Coulomb-distortion algorithm.

Definition at line 116 of file G4INCLCoulombDistortion.hh.

References python.hepunit::coulomb.

Referenced by G4INCL::INCL::INCL().

116 { theCoulomb = coulomb; }

The documentation for this class was generated from the following files: