Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 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 H 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" 46 #include "G4INCLParticleTable.hh" 47 #include "G4INCLGlobals.hh" 48 #include <algorithm> 49 #include <istream> 50 #ifdef INCLXX_IN_GEANT4_MODE 51 #include "G4Threading.hh" 52 #endif 53 54 namespace G4INCL { 55 56 namespace { 57 #ifdef INCLXX_IN_GEANT4_MODE 58 G4ThreadLocal G4double radiusP[TableZ 59 G4ThreadLocal G4double radiusN[TableZ 60 G4ThreadLocal G4double diffusenessP[T 61 G4ThreadLocal G4double diffusenessN[T 62 #else 63 G4double radiusP[TableZSize][TableASi 64 G4double radiusN[TableZSize][TableASi 65 G4double diffusenessP[TableZSize][Tab 66 G4double diffusenessN[TableZSize][Tab 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")) { 93 G4ExceptionDescription ed; 94 ed << " Data missing: set environment 95 << " to point to the directory cont 96 << " by the INCL++ model" << G4endl 97 G4Exception("G4INCLDataFile::readDa 98 FatalException, ed); 99 } 100 G4String dataPath0(G4FindDataDir("G4INCL 101 G4String dataPath(dataPath0 + "/table_ra 102 #else 103 // File name 104 std::string dataPath(path + "/table_radi 105 INCL_DEBUG("Reading radius and diffusene 106 #endif 107 108 // Open the file stream 109 std::ifstream hfbTableIn(dataPath.c_str( 110 if(!hfbTableIn.good()) { 111 std::cerr << "Cannot open " << dataPat 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 check 120 hfbTableIn >> z >> a >> rp >> rn >> dp 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 << " nucl 129 130 } 131 132 G4double getRadiusParameterHFB(const Parti 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 142 G4double getSurfaceDiffusenessHFB(const Pa 143 // HFB calculations 144 G4double a=0.; 145 if(t==Neutron) 146 if(diffusenessN[Z][A]>0.)a=diffusene 147 if(t==Proton) 148 if(diffusenessP[Z][A]>0.)a=diffusene 149 return a; 150 } 151 } 152 } 153