File indexing completed on 2025-04-04 08:05:13
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 "IonUrQMDPhysics.hh"
0043
0044 # include "G4Alpha.hh"
0045 # include "G4BuilderType.hh"
0046 # include "G4ComponentGGNuclNuclXsc.hh"
0047 # include "G4CrossSectionInelastic.hh"
0048 # include "G4Deuteron.hh"
0049 # include "G4GenericIon.hh"
0050 # include "G4HadronInelasticProcess.hh"
0051 # include "G4HadronicParameters.hh"
0052 # include "G4He3.hh"
0053 # include "G4ParticleDefinition.hh"
0054 # include "G4ProcessManager.hh"
0055 # include "G4SystemOfUnits.hh"
0056 # include "G4Triton.hh"
0057 # include "G4UrQMD1_3Model.hh"
0058
0059 using namespace std;
0060
0061
0062
0063 IonUrQMDPhysics::IonUrQMDPhysics(G4int ver)
0064 : G4VHadronPhysics("ionInelasticUrQMD"), verbose(ver), fWasActivated(false)
0065 {
0066 fIonXS = nullptr;
0067 fModel = nullptr;
0068 SetPhysicsType(bIons);
0069 if (fVerbose > 1) {
0070 G4cout << "### IonUrQMDPhysics" << G4endl;
0071 }
0072 }
0073
0074
0075
0076 IonUrQMDPhysics::~IonUrQMDPhysics() {}
0077
0078
0079 void IonUrQMDPhysics::ConstructProcess()
0080 {
0081 if (fWasActivated) {
0082 return;
0083 }
0084 fWasActivated = true;
0085
0086 G4double emin = 0. * MeV;
0087 G4double emax = G4HadronicParameters::Instance()->GetMaxEnergy();
0088
0089 fModel = new G4UrQMD1_3Model();
0090 fModel->SetMinEnergy(emin);
0091 fModel->SetMaxEnergy(emax);
0092
0093 fIonXS = new G4CrossSectionInelastic(new G4ComponentGGNuclNuclXsc);
0094
0095 AddProcess("dInelastic", G4Deuteron::Deuteron());
0096 AddProcess("tInelastic", G4Triton::Triton());
0097 AddProcess("He3Inelastic", G4He3::He3());
0098 AddProcess("alphaInelastic", G4Alpha::Alpha());
0099 AddProcess("ionInelastic", G4GenericIon::GenericIon());
0100
0101 if (fVerbose > 1) {
0102 G4cout << "IonUrQMDPhysics::ConstructProcess done! " << G4endl;
0103 }
0104 }
0105
0106
0107
0108 void IonUrQMDPhysics::AddProcess(const G4String& name, G4ParticleDefinition* part)
0109 {
0110 G4HadronInelasticProcess* hadi = new G4HadronInelasticProcess(name, part);
0111 G4ProcessManager* pManager = part->GetProcessManager();
0112 pManager->AddDiscreteProcess(hadi);
0113 hadi->AddDataSet(fIonXS);
0114 hadi->RegisterMe(fModel);
0115 }
0116
0117
0118 #endif