Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4FermiFragment.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: G4FermiFragment.hh 97057 2016-05-23 17:37:49Z vnivanch $
27 //
28 // FermiBreakUp de-excitation model
29 // by V. Ivanchenko (July 2016)
30 //
31 
32 #ifndef G4FermiFragment_h
33 #define G4FermiFragment_h 1
34 
35 #include "globals.hh"
36 #include "G4FragmentVector.hh"
37 #include "G4CoulombBarrier.hh"
38 
40 {
41 public:
42 
43  explicit G4FermiFragment(G4int anA, G4int aZ, G4int sp,
44  G4double exc, G4bool stable, G4bool phys = true);
45 
47 
48  inline G4int GetA(void) const
49  {
50  return A;
51  }
52 
53  inline G4int GetZ(void) const
54  {
55  return Z;
56  }
57 
58  inline G4int GetSpin(void) const
59  {
60  return spin;
61  }
62 
63  inline G4double GetExcitationEnergy(void) const
64  {
65  return excitEnergy;
66  }
67 
68  inline G4double GetFragmentMass(void) const
69  {
70  return fragmentMass;
71  }
72 
73  inline G4double GetTotalEnergy(void) const
74  {
75  return (fragmentMass + excitEnergy);
76  }
77 
78  inline G4bool IsStable() const
79  {
80  return isStable;
81  }
82 
83  inline G4bool IsPhysical() const
84  {
85  return isPhysical;
86  }
87 
88  inline G4double GetCoulombBarrier(G4int Ares, G4int Zres, G4double Eex) const
89  {
90  return cBarrier ? cBarrier->GetCoulombBarrier(Ares, Zres, Eex)
92  }
93 
94  inline G4bool operator==(const G4FermiFragment &right) const
95  {
96  return (A == right.A && Z == right.Z &&
97  std::abs(excitEnergy - right.excitEnergy) < 0.0001);
98  }
99 
100 private:
101 
105 
108 
111 
113 
114  G4FermiFragment(const G4FermiFragment &right) = delete;
115  const G4FermiFragment & operator=(const G4FermiFragment &right) = delete;
116  G4bool operator!=(const G4FermiFragment &right) const = delete;
117 
118 };
119 
120 
121 #endif
122 
123 
G4bool operator!=(const G4FermiFragment &right) const =delete
G4double GetFragmentMass(void) const
G4bool IsPhysical() const
G4FermiFragment(G4int anA, G4int aZ, G4int sp, G4double exc, G4bool stable, G4bool phys=true)
G4bool IsStable() const
const G4FermiFragment & operator=(const G4FermiFragment &right)=delete
G4int GetA(void) const
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4bool operator==(const G4FermiFragment &right) const
G4double GetCoulombBarrier(G4int ARes, G4int ZRes, G4double U) const
G4double GetCoulombBarrier(G4int Ares, G4int Zres, G4double Eex) const
virtual G4double BarrierPenetrationFactor(G4int Eexc) const
G4double GetTotalEnergy(void) const
int G4int
Definition: G4Types.hh:78
G4int GetSpin(void) const
G4int GetZ(void) const
G4double GetExcitationEnergy(void) const
G4CoulombBarrier * cBarrier