34#define INCLXX_IN_GEANT4_MODE 1
48 namespace NuclearDensityFactory {
52 G4ThreadLocal std::map<G4int,NuclearDensity const *> *nuclearDensityCache = NULL;
53 G4ThreadLocal std::map<G4int,InterpolationTable*> *rpCorrelationTableCache = NULL;
54 G4ThreadLocal std::map<G4int,InterpolationTable*> *rCDFTableCache = NULL;
55 G4ThreadLocal std::map<G4int,InterpolationTable*> *pCDFTableCache = NULL;
60 if(!nuclearDensityCache)
61 nuclearDensityCache =
new std::map<G4int,NuclearDensity const *>;
63 const G4int nuclideID = 1000*
Z +
A;
64 const std::map<G4int,NuclearDensity const *>::const_iterator mapEntry = nuclearDensityCache->find(nuclideID);
65 if(mapEntry == nuclearDensityCache->end()) {
69 if(!rpCorrelationTableProton || !rpCorrelationTableNeutron || !rpCorrelationTableLambda)
72 (*nuclearDensityCache)[nuclideID] = density;
75 return mapEntry->second;
82 if(!rpCorrelationTableCache)
83 rpCorrelationTableCache =
new std::map<G4int,InterpolationTable*>;
86 const std::map<G4int,InterpolationTable*>::const_iterator mapEntry = rpCorrelationTableCache->find(nuclideID);
87 if(mapEntry == rpCorrelationTableCache->end()) {
89 INCL_DEBUG(
"Creating r-p correlation function for " << ((t==
Proton) ?
"protons" : ((t==
Neutron) ?
"neutrons" :
"lambdas")) <<
" in A=" <<
A <<
", Z=" <<
Z << std::endl);
97 INCL_DEBUG(
" ... Woods-Saxon; R0=" << radius <<
", a=" << diffuseness <<
", Rmax=" << maximumRadius << std::endl);
98 }
else if(A <= 19 && A > 6) {
103 INCL_DEBUG(
" ... MHO; param1=" << radius <<
", param2=" << diffuseness <<
", Rmax=" << maximumRadius << std::endl);
104 }
else if(A <= 6 && A > 1) {
108 INCL_DEBUG(
" ... Gaussian; sigma=" << radius <<
", Rmax=" << maximumRadius << std::endl);
110 INCL_ERROR(
"No r-p correlation function for " << ((t==
Proton) ?
"protons" :
"neutrons") <<
" in A = "
111 <<
A <<
" Z = " <<
Z <<
'\n');
116 delete rpCorrelationFunction;
117 INCL_DEBUG(
" ... here comes the table:\n" << theTable->
print() <<
'\n');
119 (*rpCorrelationTableCache)[nuclideID] = theTable;
122 return mapEntry->second;
130 rCDFTableCache =
new std::map<G4int,InterpolationTable*>;
133 const std::map<G4int,InterpolationTable*>::const_iterator mapEntry = rCDFTableCache->find(nuclideID);
134 if(mapEntry == rCDFTableCache->end()) {
142 }
else if(A <= 19 && A > 6) {
147 }
else if(A <= 6 && A > 2) {
151 }
else if(
A == 2 &&
Z == 1) {
154 INCL_ERROR(
"No nuclear density function for target A = "
155 <<
A <<
" Z = " <<
Z <<
'\n');
160 delete rDensityFunction;
161 INCL_DEBUG(
"Creating inverse position CDF for A=" <<
A <<
", Z=" <<
Z <<
":" <<
162 '\n' << theTable->
print() <<
'\n');
164 (*rCDFTableCache)[nuclideID] = theTable;
167 return mapEntry->second;
175 pCDFTableCache =
new std::map<G4int,InterpolationTable*>;
178 const std::map<G4int,InterpolationTable*>::const_iterator mapEntry = pCDFTableCache->find(nuclideID);
179 if(mapEntry == pCDFTableCache->end()) {
184 }
else if(A <= 19 && A > 2) {
187 }
else if(
A == 2 &&
Z == 1) {
190 INCL_ERROR(
"No nuclear density function for target A = "
191 <<
A <<
" Z = " <<
Z <<
'\n');
196 delete pDensityFunction;
197 INCL_DEBUG(
"Creating inverse momentum CDF for A=" <<
A <<
", Z=" <<
Z <<
":" <<
198 '\n' << theTable->
print() <<
'\n');
200 (*pCDFTableCache)[nuclideID] = theTable;
203 return mapEntry->second;
210 if(!rpCorrelationTableCache)
211 rpCorrelationTableCache =
new std::map<G4int,InterpolationTable*>;
214 const std::map<G4int,InterpolationTable*>::const_iterator mapEntry = rpCorrelationTableCache->find(nuclideID);
215 if(mapEntry != rpCorrelationTableCache->end())
216 delete mapEntry->second;
218 (*rpCorrelationTableCache)[nuclideID] = table;
222 if(!nuclearDensityCache)
223 nuclearDensityCache =
new std::map<G4int,NuclearDensity const *>;
225 const G4int nuclideID = 1000*
Z +
A;
226 const std::map<G4int,NuclearDensity const *>::const_iterator mapEntry = nuclearDensityCache->find(nuclideID);
227 if(mapEntry != nuclearDensityCache->end())
228 delete mapEntry->second;
230 (*nuclearDensityCache)[nuclideID] = density;
235 if(nuclearDensityCache) {
236 for(std::map<G4int,NuclearDensity const *>::const_iterator i = nuclearDensityCache->begin(); i!=nuclearDensityCache->end(); ++i)
238 nuclearDensityCache->clear();
239 delete nuclearDensityCache;
240 nuclearDensityCache = NULL;
243 if(rpCorrelationTableCache) {
244 for(std::map<G4int,InterpolationTable*>::const_iterator i = rpCorrelationTableCache->begin(); i!=rpCorrelationTableCache->end(); ++i)
246 rpCorrelationTableCache->clear();
247 delete rpCorrelationTableCache;
248 rpCorrelationTableCache = NULL;
252 for(std::map<G4int,InterpolationTable*>::const_iterator i = rCDFTableCache->begin(); i!=rCDFTableCache->end(); ++i)
254 rCDFTableCache->clear();
255 delete rCDFTableCache;
256 rCDFTableCache = NULL;
260 for(std::map<G4int,InterpolationTable*>::const_iterator i = pCDFTableCache->begin(); i!=pCDFTableCache->end(); ++i)
262 pCDFTableCache->clear();
263 delete pCDFTableCache;
264 pCDFTableCache = NULL;
G4double S(G4double temp)
Simple interpolation table for the inverse of a IFunction1D functor.
Class for Gaussian density.
NDF* class for the deuteron density according to the HardSphere potential.
Class for modified harmonic oscillator density.
NDF* class for the deuteron density according to the Paris potential.
Class for Woods-Saxon density.
InterpolationTable * inverseCDFTable(ManipulatorFunc fWrap=0, const G4int nNodes=60) const
Return a pointer to the inverse of the CDF of this function.
Class for interpolating the of a 1-dimensional function.
std::string print() const
G4double pow13(G4double x)
const G4double oneOverSqrtThree
InterpolationTable * createRPCorrelationTable(const ParticleType t, const G4int A, const G4int Z)
void addDensityToCache(const G4int A, const G4int Z, NuclearDensity *const density)
InterpolationTable * createPCDFTable(const ParticleType t, const G4int A, const G4int Z)
NuclearDensity const * createDensity(const G4int A, const G4int Z, const G4int S)
void addRPCorrelationToCache(const G4int A, const G4int Z, const ParticleType t, InterpolationTable *const table)
InterpolationTable * createRCDFTable(const ParticleType t, const G4int A, const G4int Z)
G4ThreadLocal FermiMomentumFn getFermiMomentum
G4double getRadiusParameter(const ParticleType t, const G4int A, const G4int Z)
G4double getMaximumNuclearRadius(const ParticleType t, const G4int A, const G4int Z)
G4double getSurfaceDiffuseness(const ParticleType t, const G4int A, const G4int Z)
G4double getMomentumRMS(const G4int A, const G4int Z)
Return the RMS of the momentum distribution (light clusters)