Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4LightIonQMDMeanField.hh
Go to the documentation of this file.
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// -------------------------------------------------------------------
27// GEANT4 Class file
28//
29//
30// File name: G4LightIonQMDMeanField.hh
31//
32// Author: Koi, Tatsumi ([email protected])
33//
34// Creation date: 29 March 2007
35// -----------------------------------------------------------------------------
36// 081120 Add Update
37//
38// 230307 Skyrme-QMD parameters added by Y-H. Sato and A. Haga
39// 230307 "CalDensityProfile" and "CalChargeDensityProfile" functions added by Y-H. Sato and A. Haga
40// 230307 "GetSingleEnergy" and "GetTotalEnergy" functions added by Y-H. Sato and A. Haga
41
42#ifndef G4LightIonQMDMeanField_hh
43#define G4LightIonQMDMeanField_hh
44
45#include "G4QMDSystem.hh"
47
49{
50 public:
51
54
55 void SetSystem ( G4QMDSystem* aSystem );
56 void SetNucleus ( G4LightIonQMDNucleus* aSystem );
57 inline G4QMDSystem* GetSystem () { return system; }
58
59 void Cal2BodyQuantities();
61
62 void CalGraduate();
63
65
68
69 void DoPropagation( G4double );
70
71 std::vector< G4LightIonQMDNucleus* > DoClusterJudgment();
72
73 inline G4double GetRR2( G4int i , G4int j ) { return rr2[i][j]; }
74 inline G4double GetRHA( G4int i , G4int j ) { return rha[i][j]; }
75 inline G4double GetRHE( G4int i , G4int j ) { return rhe[i][j]; }
76 inline G4ThreeVector GetFFr( G4int i ) { return ffr[i]; }
77 inline G4ThreeVector GetFFp( G4int i ) { return ffp[i]; }
78
79 std::vector< G4double > GetLocalDensity();
80 std::vector< G4double > GetDepthOfPotential();
81
82 void Update();
83
84 G4double GetTotalEnergy(); // added by Y-H.S and A.H.
85 G4double GetSingleEnergy( G4int ); // added by Y-H.S and A.H.
86
87 private:
88
89 G4double calPauliBlockingFactor( G4int );
90
91 private:
92
93 G4QMDSystem* system;
94
95 G4double rclds { 3.99 }; // distance for cluster judgement
96
97 G4double hbc , rho0;
98 G4double epsx { -20.0 }; // gauss term
99 G4double epscl { 0.0001 }; // coulomb term
100
101 G4double cpc;
102
103 //G4int icoul, irelcr;
104 G4int irelcr { 1 };
105 G4double gamm, c0, c3, cs, cl, wl;
106 G4double g0, g0iso, gtau0, eta, kappas; //Skyrme-QMD
107 //G4double c0w, c3w, clw, c0sw;
108 G4double c0w, clw, c0sw;
109
110 G4double c0g,c3g,csg,pag;
111 G4double cg0,cgtau0,pag_tau; //Skyrme-QMD
112
113 G4double cpw,cph;
114
115 // 2 Body Quantities
116 std::vector < std::vector < G4double > > rr2;
117 std::vector < std::vector < G4double > > pp2;
118 std::vector < std::vector < G4double > > rbij;
119
120 // Gauss
121 std::vector < std::vector < G4double > > rha;
122
123 // Coulomb
124 std::vector < std::vector < G4double > > rhe;
125 std::vector < std::vector < G4double > > rhc;
126
127 std::vector < G4ThreeVector > ffr;
128 std::vector < G4ThreeVector > ffp;
129 std::vector < G4double > rh3d;
130 std::vector < G4double > rh3d_tau; // Skyrme-QMD
131
132};
133
134#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
~G4LightIonQMDMeanField()=default
std::vector< G4double > GetDepthOfPotential()
G4double GetRHE(G4int i, G4int j)
std::vector< G4double > GetLocalDensity()
G4ThreeVector GetFFr(G4int i)
void SetNucleus(G4LightIonQMDNucleus *aSystem)
void SetSystem(G4QMDSystem *aSystem)
std::vector< G4LightIonQMDNucleus * > DoClusterJudgment()
G4ThreeVector GetFFp(G4int i)
G4double GetRHA(G4int i, G4int j)
G4double GetRR2(G4int i, G4int j)