Geant4  10.02.p01
G4CoulombBarrier.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: G4CoulombBarrier.cc 91834 2015-08-07 07:24:22Z gcosmo $
27 //
28 // Hadronic Process: Nuclear De-excitations
29 // by V. Lara (Dec 1999)
30 //
31 // 14-11-2007 modified barrier by JMQ (test30)
32 // 15-11-2010 V.Ivanchenko use G4Pow and cleanup
33 
34 #include <sstream>
35 
36 #include "G4CoulombBarrier.hh"
37 #include "G4PhysicalConstants.hh"
38 #include "G4SystemOfUnits.hh"
39 #include "G4HadronicException.hh"
40 #include "G4Pow.hh"
41 
43 {}
44 
46  : G4VCoulombBarrier(anA,aZ)
47 {}
48 
50 {}
51 
53 {
54  return 1.0;
55 }
56 
58  const G4int ZRes, const G4double) const
59  // Calculation of Coulomb potential energy (barrier) for outgoing fragment
60 {
61  G4double Barrier = 0.0;
62  if (GetA() == 1 && GetZ() == 0) {
63  Barrier = 0.0; // Neutron Coulomb Barrier is 0
64  } else {
65 
66  // JMQ: old coulomb barrier commented since it does not agree with
67  // Dostrovski's prescription
68  // and too low barriers are obtained (for protons at least)
69 
71  G4double rho=1.2*fermi;
72  if(GetA()==1 && GetZ()==1){ rho=0.0;}
73 
74  const G4double RN=1.5*fermi;
75  // VI cleanup
76  Barrier=elm_coupling*(GetZ()*ZRes)/(RN * G4Pow::GetInstance()->Z13(ARes) + rho);
77 
78  // Barrier penetration coeficient
80 
81  Barrier *= K;
82 
83  // JMQ : the following statement has unknown origin and dimensionally
84  // is meaningless( energy divided by mass number in argument of sqrt function).
85  // Energy dependence of Coulomb barrier penetrability should be included in
86  // proper way (if needed..)
87  // Barrier /= (1.0 + std::sqrt(U/(2.0*static_cast<G4double>(ARes))));
88  //
89  }
90  return Barrier;
91 }
92 
93 
94 
static G4Pow * GetInstance()
Definition: G4Pow.cc:55
virtual ~G4CoulombBarrier()
G4double GetCoulombBarrier(G4int ARes, G4int ZRes, G4double U) const
G4int GetA(void) const
int G4int
Definition: G4Types.hh:78
G4double Z13(G4int Z) const
Definition: G4Pow.hh:127
G4int GetZ(void) const
virtual G4double BarrierPenetrationFactor(G4double) const
double G4double
Definition: G4Types.hh:76
static const double fermi
Definition: G4SIunits.hh:102