Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4FermiDecayProbability.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// FermiBreakUp de-excitation model
28// by V. Ivanchenko (July 2016)
29//
30
32#include "G4FermiFragment.hh"
34
36{}
37
40 G4double etot,
41 const G4FermiFragment* f1,
42 const G4FermiFragment* f2) const
43{
44 G4double prob = 0.0;
45 G4double mass1 = f1->GetTotalEnergy();
46 G4double mass2 = f2->GetTotalEnergy();
47 G4double bCouloumb = f1->GetCoulombBarrier(f2->GetA(), f2->GetZ(), 0.0);
48 if(etot <= mass1 + mass2 + bCouloumb) { return prob; }
49
50 //G4cout << "ComputeProbability M1= " << mass1 << " M2= " << mass2 << G4endl;
51 G4double ekin = etot - mass1 - mass2;
52
53 // mass factors
54 G4double x = mass1*mass2/(mass1 + mass2);
55 G4double massFactor = x*std::sqrt(x);
56
57 // Spin factor S_n
58 G4double S_n = 1.0;
59 if(spin >= 0) {
60 G4int spin1 = f1->GetSpin();
61 G4int spin2 = f2->GetSpin();
62 if(spin1 >= 0 && spin2 >= 0) {
63 S_n = (spin1+1)*(spin2+1);
64 }
65 }
66
67 // Permutation Factor G_n
68 // search for identical fragments
69 G4double G_n = (f1 == f2) ? 0.5 : 1.0;
70
71 prob = A*massFactor*S_n*G_n*std::sqrt(ekin);
72
73 //G4cout << "prob= " << prob << " Coeff= " << Coeff << G4endl;
74 return prob;
75}
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
const G4double A[17]
G4double ComputeProbability(G4int Z, G4int A, G4int spin, G4double TotalE, const G4FermiFragment *f1, const G4FermiFragment *f2) const
G4int GetA() const
G4int GetSpin() const
G4double GetCoulombBarrier(G4int Ares, G4int Zres, G4double Eex) const
G4int GetZ() const
G4double GetTotalEnergy(void) const