65 ElectronConversionFlag=-1;
67 PrimaryGammasIntensityNormFactor=-1;
71 hasBeenInitialized=
false;
75 NKnownLevels=0; NUnknownLevels=0; NLevels=0; KnownLevelsVectorSize=0;
83 theThermalCaptureLevelCumulBR=0;
96 Rand1seedProvided=
false; Rand2seedProvided=
false; Rand3seedProvided=
false;
100 if(hasBeenInitialized){
102 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
104 if(knownLevelsFlag>=0){KnownLevelsFlag=knownLevelsFlag;}
105 if(electronConversionFlag>=0){ElectronConversionFlag=electronConversionFlag;}
106 if(primGamNormFactor>=0){PrimaryGammasIntensityNormFactor=primGamNormFactor;}
107 if(primGamEcut>=0){PrimaryGammasEcut=primGamEcut;}
108 if(ecrit>=0){Ecrit=ecrit;}
112void G4NuDEXStatisticalNucleus::SetSomeInitalParameters(
G4int LDtype,
G4int PSFFlag,
G4double MaxSpin,
G4int minlevelsperband,
G4double BandWidth_MeV,
G4double maxExcEnergy,
G4int BrOption,
G4int sampleGammaWidths,
unsigned int aseed1,
unsigned int aseed2,
unsigned int aseed3){
114 if(hasBeenInitialized){
115 std::cout<<
" ############## Error: G4NuDEXStatisticalNucleus::SetSomeInitalParameters cannot be used after initializing the nucleus ##############"<<std::endl;
116 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
119 if(LDtype>0){LevelDensityType=LDtype;}
120 if(PSFFlag>=0){PSFflag=PSFFlag;}
121 if(MaxSpin>0){maxspinx2=(
G4int)(2.*MaxSpin+0.01);}
122 if(minlevelsperband>0){MinLevelsPerBand=minlevelsperband;}
123 if(BandWidth_MeV!=0){BandWidth=BandWidth_MeV;}
124 if(maxExcEnergy!=0){MaxExcEnergy=maxExcEnergy;}
125 if(BrOption>0){BROpt=BrOption;}
126 if(sampleGammaWidths>=0){SampleGammaWidths=sampleGammaWidths;}
127 if(aseed1>0){seed1=aseed1; theRandom1->SetSeed(seed1); Rand1seedProvided=
true;}
128 if(aseed2>0){seed2=aseed2; theRandom2->SetSeed(seed2); Rand2seedProvided=
true;}
129 if(aseed3>0){seed3=aseed3; theRandom3->SetSeed(seed3); Rand3seedProvided=
true;}
137 if(theLevels!=0){
delete [] theLevels;}
138 for(
G4int i=0;i<KnownLevelsVectorSize;i++){
139 if(theKnownLevels[i].Ndecays>0){
140 delete [] theKnownLevels[i].decayFraction;
141 delete [] theKnownLevels[i].decayMode;
143 if(theKnownLevels[i].NGammas>0){
144 delete [] theKnownLevels[i].FinalLevelID;
145 delete [] theKnownLevels[i].multipolarity;
146 delete [] theKnownLevels[i].Eg;
147 delete [] theKnownLevels[i].cumulPtot;
148 delete [] theKnownLevels[i].Pg;
149 delete [] theKnownLevels[i].Pe;
150 delete [] theKnownLevels[i].Icc;
153 if(theKnownLevels!=0){
delete [] theKnownLevels;}
154 if(theRandom1!=0){
delete theRandom1;}
155 if(theRandom2!=0){
delete theRandom2;}
156 if(theRandom3!=0){
delete theRandom3;}
157 if(theLD!=0){
delete theLD;}
158 if(theICC!=0){
delete theICC;}
159 if(thePSF!=0){
delete thePSF;}
160 if(TotalGammaRho!=0){
delete [] TotalGammaRho;}
161 if(theThermalCaptureLevelCumulBR!=0){
delete [] theThermalCaptureLevelCumulBR;}
163 for(
G4int i=0;i<NLevels;i++){
164 if(TotalCumulBR[i]!=0){
delete [] TotalCumulBR[i];}
166 delete [] TotalCumulBR;
173 hasBeenInitialized=
true;
177 char fname[1000],defaultinputfname[1000];
178 theLibDir=std::string(dirname);
181 snprintf(defaultinputfname,1000,
"%s/SpecialInputs/ZA_%d.dat",dirname,Z_Int*1000+A_Int);
182 G4int HasDefaultInput=ReadSpecialInputFile(defaultinputfname);
184 if(HasDefaultInput>0){definputfn=defaultinputfname;}
187 snprintf(fname,1000,
"%s/GeneralStatNuclParameters.dat",dirname);
188 check=ReadGeneralStatNuclParameters(fname);
if(check<0){
return -1;}
191 if(ElectronConversionFlag<0){ElectronConversionFlag=2;}
192 if(KnownLevelsFlag<0){KnownLevelsFlag=1;}
193 if(PrimaryGammasIntensityNormFactor<0){PrimaryGammasIntensityNormFactor=1;}
194 if(PrimaryGammasEcut<0){PrimaryGammasEcut=0;}
196 snprintf(fname,1000,
"%s/KnownLevels/levels-param.data",dirname);
197 check=ReadEcrit(fname);
if(check<0){
return -1;}
203 check=theLD->ReadLDParameters(dirname,inputfname,definputfn);
204 LevelDensityType=theLD->GetLDType();
206 delete theLD; theLD=0;
207 Sn=-1; D0=-1; I0=-1000;
210 theLD->GetSnD0I0Vals(Sn,D0,I0);
214 snprintf(fname,1000,
"%s/KnownLevels/z%03d.dat",dirname,Z_Int);
215 check=ReadKnownLevels(fname);
if(check<0){
return -1;}
216 I0=TakeTargetNucleiI0(fname,check);
if(check<0){
return -1;}
220 MaxExcEnergy=Sn-MaxExcEnergy;
223 MaxExcEnergy=1-MaxExcEnergy;
228 if(theLD==0 && Ecrit<MaxExcEnergy){
229 std::cout<<
" ###### WARNING: No level density and level scheme not complete for ZA="<<1000*Z_Int+A_Int<<
" --> Ecrit="<<Ecrit<<
" MeV and MaxExcEnergy = "<<MaxExcEnergy<<
" MeV ######"<<std::endl;
237 E_unk_max=MaxExcEnergy;
242 while(E_unk_min+BandWidth*NBands<MaxExcEnergy){
245 E_unk_max=E_unk_min+BandWidth*NBands;
248 Emin_bands=E_unk_min;
249 Emax_bands=E_unk_max;
254 MakeSomeParameterChecks01();
261 if(KnownLevelsFlag==1){
262 InsertHighEnergyKnownLevels();
266 for(
G4int i=0;i<NLevels;i++){
267 theLevels[NLevels-1-i].seed=theRandom2->Integer(4294967295)+1;
272 snprintf(fname,1000,
"%s/ICC_factors.dat",dirname);
274 theICC->SetRandom4Seed(theRandom3->GetSeed());
278 thePSF->Init(dirname,theLD,inputfname,definputfn,PSFflag);
281 ComputeKnownLevelsMissingBR();
284 TotalGammaRho=
new G4double[NLevels];
285 for(
G4int i=0;i<NLevels-1;i++){
290 if(Sn>0 && NLevels>1){
291 CreateThermalCaptureLevel();
292 GenerateThermalCaptureLevelBR(dirname);
296 if(BROpt==1 || BROpt==2){
297 TotalCumulBR=
new G4double*[NLevels];
298 for(
G4int i=0;i<NLevels;i++){
307void G4NuDEXStatisticalNucleus::MakeSomeParameterChecks01(){
309 if(LevelDensityType<1 || LevelDensityType>3){
310 std::cout<<
" ############## Error, LevelDensityType cannot be set to: "<<LevelDensityType<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
314 std::cout<<
" ############## Error, MaxSpin cannot be set to: "<<maxspinx2/2.<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
318 std::cout<<
" ############## Error, MaxExcEnergy cannot be set to: "<<MaxExcEnergy<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
321 if(BROpt<0 || BROpt>2){
322 std::cout<<
" ############## Error, BROpt cannot be set to: "<<BROpt<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
325 if(SampleGammaWidths<0 || SampleGammaWidths>1){
326 std::cout<<
" ############## Error, SampleGammaWidths cannot be set to: "<<SampleGammaWidths<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
329 if(KnownLevelsFlag!=0 && KnownLevelsFlag!=1){
330 std::cout<<
" ############## Error, KnownLevelsFlag cannot be set to: "<<KnownLevelsFlag<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
333 if(ElectronConversionFlag!=0 && ElectronConversionFlag!=1 && ElectronConversionFlag!=2){
334 std::cout<<
" ############## Error, ElectronConversionFlag cannot be set to: "<<ElectronConversionFlag<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
337 if(PrimaryGammasIntensityNormFactor<=0){
338 std::cout<<
" ############## Error, PrimaryGammasIntensityNormFactor cannot be set to: "<<PrimaryGammasIntensityNormFactor<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
341 if(PrimaryGammasEcut<0){
342 std::cout<<
" ############## Error, PrimaryGammasEcut cannot be set to: "<<PrimaryGammasEcut<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
346 std::cout<<
" ############## Error, Ecrit cannot be set to: "<<Ecrit<<
" ##############"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
362 if(ExcitationEnergy<0){
363 ExcitationEnergy=Sn-(A_Int-1.)/(
G4double)A_Int*ExcitationEnergy;
365 if(ExcitationEnergy<=0){
370 G4int f_level=0,multipol=0;
371 G4double alpha,E_trans,Exc_ene_i,Exc_ene_f;
377 G4int i_level=InitialLevel;
378 Exc_ene_i=ExcitationEnergy;
382 pType.push_back(
'g');
383 pEnergy.push_back(Exc_ene_i);
395 if(!theThermalCaptureLevelCumulBR){
397 std::cout<<
" ############## NuDEX: WARNING, there are no thermal capture for ZA="<<A_Int+1000*Z_Int-1<<
" , with Sn = "<<Sn<<
" ##############"<<std::endl;
401 G4double randnumber=theRandom3->Uniform();
403 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
404 if(theThermalCaptureLevelCumulBR[i]>randnumber){
405 multipol=GetMultipolarity(&theThermalCaptureLevel,&theLevels[i]);
412 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
414 Exc_ene_f=theLevels[f_level].Energy;
417 f_level=SampleFinalLevel(i_level,multipol,alpha,NTransition);
420 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
425 Exc_ene_f=theLevels[f_level].Energy;
428 if(theLevels[f_level].Width!=0){
429 Exc_ene_f+=theRandom3->Uniform(-theLevels[f_level].Width,+theLevels[f_level].Width);
431 E_trans=Exc_ene_i-Exc_ene_f;
439 if(i_level<NKnownLevels && i_level>0){
440 if(theKnownLevels[i_level].T12>0){
441 EmissionTime+=theRandom3->Exp(theKnownLevels[i_level].T12/std::log(2));
449 if(ElectronConversionFlag>0){
450 if(i_level<NKnownLevels && i_level>0){
451 ele_conv=theICC->SampleInternalConversion(E_trans,multipol,alpha);
453 else if(ElectronConversionFlag==2){
454 ele_conv=theICC->SampleInternalConversion(E_trans,multipol);
464 for(
G4int i=0;i<theICC->Ne;i++){
465 pType.push_back(
'e');
466 pEnergy.push_back(theICC->Eele[i]);
467 pTime.push_back(EmissionTime);
470 for(
G4int i=0;i<theICC->Ng;i++){
471 pType.push_back(
'g');
472 pEnergy.push_back(theICC->Egam[i]);
473 pTime.push_back(EmissionTime);
478 pType.push_back(
'g');
479 pEnergy.push_back(E_trans);
480 pTime.push_back(EmissionTime);
493 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
503 if(i_level<=0 || i_level>=NLevels){
504 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
507 G4double randnumber=theRandom3->Uniform();
509 G4int i_knownLevel=-1;
510 if(i_level<NKnownLevels){
511 i_knownLevel=i_level;
513 if(theLevels[i_level].KnownLevelID>0){
514 if(theKnownLevels[theLevels[i_level].KnownLevelID].NGammas>0){
515 i_knownLevel=theLevels[i_level].KnownLevelID;
521 for(
G4int j=0;j<theKnownLevels[i_knownLevel].NGammas;j++){
522 if(theKnownLevels[i_knownLevel].cumulPtot[j]>randnumber){
523 multipolarity=theKnownLevels[i_knownLevel].multipolarity[j];
524 icc_fac=theKnownLevels[i_knownLevel].Icc[j];
525 return theKnownLevels[i_knownLevel].FinalLevelID[j];
528 std::cout<<randnumber<<
" "<<i_knownLevel<<
" "<<theKnownLevels[i_knownLevel].NGammas<<std::endl;
529 for(
G4int j=0;j<theKnownLevels[i_knownLevel].NGammas;j++){
530 std::cout<<theKnownLevels[i_knownLevel].cumulPtot[j]<<std::endl;
532 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
538 if(BROpt==1 || (BROpt==2 && nTransition==1)){
540 if(TotalCumulBR[i_level]==0){
541 TotalCumulBR[i_level]=
new G4double[i_level];
542 TotalGammaRho[i_level]=ComputeDecayIntensities(i_level,TotalCumulBR[i_level]);
544 for(
G4int j=0;j<i_level;j++){
545 if(TotalCumulBR[i_level][j]>randnumber){
546 multipolarity=GetMultipolarity(&theLevels[i_level],&theLevels[j]);
550 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
557 if(TotalGammaRho[i_level]<0){
558 TotalGammaRho[i_level]=ComputeDecayIntensities(i_level);
561 ComputeDecayIntensities(i_level,0,randnumber);
562 multipolarity=theSampledMultipolarity;
563 return theSampledLevel;
567 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
574 if(Sn>0 && NLevels>1){
575 CreateThermalCaptureLevel(seed);
576 GenerateThermalCaptureLevelBR(theLibDir.c_str());
581 if(i_level<0 || i_level>=NLevels){
582 std::cout<<
" i_level = "<<i_level<<
" ------ NLevels = "<<NLevels<<std::endl;
583 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
587 if(i_level<NKnownLevels || theLevels[i_level].KnownLevelID>0){
588 std::cout<<
" ####### WARNING: you are trying to change the BR, spin, parity, etc. of a known level --> nothing is done ############"<<std::endl;
593 theLevels[i_level].spinx2=newspinx2;
594 theLevels[i_level].parity=newParity;
596 theLevels[i_level].seed=seed;
599 theLevels[i_level].seed=theRandom2->Integer(4294967295)+1;
602 theLevels[i_level].NLevels=nlevels;
605 theLevels[i_level].Width=width;
608 if(TotalGammaRho[i_level]>=0){
611 br_vector=TotalCumulBR[i_level];
613 TotalGammaRho[i_level]=ComputeDecayIntensities(i_level,br_vector);
625 G4bool ComputeAlsoBR=
false;
626 if(cumulativeBR!=0){ComputeAlsoBR=
true;}
629 if(i_level>=NLevels || i_level<0){
630 std::cout<<
" ############ Error: i = "<<i_level<<
" out of range. NLevels = "<<NLevels<<std::endl;
631 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
636 TotGR=TotalGammaRho[i_level];
639 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
644 theRandom2->SetSeed(theLevels[i_level].seed);
646 for(
G4int j=0;j<i_level;j++){
648 if(theLevels[i_level].Energy-theLevels[i_level].Width<=theLevels[j].Energy+theLevels[j].Width){
649 thisTotalGammaRho+=0;
655 G4double Eg=theLevels[i_level].Energy-theLevels[j].Energy;
659 G4bool E1allowed=
true,M1allowed=
true,E2allowed=
true;
660 G4int Lmin=std::abs(theLevels[i_level].spinx2-theLevels[j].spinx2)/2;
661 G4int Lmax=(theLevels[i_level].spinx2+theLevels[j].spinx2)/2;
662 if(theLevels[i_level].parity==theLevels[j].parity){
666 M1allowed=
false; E2allowed=
false;
668 if(Lmin>1 || Lmax<1){
669 E1allowed=
false; M1allowed=
false;
671 if(Lmin>2 || Lmax<2){
674 if(AllowE1){E1allowed=
true;}
678 theSampledMultipolarity=-50;
679 G4int RealNTransitions=theLevels[i_level].NLevels*theLevels[j].NLevels;
685 Sumrand2=RealNTransitions;
686 if(SampleGammaWidths==1){
688 if(RealNTransitions>MaxNSamplesForChi2){
689 Sumrand2=RealNTransitions*theRandom2->Gaus(1,std::sqrt(2./RealNTransitions));
692 for(
G4int ntr=0;ntr<RealNTransitions;ntr++){
693 rand=theRandom2->Gaus(0,1);
698 GammaRho+=Sumrand2*Eg*Eg*Eg*thePSF->GetE1(Eg,theLevels[i_level].Energy);
700 if(thisTotalGammaRho+GammaRho>=TotGR*randnumber){
701 theSampledMultipolarity=1;
706 Sumrand2=RealNTransitions;
707 if(SampleGammaWidths==1){
709 if(RealNTransitions>MaxNSamplesForChi2){
710 Sumrand2=RealNTransitions*theRandom2->Gaus(1,std::sqrt(2./RealNTransitions));
713 for(
G4int ntr=0;ntr<RealNTransitions;ntr++){
714 rand=theRandom2->Gaus(0,1);
719 GammaRho+=Sumrand2*Eg*Eg*Eg*thePSF->GetM1(Eg,theLevels[i_level].Energy);
721 if(thisTotalGammaRho+GammaRho>=TotGR*randnumber){
722 theSampledMultipolarity=-1;
727 Sumrand2=RealNTransitions;
728 if(SampleGammaWidths==1){
730 if(RealNTransitions>MaxNSamplesForChi2){
731 Sumrand2=RealNTransitions*theRandom2->Gaus(1,std::sqrt(2./RealNTransitions));
734 for(
G4int ntr=0;ntr<RealNTransitions;ntr++){
735 rand=theRandom2->Gaus(0,1);
740 GammaRho+=Sumrand2*Eg*Eg*Eg*Eg*Eg*thePSF->GetE2(Eg,theLevels[i_level].Energy);
742 if(thisTotalGammaRho+GammaRho>=TotGR*randnumber && theSampledMultipolarity<-10){
743 theSampledMultipolarity=2;
754 thisTotalGammaRho+=GammaRho;
756 cumulativeBR[j]=GammaRho;
760 if(randnumber>=0 && thisTotalGammaRho>=TotGR*randnumber){
761 if(theSampledMultipolarity==-50){
762 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
770 if(randnumber>=0 && thisTotalGammaRho==0){
771 return ComputeDecayIntensities(i_level,0,randnumber,TotGR,
true);
775 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
778 if(thisTotalGammaRho>0){
780 for(
G4int j=0;j<i_level;j++){
781 cumulativeBR[j]/=thisTotalGammaRho;
783 for(
G4int j=1;j<i_level;j++){
784 cumulativeBR[j]+=cumulativeBR[j-1];
786 if(std::fabs(cumulativeBR[i_level-1]-1)>1.e-10){
787 std::cout<<
" ############### Warning: cumulativeBR["<<i_level<<
"]["<<i_level-1<<
"]-1 is "<<cumulativeBR[i_level-1]-1<<
" ###############"<<std::endl;
794 thisTotalGammaRho=ComputeDecayIntensities(i_level,cumulativeBR,-1,-1,
true);
797 return thisTotalGammaRho;
802G4int G4NuDEXStatisticalNucleus::GetMultipolarity(
Level* theInitialLevel,
Level* theFinalLevel){
838 G4int i_down=0,i_up=NLevels-1;
839 G4int i_close_down=0,i_close_up=NLevels-1;
841 while(i_close_up-i_close_down>10){
842 i_close=(i_close_up+i_close_down)/2;
843 if(theLevels[i_close].Energy>Energy){
847 i_close_down=i_close;
851 for(
G4int i=i_close_up;i<NLevels;i++){
853 if((theLevels[i].spinx2==spinx2 && theLevels[i].parity==parity) || spinx2<0){
857 for(
G4int i=i_close_down;i>=0;i--){
859 if((theLevels[i].spinx2==spinx2 && theLevels[i].parity==parity) || spinx2<0){
865 G4double MinEnergyDistance=-1,EnergyDistance;
867 for(
G4int i=i_down;i<=i_up;i++){
868 EnergyDistance=std::fabs(theLevels[i].Energy-Energy);
869 if((theLevels[i].spinx2==spinx2 && theLevels[i].parity==parity) || spinx2<0){
870 if(EnergyDistance<MinEnergyDistance || MinEnergyDistance<0){
871 MinEnergyDistance=EnergyDistance;
885 if(i_level>=0 && i_level<NLevels){
886 return &theLevels[i_level];
889 return &theThermalCaptureLevel;
892 std::cout<<
" ############ WARNING: for ZA="<<A_Int+1000*Z_Int<<
" , requested level i_level="<<i_level<<
" does not exist ############"<<std::endl;
899 if(i_level>=0 && i_level<NLevels){
900 return theLevels[i_level].Energy;
907void G4NuDEXStatisticalNucleus::ComputeKnownLevelsMissingBR(){
910 for(
G4int i=1;i<NKnownLevels;i++){
911 if(theKnownLevels[i].NGammas!=0){
913 theKnownLevels[i].
multipolarity[j]=GetMultipolarity(&theLevels[i],&theLevels[theKnownLevels[i].FinalLevelID[j]]);
916 if(theKnownLevels[i].NGammas==0){
918 ComputeDecayIntensities(i,tmp);
919 for(
G4int j=1;j<i;j++){
920 if(tmp[j]!=tmp[j-1]){theKnownLevels[i].NGammas++;}
922 if(tmp[0]!=0){theKnownLevels[i].NGammas++;}
923 if(theKnownLevels[i].NGammas<=0){
924 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
927 theKnownLevels[i].FinalLevelID=
new G4int[theKnownLevels[i].NGammas];
928 theKnownLevels[i].multipolarity=
new G4int[theKnownLevels[i].NGammas];
929 theKnownLevels[i].Eg=
new G4double[theKnownLevels[i].NGammas];
930 theKnownLevels[i].cumulPtot=
new G4double[theKnownLevels[i].NGammas];
931 theKnownLevels[i].Pg=
new G4double[theKnownLevels[i].NGammas];
932 theKnownLevels[i].Pe=
new G4double[theKnownLevels[i].NGammas];
933 theKnownLevels[i].Icc=
new G4double[theKnownLevels[i].NGammas];
936 theKnownLevels[i].FinalLevelID[cont]=0;
937 theKnownLevels[i].Eg[cont]=theKnownLevels[i].Energy-theKnownLevels[0].Energy;
938 theKnownLevels[i].cumulPtot[cont]=tmp[0];
939 theKnownLevels[i].multipolarity[cont]=GetMultipolarity(&theLevels[i],&theLevels[theKnownLevels[i].FinalLevelID[cont]]);
942 for(
G4int j=1;j<i;j++){
943 if(tmp[j]!=tmp[j-1]){
944 theKnownLevels[i].FinalLevelID[cont]=j;
945 theKnownLevels[i].Eg[cont]=theKnownLevels[i].Energy-theKnownLevels[j].Energy;
946 theKnownLevels[i].cumulPtot[cont]=tmp[j];
947 theKnownLevels[i].multipolarity[cont]=GetMultipolarity(&theLevels[i],&theLevels[theKnownLevels[i].FinalLevelID[cont]]);
952 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
953 theKnownLevels[i].Icc[j]=0;
954 if(ElectronConversionFlag==2){
956 theKnownLevels[i].Icc[j]=theICC->GetICC(theKnownLevels[i].Eg[j],theKnownLevels[i].multipolarity[j]);
961 theKnownLevels[i].Pg[0]=theKnownLevels[i].cumulPtot[0]*(1./(
alpha+1.));
962 theKnownLevels[i].Pe[0]=theKnownLevels[i].cumulPtot[0]*(
alpha/(
alpha+1.));
963 for(
G4int j=1;j<theKnownLevels[i].NGammas;j++){
964 alpha=theKnownLevels[i].Icc[j];
965 theKnownLevels[i].Pg[j]=(theKnownLevels[i].cumulPtot[j]-theKnownLevels[i].cumulPtot[j-1])*(1./(alpha+1.));
966 theKnownLevels[i].Pe[j]=(theKnownLevels[i].cumulPtot[j]-theKnownLevels[i].cumulPtot[j-1])*(alpha/(alpha+1.));
977void G4NuDEXStatisticalNucleus::CreateLevelScheme(){
981 Level* theUnkonwnLevels=0;
982 if(E_unk_min>=E_unk_max){
988 G4int maxarraysize=EstimateNumberOfLevelsToFill()*1.1/2.+10000;
991 if(theUnkonwnLevels!=0){
delete [] theUnkonwnLevels;}
993 theUnkonwnLevels=
new Level[maxarraysize];
994 NUnknownLevels=GenerateAllUnknownLevels(theUnkonwnLevels,maxarraysize);
995 }
while(NUnknownLevels<0);
1001 NLevels=NKnownLevels+NUnknownLevels;
1003 theLevels=
new Level[NLevels];
1004 for(
G4int i=0;i<NKnownLevels;i++){
1005 CopyLevel(&theKnownLevels[i],&theLevels[i]);
1007 for(
G4int i=0;i<NUnknownLevels;i++){
1008 CopyLevel(&theUnkonwnLevels[i],&theLevels[NKnownLevels+i]);
1010 delete [] theUnkonwnLevels;
1014 G4int TotalNIndividualLevels=1;
1015 for(
G4int i=1;i<NLevels;i++){
1016 TotalNIndividualLevels+=theLevels[i].NLevels;
1017 if(theLevels[i-1].Energy>theLevels[i].Energy){
1018 std::cout<<
" ########### Error creating the level scheme ###########"<<std::endl;
1019 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1023 std::cout<<
" NuDEX: Generated statistical nucleus for ZA="<<Z_Int*1000+A_Int<<
" up to "<<theLevels[NLevels-1].
Energy<<
" MeV, with "<<NLevels<<
" levels in total: "<<NKnownLevels<<
" from the database and "<<NUnknownLevels<<
" from statistical models, including bands (without bands --> "<<TotalNIndividualLevels<<
" levels). "<<std::endl;
1028void G4NuDEXStatisticalNucleus::CreateThermalCaptureLevel(
unsigned int seed){
1031 G4int capturespinx2=((std::fabs(I0)+0.5)*2+0.01);
1032 G4bool capturepar=
true;
if(I0<0){capturepar=
false;}
1033 theThermalCaptureLevel.Energy=Sn;
1034 theThermalCaptureLevel.spinx2=capturespinx2;
1035 theThermalCaptureLevel.parity=capturepar;
1037 theThermalCaptureLevel.seed=seed;
1040 theThermalCaptureLevel.seed=theRandom2->Integer(4294967295)+1;
1042 theThermalCaptureLevel.KnownLevelID=-1;
1043 theThermalCaptureLevel.NLevels=1;
1044 theThermalCaptureLevel.Width=0;
1046 NLevelsBelowThermalCaptureLevel=0;
1047 for(
G4int i=0;i<NLevels;i++){
1048 if(theLevels[i].Energy<theThermalCaptureLevel.Energy){
1049 NLevelsBelowThermalCaptureLevel++;
1052 NLevelsBelowThermalCaptureLevel--;
1054 if(NLevelsBelowThermalCaptureLevel<=0){
1055 NLevelsBelowThermalCaptureLevel=1;
1063 if(((A_Int+spinx2)%2)!=0){
1068 G4double meanNLevels=theLD->Integrate(Emin,Emax,spinx2/2.,parity);
1071 G4int thisNLevels=0;
1073 thisNLevels=(
G4int)theRandom1->Poisson(meanNLevels);
1076 if(thisNLevels>=MaxNLevelsToFill){
1077 std::cout<<
" Warning: not enough space to fill levels "<<std::endl;
1082 for(
G4int i=0;i<thisNLevels;i++){
1083 someLevels[i].
Energy=theRandom1->Uniform(Emin,Emax);
1084 someLevels[i].
spinx2=spinx2;
1085 someLevels[i].
parity=parity;
1086 someLevels[i].
seed=0;
1089 someLevels[i].
Width=0;
1097 G4int TotalNLevels=0;
1098 G4int NIntervals=1000;
1107 for(
G4int i=0;i<NIntervals;i++){
1111 G4double LevDen1=theLD->GetLevelDensity(meanene,spinx2/2.,parity);
1112 if(LevDen1>LevDenThreshold){
1113 G4double LevDen2=theLD->GetLevelDensity(meanene+1./LevDen1,spinx2/2.,parity);
1114 if(LevDen2/LevDen1<WignerRatioThreshold){
1116 G4int newExtraLevels=GenerateWignerLevels(emin,Emax,spinx2,parity,&(someLevels[TotalNLevels]),MaxNLevelsToFill-TotalNLevels);
1117 if(newExtraLevels<0){
return -1;}
1118 TotalNLevels+=newExtraLevels;
1123 G4int newExtraLevels=GenerateLevelsInSmallRange(emin,emax,spinx2,parity,&(someLevels[TotalNLevels]),MaxNLevelsToFill-TotalNLevels);
1124 if(newExtraLevels<0){
return -1;}
1125 TotalNLevels+=newExtraLevels;
1128 return TotalNLevels;
1136 if(((A_Int+spinx2)%2)!=0){
1140 G4int TotalNLevels=0;
1142 G4double previousELevel=Emin,nextELevel;
1143 while(previousELevel<Emax){
1144 G4double LevDen=theLD->GetLevelDensity(previousELevel,spinx2/2.,parity);
1145 G4double arandgamma=theRandom1->Uniform();
1146 G4double DeltaEMultipliedByLevDen=std::sqrt(-4./3.141592*std::log(1.-arandgamma));
1147 nextELevel=previousELevel+DeltaEMultipliedByLevDen/LevDen;
1148 if(nextELevel<Emax){
1149 someLevels[TotalNLevels].
Energy=nextELevel;
1150 someLevels[TotalNLevels].
spinx2=spinx2;
1151 someLevels[TotalNLevels].
parity=parity;
1152 someLevels[TotalNLevels].
seed=0;
1154 someLevels[TotalNLevels].
NLevels=1;
1155 someLevels[TotalNLevels].
Width=0;
1157 if(TotalNLevels>=MaxNLevelsToFill){
1158 std::cout<<
" Warning: not enough space to fill levels "<<std::endl;
1163 previousELevel=nextELevel;
1166 return TotalNLevels;
1175 if(((A_Int+spinx2)%2)!=0){
1181 G4int TotalNLevels=0;
1183 if(bandmax>NBands-1){
1184 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1187 for(
G4int i=bandmin;i<=bandmax;i++){
1190 G4double AverageNumberOfLevels=theLD->Integrate(emin,emax,spinx2/2.,parity);
1191 G4int NumberOfLevelsInThisBand=0;
1192 if(AverageNumberOfLevels>0){
1193 NumberOfLevelsInThisBand=(
G4int)theRandom1->Poisson(AverageNumberOfLevels);
1195 if(NumberOfLevelsInThisBand>0){
1196 someLevels[TotalNLevels].
Energy=(emax+emin)/2.;
1197 someLevels[TotalNLevels].
spinx2=spinx2;
1198 someLevels[TotalNLevels].
parity=parity;
1199 someLevels[TotalNLevels].
seed=0;
1201 someLevels[TotalNLevels].
NLevels=NumberOfLevelsInThisBand;
1202 someLevels[TotalNLevels].
Width=emax-emin;
1204 if(TotalNLevels>=MaxNLevelsToFill){
1205 std::cout<<
" Warning: not enough space to fill levels "<<std::endl;
1212 return TotalNLevels;
1217G4int G4NuDEXStatisticalNucleus::GenerateAllUnknownLevels(
Level* someLevels,
G4int MaxNLevelsToFill){
1219 G4int TotalNLevels=0,NLev;
1220 if(E_unk_min>=E_unk_max){
return 0;}
1222 for(
G4int spinx2=0;spinx2<=maxspinx2;spinx2++){
1223 for(
G4int ipar=0;ipar<2;ipar++){
1225 if(((A_Int+spinx2)%2)==0){
1228 if(ipar==1){parity=
false;}
1235 G4double E_lim_onebyone=2.*E_unk_max;
1236 G4int i_Band_E_lim_onebyone=NBands+1;
1240#ifndef GENERATEEXPLICITLYALLLEVELSCHEME
1242 if(MinLevelsPerBand<=0){
1244 i_Band_E_lim_onebyone=0;
1247 G4double bandwidth=(Emax_bands-Emin_bands)/NBands;
1248 G4double rho_lim_onebyone=3.*(MinLevelsPerBand+10.)/bandwidth;
1249 E_lim_onebyone=theLD->EstimateInverse(rho_lim_onebyone,spinx2/2.,parity);
1252 if(E_unk_max-Emax_bands>0.001){
1253 E_lim_onebyone=2.*E_unk_max;
1254 i_Band_E_lim_onebyone=NBands+1;
1258 if(E_lim_onebyone>E_unk_min && E_lim_onebyone<E_unk_max){
1259 for(
G4int i=0;i<NBands;i++){
1261 if(elow_band>E_lim_onebyone){
1262 E_lim_onebyone=elow_band;
1263 i_Band_E_lim_onebyone=i;
1272 if(E_lim_onebyone>E_unk_min){
1273 if(E_lim_onebyone<Emax){
1274 Emax=E_lim_onebyone;
1276 NLev=GenerateLevelsInBigRange(Emin,Emax,spinx2,parity,&(someLevels[TotalNLevels]),MaxNLevelsToFill-TotalNLevels);
1277 if(NLev<0){
return -1;}
1278 if(NBands>0 && NLev>0){
1279 NLev=CreateBandsFromLevels(NLev,&(someLevels[TotalNLevels]),spinx2,parity);
1284 if(i_Band_E_lim_onebyone<NBands){
1285 NLev=GenerateBandLevels(i_Band_E_lim_onebyone,NBands-1,spinx2,parity,&(someLevels[TotalNLevels]),MaxNLevelsToFill-TotalNLevels);
1286 if(NLev<0){
return -1;}
1298 return TotalNLevels;
1309 Level* theBandLevels=
new Level[NBands];
1310 for(
G4int i=0;i<NBands;i++){
1313 theBandLevels[i].
Energy=(emax+emin)/2.;
1314 theBandLevels[i].
spinx2=spinx2;
1315 theBandLevels[i].
parity=parity;
1316 theBandLevels[i].
seed=0;
1319 theBandLevels[i].
Width=emax-emin;
1320 G4int NLevelsInThisBand=0;
1321 for(
G4int j=0;j<thisNLevels;j++){
1322 if(someLevels[j].spinx2!=spinx2 || someLevels[j].parity!=parity){
1323 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1325 if(someLevels[j].Energy>=emin && someLevels[j].Energy<=emax){
1326 NLevelsInThisBand+=someLevels[j].
NLevels;
1329 if(NLevelsInThisBand>=MinLevelsPerBand){
1330 for(
G4int j=0;j<thisNLevels;j++){
1331 if(someLevels[j].Energy>=emin && someLevels[j].Energy<=emax){
1339 G4int FinalNBands=NBands;
1342 for(
G4int i=0;i<FinalNBands;i++){
1343 if(theBandLevels[i].NLevels==0){
1344 if(i!=FinalNBands-1){
1345 CopyLevel(&theBandLevels[FinalNBands-1],&theBandLevels[i]);
1353 G4int NbandsCopied=0;
1354 for(
G4int i=0;i<thisNLevels;i++){
1355 if(someLevels[i].Energy<0){
1356 if(NbandsCopied<FinalNBands){
1357 CopyLevel(&theBandLevels[NbandsCopied],&someLevels[i]);
1361 CopyLevel(&someLevels[thisNLevels-1],&someLevels[i]);
1369 if(NbandsCopied!=FinalNBands){
1370 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1372 delete [] theBandLevels;
1378G4int G4NuDEXStatisticalNucleus::InsertHighEnergyKnownLevels(){
1382 G4bool* HasBeenInserted=
new G4bool[KnownLevelsVectorSize];
1383 for(
G4int i=0;i<KnownLevelsVectorSize;i++){
1384 HasBeenInserted[i]=
false;
1387 for(
G4int kk=0;kk<2;kk++){
1388 for(
G4int k=1;k<5;k++){
1390 for(
G4int i=NKnownLevels;i<KnownLevelsVectorSize;i++){
1391 if(theKnownLevels[i].Energy>Sn){
break;}
1392 if(HasBeenInserted[i]==
false && (theKnownLevels[i].NGammas>0 || kk>0)){
1394 G4double MinEnergyDistance=-1,EnergyDistance=0;
1395 G4int thespinx2=theKnownLevels[i].spinx2;
1396 G4bool thepar=theKnownLevels[i].parity;
1397 G4int unknownLevelID=-1;
1398 for(
G4int j=NKnownLevels;j<NLevels-1;j++){
1399 if(theLevels[j].spinx2==thespinx2 && theLevels[j].parity==thepar){
1400 EnergyDistance=std::fabs(theKnownLevels[i].Energy-theLevels[j].Energy);
1401 if((EnergyDistance<MinEnergyDistance || MinEnergyDistance<0) && EnergyDistance<MaxEnergyDistance && theLevels[j].KnownLevelID<0){
1402 MinEnergyDistance=EnergyDistance;
1410 if(unknownLevelID>0 && theLevels[unknownLevelID].NLevels==1){
1412 CopyLevel(&theKnownLevels[i],&theLevels[unknownLevelID]);
1413 theLevels[unknownLevelID].KnownLevelID=i;
1414 HasBeenInserted[i]=
true;
1421 delete [] HasBeenInserted;
1431 for(
G4int i=NKnownLevels;i<NLevels;i++){
1432 if(theLevels[i].KnownLevelID>0){
1433 G4int knownID=theLevels[i].KnownLevelID;
1434 for(
G4int j=0;j<theKnownLevels[knownID].NGammas;j++){
1435 if(theKnownLevels[knownID].FinalLevelID[j]>=NKnownLevels){
1437 G4int i_finalknownlevel=theKnownLevels[knownID].FinalLevelID[j];
1439 G4int i_statlevel=-1;
1440 for(
G4int k=0;k<i;k++){
1441 G4double EnergyDistance=std::fabs(theKnownLevels[i_finalknownlevel].Energy-theLevels[k].Energy);
1442 if(EnergyDistance<MinEnergyDistance || MinEnergyDistance<0){
1443 MinEnergyDistance=EnergyDistance;
1447 if(MinEnergyDistance<0){
1448 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1451 if(theLevels[i_statlevel].KnownLevelID>=0){
1452 theKnownLevels[knownID].FinalLevelID[j]=i_statlevel;
1455 theKnownLevels[knownID].FinalLevelID[j]=i_statlevel;
1456 theKnownLevels[knownID].multipolarity[j]=GetMultipolarity(&theLevels[i],&theLevels[i_statlevel]);
1457 theKnownLevels[knownID].Eg[j]=theLevels[i].Energy-theLevels[i_statlevel].Energy;
1458 theKnownLevels[knownID].Pg[j]=theKnownLevels[knownID].Pg[j]+theKnownLevels[knownID].Pe[j];
1459 theKnownLevels[knownID].Pe[j]=0;
1460 theKnownLevels[knownID].Icc[j]=0;
1474G4int G4NuDEXStatisticalNucleus::EstimateNumberOfLevelsToFill(){
1476 if(E_unk_min>=E_unk_max){
return 0;}
1478#ifndef GENERATEEXPLICITLYALLLEVELSCHEME
1480 return maxspinx2*NBands*MinLevelsPerBand;
1487 G4double TotalNLevelsInsideBands=0;
1488 G4double MaxNLevelsWithSameSpinAndParity=0;
1489 G4double emin,emax,meanEnergy,LevDen,meanNLevels;
1490 G4int NIntervals=1000;
1491 for(
G4int spinx2=0;spinx2<=maxspinx2;spinx2++){
1492 G4double TotalNLevesWithSameSpin=0;
1493 for(
G4int i=0;i<NIntervals;i++){
1494 emin=Emin+(Emax-Emin)*i/(
G4double)NIntervals;
1495 emax=Emin+(Emax-Emin)*(i+1)/(
G4double)NIntervals;
1496 meanEnergy=(emax+emin)/2.;
1499 LevDen=theLD->GetLevelDensity(meanEnergy,spinx2/2.,
true);
1500 meanNLevels=LevDen*(emax-emin);
1501 TotalNLevels+=meanNLevels;
1502 TotalNLevesWithSameSpin+=meanNLevels;
1503 if(NBands>0 && meanEnergy>Emin_bands && meanEnergy<Emax_bands){
1504 TotalNLevelsInsideBands+=meanNLevels;
1509 LevDen=theLD->GetLevelDensity(meanEnergy,spinx2/2.,
false);
1510 meanNLevels=LevDen*(emax-emin);
1511 TotalNLevels+=meanNLevels;
1512 TotalNLevesWithSameSpin+=meanNLevels;
1513 if(NBands>0 && meanEnergy>Emin_bands && meanEnergy<Emax_bands){
1514 TotalNLevelsInsideBands+=meanNLevels;
1518 if(MaxNLevelsWithSameSpinAndParity<TotalNLevesWithSameSpin){MaxNLevelsWithSameSpinAndParity=TotalNLevesWithSameSpin;}
1521 MaxNLevelsWithSameSpinAndParity/=2.;
1523 if(TotalNLevelsInsideBands>0){
1525 G4double TotalNLevelsOutsideBands=TotalNLevels-TotalNLevelsInsideBands;
1526 G4double MaxNLevelsNeededForBands=NBands*maxspinx2*MinLevelsPerBand;
1527 TotalNLevels=MaxNLevelsWithSameSpinAndParity+TotalNLevelsOutsideBands+MaxNLevelsNeededForBands;
1530 return (
G4int)TotalNLevels;
1534G4double G4NuDEXStatisticalNucleus::TakeTargetNucleiI0(
const char* fname,
G4int& check){
1536 std::ifstream in(fname);
1538 std::cout<<
" ######## Error opening file "<<fname<<
" ########"<<std::endl;
1539 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1545 while(in.get(buffer,6)){
1546 in.get(buffer,6); aA=atoi(buffer);
1547 in.get(buffer,6); aZ=atoi(buffer);
1548 if(aZ==Z_Int && aA==A_Int-1){
1551 in.ignore(10000,
'\n');
1558 in.ignore(10000,
'\n');
1561 in.get(buffer,6); spin=std::fabs(atof(buffer));
1562 in.get(buffer,4); par=atof(buffer);
1566 if(par<0){
return -spin;}
1571G4double G4NuDEXStatisticalNucleus::ReadKnownLevels(
const char* fname){
1574 std::ifstream in(fname);
1576 std::cout<<
" ######## Error opening file "<<fname<<
" ########"<<std::endl;
1577 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1582 while(in.get(buffer,6)){
1583 in.get(buffer,6); aA=atoi(buffer);
1584 in.get(buffer,6); aZ=atoi(buffer);
1585 if(aZ==Z_Int && aA==A_Int){
1586 in.get(buffer,6); KnownLevelsVectorSize=atoi(buffer);
1588 in.get(buffer,13);
G4double newSn=atof(buffer);
1589 if(Sn>0 && std::fabs(Sn-newSn)>0.01){
1590 std::cout<<
" ######## WARNING: Sn value from the level density file ("<<Sn<<
") is different than the one from the known levels file ("<<newSn<<
"). We use the first value. ########"<<std::endl;
1597 in.ignore(10000,
'\n');
1601 in.close();
return -1;
1604 in.ignore(10000,
'\n');
1607 theKnownLevels=
new KnownLevel[KnownLevelsVectorSize];
1608 for(
G4int i=0;i<KnownLevelsVectorSize;i++){theKnownLevels[i].NGammas=0;}
1610 for(
G4int i=0;i<KnownLevelsVectorSize;i++){
1611 in.get(buffer,4); theKnownLevels[i].id=atoi(buffer)-1;
1613 in.get(buffer,11); theKnownLevels[i].Energy=atof(buffer);
1615 in.get(buffer,6); spin=atof(buffer);
1616 in.get(buffer,4); par=atof(buffer);
1617 if((spin<0 || par==0) && theKnownLevels[i].Energy<Ecrit){
1618 std::cout<<
" ######## WARNING: Spin and parity for level "<<i<<
" is s="<<spin<<
" p="<<par<<
" for Z="<<Z_Int<<
", A="<<A_Int<<
" ########"<<std::endl;
1622 G4int i_sampleSpin=theRandom1->Integer(i-1);
1623 spin=theKnownLevels[i_sampleSpin].spinx2/2.;
1628 if(theRandom1->Uniform(-1,1)<0){par=-1;}
1632 in.get(buffer,11); theKnownLevels[i].T12=atof(buffer);
1633 in.get(buffer,4); theKnownLevels[i].NGammas=atoi(buffer);
1634 if(theKnownLevels[i].NGammas>0){
1638 G4int i_sampleSpin=theRandom1->Integer(i-1);
1639 spin=theKnownLevels[i_sampleSpin].spinx2/2.;
1644 if(theRandom1->Uniform(-1,1)<0){par=-1;}
1647 theKnownLevels[i].spinx2=(
G4int)(spin*2+0.01);
1648 if(par>0){theKnownLevels[i].parity=
true;}
else{theKnownLevels[i].parity=
false;}
1654 G4int decays=theKnownLevels[i].Ndecays=atoi(buffer);
1656 theKnownLevels[i].decayFraction=
new G4double[decays];
1657 theKnownLevels[i].decayMode=
new std::string[decays];
1659 for(
G4int j=0;j<decays;j++){
1662 theKnownLevels[i].decayFraction[j]=atof(buffer);
1665 theKnownLevels[i].decayMode[j]=std::string(buffer);
1669 in.ignore(10000,
'\n');
1671 if(theKnownLevels[i].NGammas>0){
1672 theKnownLevels[i].FinalLevelID=
new G4int[theKnownLevels[i].NGammas];
1673 theKnownLevels[i].multipolarity=
new G4int[theKnownLevels[i].NGammas];
1674 theKnownLevels[i].Eg=
new G4double[theKnownLevels[i].NGammas];
1675 theKnownLevels[i].cumulPtot=
new G4double[theKnownLevels[i].NGammas];
1676 theKnownLevels[i].Pg=
new G4double[theKnownLevels[i].NGammas];
1677 theKnownLevels[i].Pe=
new G4double[theKnownLevels[i].NGammas];
1678 theKnownLevels[i].Icc=
new G4double[theKnownLevels[i].NGammas];
1681 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
1684 in.get(buffer,5); theKnownLevels[i].FinalLevelID[j]=atoi(buffer)-1;
1685 theKnownLevels[i].multipolarity[j]=0;
1687 in.get(buffer,11); theKnownLevels[i].Eg[j]=atof(buffer);
1689 in.get(buffer,11); theKnownLevels[i].Pg[j]=atof(buffer);
1691 in.get(buffer,11); theKnownLevels[i].Pe[j]=atof(buffer);
1693 in.get(buffer,11); theKnownLevels[i].Icc[j]=atof(buffer);
1694 theKnownLevels[i].cumulPtot[j]=theKnownLevels[i].Pg[j]*(1+theKnownLevels[i].Icc[j]);
1695 in.ignore(10000,
'\n');
1696 if(theKnownLevels[i].FinalLevelID[j]>=i+1){
1697 std::cout<<
" ######## Error reading file "<<fname<<
" ########"<<std::endl;
1698 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1702 if(theKnownLevels[i].
id!=i || !in.good()){
1703 std::cout<<
" ######## Error reading file "<<fname<<
" ########"<<std::endl;
1704 std::cout<<
" Level "<<i<<
" has id = "<<theKnownLevels[i].id<<std::endl;
1705 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1711 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
1712 totalEmissionProb+=theKnownLevels[i].cumulPtot[j];
1715 if(totalEmissionProb==0){
1716 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
1717 theKnownLevels[i].cumulPtot[j]=1./theKnownLevels[i].NGammas;
1718 theKnownLevels[i].Pg[j]=theKnownLevels[i].cumulPtot[j]/(1.+theKnownLevels[i].Icc[j]);
1720 totalEmissionProb=1;
1723 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
1724 theKnownLevels[i].cumulPtot[j]/=totalEmissionProb;
1725 theKnownLevels[i].Pg[j]/=totalEmissionProb;
1726 theKnownLevels[i].Pe[j]=theKnownLevels[i].Icc[j]*theKnownLevels[i].Pg[j];
1728 for(
G4int j=1;j<theKnownLevels[i].NGammas;j++){
1729 theKnownLevels[i].cumulPtot[j]+=theKnownLevels[i].cumulPtot[j-1];
1733 if(theKnownLevels[i].Energy<=Ecrit*1.0001){
1744 in.close();
return -1;
1754G4double G4NuDEXStatisticalNucleus::ReadEcrit(
const char* fname){
1756 std::ifstream in(fname);
1758 std::cout<<
" ######## Error opening file "<<fname<<
" ########"<<std::endl;
1759 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1765 for(
G4int i=0;i<4;i++){in.ignore(10000,
'\n');}
1767 if(aZ==Z_Int && aA==A_Int){
1768 in>>word>>word>>word>>word>>word>>word>>word>>word>>word>>Ecrit;
break;
1770 in.ignore(10000,
'\n');
1777G4int G4NuDEXStatisticalNucleus::ReadSpecialInputFile(
const char* fname){
1780 std::ifstream in(fname);
1787 if(word.c_str()[0]==
'#'){in.ignore(10000,
'\n');}
1788 if(word==std::string(
"END")){
break;}
1790 else if(word==std::string(
"LEVELDENSITYTYPE")){
if(LevelDensityType<0){in>>LevelDensityType;}}
1791 else if(word==std::string(
"MAXSPIN")){
if(maxspinx2<0){in>>MaxSpin; maxspinx2=(
G4int)(2.*MaxSpin+0.01);}}
1792 else if(word==std::string(
"MINLEVELSPERBAND")){
if(MinLevelsPerBand<0){in>>MinLevelsPerBand;}}
1793 else if(word==std::string(
"BANDWIDTH_MEV")){
if(BandWidth==0){in>>BandWidth;}}
1794 else if(word==std::string(
"MAXEXCENERGY_MEV")){
if(MaxExcEnergy==0){in>>MaxExcEnergy;}}
1795 else if(word==std::string(
"ECRIT_MEV")){
if(Ecrit<0){in>>Ecrit;}}
1796 else if(word==std::string(
"KNOWNLEVELSFLAG")){
if(KnownLevelsFlag<0){in>>KnownLevelsFlag;}}
1798 else if(word==std::string(
"PSF_FLAG")){
if(PSFflag<0){in>>PSFflag;}}
1799 else if(word==std::string(
"BROPTION")){
if(BROpt<0){in>>BROpt;}}
1800 else if(word==std::string(
"SAMPLEGAMMAWIDTHS")){
if(SampleGammaWidths<0){in>>SampleGammaWidths;}}
1802 else if(word==std::string(
"ELECTRONCONVERSIONFLAG")){
if(ElectronConversionFlag<0){in>>ElectronConversionFlag;}}
1803 else if(word==std::string(
"PRIMARYTHCAPGAMNORM")){
if(PrimaryGammasIntensityNormFactor<0){in>>PrimaryGammasIntensityNormFactor;}}
1804 else if(word==std::string(
"PRIMARYGAMMASECUT")){
if(PrimaryGammasEcut<0){in>>PrimaryGammasEcut;}}
1810G4int G4NuDEXStatisticalNucleus::ReadGeneralStatNuclParameters(
const char* fname){
1812 std::ifstream in(fname);
1814 std::cout<<
" ######## Error opening file "<<fname<<
" ########"<<std::endl;
1815 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1818 in.getline(line,1000);
1819 in.getline(line,1000);
1820 G4int tmpZ,tmpA,tmpLDtype,tmpPSFflag,tmpMaxSpin,tmpMinLev,tmpBrOption,tmpSampleGW;
1821 G4double tmpBandWidth,tmpMaxExcEnergy;
1822 unsigned int tmpseed1,tmpseed2,tmpseed3;
1823 G4int finalLDtype=0,finalPSFflag=0,finalMaxSpin=0,finalMinLev=0,finalBrOption=0,finalSampleGW=0;
1824 G4double finalBandWidth=0,finalMaxExcEnergy=0;
1825 unsigned int finalseed1=0,finalseed2=0,finalseed3=0;
1826 G4bool NuclDataHasBeenRead=
false;
1827 G4bool DefaulDataHasBeenRead=
false;
1828 while(in>>tmpZ>>tmpA>>tmpLDtype>>tmpPSFflag>>tmpMaxSpin>>tmpMinLev>>tmpBandWidth>>tmpMaxExcEnergy>>tmpBrOption>>tmpSampleGW>>tmpseed1>>tmpseed2>>tmpseed3){
1830 if(tmpZ==Z_Int && tmpA==A_Int){
1831 NuclDataHasBeenRead=
true;
1834 else if(tmpZ==0 && tmpA==0 && NuclDataHasBeenRead==
false){
1835 DefaulDataHasBeenRead=
true;
1839 finalLDtype=tmpLDtype; finalPSFflag=tmpPSFflag; finalMaxSpin=tmpMaxSpin; finalMinLev=tmpMinLev; finalBrOption=tmpBrOption; finalSampleGW=tmpSampleGW;
1840 finalBandWidth=tmpBandWidth; finalMaxExcEnergy=tmpMaxExcEnergy;
1841 finalseed1=tmpseed1; finalseed2=tmpseed2; finalseed3=tmpseed3;
1846 if(NuclDataHasBeenRead==
false && DefaulDataHasBeenRead==
false){
1847 std::cout<<
" ######## Error reading "<<fname<<
" ########"<<std::endl;
1848 NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1852 if(LevelDensityType<0){LevelDensityType=finalLDtype;}
1853 if(PSFflag<0){PSFflag=finalPSFflag;}
1854 if(maxspinx2<0){maxspinx2=(
G4int)(2.*finalMaxSpin+0.01);}
1855 if(MinLevelsPerBand<0){MinLevelsPerBand=finalMinLev;}
1856 if(BandWidth==0){BandWidth=finalBandWidth;}
1857 if(MaxExcEnergy==0){MaxExcEnergy=finalMaxExcEnergy;}
1858 if(BROpt<0){BROpt=finalBrOption;}
1859 if(SampleGammaWidths<0){SampleGammaWidths=finalSampleGW;}
1860 if(Rand1seedProvided==
false){seed1=finalseed1; theRandom1->SetSeed(finalseed1);}
1861 if(Rand2seedProvided==
false){seed2=finalseed2; theRandom2->SetSeed(finalseed2);}
1862 if(Rand3seedProvided==
false){seed3=finalseed3; theRandom3->SetSeed(finalseed3);}
1867 std::cout<<
" ######## Error: maximum spin for generating the statistical nucleus with A="<<A_Int<<
" and Z="<<Z_Int<<
" has been set to "<<maxspinx2/2.<<
" ########"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1869 if(MinLevelsPerBand<=0 && BandWidth<0){
1870 std::cout<<
" ######## Error: MinLevelsPerBand and BandWidth for generating the statistical nucleus with A="<<A_Int<<
" and Z="<<Z_Int<<
" has been set to MinLevelsPerBand="<<MinLevelsPerBand<<
" and BandWidth="<<BandWidth<<
" ########"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1872 if(BROpt!=0 && BROpt!=1 && BROpt!=2){
1873 std::cout<<
" ######## Error: BROpt for generating the statistical nucleus with A="<<A_Int<<
" and Z="<<Z_Int<<
" has been set to BROpt="<<BROpt<<
", and has to be BROpt=0,1 or 2 ########"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1875 if(SampleGammaWidths!=0 && SampleGammaWidths!=1){
1876 std::cout<<
" ######## Error: SampleGammaWidths parameter for generating the statistical nucleus with A="<<A_Int<<
" and Z="<<Z_Int<<
" has been set to SampleGammaWidths="<<SampleGammaWidths<<
", and has to be SampleGammaWidths=0 or 1 ########"<<std::endl;
NuDEXException(__FILE__,std::to_string(__LINE__).c_str(),
"##### Error in NuDEX #####");
1885void G4NuDEXStatisticalNucleus::GenerateThermalCaptureLevelBR(
const char* dirname){
1888 snprintf(fname,1000,
"%s/PrimaryCaptureGammas.dat",dirname);
1897 std::ifstream in(fname);
1899 if(word[0]==
'Z' && word[1]==
'A'){
1901 if(aZA==Z_Int*1000+A_Int){
1902 in.ignore(10000,
'\n');
1904 in.ignore(10000,
'\n');
1907 if(ELevel/Sn>1.001 || ELevel/Sn<0.999){
1908 std::cout<<
" ########## WARNING: ELevel = "<<ELevel<<
" and Sn = "<<Sn<<
" for ZA = "<<aZA<<
" ##########"<<std::endl;
1910 for(
G4int i=0;i<ng;i++){
1911 in>>ThEg[i]>>ThI[i];
1914 ThI[i]*=PrimaryGammasIntensityNormFactor;
1920 in.ignore(10000,
'\n');
1924 if(theThermalCaptureLevelCumulBR){
delete [] theThermalCaptureLevelCumulBR;}
1925 theThermalCaptureLevelCumulBR=
new G4double[NLevelsBelowThermalCaptureLevel];
1926 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
1927 theThermalCaptureLevelCumulBR[i]=0;
1932 G4double totalThGInt=0,ENDSFLevelEnergy=0,MinlevelDist=0,MinlevelDist_known=0,LevDist=0;
1933 G4int i_closest=0,i_closest_known=0;
1934 G4double MaxAllowedLevelDistance=0.010;
1935 G4bool ComputePrimaryGammasEcut=
false;
1936 if(PrimaryGammasEcut==0){ComputePrimaryGammasEcut=
true;}
1939 for(
G4int i=0;i<ng;i++){
1940 ENDSFLevelEnergy=ELevel-ThEg[i];
1941 if(ComputePrimaryGammasEcut && PrimaryGammasEcut<ENDSFLevelEnergy){
1942 PrimaryGammasEcut=ENDSFLevelEnergy;
1947 MinlevelDist_known=1.e20;
1948 for(
G4int j=0;j<NLevelsBelowThermalCaptureLevel;j++){
1949 LevDist=std::fabs(ENDSFLevelEnergy-theLevels[j].Energy);
1950 if(theLevels[j].KnownLevelID>=0){
1951 if(LevDist<MinlevelDist_known){
1952 MinlevelDist_known=LevDist;
1956 if(LevDist<MinlevelDist){
1957 MinlevelDist=LevDist;
1961 if(MinlevelDist_known<MaxAllowedLevelDistance){
1962 theThermalCaptureLevelCumulBR[i_closest_known]=ThI[i];
1963 totalThGInt+=theThermalCaptureLevelCumulBR[i_closest_known];
1965 else if(MinlevelDist<MaxAllowedLevelDistance){
1966 theThermalCaptureLevelCumulBR[i_closest]=ThI[i];
1967 totalThGInt+=theThermalCaptureLevelCumulBR[i_closest];
1972 std::cout<<
" NuDEX: Primary thermal gammas for ZA="<<Z_Int*1000+A_Int<<
" found in the database: "<<totalThGInt*100.<<
" %"<<std::endl;
1977 if(totalThGInt<0.95){
1978 G4double TotalNeededIntensity=1.-totalThGInt;
1979 G4double oldInt,TotalOldIntensity=0;
1983 CopyLevel(&theLevels[NLevelsBelowThermalCaptureLevel],&tmpLevel);
1984 CopyLevel(&theThermalCaptureLevel,&theLevels[NLevelsBelowThermalCaptureLevel]);
1986 ComputeDecayIntensities(NLevelsBelowThermalCaptureLevel,CumulBR_th_v2);
1987 CopyLevel(&tmpLevel,&theLevels[NLevelsBelowThermalCaptureLevel]);
1990 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
1991 if(i==0){oldInt=CumulBR_th_v2[i];}
else{oldInt=CumulBR_th_v2[i]-CumulBR_th_v2[i-1];}
1992 if(theThermalCaptureLevelCumulBR[i]==0 && theLevels[i].Energy>=PrimaryGammasEcut){TotalOldIntensity+=oldInt;}
1995 if(TotalOldIntensity>0){
1996 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
1997 if(theThermalCaptureLevelCumulBR[i]==0 && theLevels[i].Energy>=PrimaryGammasEcut){
1998 if(i==0){oldInt=CumulBR_th_v2[i];}
else{oldInt=CumulBR_th_v2[i]-CumulBR_th_v2[i-1];}
1999 theThermalCaptureLevelCumulBR[i]=oldInt*TotalNeededIntensity/TotalOldIntensity;
2003 delete [] CumulBR_th_v2;
2009 for(
G4int i=1;i<NLevelsBelowThermalCaptureLevel;i++){
2010 theThermalCaptureLevelCumulBR[i]+=theThermalCaptureLevelCumulBR[i-1];
2012 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
2013 theThermalCaptureLevelCumulBR[i]/=theThermalCaptureLevelCumulBR[NLevelsBelowThermalCaptureLevel-1];
2021 if(!theThermalCaptureLevelCumulBR){
return;}
2023 if(level_id<0 || level_id>=NLevelsBelowThermalCaptureLevel){
2024 std::cout<<
" ############## WARNING in "<<__FILE__<<
", line "<<__LINE__<<
" ##############"<<std::endl;
2025 std::cout<<
" ---> "<<level_id<<
" "<<LevelEnergy<<std::endl;
2028 for(
G4int i=NLevelsBelowThermalCaptureLevel-1;i>0;i--){
2029 theThermalCaptureLevelCumulBR[i]-=theThermalCaptureLevelCumulBR[i-1];
2031 G4double OldIntensity=theThermalCaptureLevelCumulBR[level_id];
2032 theThermalCaptureLevelCumulBR[level_id]=absoluteIntensity*(1.-OldIntensity)/(1.-absoluteIntensity);
2034 for(
G4int i=1;i<NLevelsBelowThermalCaptureLevel;i++){
2035 theThermalCaptureLevelCumulBR[i]+=theThermalCaptureLevelCumulBR[i-1];
2037 for(
G4int i=0;i<NLevelsBelowThermalCaptureLevel;i++){
2038 theThermalCaptureLevelCumulBR[i]/=theThermalCaptureLevelCumulBR[NLevelsBelowThermalCaptureLevel-1];
2041 std::cout<<
" Thermal primary gammas to level "<<level_id<<
", with E="<<theLevels[level_id].Energy<<
" MeV changed from "<<OldIntensity<<
" to "<<theThermalCaptureLevelCumulBR[level_id]<<std::endl;
2044 std::cout<<
" Thermal primary gammas to level "<<level_id<<
", with E="<<theLevels[level_id].Energy<<
" MeV changed from "<<OldIntensity<<
" to "<<theThermalCaptureLevelCumulBR[level_id]-theThermalCaptureLevelCumulBR[level_id-1]<<std::endl;
2050 out<<
" ###################################################################################### "<<std::endl;
2051 out<<
" GENERAL_PARS"<<std::endl;
2052 out<<
" Z = "<<Z_Int<<
" A = "<<A_Int<<std::endl;
2053 out<<
" Sn = "<<Sn<<
" I0(ZA-1) = "<<I0<<std::endl;
2054 if(theLD!=0){theLD->PrintParameters(out);}
2055 else{out<<
" No level density"<<std::endl;}
2056 out<<
" PSFflag = "<<PSFflag<<std::endl;
2057 out<<
" Ecrit = "<<Ecrit<<std::endl;
2058 out<<
" E_unknown_min = "<<E_unk_min<<
" E_unknown_max = "<<E_unk_max<<std::endl;
2059 out<<
" maxspin = "<<maxspinx2/2.<<std::endl;
2060 out<<
" MaxExcEnergy = "<<MaxExcEnergy<<std::endl;
2061 out<<
" NBands = "<<NBands<<
" MinLevelsPerBand = "<<MinLevelsPerBand<<
" BandWidth = "<<BandWidth<<std::endl;
2062 out<<
" Emin_bands = "<<Emin_bands<<
" Emax_bands = "<<Emax_bands<<std::endl;
2063 out<<
" NLevels = "<<NLevels<<
" NKnownLevels = "<<NKnownLevels<<
" NUnknownLevels = "<<NUnknownLevels<<std::endl;
2064 out<<
" BROpt = "<<BROpt<<
" SampleGammaWidths = "<<SampleGammaWidths<<std::endl;
2065 out<<
" PrimaryGammasIntensityNormFactor = "<<PrimaryGammasIntensityNormFactor<<
" PrimaryGammasEcut = "<<PrimaryGammasEcut<<std::endl;
2066 out<<
" KnownLevelsFlag = "<<KnownLevelsFlag<<std::endl;
2067 out<<
" ElectronConversionFlag = "<<ElectronConversionFlag<<std::endl;
2068 out<<
" ###################################################################################### "<<std::endl;
2074 out<<
" ########################################################################################################## "<<std::endl;
2075 out<<
" KNOWN_LEVEL_SCHEME "<<std::endl;
2076 out<<
" NKnownLevels = "<<NKnownLevels<<std::endl;
2080 for(
G4int i=0;i<KnownLevelsVectorSize;i++){
2081 snprintf(buffer,1000,
"%3d %10.4g %5g %2d %10.4g %3d %3d",theKnownLevels[i].
id+1,theKnownLevels[i].Energy,theKnownLevels[i].spinx2/2.,2*(
G4int)theKnownLevels[i].parity-1,theKnownLevels[i].T12,theKnownLevels[i].NGammas,theKnownLevels[i].Ndecays);
2083 for(
G4int j=0;j<theKnownLevels[i].Ndecays;j++){
2084 snprintf(buffer,1000,
" %10.4g %7s",theKnownLevels[i].decayFraction[j],theKnownLevels[i].decayMode[j].c_str());
2088 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
2089 snprintf(buffer,1000,
" %4d %10.4g %10.4g %10.4g %10.4g %10.4g %2d",theKnownLevels[i].FinalLevelID[j]+1,theKnownLevels[i].Eg[j],theKnownLevels[i].Pg[j],theKnownLevels[i].Pe[j],theKnownLevels[i].Icc[j],theKnownLevels[i].cumulPtot[j],theKnownLevels[i].multipolarity[j]);
2090 out<<buffer<<std::endl;
2093 out<<
" ########################################################################################################## "<<std::endl;
2099 out<<
" ########################################################################################################## "<<std::endl;
2100 out<<
" KNOWN_LEVES_DEGEN "<<std::endl;
2101 out<<
" NKnownLevels = "<<NKnownLevels<<std::endl;
2104 for(
G4int i=0;i<NKnownLevels;i++){
2107 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
2108 if(theKnownLevels[i].Pg[j]>MaxIntens){MaxIntens=theKnownLevels[i].Pg[j];}
2110 for(
G4int j=0;j<theKnownLevels[i].NGammas;j++){
2112 GammaEnergy=theKnownLevels[i].Energy-theKnownLevels[theKnownLevels[i].FinalLevelID[j]].Energy;
2113 snprintf(buffer,1000,
"%10.3f %9.3f %9.3f %9.3f %9.3f %9.3f %9.3f %9.3f",theKnownLevels[i].Energy*1000.,theKnownLevels[i].spinx2/2.,2.*(
G4int)theKnownLevels[i].parity-1,GammaEnergy*1000.,0.,theKnownLevels[i].Pg[j]/MaxIntens*100.,0.,theKnownLevels[i].Icc[j]);
2114 out<<buffer<<std::endl;
2117 out<<
" ########################################################################################################## "<<std::endl;
2123 if(theLD==0){
return;}
2129 out<<
" ###################################################################################### "<<std::endl;
2130 out<<
" LEVELDENSITY"<<std::endl;
2135 for(
G4int spx2=0;spx2<=maxspinx2;spx2++){
2136 WriteThisSpin[spx2]=
true;
2137 if(((A_Int+spx2)%2)!=0){
2138 WriteThisSpin[spx2]=
false;
2142 out<<np<<
" "<<Emin<<
" "<<Emax<<
" "<<Ecrit<<
" "<<maxspinx2<<std::endl;
2143 out<<
"ENE EXP TOT SUM(J)";
2144 for(
G4int spx2=0;spx2<=maxspinx2;spx2++){
2145 if(WriteThisSpin[spx2]){out<<
" J="<<spx2/2.;}
2149 for(
G4int i=0;i<np;i++){
2150 ene=Emin+(Emax-Emin)*i/(
G4double)(np-1);
2152 for(
G4int j=0;j<NLevels;j++){
if(theLevels[j].Energy<ene){exp+=theLevels[j].NLevels;}}
2153 out<<ene<<
" "<<exp<<
" ";
2155 for(
G4int spx2=0;spx2<=maxspinx2;spx2++){
2156 ld[spx2]=2*theLD->GetLevelDensity(ene,spx2/2.,
true);
2157 ld[maxspinx2+1]+=ld[spx2];
2160 out<<theLD->GetLevelDensity(ene,0,
true,
true)<<
" "<<ld[maxspinx2+1];
2161 for(
G4int spx2=0;spx2<=maxspinx2;spx2++){
2162 if(WriteThisSpin[spx2]){out<<
" "<<ld[spx2];}
2166 out<<
" ###################################################################################### "<<std::endl;
2169 delete [] WriteThisSpin;
2174 std::ofstream out(fname);
2176 for(
G4int i=0;i<NLevels;i++){
2177 if(theLevels[i].Energy>Ecrit && (MaxLevelID>0 && i<=MaxLevelID)){
2178 snprintf(buffer,1000,
"%13.5f %17.8f %17.8f ",theLevels[i].Energy*1000.,theLevels[i].spinx2/2.,2.*(
G4int)theLevels[i].parity-1);
2179 out<<buffer<<std::endl;
2187 out<<
" ###################################################################################### "<<std::endl;
2188 out<<
" LEVELSCHEME"<<std::endl;
2189 for(
G4int i=0;i<NLevels;i++){
2190 out<<i<<
" "<<theLevels[i].Energy<<
" "<<theLevels[i].spinx2/2.<<
" "<<theLevels[i].parity<<
" "<<theLevels[i].KnownLevelID<<
" "<<theLevels[i].NLevels<<
" "<<theLevels[i].Width<<
" "<<theLevels[i].seed<<std::endl;
2192 out<<
" ###################################################################################### "<<std::endl;
2197 out<<
" #################################################### "<<std::endl;
2198 out<<
" THERMAL PRIMARY TRANSITIONS"<<std::endl;
2199 out<<
" "<<NLevelsBelowThermalCaptureLevel<<std::endl;
2200 if(theThermalCaptureLevelCumulBR!=0){
2201 out<<
" "<<0<<
" "<<theLevels[0].Energy<<
" "<<Sn-theLevels[0].Energy<<
" "<<theThermalCaptureLevelCumulBR[0]<<std::endl;
2202 for(
G4int i=1;i<NLevelsBelowThermalCaptureLevel;i++){
2203 out<<
" "<<i<<
" "<<theLevels[i].Energy<<
" "<<Sn-theLevels[i].Energy<<
" "<<theThermalCaptureLevelCumulBR[i]-theThermalCaptureLevelCumulBR[i-1]<<std::endl;
2206 out<<
" #################################################### "<<std::endl;
2209 out<<
" #################################################### "<<std::endl;
2210 out<<
" STRONGEST THERMAL PRIMARY TRANSITIONS"<<std::endl;
2211 out<<
" "<<NLevelsBelowThermalCaptureLevel<<std::endl;
2212 if(theThermalCaptureLevelCumulBR!=0){
2213 if(theThermalCaptureLevelCumulBR[0]>ThresholdIntensity){out<<
" "<<0<<
" "<<theLevels[0].Energy<<
" "<<Sn-theLevels[0].Energy<<
" "<<theThermalCaptureLevelCumulBR[0]<<std::endl;}
2214 for(
G4int i=1;i<NLevelsBelowThermalCaptureLevel;i++){
2215 if(theThermalCaptureLevelCumulBR[i]-theThermalCaptureLevelCumulBR[i-1]>ThresholdIntensity){out<<
" "<<i<<
" "<<theLevels[i].Energy<<
" "<<Sn-theLevels[i].Energy<<
" "<<theThermalCaptureLevelCumulBR[i]-theThermalCaptureLevelCumulBR[i-1]<<std::endl;}
2218 out<<
" #################################################### "<<std::endl;
2223 if(TotalCumulBR[i_level]!=0){
2224 out<<
" #################################################### "<<std::endl;
2225 out<<
" CUMULBR FROM LEVEL "<<i_level<<
" with ENERGY "<<theLevels[i_level].Energy<<std::endl;
2226 for(
G4int i=0;i<i_level;i++){
2227 out<<theLevels[i].Energy<<
" "<<theLevels[i].spinx2/2.<<
" "<<theLevels[i].parity<<
" "<<TotalCumulBR[i_level][i]<<std::endl;
2229 out<<
" #################################################### "<<std::endl;
2236 if(TotalCumulBR[i_level]!=0){
2237 out<<
" #################################################### "<<std::endl;
2238 out<<
" BR FROM LEVEL "<<i_level<<
" with ENERGY "<<theLevels[i_level].Energy<<std::endl;
2239 for(
G4int i=0;i<i_level;i++){
2240 if(theLevels[i].Energy<MaxExcEneToPrint_MeV || MaxExcEneToPrint_MeV<0){
2242 out<<theLevels[i].Energy<<
" "<<theLevels[i].spinx2/2.<<
" "<<theLevels[i].parity<<
" "<<TotalCumulBR[i_level][i]<<std::endl;
2245 out<<theLevels[i].Energy<<
" "<<theLevels[i].spinx2/2.<<
" "<<theLevels[i].parity<<
" "<<TotalCumulBR[i_level][i]-TotalCumulBR[i_level][i-1]<<std::endl;
2249 out<<
" #################################################### "<<std::endl;
2258 thePSF->PrintPSFParameters(out);
2267 out<<
" #################################################### "<<std::endl;
2268 out<<
" PSF"<<std::endl;
2269 out<<
" "<<NVals<<
" "<<Emin<<
" "<<Emax<<
" "<<nEnePSF<<std::endl;
2271 for(
G4int i=1;i<nEnePSF;i++){
2274 for(
G4int i=0;i<nEnePSF;i++){
2275 out<<
" "<<EnePSF[i];
2279 out<<
" E E1 M1 E2 "<<std::endl;
2280 for(
G4int i=0;i<nEnePSF;i++){
2281 for(
G4int j=0;j<NVals;j++){
2282 xval=Emin+(Emax-Emin)*j/(NVals-1.);
2283 if(xval==0){xval=1.e-6;}
2284 e1=thePSF->GetE1(xval,EnePSF[i]);
2285 m1=thePSF->GetM1(xval,EnePSF[i]);
2286 e2=thePSF->GetE2(xval,EnePSF[i]);
2287 snprintf(word,1000,
" %10.4E %10.4E %10.4E %10.4E",xval,e1,m1,e2);
2288 out<<word<<std::endl;
2291 out<<
" #################################################### "<<std::endl;
2298 theICC->PrintICC(out);
2318 out<<
"LEVELDENSITYTYPE "<<LevelDensityType<<std::endl;
2319 out<<
"MAXSPIN "<<maxspinx2/2.<<std::endl;
2320 out<<
"MINLEVELSPERBAND "<<MinLevelsPerBand<<std::endl;
2321 out<<
"BANDWIDTH_MEV "<<BandWidth<<std::endl;
2322 out<<
"MAXEXCENERGY_MEV "<<MaxExcEnergy<<std::endl;
2323 out<<
"ECRIT_MEV "<<Ecrit<<std::endl;
2324 out<<
"KNOWNLEVELSFLAG "<<KnownLevelsFlag<<std::endl;
2326 out<<
"PSF_FLAG "<<PSFflag<<std::endl;
2327 out<<
"BROPTION "<<BROpt<<std::endl;
2328 out<<
"SAMPLEGAMMAWIDTHS "<<SampleGammaWidths<<std::endl;
2330 out<<
"SEED1 "<<seed1<<std::endl;
2331 out<<
"SEED2 "<<seed2<<std::endl;
2332 out<<
"SEED3 "<<seed3<<std::endl;
2334 out<<
"ELECTRONCONVERSIONFLAG "<<ElectronConversionFlag<<std::endl;
2335 out<<
"PRIMARYTHCAPGAMNORM "<<PrimaryGammasIntensityNormFactor<<std::endl;
2336 out<<
"PRIMARYGAMMASECUT "<<PrimaryGammasEcut<<std::endl;
2338 theLD->PrintParametersInInputFileFormat(out);
2339 thePSF->PrintPSFParametersInInputFileFormat(out);
2341 out<<
"END"<<std::endl;
void NuDEXException(const char *originOfException, const char *exceptionCode, const char *description)
void CopyLevel(Level *a, Level *b)
G4int ComparisonLevels(const void *va, const void *vb)
void CopyLevel(Level *a, Level *b)
G4int ComparisonLevels(const void *va, const void *vb)
void PrintLevelSchemeInDEGENformat(const char *fname, G4int MaxLevelID=-1)
void PrintLevelDensity(std::ostream &out)
void PrintLevelScheme(std::ostream &out)
G4int Init(const char *dirname, const char *inputfname=0)
G4double GetLevelEnergy(G4int i_level)
void PrintParameters(std::ostream &out)
G4int GenerateCascade(G4int InitialLevel, G4double ExcitationEnergy, std::vector< char > &pType, std::vector< double > &pEnergy, std::vector< double > &pTime)
void PrintKnownLevels(std::ostream &out)
void PrintKnownLevelsInDEGENformat(std::ostream &out)
void ChangeThermalCaptureLevelBR(G4double LevelEnergy, G4double absoluteIntensity)
void SetInitialParameters02(G4int knownLevelsFlag=-1, G4int electronConversionFlag=-1, G4double primGamNormFactor=-1, G4double primGamEcut=-1, G4double ecrit=-1)
void PrintTotalCumulBR(G4int i_level, std::ostream &out)
G4int GetClosestLevel(G4double Energy, G4int spinx2, G4bool parity)
G4NuDEXStatisticalNucleus(G4int Z, G4int A)
void PrintThermalPrimaryTransitions(std::ostream &out)
void PrintPSF(std::ostream &out)
void PrintAll(std::ostream &out)
void PrintBR(G4int i_level, G4double MaxExcEneToPrint_MeV, std::ostream &out)
void PrintICC(std::ostream &out)
~G4NuDEXStatisticalNucleus()
void ChangeLevelSpinParityAndBR(G4int i_level, G4int newspinx2, G4bool newParity, G4int nlevels, G4double width, unsigned int seed=0)
void PrintInput01(std::ostream &out)
void SetSomeInitalParameters(G4int LDtype=-1, G4int PSFFlag=-1, G4double MaxSpin=-1, G4int minlevelsperband=-1, G4double BandWidth_MeV=0, G4double maxExcEnergy=0, G4int BrOption=-1, G4int sampleGammaWidths=-1, unsigned int aseed1=0, unsigned int aseed2=0, unsigned int aseed3=0)
Level * GetLevel(G4int i_level)