#include <G4DeuteronGEMCoulombBarrier.hh>
Inheritance diagram for G4DeuteronGEMCoulombBarrier:
Public Member Functions | |
G4DeuteronGEMCoulombBarrier () | |
~G4DeuteronGEMCoulombBarrier () | |
G4double | BarrierPenetrationFactor (G4double aZ) const |
Definition at line 37 of file G4DeuteronGEMCoulombBarrier.hh.
G4DeuteronGEMCoulombBarrier::G4DeuteronGEMCoulombBarrier | ( | ) | [inline] |
G4DeuteronGEMCoulombBarrier::~G4DeuteronGEMCoulombBarrier | ( | ) | [inline] |
G4double G4DeuteronGEMCoulombBarrier::BarrierPenetrationFactor | ( | G4double | aZ | ) | const [inline, virtual] |
Reimplemented from G4GEMCoulombBarrier.
Definition at line 52 of file G4DeuteronGEMCoulombBarrier.hh.
00053 { 00054 // Data comes from 00055 // Dostrovsky, Fraenkel and Friedlander 00056 // Physical Review, vol 116, num. 3 1959 00057 // (JMQ 190709: according to notes added on proof) 00058 //dataK = {{20, 0.51}, {30, 0.60}, {40, 0.66}, {50, 0.68}}; 00059 // 00060 G4double K = 1.0; 00061 if (aZ >= 50){ 00062 K=0.68; 00063 } else if (aZ <= 20) { 00064 K=0.51; 00065 } else K=0.28445+0.0115956*aZ+0.000026329*aZ*aZ-2.18583*1e-6*aZ*aZ*aZ+3.7083*1e-9*aZ*aZ*aZ*aZ; 00066 return K+0.06; 00067 }