source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundIon.cc @ 847

Last change on this file since 847 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 3.9 KB
Line 
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// by V. Lara
27
28#include "G4PreCompoundIon.hh"
29#include "G4PreCompoundParameters.hh"
30//#include "G4EvaporationLevelDensityParameter.hh"
31
32
33G4double G4PreCompoundIon::
34ProbabilityDistributionFunction(const G4double eKin, 
35                                const G4Fragment& aFragment)
36{
37  if ( !IsItPossible(aFragment) ) return 0.0;
38 
39  const G4double r0 = G4PreCompoundParameters::GetAddress()->Getr0();
40
41  G4double U = aFragment.GetExcitationEnergy();
42  G4double P = aFragment.GetNumberOfParticles();
43  G4double H = aFragment.GetNumberOfHoles();
44  G4double N = P + H;
45 
46  // g = (6.0/pi2)*a*A
47  //  G4EvaporationLevelDensityParameter theLDP;
48  G4double g0 = (6.0/pi2)*aFragment.GetA() * 
49    G4PreCompoundParameters::GetAddress()->GetLevelDensity();
50  //    theLDP.LevelDensityParameter(static_cast<G4int>(aFragment.GetA()),static_cast<G4int>(aFragment.GetZ()),U);
51  G4double g1 = (6.0/pi2)*GetRestA() * 
52    G4PreCompoundParameters::GetAddress()->GetLevelDensity();
53  //    theLDP.LevelDensityParameter(GetRestA(),GetRestZ(),U);
54  //no longer used:  G4double gj = (6.0/pi2)*GetA() *
55  //  -----"-----    G4PreCompoundParameters::GetAddress()->GetLevelDensity();
56  //    theLDP.LevelDensityParameter(GetA(),GetZ(),U);
57
58  G4double A0 = ((P*P+H*H+P-H)/4.0 - H/2.0)/g0;
59  G4double A1 = std::max(0.0,(A0*g0 + GetA()*(GetA()-2.0*P-1.0)/4.0)/g1);
60  G4double Aj = GetA()*(GetA()+1.0)/4.0;
61
62  G4double E0 = std::max(0.0,U - A0);
63  if (E0 == 0.0) return 0.0;
64  //  G4double E1 = std::max(0.0,GetMaximalKineticEnergy() + GetCoulombBarrier() - eKin - A1);
65  G4double E1 = (std::max(0.0,GetMaximalKineticEnergy() - eKin - A1))/g1; //JMQ fix
66  //  G4double Ej = std::max(0.0,U + GetBindingEnergy() - Aj);
67  G4double Ej = std::max(0.0,eKin + GetBindingEnergy() - Aj); //JMQ fix
68
69  G4double pA = (3.0/4.0) * std::sqrt(std::max(0.0, 2.0/(GetReducedMass()*(eKin+GetBindingEnergy()))))*
70      GetAlpha()*(eKin+GetBeta())/(r0*std::pow(GetRestA(),1.0/3.0)) *
71      CoalescenceFactor(aFragment.GetA()) * FactorialFactor(N,P);
72
73  G4double pB = std::pow((g1*E1)/(g0*E0),N-GetA()-1.0)*(g1/g0);
74
75  //  G4double pC = std::pow((gj*Ej)/(g0*E0),GetA()-1.0)*(gj/g0)/E0;
76  G4double pC = std::pow((g1*Ej)/(g0*E0),GetA()-1.0)*(g1/g0)/E0; //JMQ fix
77
78  G4double Probability = pA * pB * pC * GetRj(aFragment.GetNumberOfParticles(), aFragment.GetNumberOfCharged());
79
80  return Probability;
81}
Note: See TracBrowser for help on using the repository browser.