520{
525 lk.unlock();
526 return dtptr->second;
527 }
528
529
530
533
534
535
538
539
540 G4String file;
542 auto ptr = theUserRDataFiles->find(ke);
543 if (ptr != theUserRDataFiles->end()) {
544 file = ptr->second;
545 } else {
546 std::ostringstream os;
547 os << dirPath <<
"/z" << Z <<
".a" <<
A <<
'\0';
548 file = os.str();
549 }
550
551 G4DecayTable* theDecayTable = new G4DecayTable();
553
554 std::ifstream DecaySchemeFile;
555 DecaySchemeFile.open(file);
556
557 if (DecaySchemeFile.good()) {
558
561 G4double modeTotalBR[nMode] = {0.0};
563 for (
G4int i = 0; i < nMode; ++i) {
564 modeSumBR[i] = 0.0;
565 }
566
567 char inputChars[120]={' '};
568 G4String inputLine;
569 G4String recordType("");
570 G4String floatingFlag("");
571 G4String daughterFloatFlag("");
581
582
583
584
586
588
589 while (!complete && !DecaySchemeFile.getline(inputChars, 120).eof()) {
590 loop++;
591 if (loop > 100000) {
592 G4Exception(
"G4VRadioactiveDecay::LoadDecayTable()",
"HAD_RDM_100",
594 break;
595 }
596
597 inputLine = inputChars;
598 G4StrUtil::rstrip(inputLine);
599 if (inputChars[0] != '#' && inputLine.length() != 0) {
600 std::istringstream tmpStream(inputLine);
601
602 if (inputChars[0] == 'P') {
603
604
605 tmpStream >> recordType >> parentExcitation >> floatingFlag >> dummy;
606
607
608
609 if (found) {
610 complete = true;
611 } else {
612
613 found = (std::abs(parentExcitation*keV - levelEnergy) <
levelTolerance);
614 if (floatingLevel !=
noFloat) {
615
617 if (!floatMatch) found = false;
618 }
619 }
620
621 } else if (found) {
622
623
624
625
626 if (inputLine.length() < 72) {
627 tmpStream >> theDecayMode >> dummy >> decayModeTotal;
628
629 switch (theDecayMode) {
631 {
632 G4ITDecay* anITChannel = new G4ITDecay(theIon, decayModeTotal, 0.0, 0.0);
633 theDecayTable->
Insert(anITChannel);
634 }
635 break;
637 modeTotalBR[
BetaMinus] = decayModeTotal;
break;
639 modeTotalBR[
BetaPlus] = decayModeTotal;
break;
641 modeTotalBR[
KshellEC] = decayModeTotal;
break;
643 modeTotalBR[
LshellEC] = decayModeTotal;
break;
645 modeTotalBR[
MshellEC] = decayModeTotal;
break;
647 modeTotalBR[
NshellEC] = decayModeTotal;
break;
649 modeTotalBR[
Alpha] = decayModeTotal;
break;
651 modeTotalBR[
Proton] = decayModeTotal;
break;
653 modeTotalBR[
Neutron] = decayModeTotal;
break;
655 modeTotalBR[
SpFission] = decayModeTotal;
break;
657 break;
659 break;
661 break;
663 break;
665 break;
667 break;
669 modeTotalBR[
Triton] = decayModeTotal;
break;
671
672 default:
673 G4Exception(
"G4VRadioactiveDecay::LoadDecayTable()",
"HAD_RDM_000",
675 }
676
677 } else {
678 if (inputLine.length() < 84) {
679 tmpStream >> theDecayMode >> a >> daughterFloatFlag >> b >> c;
681 } else {
682 tmpStream >> theDecayMode >> a >> daughterFloatFlag >> b >> c >> betaType;
683 }
684
685
686
687 a /= 1000.;
688 c /= 1000.;
689 b /= 100.;
691
692 switch (theDecayMode) {
694 {
695 G4BetaMinusDecay* aBetaMinusChannel =
696 new G4BetaMinusDecay(theIon, b, c*MeV, a*MeV,
697 daughterFloatLevel, betaType);
698
699 theDecayTable->
Insert(aBetaMinusChannel);
701 }
702 break;
703
705 {
706 G4BetaPlusDecay* aBetaPlusChannel =
707 new G4BetaPlusDecay(theIon, b, c*MeV, a*MeV,
708 daughterFloatLevel, betaType);
709
710 theDecayTable->
Insert(aBetaPlusChannel);
712 }
713 break;
714
716 {
717 G4ECDecay* aKECChannel =
718 new G4ECDecay(theIon, b, c*MeV, a*MeV,
720
721 aKECChannel->
SetARM(applyARM);
722 theDecayTable->
Insert(aKECChannel);
724 }
725 break;
726
728 {
729 G4ECDecay* aLECChannel =
730 new G4ECDecay(theIon, b, c*MeV, a*MeV,
732
733 aLECChannel->
SetARM(applyARM);
734 theDecayTable->
Insert(aLECChannel);
736 }
737 break;
738
740 {
741 G4ECDecay* aMECChannel =
742 new G4ECDecay(theIon, b, c*MeV, a*MeV,
744
745 aMECChannel->
SetARM(applyARM);
746 theDecayTable->
Insert(aMECChannel);
748 }
749 break;
750
752 {
753 G4ECDecay* aNECChannel =
754 new G4ECDecay(theIon, b, c*MeV, a*MeV,
756
757 aNECChannel->
SetARM(applyARM);
758 theDecayTable->
Insert(aNECChannel);
760 }
761 break;
762
764 {
765 G4AlphaDecay* anAlphaChannel =
766 new G4AlphaDecay(theIon, b, c*MeV, a*MeV,
767 daughterFloatLevel);
768
769 theDecayTable->
Insert(anAlphaChannel);
770 modeSumBR[
Alpha] += b;
771 }
772 break;
773
775 {
776 G4ProtonDecay* aProtonChannel =
777 new G4ProtonDecay(theIon, b, c*MeV, a*MeV,
778 daughterFloatLevel);
779
780 theDecayTable->
Insert(aProtonChannel);
782 }
783 break;
784
786 {
787 G4NeutronDecay* aNeutronChannel =
788 new G4NeutronDecay(theIon, b, c*MeV, a*MeV,
789 daughterFloatLevel);
790
791 theDecayTable->
Insert(aNeutronChannel);
793 }
794 break;
795
797 {
798 G4SFDecay* aSpontFissChannel =
799 new G4SFDecay(theIon, b, c*MeV, a*MeV, daughterFloatLevel);
800 theDecayTable->
Insert(aSpontFissChannel);
802 }
803 break;
804
806
807
808 break;
809
811
812
813 break;
814
816
817
818 break;
819
821
822
823 break;
824
826
827
828 break;
829
831
832
833 break;
834
836 {
837 G4TritonDecay* aTritonChannel =
838 new G4TritonDecay(theIon, b, c*MeV, a*MeV, daughterFloatLevel);
839 theDecayTable->
Insert(aTritonChannel);
841 }
842 break;
843
845
846 default:
847 G4Exception(
"G4VRadioactiveDecay::LoadDecayTable()",
"HAD_RDM_000",
849 }
850 }
851 }
852 }
853 }
854
855
856
857
858 G4VDecayChannel* theChannel = 0;
859 G4NuclearDecay* theNuclearDecayChannel = 0;
860 G4String mode = "";
861
865 theNuclearDecayChannel = static_cast<G4NuclearDecay*>(theChannel);
867
868 if (theDecayMode !=
IT) {
869 theBR = theChannel->
GetBR();
870 theChannel->
SetBR(theBR*modeTotalBR[theDecayMode]/modeSumBR[theDecayMode]);
871 }
872 }
873 }
874
875 DecaySchemeFile.close();
876
877 if (!found && levelEnergy > 0) {
878
879
880 G4ITDecay* anITChannel = new G4ITDecay(theIon, 1.0, 0.0, 0.0);
881 theDecayTable->
Insert(anITChannel);
882 }
883
886 }
887
888
890 lk.unlock();
891 return theDecayTable;
892}
@ G4RadioactiveDecayModeSize
G4VDecayChannel * GetDecayChannel(G4int index) const
void Insert(G4VDecayChannel *aChannel)
void SetARM(G4bool onoff)
G4Ions::G4FloatLevelBase GetFloatLevelBase() const
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
G4RadioactiveDecayMode GetDecayMode() const
void SetBR(G4double value)
static const G4double levelTolerance