56 G4double rand=theRandom4->Uniform(0,alpha+1);
80 if(NShells==0 || std::abs(multipolarity)>
ICC_NMULTIP){
return false;}
83 alpha=
GetICC(Ene,multipolarity);
86 G4double rand=theRandom4->Uniform(0,alpha+1);
88 if(!CalculateProducts){
return true;}
90 if(usegivenalpha){rand=rand*
GetICC(Ene,multipolarity)/alpha;}
92 for(
G4int i=1;i<NShells;i++){
93 cumul+=
GetICC(Ene,multipolarity,i);
95 if(cumul>=rand || multipolarity==0){
97 Eele[0]=Ene-BindingEnergy[i];
100 std::cout<<
" For Z = "<<theZ<<
" and orbital "<<OrbitalName[i]<<
" --> Ene = "<<Ene<<
" and BindingEnergy = "<<BindingEnergy[i]<<std::endl;
101 std::cout<<
" Given alpha is "<<alpha<<
" ("<<usegivenalpha<<
"), rand = "<<rand<<
" and tabulated alpha for Ene = "<<Ene<<
" and mult = "<<multipolarity<<
" is "<<
GetICC(Ene,multipolarity)<<
" -- cumul = "<<cumul<<std::endl;
102 for(
G4int j=1;j<=NShells;j++){
103 std::cout<<j<<
" "<<
GetICC(Ene,multipolarity,j)<<std::endl;
110 std::cout<<
" ############ Warning in "<<__FILE__<<
", line "<<__LINE__<<
" ############"<<std::endl;
111 std::cout<<
" Given alpha is "<<alpha<<
" and tabulated alpha for Ene = "<<Ene<<
" and mult = "<<multipolarity<<
" is "<<
GetICC(Ene,multipolarity)<<
" -- cumul = "<<cumul<<std::endl;
112 for(
G4int i=1;i<=NShells;i++){
113 std::cout<<i<<
" "<<
GetICC(Ene,multipolarity,i)<<std::endl;
116 Eele[0]=Ene-BindingEnergy[NShells-1];
132 G4double w_fac=std::pow(C0+
C1*theZ+
C2*theZ*theZ+
C3*theZ*theZ*theZ,4);
133 fluoyield=w_fac/(1.+w_fac);
135 else if(i_shell>=2 && i_shell<=4){
137 if(theZ>=3 && theZ<=36){
138 fluoyield=1.939e-8*std::pow(theZ,3.8874);
142 G4double w_fac=std::pow(C0+
C1*theZ+
C2*theZ*theZ+
C3*theZ*theZ*theZ,4);
143 fluoyield=w_fac/(1.+w_fac);
148 G4double rand=theRandom4->Uniform(0,1);
150 Egam[
Ng]=BindingEnergy[i_shell];
154 Eele[
Ne]=BindingEnergy[i_shell];
174 if(NShells==0 || std::abs(multipolarity)>
ICC_NMULTIP){
return 0;}
183 for(
G4int i=1;i<NShells;i++){
184 result+=
GetICC(Ene,multipolarity,i);
191 if(Ene<BindingEnergy[i_shell]){
return 0;}
194 std::cout<<
" shell "<<i_shell<<
" has not been initialized"<<std::endl;
195 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
198 if(i_shell==NShells && Ene<Eg[i_shell][0]){
200 for(
G4int i=1;i<NShells;i++){total+=
GetICC(Ene,multipolarity,i);}
205 return Interpolate(Ene,np[i_shell],Eg[i_shell],Icc_E[multipolarity-1][i_shell]);
207 else if(multipolarity<0){
208 return Interpolate(Ene,np[i_shell],Eg[i_shell],Icc_M[(-multipolarity)-1][i_shell]);
242 out<<
" ######################################################################################################################################### "<<std::endl;
243 out<<
" ICC"<<std::endl;
244 out<<
" Z = "<<theZ<<std::endl;
245 out<<
" NShells = "<<NShells<<std::endl;
246 out<<
" ----------------------------------------------------------------------------------------------------------------------------------------"<<std::endl;
247 out<<
" Total calculated from the sum of the partials:"<<std::endl;
248 out<<
" E_g E1 E2 E3 E4 E5 M1 M2 M3 M4 M5 "<<std::endl;
249 for(
G4int j=0;j<np[NShells];j++){
250 snprintf(word,1000,
"%10.4g",Eg[NShells][j]); out<<word;
252 snprintf(word,1000,
" %10.4g",Icc_E[k][NShells][j]); out<<word;
255 snprintf(word,1000,
" %10.4g",Icc_M[k][NShells][j]); out<<word;
259 out<<
" ----------------------------------------------------------------------------------------------------------------------------------------"<<std::endl;
260 for(
G4int i=0;i<NShells;i++){
261 out<<
" ----------------------------------------------------------------------------------------------------------------------------------------"<<std::endl;
262 out<<
" Binding energy = "<<BindingEnergy[i]<<
" MeV - OrbitalName = "<<OrbitalName[i]<<
" - np = "<<np[i]<<std::endl;
263 out<<
" E_g E1 E2 E3 E4 E5 M1 M2 M3 M4 M5 "<<std::endl;
264 for(
G4int j=0;j<np[i];j++){
265 snprintf(word,1000,
"%10.4g",Eg[i][j]); out<<word;
267 snprintf(word,1000,
" %10.4g",Icc_E[k][i][j]); out<<word;
270 snprintf(word,1000,
" %10.4g",Icc_M[k][i][j]); out<<word;
274 out<<
" ----------------------------------------------------------------------------------------------------------------------------------------"<<std::endl;
276 out<<
" ########################################################################################################################################## "<<std::endl;
286 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
289 std::ifstream in(fname);
291 std::cout<<
" ################ Error opening "<<fname<<
" ################"<<std::endl;
292 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
297 if(word.c_str()[0]==
'Z' && word.c_str()[1]==
'='){
298 if(std::atoi(&(word.c_str()[2]))==theZ){
301 if(word==std::string(
"Total")){
302 in.ignore(1000,
'\n');
303 in.ignore(1000,
'\n');
308 in>>word>>word>>BindingEnergy[NShells]>>word;
309 BindingEnergy[NShells]*=1.e-6;
310 in.ignore(1000,
'\n');
311 in.ignore(1000,
'\n');
317 while(getline(in,word)){
321 for(
G4int j=0;j<np_tmp;j++){
322 Eg[orbindex][j]=Eg_tmp[j];
325 Icc_E[i][orbindex]=
new G4double[np_tmp];
326 Icc_M[i][orbindex]=
new G4double[np_tmp];
329 for(
G4int j=0;j<np_tmp;j++){
330 Icc_E[i][orbindex][j]=Icc_E_tmp[i][j];
331 Icc_M[i][orbindex][j]=Icc_M_tmp[i][j];
334 if(orbindex!=0){NShells++;}
339 Eg_tmp[np_tmp]=std::stof(word,&sz2);
340 Eg_tmp[np_tmp]*=1.e-3;
343 Icc_E_tmp[i][np_tmp]=std::stof(word.substr(sz),&sz2); sz+=sz2;
346 Icc_M_tmp[i][np_tmp]=std::stof(word.substr(sz),&sz2); sz+=sz2;
348 if((
G4int)(std::stof(word.substr(sz),&sz2)+0.01)!=theZ){
349 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
352 sz2=word.find_first_not_of(
' ',sz);
353 if(np_tmp==0){OrbitalName[orbindex]=word.substr(sz2,word.substr(sz2).size()-1);}
357 if(orbindex==0){
break;}
363 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");