G4GEMCoulombBarrierHE.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // $Id$
00027 //
00028 // Hadronic Process: Nuclear De-excitations
00029 // by V. Lara (Dec 1999)
00030 
00031 #include "G4GEMCoulombBarrierHE.hh"
00032 #include "G4HadronicException.hh"
00033 #include "G4Pow.hh"
00034 #include "G4PhysicalConstants.hh"
00035 #include "G4SystemOfUnits.hh"
00036 
00037 G4GEMCoulombBarrierHE::G4GEMCoulombBarrierHE(G4int anA, G4int aZ) :
00038   G4VCoulombBarrier(anA,aZ) 
00039 {}
00040 
00041 G4GEMCoulombBarrierHE::~G4GEMCoulombBarrierHE() 
00042 {}
00043 
00044 G4double G4GEMCoulombBarrierHE::GetCoulombBarrier(G4int ARes, G4int ZRes, G4double U) const 
00045   // Calculation of Coulomb potential energy (barrier) for outgoing fragment
00046 {
00047   G4double Barrier = 0.0;
00048   if (ZRes > ARes || ARes < 1) {
00049     G4cout << "G4GEMCoulombBarrierHE::GetCoulombBarrier: "
00050            << "Wrong values for "
00051            << "residual nucleus A = " << ARes << " "
00052            << "and residual nucleus Z = " << ZRes << G4endl;
00053     throw G4HadronicException(__FILE__, __LINE__,"FATAL error");
00054   }
00055   if (GetZ() == 0) {
00056     Barrier = 0.0;   // If there is no charge there is neither barrier
00057   } else {
00058     G4double CompoundRadius = CalcCompoundRadius(ARes);
00059     Barrier = ( elm_coupling * GetZ() * ZRes)/(CompoundRadius+3.75*fermi);
00060     
00061     // Barrier penetration coeficient
00062     //    G4double K = BarrierPenetrationFactor(ZRes);
00063     //    Barrier *= K;
00064     
00065     Barrier /= (1.0 + std::sqrt(U/static_cast<G4double>(2*ARes)));
00066   }
00067   return Barrier;
00068 }
00069 
00070 
00071 G4double G4GEMCoulombBarrierHE::CalcCompoundRadius(G4int ARes) const
00072 {
00073   G4Pow* g4pow = G4Pow::GetInstance();
00074   G4double AresOneThird = g4pow->Z13(ARes);
00075   G4double AejectOneThird = g4pow->Z13(GetA());
00076 
00077   G4double Result = 1.12*(AresOneThird + AejectOneThird) - 
00078     0.86*(AresOneThird+AejectOneThird)/(AresOneThird*AejectOneThird);
00079 
00080   return Result*fermi;
00081 }
00082 
00083 

Generated on Mon May 27 17:48:20 2013 for Geant4 by  doxygen 1.4.7