Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4INCLHFB.cc
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// INCL++ intra-nuclear cascade model
27// Alain Boudard, CEA-Saclay, France
28// Joseph Cugnon, University of Liege, Belgium
29// Jean-Christophe David, CEA-Saclay, France
30// Pekka Kaitaniemi, CEA-Saclay, France, and Helsinki Institute of Physics, Finland
31// Sylvie Leray, CEA-Saclay, France
32// Davide Mancusi, CEA-Saclay, France
33//
34#define INCLXX_IN_GEANT4_MODE 1
35
36#include "globals.hh"
37
38/*
39 * HFB.cc
40 *
41 * \date Oct 25, 2017
42 * \author Jose Luis Rodriguez Sanchez
43 */
44
45#include "G4INCLHFB.hh"
47#include "G4INCLGlobals.hh"
48#include <algorithm>
49#include <istream>
50#ifdef INCLXX_IN_GEANT4_MODE
51 #include "G4Threading.hh"
52#endif
53
54namespace G4INCL {
55
56 namespace {
57 #ifdef INCLXX_IN_GEANT4_MODE
62 #else
65 G4double diffusenessP[TableZSize][TableASize];
66 G4double diffusenessN[TableZSize][TableASize];
67 #endif
68
69 void cleanTable(){
70 for(G4int i=0;i<TableZSize;++i)
71 for(G4int j=0;j<TableASize;++j){
72 radiusP[i][j]=-1.;
73 radiusN[i][j]=-1.;
74 diffusenessP[i][j]=-1.;
75 diffusenessN[i][j]=-1.;
76 }
77 }
78 }
79
80 namespace HFB {
81
82#ifdef INCLXX_IN_GEANT4_MODE
83 void initialize() {
84#else
85 void initialize(const std::string &path) {
86#endif
87
88 // Clear the existing tables, if any
89 cleanTable();
90
91#ifdef INCLXX_IN_GEANT4_MODE
92 if(!G4FindDataDir("G4INCLDATA")) {
94 ed << " Data missing: set environment variable G4INCLDATA\n"
95 << " to point to the directory containing data files needed\n"
96 << " by the INCL++ model" << G4endl;
97 G4Exception("G4INCLDataFile::readData()","table_radius_hfb.dat",
98 FatalException, ed);
99 }
100 G4String dataPath0(G4FindDataDir("G4INCLDATA"));
101 G4String dataPath(dataPath0 + "/table_radius_hfb.dat");
102#else
103 // File name
104 std::string dataPath(path + "/table_radius_hfb.dat");
105 INCL_DEBUG("Reading radius and diffuseness parameters from file " << dataPath << '\n');
106#endif
107
108 // Open the file stream
109 std::ifstream hfbTableIn(dataPath.c_str());
110 if(!hfbTableIn.good()) {
111 std::cerr << "Cannot open " << dataPath << " data file." << '\n';
112 std::abort();
113 return;
114 }
115
116 // read the file
117 G4int z, a, nbnuclei=0;
118 G4double rp, rn, dp, dn;
119 while(hfbTableIn.good()) { /* Loop checking, 22.01.2018, J.L. Rodriguez */
120 hfbTableIn >> z >> a >> rp >> rn >> dp >> dn;
121 radiusP[z][a] = rp;
122 radiusN[z][a] = rn;
123 diffusenessP[z][a] = dp;
124 diffusenessN[z][a] = dn;
125 nbnuclei++;
126 }
127 hfbTableIn.close();
128 INCL_DEBUG("Read " << nbnuclei << " nuclei" << '\n');
129
130 }
131
133 // HFB calculations
134 G4double r0=0.;
135 if(t==Neutron)
136 if(radiusN[Z][A]>0.)r0=radiusN[Z][A];
137 if(t==Proton)
138 if(radiusP[Z][A]>0.)r0=radiusP[Z][A];
139 return r0;
140 }
141
143 // HFB calculations
144 G4double a=0.;
145 if(t==Neutron)
146 if(diffusenessN[Z][A]>0.)a=diffusenessN[Z][A];
147 if(t==Proton)
148 if(diffusenessP[Z][A]>0.)a=diffusenessP[Z][A];
149 return a;
150 }
151 }
152}
const char * G4FindDataDir(const char *)
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define INCL_DEBUG(x)
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
const G4double A[17]
#define G4endl
Definition G4ios.hh:67
void initialize()
Definition G4INCLHFB.cc:83
G4double getSurfaceDiffusenessHFB(const ParticleType t, const G4int A, const G4int Z)
Definition G4INCLHFB.cc:142
G4double getRadiusParameterHFB(const ParticleType t, const G4int A, const G4int Z)
Get the radius and diffuseness parameters from HFB calculations.
Definition G4INCLHFB.cc:132
const G4int TableASize
Definition G4INCLHFB.hh:50
const G4int TableZSize
Definition G4INCLHFB.hh:49
#define G4ThreadLocal
Definition tls.hh:77