Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4FermiPair.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: G4FermiPair.hh 85677 2014-11-03 17:44:12Z vnivanch $
27 //
28 // FermiBreakUp de-excitation model
29 // by V. Ivanchenko (July 2016)
30 //
31 
32 #ifndef G4FermiPair_h
33 #define G4FermiPair_h 1
34 
35 #include "globals.hh"
36 #include "G4FermiFragment.hh"
37 #include "G4Fragment.hh"
38 
40 {
41 public:
42 
43  explicit G4FermiPair(const G4FermiFragment* f1, const G4FermiFragment* f2);
44 
45  inline G4int GetA() const;
46  inline G4int GetZ() const;
47  inline G4double GetMass() const;
48  inline G4double GetExcitationEnergy() const;
49  inline G4double GetTotalEnergy() const;
50  inline G4double GetDynamicMinMass(G4double Eex) const;
51  inline const G4FermiFragment* GetFragment1() const;
52  inline const G4FermiFragment* GetFragment2() const;
53 
54 private:
55 
56  inline G4FermiPair(const G4FermiPair &) = delete;
57  inline const G4FermiPair & operator=(const G4FermiPair &) = delete;
58  inline G4bool operator==(const G4FermiPair &) const = delete;
59  inline G4bool operator!=(const G4FermiPair &) const = delete;
60 
63 
66 
69 
70 };
71 
72 inline G4int G4FermiPair::GetA() const
73 {
74  return totalA;
75 }
76 
77 inline G4int G4FermiPair::GetZ() const
78 {
79  return totalZ;
80 }
81 
83 {
84  return mass;
85 }
86 
88 {
89  return excitEnergy;
90 }
91 
93 {
94  return mass + excitEnergy;
95 }
96 
98 {
99  return fragment1;
100 }
101 
103 {
104  return fragment2;
105 }
106 
108 {
111 }
112 
113 #endif
114 
115 
const G4FermiFragment * fragment2
Definition: G4FermiPair.hh:68
G4int totalZ
Definition: G4FermiPair.hh:61
G4double GetMass() const
Definition: G4FermiPair.hh:82
G4double GetDynamicMinMass(G4double Eex) const
Definition: G4FermiPair.hh:107
const G4FermiFragment * GetFragment1() const
Definition: G4FermiPair.hh:97
Float_t f2
G4double GetTotalEnergy() const
Definition: G4FermiPair.hh:92
G4int totalA
Definition: G4FermiPair.hh:62
G4bool operator==(const G4FermiPair &) const =delete
const G4FermiFragment * fragment1
Definition: G4FermiPair.hh:67
G4int GetA(void) const
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4double excitEnergy
Definition: G4FermiPair.hh:65
G4double GetCoulombBarrier(G4int Ares, G4int Zres, G4double Eex) const
Float_t f1
G4double GetTotalEnergy(void) const
G4int GetZ() const
Definition: G4FermiPair.hh:77
G4double GetExcitationEnergy() const
Definition: G4FermiPair.hh:87
int G4int
Definition: G4Types.hh:78
G4int GetA() const
Definition: G4FermiPair.hh:72
G4FermiPair(const G4FermiFragment *f1, const G4FermiFragment *f2)
Definition: G4FermiPair.cc:35
G4int GetZ(void) const
const G4FermiPair & operator=(const G4FermiPair &)=delete
G4double mass
Definition: G4FermiPair.hh:64
G4bool operator!=(const G4FermiPair &) const =delete
const G4FermiFragment * GetFragment2() const
Definition: G4FermiPair.hh:102