G4HETCFragment.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 // by V. Lara
00029 //
00030 // Modified:
00031 // 23.08.2010 V.Ivanchenko general cleanup, move constructor and destructor 
00032 //            the source, use G4Pow
00033  
00034 #include "G4HETCFragment.hh"
00035 #include "G4PhysicalConstants.hh"
00036 #include "G4PreCompoundParameters.hh"
00037 
00038 G4HETCFragment::
00039 G4HETCFragment(const G4ParticleDefinition* part,
00040                G4VCoulombBarrier* aCoulombBarrier)
00041   : G4VPreCompoundFragment(part, aCoulombBarrier)
00042 {
00043   G4double r0 = theParameters->Getr0();
00044   r2norm = r0*r0/(CLHEP::pi*CLHEP::hbarc*CLHEP::hbarc*CLHEP::hbarc);
00045 }
00046 
00047 G4HETCFragment::~G4HETCFragment()
00048 {}
00049 
00050 G4double G4HETCFragment::
00051 CalcEmissionProbability(const G4Fragment & aFragment)
00052 {
00053   if (GetEnergyThreshold() <= 0.0) 
00054     {
00055       theEmissionProbability = 0.0;
00056       return 0.0;
00057     }    
00058   // Coulomb barrier is the lower limit 
00059   // of integration over kinetic energy
00060   G4double LowerLimit = theCoulombBarrier;
00061   
00062   // Excitation energy of nucleus after fragment emission is the upper limit
00063   // of integration over kinetic energy
00064   G4double UpperLimit = GetMaximalKineticEnergy();
00065   
00066   theEmissionProbability = 
00067     IntegrateEmissionProbability(LowerLimit,UpperLimit,aFragment);
00068     
00069   return theEmissionProbability;
00070 }
00071 
00072 G4double G4HETCFragment::
00073 IntegrateEmissionProbability(const G4double & Low, const G4double & Up,
00074                              const G4Fragment & aFragment)
00075 {
00076   
00077   if ( !IsItPossible(aFragment) ) { return 0.0; }
00078     
00079   G4double U = aFragment.GetExcitationEnergy();
00080 
00081   G4int P  = aFragment.GetNumberOfParticles();
00082   G4int H  = aFragment.GetNumberOfHoles();
00083   G4int N  = P + H;
00084   G4int Pb = P - GetA();
00085   G4int Nb = Pb + H;
00086   if (Nb <= 0.0) { return 0.0; }
00087   G4double ga = (6.0/pi2)*aFragment.GetA()*theParameters->GetLevelDensity();
00088   G4double gb = (6.0/pi2)*GetRestA()*theParameters->GetLevelDensity();
00089 
00090   G4double A  = G4double(P*P+H*H+P-3*H)/(4.0*ga);
00091   G4double Ab = G4double(Pb*Pb+H*H+Pb-3*H)/(4.0*gb);
00092   U = std::max(U-A,0.0);
00093   if (U <= 0.0) { return 0.0; }
00094 
00095   G4int Pf = P;
00096   G4int Hf = H;
00097   G4int Nf = N-1;
00098   for (G4int i = 1; i < GetA(); ++i)
00099     {
00100       Pf *= (P-i);
00101       Hf *= (H-i);
00102       Nf *= (N-1-i);
00103     }
00104 
00105   G4double X = std::max(Up - Ab + GetBeta(),0.0);
00106   G4double Y = std::max(Up - Ab - Low, 0.0);
00107 
00108   G4double Probability = r2norm*GetSpinFactor()*GetReducedMass()*GetAlpha() 
00109     *g4pow->Z23(GetRestA())*Pf*Hf*Nf*K(aFragment)*(X/Nb - Y/(Nb+1))
00110     *U*g4pow->powN(gb*Y,Nb)/g4pow->powN(ga*U,N);
00111 
00112   //  G4double Probability = GetSpinFactor()/(pi*hbarc*hbarc*hbarc) 
00113   //  * GetReducedMass() * GetAlpha() *
00114   //  r0 * r0 * std::pow->Z23(GetRestA())/std::pow->pow(U,G4double(N-1)) * 
00115   //  (std::pow->(gb,Nb)/std::pow(ga,N)) * Pf * Hf * Nf * K(aFragment) *
00116   //  std::pow(Y,Nb) * (X/Nb - Y/(Nb+1));
00117 
00118   return Probability;
00119 }

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