Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4EvaporationProbability.hh
이 파일의 문서화 페이지로 가기
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: G4EvaporationProbability.hh 103162 2017-03-20 09:40:58Z gcosmo $
27 //
28 //J.M. Quesada (August2008). Based on:
29 //
30 // Hadronic Process: Nuclear De-excitations
31 // by V. Lara (Oct 1998)
32 //
33 #ifndef G4EvaporationProbability_h
34 #define G4EvaporationProbability_h 1
35 
39 
40 class G4VCoulombBarrier;
41 class G4NuclearLevelData;
42 
44 {
45 public:
46 
47  explicit G4EvaporationProbability(G4int anA, G4int aZ,
48  G4double aGamma,
50 
51  virtual ~G4EvaporationProbability();
52 
53  // not used for evaporation
54  virtual G4double EmissionProbability(const G4Fragment& fragment,
55  G4double maxKineticEnergy);
56 
57  // general method used for evaporation
58  G4double TotalProbability(const G4Fragment& fragment,
59  G4double minKineticEnergy,
60  G4double maxKineticEnergy,
61  G4double CoulombBarrier = 0.0);
62 
63  // main method to compute full probability for OPTx > 2
64  virtual G4double ComputeProbability(G4double K, G4double kBarrier);
65 
66  // Samples fragment kinetic energy and excitation energy
67  // of the residual nucleaus
68  G4double SampleKineticEnergy(G4double minKineticEnergy,
69  G4double maxKineticEnergy,
70  G4double CoulombBarrier = 0.0);
71 
72 protected:
73 
74  virtual G4double CalcAlphaParam(const G4Fragment & fragment)=0 ;
75 
76  virtual G4double CalcBetaParam(const G4Fragment & fragment)=0 ;
77 
78 private:
79 
80  G4double CrossSection(G4double K, G4double CoulombBarrier);
81 
82  // Copy constructor
84 
85  const G4EvaporationProbability & operator=
86  (const G4EvaporationProbability &right) = delete;
87  G4bool operator==(const G4EvaporationProbability &right) const = delete;
88  G4bool operator!=(const G4EvaporationProbability &right) const = delete;
89 
91 
97 
104 
105  // Gamma is A_f(2S_f+1) factor, where A_f is fragment atomic
106  // number and S_f is fragment spin
109 
111 };
112 
113 #endif
G4double TotalProbability(const G4Fragment &fragment, G4double minKineticEnergy, G4double maxKineticEnergy, G4double CoulombBarrier=0.0)
Double_t K
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4double CrossSection(G4double K, G4double CoulombBarrier)
virtual G4double CalcBetaParam(const G4Fragment &fragment)=0
G4EvaporationProbability(G4int anA, G4int aZ, G4double aGamma, G4VCoulombBarrier *)
virtual G4double ComputeProbability(G4double K, G4double kBarrier)
G4bool operator!=(const G4EvaporationProbability &right) const =delete
int G4int
Definition: G4Types.hh:78
virtual G4double EmissionProbability(const G4Fragment &fragment, G4double maxKineticEnergy)
G4double SampleKineticEnergy(G4double minKineticEnergy, G4double maxKineticEnergy, G4double CoulombBarrier=0.0)
G4bool operator==(const G4EvaporationProbability &right) const =delete
virtual G4double CalcAlphaParam(const G4Fragment &fragment)=0