File indexing completed on 2025-04-04 08:05:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041 #ifdef G4_USE_URQMD
0042 # include "HadronPhysicsUrQMD.hh"
0043
0044 # include "G4BaryonConstructor.hh"
0045 # include "G4ChipsKaonMinusInelasticXS.hh"
0046 # include "G4ChipsKaonPlusInelasticXS.hh"
0047 # include "G4ChipsKaonZeroInelasticXS.hh"
0048 # include "G4CrossSectionDataSetRegistry.hh"
0049 # include "G4MesonConstructor.hh"
0050 # include "G4ParticleDefinition.hh"
0051 # include "G4ParticleTable.hh"
0052 # include "G4PhysicalConstants.hh"
0053 # include "G4ProcessManager.hh"
0054 # include "G4ShortLivedConstructor.hh"
0055 # include "G4SystemOfUnits.hh"
0056 # include "G4ios.hh"
0057 # include "globals.hh"
0058
0059 # include <iomanip>
0060
0061
0062
0063 HadronPhysicsUrQMD::HadronPhysicsUrQMD(G4int) : G4VPhysicsConstructor("hInelastic UrQMD")
0064 {
0065 fNeutrons = 0;
0066 fUrQMDNeutron = 0;
0067 fPiK = 0;
0068 fUrQMDPiK = 0;
0069 fPro = 0;
0070 fUrQMDPro = 0;
0071 fHyperon = 0;
0072 fFTFPHyperon = 0;
0073 fAntiBaryon = 0;
0074 }
0075
0076
0077
0078 void HadronPhysicsUrQMD::CreateModels()
0079 {
0080 fNeutrons = new G4NeutronBuilder;
0081 fUrQMDNeutron = new UrQMDNeutronBuilder();
0082 fNeutrons->RegisterMe(fUrQMDNeutron);
0083
0084 fPro = new G4ProtonBuilder;
0085 fUrQMDPro = new UrQMDProtonBuilder();
0086 fPro->RegisterMe(fUrQMDPro);
0087
0088 fPiK = new G4PiKBuilder;
0089 fUrQMDPiK = new UrQMDPiKBuilder();
0090 fPiK->RegisterMe(fUrQMDPiK);
0091
0092
0093 fHyperon = new G4HyperonBuilder;
0094 fFTFPHyperon = new G4HyperonFTFPBuilder;
0095 fHyperon->RegisterMe(fFTFPHyperon);
0096
0097 fAntiBaryon = new G4AntiBarionBuilder;
0098 fUrQMDAntiBaryon = new UrQMDAntiBarionBuilder();
0099 fAntiBaryon->RegisterMe(fUrQMDAntiBaryon);
0100 }
0101
0102
0103
0104 HadronPhysicsUrQMD::~HadronPhysicsUrQMD()
0105 {
0106 delete fNeutrons;
0107 delete fUrQMDNeutron;
0108
0109 delete fPiK;
0110 delete fUrQMDPiK;
0111
0112 delete fPro;
0113 delete fUrQMDPro;
0114
0115 delete fHyperon;
0116 delete fFTFPHyperon;
0117 delete fAntiBaryon;
0118 delete fUrQMDAntiBaryon;
0119 }
0120
0121
0122
0123 void HadronPhysicsUrQMD::ConstructParticle()
0124 {
0125 G4MesonConstructor pMesonConstructor;
0126 pMesonConstructor.ConstructParticle();
0127
0128 G4BaryonConstructor pBaryonConstructor;
0129 pBaryonConstructor.ConstructParticle();
0130
0131 G4ShortLivedConstructor pShortLivedConstructor;
0132 pShortLivedConstructor.ConstructParticle();
0133 }
0134
0135
0136
0137 void HadronPhysicsUrQMD::ConstructProcess()
0138 {
0139 CreateModels();
0140 fNeutrons->Build();
0141 fPro->Build();
0142 fPiK->Build();
0143
0144
0145 ChipsKaonMinus = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(
0146 G4ChipsKaonMinusInelasticXS::Default_Name());
0147 ChipsKaonPlus = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(
0148 G4ChipsKaonPlusInelasticXS::Default_Name());
0149 ChipsKaonZero = G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(
0150 G4ChipsKaonZeroInelasticXS::Default_Name());
0151
0152
0153 G4PhysListUtil::FindInelasticProcess(G4KaonMinus::KaonMinus())->AddDataSet(ChipsKaonMinus);
0154 G4PhysListUtil::FindInelasticProcess(G4KaonPlus::KaonPlus())->AddDataSet(ChipsKaonPlus);
0155 G4PhysListUtil::FindInelasticProcess(G4KaonZeroShort::KaonZeroShort())->AddDataSet(ChipsKaonZero);
0156 G4PhysListUtil::FindInelasticProcess(G4KaonZeroLong::KaonZeroLong())->AddDataSet(ChipsKaonZero);
0157
0158 fHyperon->Build();
0159 fAntiBaryon->Build();
0160 }
0161
0162
0163
0164 G4HadronicProcess* HadronPhysicsUrQMD::FindInelasticProcess(const G4ParticleDefinition* p)
0165 {
0166 G4HadronicProcess* had = 0;
0167 if (p) {
0168 G4ProcessVector* pvec = p->GetProcessManager()->GetProcessList();
0169 size_t n = pvec->size();
0170 if (0 < n) {
0171 for (size_t i = 0; i < n; ++i) {
0172 if (fHadronInelastic == ((*pvec)[i])->GetProcessSubType()) {
0173 had = static_cast<G4HadronicProcess*>((*pvec)[i]);
0174 break;
0175 }
0176 }
0177 }
0178 }
0179 return had;
0180 }
0181
0182 #endif