Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:05:12

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file hadronic/Hadr02/src/HadronPhysicsUrQMD.cc
0027 /// \brief Implementation of the HadronPhysicsUrQMD class
0028 //
0029 //
0030 //---------------------------------------------------------------------------
0031 //
0032 // ClassName:
0033 //
0034 // Author: 2012 A. Dotti
0035 //   created from HadronPhysicsUrQMD
0036 //
0037 // Modified:
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0077 
0078 void HadronPhysicsUrQMD::CreateModels()
0079 {
0080   fNeutrons = new G4NeutronBuilder;
0081   fUrQMDNeutron = new UrQMDNeutronBuilder();  // put fission and capture here
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   // For Hyperons use FTF model
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0136 
0137 void HadronPhysicsUrQMD::ConstructProcess()
0138 {
0139   CreateModels();
0140   fNeutrons->Build();
0141   fPro->Build();
0142   fPiK->Build();
0143 
0144   // use CHIPS cross sections also for Kaons
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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  // G4_USE_URQMD