Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
processes
hadronic
models
pre_equilibrium
exciton_model
src
G4GNASHTransitions.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
// $Id: G4GNASHTransitions.cc 96603 2016-04-25 13:29:51Z gcosmo $
27
//
28
// 20.08.2010 V.Ivanchenko move constructor and destructor to the source
29
30
#include "
G4GNASHTransitions.hh
"
31
#include "
G4PhysicalConstants.hh
"
32
#include "
G4SystemOfUnits.hh
"
33
#include "
G4NuclearLevelData.hh
"
34
#include "
G4DeexPrecoParameters.hh
"
35
#include "
G4HadronicException.hh
"
36
#include "
Randomize.hh
"
37
38
G4GNASHTransitions::G4GNASHTransitions
()
39
{
40
theParameters
=
G4NuclearLevelData::GetInstance
()->
GetParameters
();
41
}
42
43
G4GNASHTransitions::~G4GNASHTransitions
()
44
{}
45
46
G4double
G4GNASHTransitions::
47
CalculateProbability
(
const
G4Fragment
& aFragment)
48
{
49
static
const
G4double
k = 135.0 *
CLHEP::MeV
*
CLHEP::MeV
*
CLHEP::MeV
;
50
G4double
E
= aFragment.
GetExcitationEnergy
();
51
G4double
P
= aFragment.
GetNumberOfParticles
();
52
G4double
H = aFragment.
GetNumberOfHoles
();
53
G4double
N
= P + H;
54
G4double
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
64
G4double
gg = (6.0/
pi2
)*
theParameters
->
GetLevelDensity
()*
A
;
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
74
void
G4GNASHTransitions::PerformTransition
(
G4Fragment
&
result
)
75
{
76
result.
SetNumberOfParticles
(result.
GetNumberOfParticles
()+1);
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
{
85
result.
SetNumberOfCharged
(result.
GetNumberOfParticles
());
86
}
87
}
x
Float_t x
Definition:
compare.C:6
G4GNASHTransitions::theParameters
G4DeexPrecoParameters * theParameters
Definition:
G4GNASHTransitions.hh:55
G4PhysicalConstants.hh
G4NuclearLevelData.hh
G4Fragment::SetNumberOfHoles
void SetNumberOfHoles(G4int valueTot, G4int valueP=0)
Definition:
G4Fragment.hh:368
Randomize.hh
G4NuclearLevelData::GetParameters
G4DeexPrecoParameters * GetParameters()
Definition:
G4NuclearLevelData.cc:600
G4DeexPrecoParameters.hh
G4NuclearLevelData::GetInstance
static G4NuclearLevelData * GetInstance()
Definition:
G4NuclearLevelData.cc:420
G4Fragment::GetNumberOfHoles
G4int GetNumberOfHoles() const
Definition:
G4Fragment.hh:358
G4Fragment::GetA_asInt
G4int GetA_asInt() const
Definition:
G4Fragment.hh:259
CLHEP::h_Planck
static constexpr double h_Planck
Definition:
PhysicalConstants.h:63
G4Fragment::GetNumberOfParticles
G4int GetNumberOfParticles() const
Definition:
G4Fragment.hh:338
G4GNASHTransitions::PerformTransition
virtual void PerformTransition(G4Fragment &aFragment)
Definition:
G4GNASHTransitions.cc:74
G4double
double G4double
Definition:
G4Types.hh:76
G4GNASHTransitions::CalculateProbability
virtual G4double CalculateProbability(const G4Fragment &aFragment)
Definition:
G4GNASHTransitions.cc:47
N
**D E S C R I P T I O N
Definition:
HepMCEx01/src/HEPEvtcom.cc:77
E
Float_t E
Definition:
extended/medical/dna/mfp/plot.C:20
G4Fragment::GetNumberOfCharged
G4int GetNumberOfCharged() const
Definition:
G4Fragment.hh:343
G4GNASHTransitions.hh
CLHEP::MeV
static constexpr double MeV
Definition:
SystemOfUnits.h:174
G4UniformRand
#define G4UniformRand()
Definition:
Randomize.hh:53
G4Fragment
Definition:
G4Fragment.hh:66
G4SystemOfUnits.hh
A
double A(double temperature)
Definition:
G4DNAElectronHoleRecombination.cc:60
G4GNASHTransitions::~G4GNASHTransitions
virtual ~G4GNASHTransitions()
Definition:
G4GNASHTransitions.cc:43
G4GNASHTransitions::G4GNASHTransitions
G4GNASHTransitions()
Definition:
G4GNASHTransitions.cc:38
pi2
static constexpr double pi2
Definition:
G4SIunits.hh:78
G4Fragment::SetNumberOfCharged
void SetNumberOfCharged(G4int value)
Definition:
G4Fragment.hh:382
G4Fragment::GetZ_asInt
G4int GetZ_asInt() const
Definition:
G4Fragment.hh:264
result
G4double G4ParticleHPJENDLHEData::G4double result
Definition:
G4ParticleHPJENDLHEData.cc:257
G4HadronicException.hh
P
static double P[]
Definition:
nf_gammaFunctions.cc:89
G4DeexPrecoParameters::GetLevelDensity
G4double GetLevelDensity() const
Definition:
G4DeexPrecoParameters.hh:253
G4Fragment::SetNumberOfParticles
void SetNumberOfParticles(G4int value)
Definition:
G4Fragment.hh:377
G4Fragment::GetExcitationEnergy
G4double GetExcitationEnergy() const
Definition:
G4Fragment.hh:276
다음에 의해 생성됨 :
1.8.5