Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4GNASHTransitions.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$
27//
28// 20.08.2010 V.Ivanchenko move constructor and destructor to the source
29
30#include "G4GNASHTransitions.hh"
32#include "G4SystemOfUnits.hh"
35
37{}
38
40{}
41
43CalculateProbability(const G4Fragment & aFragment)
44{
45 const G4double k = 135.0 * MeV*MeV*MeV;
46 G4double E = aFragment.GetExcitationEnergy();
47 G4double P = aFragment.GetNumberOfParticles();
48 G4double H = aFragment.GetNumberOfHoles();
49 G4double N = P + H;
50 G4double A = aFragment.GetA();
51
52 G4double theMatrixElement(k*N/(A*A*A*E));
53 G4double x = E/N;
54 if ( x < 2.0*MeV ) theMatrixElement *= x/std::sqrt(14.0*MeV*MeV);
55 else if ( x < 7.0*MeV ) x *= std::sqrt(x/7.0*MeV);
56 else if ( x < 15.0*MeV ) ;
57 else x *= std::sqrt(15.0*MeV/x);
58
59 // gg = (6.0/pi2)*a*A
61
62 G4double Epauli = ((P+1.0)*(P+1.0) + (H+1.0)*(H+1.0) + (P+1.0) - 3.0*(H-1.0))/4.0;
63
64 G4double Probability = gg*gg*gg *(E-Epauli)*(E-Epauli);
65 Probability /= 2.0*(N+1.0)*h_Planck;
66 Probability *= theMatrixElement;
67
68 return Probability;
69}
70
72{
74 result.SetNumberOfHoles(result.GetNumberOfHoles()+1);
75 if (G4UniformRand() <= result.GetZ()/result.GetA())
76 {
77 result.SetNumberOfCharged(result.GetNumberOfCharged()+1);
78 }
79
80 if (result.GetNumberOfParticles() < result.GetNumberOfCharged())
81 {
83 }
84}
double G4double
Definition: G4Types.hh:64
#define G4UniformRand()
Definition: Randomize.hh:53
G4int GetNumberOfParticles() const
Definition: G4Fragment.hh:305
G4int GetNumberOfHoles() const
Definition: G4Fragment.hh:325
void SetNumberOfCharged(G4int value)
Definition: G4Fragment.hh:349
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:235
G4double GetZ() const
Definition: G4Fragment.hh:278
G4double GetA() const
Definition: G4Fragment.hh:283
void SetNumberOfHoles(G4int valueTot, G4int valueP=0)
Definition: G4Fragment.hh:335
void SetNumberOfParticles(G4int value)
Definition: G4Fragment.hh:344
G4int GetNumberOfCharged() const
Definition: G4Fragment.hh:310
virtual G4double CalculateProbability(const G4Fragment &aFragment)
virtual void PerformTransition(G4Fragment &aFragment)
static G4PreCompoundParameters * GetAddress()