Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GEMCoulombBarrier Class Reference

#include <G4GEMCoulombBarrier.hh>

+ Inheritance diagram for G4GEMCoulombBarrier:

Public Member Functions

 G4GEMCoulombBarrier (G4int anA, G4int aZ)
 
virtual ~G4GEMCoulombBarrier ()
 
G4double GetCoulombBarrier (G4int ARes, G4int ZRes, G4double U) const
 
virtual G4double BarrierPenetrationFactor (G4double) const
 
G4double CalcCompoundRadius (G4int ARes) const
 
- Public Member Functions inherited from G4VCoulombBarrier
 G4VCoulombBarrier (G4int anA, G4int aZ)
 
virtual ~G4VCoulombBarrier ()
 
virtual G4double GetCoulombBarrier (G4int ARes, G4int ZRes, G4double U) const =0
 
G4int GetA (void) const
 
G4int GetZ (void) const
 

Detailed Description

Definition at line 37 of file G4GEMCoulombBarrier.hh.

Constructor & Destructor Documentation

◆ G4GEMCoulombBarrier()

G4GEMCoulombBarrier::G4GEMCoulombBarrier ( G4int  anA,
G4int  aZ 
)

Definition at line 36 of file G4GEMCoulombBarrier.cc.

Referenced by G4GEMCoulombBarrier().

◆ ~G4GEMCoulombBarrier()

G4GEMCoulombBarrier::~G4GEMCoulombBarrier ( )
virtual

Definition at line 40 of file G4GEMCoulombBarrier.cc.

41{}

Member Function Documentation

◆ BarrierPenetrationFactor()

virtual G4double G4GEMCoulombBarrier::BarrierPenetrationFactor ( G4double  ) const
inlinevirtual

Reimplemented in G4AlphaGEMCoulombBarrier, and G4DeuteronGEMCoulombBarrier.

Definition at line 56 of file G4GEMCoulombBarrier.hh.

57 {return 1.0;};

◆ CalcCompoundRadius()

G4double G4GEMCoulombBarrier::CalcCompoundRadius ( G4int  ARes) const

Definition at line 71 of file G4GEMCoulombBarrier.cc.

72{
73 G4Pow* g4pow = G4Pow::GetInstance();
74 G4double AresOneThird = g4pow->Z13(ARes);
75 G4int A = GetA();
76 G4double AejectOneThird = g4pow->Z13(A);
77
78 G4double Result = 0.0;
79 if(A == 1){
80 Result = 1.7* AresOneThird;
81
82 } else if (A <= 4){
83 Result = 1.7* AresOneThird + 1.2;
84
85 } else {
86 Result = 1.12*(AresOneThird + AejectOneThird) -
87 0.86*(AresOneThird+AejectOneThird)/(AresOneThird*AejectOneThird)+3.75;
88 }
89 return Result*fermi;
90}
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
Definition: G4Pow.hh:54
static G4Pow * GetInstance()
Definition: G4Pow.cc:50
G4double Z13(G4int Z)
Definition: G4Pow.hh:110
G4int GetA(void) const

◆ GetCoulombBarrier()

G4double G4GEMCoulombBarrier::GetCoulombBarrier ( G4int  ARes,
G4int  ZRes,
G4double  U 
) const
virtual

Implements G4VCoulombBarrier.

Definition at line 43 of file G4GEMCoulombBarrier.cc.

45{
46 G4double Barrier = 0.0;
47 if (ZRes > ARes || ARes < 1) {
48 G4cout << "G4GEMCoulombBarrier::GetCoulombBarrier: "
49 << "Wrong values for "
50 << "residual nucleus A = " << ARes << " "
51 << "and residual nucleus Z = " << ZRes << G4endl;
52 throw G4HadronicException(__FILE__, __LINE__,"FATAL error");
53 }
54 if (GetZ() == 0) {
55 Barrier = 0.0; // If there is no charge there is neither barrier
56
57 } else {
58 G4double CompoundRadius = CalcCompoundRadius(ARes);
59 Barrier = ( elm_coupling * GetZ() * ZRes)/CompoundRadius;
60
61 // Barrier penetration coeficient
62 if(GetA() <= 4) { Barrier *= BarrierPenetrationFactor(G4double(ZRes)); }
63
64 //JMQ 200709 effective decrease of barrier with E* (Barashenkov)
65 // (not inclued in original Furihata's formulation)
66 Barrier /= (1.0 + std::sqrt(U/(static_cast<G4double>(2*ARes))));
67 }
68 return Barrier;
69}
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
virtual G4double BarrierPenetrationFactor(G4double) const
G4double CalcCompoundRadius(G4int ARes) const
G4int GetZ(void) const

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