source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4GNASHTransitions.cc @ 1228

Last change on this file since 1228 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 3.5 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#include "G4GNASHTransitions.hh"
27#include "G4PreCompoundParameters.hh"
28#include "G4HadronicException.hh"
29
30const G4GNASHTransitions & G4GNASHTransitions::
31operator=(const G4GNASHTransitions & )
32{
33  throw G4HadronicException(__FILE__, __LINE__, "G4GNASHTransitions::operator= meant to not be accesable");
34  return *this;
35}
36
37G4bool G4GNASHTransitions::operator==(const G4GNASHTransitions & ) const
38{
39  return false;
40}
41
42G4bool G4GNASHTransitions::operator!=(const G4GNASHTransitions & ) const
43{
44  return true;
45}
46
47
48G4double G4GNASHTransitions::
49CalculateProbability(const G4Fragment & aFragment)
50{
51  const G4double k = 135.0 * MeV*MeV*MeV;
52  G4double E = aFragment.GetExcitationEnergy();
53  G4double P = aFragment.GetNumberOfParticles();
54  G4double H = aFragment.GetNumberOfHoles();
55  G4double N = P + H;
56  G4double A = aFragment.GetA();
57
58  G4double theMatrixElement(k*N/(A*A*A*E));
59  G4double x = E/N;
60  if ( x < 2.0*MeV ) theMatrixElement *= x/std::sqrt(14.0*MeV*MeV);
61  else if ( x < 7.0*MeV ) x *= std::sqrt(x/7.0*MeV);
62  else if ( x < 15.0*MeV ) ;
63  else x *= std::sqrt(15.0*MeV/x);
64
65  // g = (6.0/pi2)*a*A
66  G4double g =  (6.0/pi2)*G4PreCompoundParameters::GetAddress()->GetLevelDensity()*A;
67
68  G4double Epauli = ((P+1.0)*(P+1.0) + (H+1.0)*(H+1.0) + (P+1.0) - 3.0*(H-1.0))/4.0;
69
70  G4double Probability = g*g*g *(E-Epauli)*(E-Epauli);
71  Probability /= 2.0*(N+1.0)*h_Planck;
72  Probability *= theMatrixElement;
73
74
75  return Probability;
76}
77
78G4Fragment G4GNASHTransitions::
79PerformTransition(const G4Fragment & aFragment)
80{
81  G4Fragment result(aFragment);
82  result.SetNumberOfParticles(result.GetNumberOfParticles()+1);
83  result.SetNumberOfHoles(result.GetNumberOfHoles()+1);
84  if (G4UniformRand() <= result.GetZ()/result.GetA())
85    {
86      result.SetNumberOfCharged(result.GetNumberOfCharged()+1);
87    }
88
89  if (result.GetNumberOfParticles() < result.GetNumberOfCharged())
90    {
91      result.SetNumberOfCharged(result.GetNumberOfParticles());
92    }
93
94  return result;
95}
Note: See TracBrowser for help on using the repository browser.