source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4PreCompoundNucleon.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.2 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 "G4PreCompoundNucleon.hh"
29#include "G4PreCompoundParameters.hh"
30
31
32G4double G4PreCompoundNucleon::
33ProbabilityDistributionFunction(const G4double eKin, 
34                                const G4Fragment& aFragment)
35{
36  if ( !IsItPossible(aFragment) ) return 0.0;
37
38  const G4double r0 = G4PreCompoundParameters::GetAddress()->Getr0();
39
40  G4double U = aFragment.GetExcitationEnergy();
41  G4double P = aFragment.GetNumberOfParticles();
42  G4double H = aFragment.GetNumberOfHoles();
43  G4double N = P + H;
44 
45  // g = (6.0/pi2)*a*A
46  //  G4EvaporationLevelDensityParameter theLDP;
47  G4double g0 = (6.0/pi2)*aFragment.GetA() * 
48    G4PreCompoundParameters::GetAddress()->GetLevelDensity();
49  //    theLDP.LevelDensityParameter(static_cast<G4int>(aFragment.GetA()),static_cast<G4int>(aFragment.GetZ()),U);
50  G4double g1 = (6.0/pi2)*GetRestA() * 
51    G4PreCompoundParameters::GetAddress()->GetLevelDensity();
52    //    theLDP.LevelDensityParameter(static_cast<G4int>(GetRestA()),static_cast<G4int>(GetRestZ()),U);
53
54  G4double A0 = ((P*P+H*H+P-H)/4.0 - H/2.0)/g0;
55  G4double A1 = (A0*g0 - P/2.0)/g1;
56 
57  G4double E0 = std::max(0.0,U - A0);
58  if (E0 == 0.0) return 0.0;
59  G4double E1 = std::max(0.0,U - eKin - GetBindingEnergy() - A1);
60  if (E1 == 0.0) return 0.0;
61
62
63  G4double Probability = 2.0/(hbarc*hbarc*hbarc) * GetReducedMass() * 
64      GetRj(aFragment.GetNumberOfParticles(), aFragment.GetNumberOfCharged()) * r0 * r0 * std::pow(GetRestA(),2.0/3.0) * GetAlpha() * (eKin + GetBeta()) *
65      P*(N-1.0) * std::pow(g1*E1/(g0*E0),N-2.0)/E0 *
66      g1/(g0*g0);
67
68  return Probability;
69}
Note: See TracBrowser for help on using the repository browser.