Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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//
27// 20.08.2010 V.Ivanchenko move constructor and destructor to the source
28
29#include "G4GNASHTransitions.hh"
31#include "G4SystemOfUnits.hh"
32#include "G4NuclearLevelData.hh"
35#include "Randomize.hh"
36
41
44
46CalculateProbability(const G4Fragment & aFragment)
47{
48 static const G4double k = 135.0 *CLHEP::MeV*CLHEP::MeV*CLHEP::MeV;
49 G4double E = aFragment.GetExcitationEnergy();
50 G4double P = aFragment.GetNumberOfParticles();
51 G4double H = aFragment.GetNumberOfHoles();
52 G4double N = P + H;
53 G4int Z = aFragment.GetZ_asInt();
54 G4int A = aFragment.GetA_asInt();
55
56 G4double theMatrixElement(k*N/((A*A*A)*E));
57 G4double x = E/(N*CLHEP::MeV);
58 static const G4double xf = std::sqrt(2.0/7.0);
59 if ( x < 2.0) { x *= xf; }
60 else if ( x < 7.0) { x *= std::sqrt(x/7.0); }
61 else if ( x > 15.0){ x *= std::sqrt(15.0/x); }
62 theMatrixElement *= x;
63
65
66 G4double Epauli = ((P+1.0)*(P+1.0) + (H+1.0)*(H+1.0) + (P+1.0) - 3.0*(H-1.0))*0.25;
67
68 G4double Probability = gg*gg*gg *(E-Epauli)*(E-Epauli);
69 Probability *= theMatrixElement/(2.0*(N+1.0)*CLHEP::h_Planck);
70
71 return Probability;
72}
73
75{
77 result.SetNumberOfHoles(result.GetNumberOfHoles()+1);
78 if (G4UniformRand()*result.GetA_asInt() <= G4double(result.GetZ_asInt()))
79 {
80 result.SetNumberOfCharged(result.GetNumberOfCharged()+1);
81 }
82
83 if (result.GetNumberOfParticles() < result.GetNumberOfCharged())
84 {
86 }
87}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
const G4double A[17]
#define G4UniformRand()
Definition Randomize.hh:52
G4int GetNumberOfParticles() const
G4int GetNumberOfHoles() const
void SetNumberOfCharged(G4int value)
G4double GetExcitationEnergy() const
G4int GetZ_asInt() const
void SetNumberOfHoles(G4int valueTot, G4int valueP=0)
void SetNumberOfParticles(G4int value)
G4int GetNumberOfCharged() const
G4int GetA_asInt() const
virtual G4double CalculateProbability(const G4Fragment &aFragment)
virtual void PerformTransition(G4Fragment &aFragment)
G4double GetLevelDensity(G4int Z, G4int A, G4double U)
G4DeexPrecoParameters * GetParameters()
static G4NuclearLevelData * GetInstance()
#define N
Definition crc32.c:57