ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4FermiDecayProbability.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4FermiDecayProbability.cc
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"
33 #include "G4PhysicalConstants.hh"
34 
36 {}
37 
39 {}
40 
41 G4double
43  G4double etot,
44  const G4FermiFragment* f1,
45  const G4FermiFragment* f2) const
46 {
47  G4double prob = 0.0;
48  G4double mass1 = f1->GetTotalEnergy();
49  G4double mass2 = f2->GetTotalEnergy();
50  G4double bCouloumb = f1->GetCoulombBarrier(f2->GetA(), f2->GetZ(), 0.0);
51  if(etot <= mass1 + mass2 + bCouloumb) { return prob; }
52 
53  //G4cout << "ComputeProbability M1= " << mass1 << " M2= " << mass2 << G4endl;
54  G4double ekin = etot - mass1 - mass2;
55 
56  // mass factors
57  G4double massFactor = mass1*mass2/(mass1 + mass2);
58  massFactor *= std::sqrt(massFactor);
59 
60  // Spin factor S_n
61  G4double S_n = 1.0;
62  if(spin >= 0) {
63  G4int spin1 = f1->GetSpin();
64  G4int spin2 = f2->GetSpin();
65  if(spin1 >= 0 && spin2 >= 0) {
66  S_n = (spin1+1)*(spin2+1);
67  }
68  }
69 
70  // Permutation Factor G_n
71  // search for identical fragments
72  G4double G_n = (f1 == f2) ? 0.5 : 1.0;
73 
74  prob = A*massFactor*S_n*G_n*std::sqrt(ekin);
75 
76  //G4cout << "prob= " << prob << " Coeff= " << Coeff << G4endl;
77  return prob;
78 }