Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4FermiFragmentsPoolVI.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: G4FermiFragmentsPoolVI.hh,v 1.5 2006-06-29 20:13:13 gunter Exp $
27 //
28 // FermiBreakUp de-excitation model
29 // by V. Ivanchenko (July 2016)
30 //
31 
32 #ifndef G4FermiFragmentsPoolVI_hh
33 #define G4FermiFragmentsPoolVI_hh 1
34 
35 #include "globals.hh"
36 #include "G4FermiFragment.hh"
37 #include "G4FermiPair.hh"
38 #include "G4FermiChannels.hh"
40 
41 #include <vector>
42 
43 static const G4int maxZ = 9;
44 static const G4int maxA = 17;
45 
47 {
48 public:
49 
50  explicit G4FermiFragmentsPoolVI();
51 
53 
54  const G4FermiChannels* ClosestChannels(G4int Z, G4int A, G4double mass) const;
55 
56  void DumpFragment(const G4FermiFragment*) const;
57 
58  void Dump() const;
59 
60  G4bool IsApplicable(G4int Z, G4int A, G4double etot) const;
61 
62  G4bool IsPhysical(G4int Z, G4int A) const;
63 
64  inline const G4FermiDecayProbability* FermiDecayProbability() const;
65 
66  inline G4int GetMaxZ() const;
67 
68  inline G4int GetMaxA() const;
69 
70  inline G4double GetEnergyLimit() const;
71 
72  inline G4double GetTolerance() const;
73 
74 private:
75 
76  void Initialise();
77 
78  G4bool IsInThePool(G4int Z, G4int A, G4double exc) const;
79 
81  const G4FermiFragment* f2) const;
82 
84  const G4FermiFragment* f2) const;
85 
88 
91 
93 
94  // pool
95  std::vector<const G4FermiFragment*> fragment_pool;
96  std::vector<const G4FermiFragment*> funstable;
97 
98  // lists of configurations sorted by A
99 
100  // "stable" fragments
101  std::vector<const G4FermiFragment*> list_f[maxA];
102  // list of channels for "stable" fragments
103  std::vector<G4FermiChannels*> list_c[maxA];
104  // pairs of stable fragments
105  std::vector<const G4FermiPair*> list_p[maxA];
106 
107  // "unstable" fragments
108  std::vector<const G4FermiFragment*> list_g[maxA];
109  // list of channels of stable and unstable fragments
110  std::vector<G4FermiChannels*> list_d[maxA];
111  // pairs of stable and unstable fragments
112  std::vector<const G4FermiPair*> list_u[maxA];
113 
114 };
115 
117 {
118  return maxZ;
119 }
120 
122 {
123  return maxA;
124 }
125 
126 inline const G4FermiDecayProbability*
128 {
129  return &theDecay;
130 }
131 
133 {
134  return elim;
135 }
136 
138 {
139  return tolerance;
140 }
141 
142 #endif
143 
std::vector< const G4FermiFragment * > funstable
G4bool IsInPhysPairs(const G4FermiFragment *f1, const G4FermiFragment *f2) const
float G4float
Definition: G4Types.hh:77
G4FermiDecayProbability theDecay
Float_t f2
G4bool IsInUnphysPairs(const G4FermiFragment *f1, const G4FermiFragment *f2) const
static const G4int maxZ
const G4FermiDecayProbability * FermiDecayProbability() const
std::vector< G4FermiChannels * > list_c[maxA]
Float_t Z
void DumpFragment(const G4FermiFragment *) const
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4bool IsPhysical(G4int Z, G4int A) const
double A(double temperature)
static const G4int maxA
Float_t f1
std::vector< const G4FermiPair * > list_u[maxA]
int G4int
Definition: G4Types.hh:78
std::vector< const G4FermiFragment * > list_f[maxA]
G4bool IsApplicable(G4int Z, G4int A, G4double etot) const
std::vector< G4FermiChannels * > list_d[maxA]
std::vector< const G4FermiFragment * > fragment_pool
const G4FermiChannels * ClosestChannels(G4int Z, G4int A, G4double mass) const
std::vector< const G4FermiPair * > list_p[maxA]
std::vector< const G4FermiFragment * > list_g[maxA]
G4bool IsInThePool(G4int Z, G4int A, G4double exc) const