Back to home page

EIC code displayed by LXR

 
 

    


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

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/IonUrQMDPhysics.cc
0027 /// \brief Implementation of the IonUrQMDPhysics class
0028 //
0029 //
0030 //---------------------------------------------------------------------------
0031 //
0032 // Class:    IonUrQMDPhysics
0033 //
0034 // Author:   2012 Andrea Dotti
0035 //
0036 //
0037 // Modified:
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0075 
0076 IonUrQMDPhysics::~IonUrQMDPhysics() {}
0077 
0078 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0118 #endif  // URQMD