72 if (
nullptr == instance) {
83 delete theEPTestMessenger;
84 if (!process.empty()) {
85 for (
auto const& itr : process) {
100G4HadronicProcessStore::G4HadronicProcessStore()
164 const G4double* theAtomNumDensityVector =
167 for (
size_t i=0; i<nelm; ++i) {
168 const G4Element* elm = (*theElementVector)[i];
169 cross += theAtomNumDensityVector[i]*
184 localDP.SetKineticEnergy(kineticEnergy);
210 const G4double* theAtomNumDensityVector =
213 for (
size_t i=0; i<nelm; ++i) {
214 const G4Element* elm = (*theElementVector)[i];
215 cross += theAtomNumDensityVector[i]*
229 localDP.SetKineticEnergy(kineticEnergy);
256 const G4double* theAtomNumDensityVector =
259 for (
size_t i=0; i<nelm; ++i) {
260 const G4Element* elm = (*theElementVector)[i];
261 cross += theAtomNumDensityVector[i]*
275 localDP.SetKineticEnergy(kineticEnergy);
302 const G4double* theAtomNumDensityVector =
305 for (
size_t i=0; i<nelm; i++) {
306 const G4Element* elm = (*theElementVector)[i];
307 cross += theAtomNumDensityVector[i]*
321 localDP.SetKineticEnergy(kineticEnergy);
348 const G4double* theAtomNumDensityVector =
351 for (
size_t i=0; i<nelm; ++i) {
352 const G4Element* elm = (*theElementVector)[i];
353 cross += theAtomNumDensityVector[i]*
367 localDP.SetKineticEnergy(kineticEnergy);
389 for(
G4int i=0; i<n_proc; ++i) {
390 if(process[i] == proc) {
return; }
392 if(1 < param->GetVerboseLevel()) {
393 G4cout <<
"G4HadronicProcessStore::Register hadronic " << n_proc
397 process.push_back(proc);
406 for(; i<n_proc; ++i) {
if(process[i] == proc)
break;}
408 for(; j<n_part; ++j) {
if(particle[j] == part)
break;}
410 if(1 < param->GetVerboseLevel()) {
411 G4cout <<
"G4HadronicProcessStore::RegisterParticle "
417 particle.push_back(part);
418 wasPrinted.push_back(0);
423 std::multimap<PD,HP,std::less<PD> >::iterator it;
424 for(it=p_map.lower_bound(part); it!=p_map.upper_bound(part); ++it) {
425 if(it->first == part) {
426 HP process2 = (it->second);
427 if(proc == process2) {
return; }
432 p_map.insert(std::multimap<PD,HP>::value_type(part,proc));
441 for(; i<n_proc; ++i) {
if(process[i] == proc) {
break; }}
443 for(; k<n_model; ++k) {
if(model[k] == mod) {
break; }}
445 m_map.insert(std::multimap<HP,HI>::value_type(proc,mod));
449 model.push_back(mod);
458 for(
G4int i=0; i<n_proc; ++i) {
459 if(process[i] == proc) {
460 process[i] =
nullptr;
470 for(
G4int i=0; i<n_extra; ++i) {
471 if(extraProcess[i] == proc) {
return; }
474 if (
nullptr != hproc) {
475 for(
G4int i=0; i<n_proc; ++i) {
476 if(process[i] == hproc) {
return; }
479 if(1 < param->GetVerboseLevel()) {
480 G4cout <<
"Extra Process: " << n_extra
484 extraProcess.push_back(proc);
494 for(; i<n_extra; ++i) {
if(extraProcess[i] == proc) {
break; } }
496 for(; j<n_part; ++j) {
if(particle[j] == part) {
break; } }
500 particle.push_back(part);
501 wasPrinted.push_back(0);
506 std::multimap<PD,G4VProcess*,std::less<PD> >::iterator it;
507 for(it=ep_map.lower_bound(part); it!=ep_map.upper_bound(part); ++it) {
508 if(it->first == part) {
510 if(proc == process2) {
return; }
515 ep_map.insert(std::multimap<PD,G4VProcess*>::value_type(part,proc));
522 for(
G4int i=0; i<n_extra; ++i) {
523 if(extraProcess[i] == proc) {
524 extraProcess[i] =
nullptr;
525 if(1 < param->GetVerboseLevel()) {
526 G4cout <<
"Extra Process: " << i <<
" "
554 if(buildTableStart && part == particle[n_part - 1]) {
555 buildTableStart =
false;
556 Dump(param->GetVerboseLevel());
557 if (!(param->GetPhysListDocDir()).empty())
DumpHtml();
570 const G4String& dir = param->GetPhysListDocDir();
571 const G4String& pl = param->GetPhysListName();
572 if (!dir.empty() && !pl.empty()) {
575 G4String pathName = dir +
"/" + pl +
".html";
576 std::ofstream outFile;
577 outFile.open(pathName);
580 outFile <<
"<html>\n";
581 outFile <<
"<head>\n";
582 outFile <<
"<title>Physics List Summary</title>\n";
583 outFile <<
"</head>\n";
584 outFile <<
"<body>\n";
585 outFile <<
"<h2> Summary of Hadronic Processes, Models and Cross Sections"
586 <<
" for Physics List " << pl <<
"</h2>\n";
603 outFile <<
"</ul>\n";
604 outFile <<
"</body>\n";
605 outFile <<
"</html>\n";
613 std::ofstream& outFile)
619 outFile <<
"<br> <li><h2><font color=\" ff0000 \">"
622 typedef std::multimap<PD,HP,std::less<PD> > PDHPmap;
623 typedef std::multimap<HP,HI,std::less<HP> > HPHImap;
625 std::pair<PDHPmap::iterator, PDHPmap::iterator> itpart =
626 p_map.equal_range(theParticle);
628 const G4String& pl = param->GetPhysListName();
632 for (PDHPmap::iterator it = itpart.first; it != itpart.second; ++it) {
633 theProcess = (*it).second;
634 outFile <<
"<br> <b><font color=\" 0000ff \">process : "
639 outFile <<
" <li><b><font color=\" 00AA00 \">models : </font></b>\n";
641 std::pair<HPHImap::iterator, HPHImap::iterator> itmod =
642 m_map.equal_range(theProcess);
644 outFile <<
" <ul>\n";
646 for (HPHImap::iterator jt = itmod.first; jt != itmod.second; ++jt) {
647 outFile <<
" <li><b><a href=\"" << pl <<
"_"
648 << HtmlFileName((*jt).second->GetModelName()) <<
"\"> "
649 << (*jt).second->GetModelName() <<
"</a>"
650 <<
" from " << (*jt).second->GetMinEnergy()/GeV
651 <<
" GeV to " << (*jt).second->GetMaxEnergy()/GeV
652 <<
" GeV </b></li>\n";
658 outFile <<
" </ul>\n";
659 outFile <<
" </li>\n";
662 outFile <<
" <li><b><font color=\" 00AA00 \">cross sections : </font></b>\n";
663 outFile <<
" <ul>\n";
666 outFile <<
" </ul>\n";
668 outFile <<
" </li>\n";
669 outFile <<
"</ul>\n";
674 std::multimap<PD,G4VProcess*,std::less<PD> >::iterator itp;
675 for (itp=ep_map.lower_bound(theParticle); itp!=ep_map.upper_bound(theParticle); ++itp) {
676 if (itp->first == theParticle) {
678 outFile <<
"<br> <b><font color=\" 0000ff \">process : "
683 outFile <<
" </li>\n";
684 outFile <<
"</ul>\n";
695 const G4String& dir = param->GetPhysListDocDir();
696 const G4String& pl = param->GetPhysListName();
698 std::ofstream outModel;
699 outModel.open(pathName);
700 outModel <<
"<html>\n";
701 outModel <<
"<head>\n";
702 outModel <<
"<title>Description of " << mod->
GetModelName()
704 outModel <<
"</head>\n";
705 outModel <<
"<body>\n";
709 outModel <<
"</body>\n";
710 outModel <<
"</html>\n";
720 std::transform(str.begin(), str.end(), str.begin(), [](
char ch) {
721 return ch ==
' ' ?
'_' : ch;
731 G4int level = std::max(param->GetVerboseLevel(), verb);
732 if (0 == level)
return;
735 <<
"\n====================================================================\n"
736 << std::setw(60) <<
"HADRONIC PROCESSES SUMMARY (verbose level "
737 << level <<
")" <<
G4endl;
739 for (
G4int i=0; i<n_part; ++i) {
740 PD part = particle[i];
744 if (level == 1 && (pname ==
"proton" ||
745 pname ==
"neutron" ||
746 pname ==
"deuteron" ||
756 pname ==
"anti_nu_e" ||
758 pname ==
"anti_nu_mu" ||
764 pname ==
"anti_lambda" ||
768 pname ==
"GenericIon" ||
769 pname ==
"hypertriton" ||
770 pname ==
"anti_neutron" ||
771 pname ==
"anti_proton" ||
772 pname ==
"anti_deuteron" ||
773 pname ==
"anti_triton" ||
774 pname ==
"anti_He3" ||
775 pname ==
"anti_alpha" ||
776 pname ==
"anti_hypertriton")) yes =
true;
777 if (level > 1) yes =
true;
780 std::multimap<PD,HP,std::less<PD> >::iterator it;
782 for (it=p_map.lower_bound(part); it!=p_map.upper_bound(part); ++it) {
783 if (it->first == part) {
784 HP proc = (it->second);
786 for (; j<n_proc; ++j) {
787 if (process[j] == proc) { Print(j, i); }
793 std::multimap<PD,G4VProcess*,std::less<PD> >::iterator itp;
794 for(itp=ep_map.lower_bound(part); itp!=ep_map.upper_bound(part); ++itp) {
795 if(itp->first == part) {
797 if (wasPrinted[i] == 0) {
798 G4cout <<
"-------------------------------------------------------------------------\n"
799 << std::setw(50) <<
"Hadronic Processes for "
812void G4HadronicProcessStore::Print(
G4int idxProc,
G4int idxPart)
816 if(part ==
nullptr || proc ==
nullptr) {
return; }
817 if (wasPrinted[idxPart] == 0) {
818 G4cout <<
"-----------------------------------------------------------------------\n"
819 << std::setw(50) <<
"Hadronic Processes for "
821 wasPrinted[idxPart] = 1;
827 G4String stringEnergyPerNucleon =
"";
830 stringEnergyPerNucleon =
"/n";
833 if(param->ApplyFactorXS()) {
838 if(pdg == 2212 || pdg == 2112) {
839 fact = param->XSFactorNucleonInelastic();
840 }
else if(std::abs(pdg) == 211) {
841 fact = param->XSFactorPionInelastic();
843 fact = param->XSFactorHadronInelastic();
846 if(pdg == 2212 || pdg == 2112) {
847 fact = param->XSFactorNucleonElastic();
848 }
else if(std::abs(pdg) == 211) {
849 fact = param->XSFactorPionElastic();
851 fact = param->XSFactorHadronElastic();
854 if(std::abs(fact - 1.0) > 1.e-6) {
855 G4cout <<
" XSfactor= " << fact;
860 std::multimap<HP,HI,std::less<HP> >::iterator ih;
861 for(ih=m_map.lower_bound(proc); ih!=m_map.upper_bound(proc); ++ih) {
862 if(ih->first == proc) {
865 for(; i<n_model; ++i) {
866 if(model[i] == hi) {
break; }
868 G4cout <<
"\n Model: " << std::setw(25) << modelName[i] <<
": "
870 << stringEnergyPerNucleon <<
" ---> "
872 << stringEnergyPerNucleon;
887 for(i=0; i<n_proc; ++i) {
888 if(process[i]) { process[i]->SetVerboseLevel(val); }
890 for(i=0; i<n_model; ++i) {
891 if(model[i]) { model[i]->SetVerboseLevel(val); }
899 return param->GetVerboseLevel();
909 localDP.SetDefinition(part);
911 if(part != currentParticle) {
916 if(p != currentParticle) {
922 if(!currentProcess) {
924 }
else if(subType == currentProcess->GetProcessSubType()) {
931 std::multimap<PD,HP,std::less<PD> >::iterator it;
932 for(it=p_map.lower_bound(currentParticle);
933 it!=p_map.upper_bound(currentParticle); ++it) {
934 if(it->first == currentParticle &&
935 subType == (it->second)->GetProcessSubType()) {
949 G4cout <<
" Setting energy/momentum report level to " << level
950 <<
" for " << process.size() <<
" hadronic processes " <<
G4endl;
951 for (
auto& theProcess : process) {
952 theProcess->SetEpReportLevel(level);
960 G4cout <<
" Setting absolute energy/momentum test level to " << abslevel
962 for (
auto& theProcess : process) {
963 G4double rellevel = theProcess->GetEnergyMomentumCheckLevels().first;
964 theProcess->SetEnergyMomentumCheckLevels(rellevel, abslevel);
972 G4cout <<
" Setting relative energy/momentum test level to " << rellevel
974 for (
auto& theProcess : process) {
975 G4double abslevel = theProcess->GetEnergyMomentumCheckLevels().second;
976 theProcess->SetEnergyMomentumCheckLevels(rellevel, abslevel);
std::vector< const G4Element * > G4ElementVector
G4GLOB_DLL std::ostream G4cout
void DumpHtml(const G4ParticleDefinition &, std::ofstream &) const
void DumpPhysicsTable(const G4ParticleDefinition &)
static G4Electron * Electron()
static G4GenericIon * Definition()
static G4GenericIon * GenericIon()
static G4HadronicInteractionRegistry * Instance()
virtual void ModelDescription(std::ostream &outFile) const
const G4String & GetModelName() const
static G4HadronicParameters * Instance()
void DeRegister(G4HadronicProcess *)
G4double GetCaptureCrossSectionPerAtom(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Element *anElement, const G4Material *mat=nullptr)
G4double GetCaptureCrossSectionPerIsotope(const G4ParticleDefinition *aParticle, G4double kineticEnergy, G4int Z, G4int A)
G4double GetCrossSectionPerVolume(const G4ParticleDefinition *particle, G4double kineticEnergy, const G4VProcess *process, const G4Material *material)
~G4HadronicProcessStore()
G4double GetCaptureCrossSectionPerVolume(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Material *material)
G4HadronicProcess * FindProcess(const G4ParticleDefinition *, G4HadronicProcessType subType)
void RegisterParticle(G4HadronicProcess *, const G4ParticleDefinition *)
G4double GetChargeExchangeCrossSectionPerVolume(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Material *material)
void PrintHtml(const G4ParticleDefinition *, std::ofstream &)
void SetProcessAbsLevel(G4double absoluteLevel)
G4double GetChargeExchangeCrossSectionPerIsotope(const G4ParticleDefinition *aParticle, G4double kineticEnergy, G4int Z, G4int A)
G4double GetFissionCrossSectionPerIsotope(const G4ParticleDefinition *aParticle, G4double kineticEnergy, G4int Z, G4int A)
G4double GetInelasticCrossSectionPerAtom(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Element *anElement, const G4Material *mat=nullptr)
G4double GetInelasticCrossSectionPerIsotope(const G4ParticleDefinition *aParticle, G4double kineticEnergy, G4int Z, G4int A)
G4double GetInelasticCrossSectionPerVolume(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Material *material)
void SetProcessRelLevel(G4double relativeLevel)
void DeRegisterExtraProcess(G4VProcess *)
void SetBuildXSTable(G4bool val)
G4double GetFissionCrossSectionPerAtom(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Element *anElement, const G4Material *mat=nullptr)
G4double GetChargeExchangeCrossSectionPerAtom(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Element *anElement, const G4Material *mat=nullptr)
void RegisterExtraProcess(G4VProcess *)
G4double GetElasticCrossSectionPerVolume(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Material *material)
void RegisterParticleForExtraProcess(G4VProcess *, const G4ParticleDefinition *)
void SetEpReportLevel(G4int level)
static G4HadronicProcessStore * Instance()
G4double GetElasticCrossSectionPerAtom(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Element *anElement, const G4Material *mat=0)
void RegisterInteraction(G4HadronicProcess *, G4HadronicInteraction *)
G4double GetCrossSectionPerAtom(const G4ParticleDefinition *particle, G4double kineticEnergy, const G4VProcess *process, const G4Element *element, const G4Material *material=nullptr)
void SetVerbose(G4int val)
G4bool GetBuildXSTable() const
void Register(G4HadronicProcess *)
void PrintModelHtml(const G4HadronicInteraction *model) const
G4double GetElasticCrossSectionPerIsotope(const G4ParticleDefinition *aParticle, G4double kineticEnergy, G4int Z, G4int A)
void PrintInfo(const G4ParticleDefinition *)
G4double GetFissionCrossSectionPerVolume(const G4ParticleDefinition *aParticle, G4double kineticEnergy, const G4Material *material)
void ProcessDescription(std::ostream &outFile) const override
G4double GetElementCrossSection(const G4DynamicParticle *part, const G4Element *elm, const G4Material *mat=nullptr)
G4CrossSectionDataStore * GetCrossSectionDataStore()
static G4KaonMinus * KaonMinus()
static G4KaonPlus * KaonPlus()
static G4Lambda * Lambda()
const G4ElementVector * GetElementVector() const
const G4double * GetVecNbOfAtomsPerVolume() const
std::size_t GetNumberOfElements() const
static G4Neutron * Neutron()
const G4String & GetParticleType() const
G4int GetPDGEncoding() const
G4int GetBaryonNumber() const
const G4String & GetParticleName() const
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()
static G4PionMinus * PionMinus()
static G4PionPlus * PionPlus()
static G4Positron * Positron()
static G4Proton * Proton()
virtual void ProcessDescription(std::ostream &outfile) const
G4int GetProcessSubType() const
const G4String & GetProcessName() const