Back to home page

EIC code displayed by LXR

 
 

    


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

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 // *                                                                  *
0021 // * Parts of this code which have been  developed by Abdel-Waged     *
0022 // * et al under contract (31-465) to the King Abdul-Aziz City for    *
0023 // * Science and Technology (KACST), the National Centre of           *
0024 // * Mathematics and Physics (NCMP), Saudi Arabia.                    *
0025 // *                                                                  *
0026 // * By using,  copying,  modifying or  distributing the software (or *
0027 // * any work based  on the software)  you  agree  to acknowledge its *
0028 // * use  in  resulting  scientific  publications,  and indicate your *
0029 // * acceptance of all terms of the Geant4 Software license.          *
0030 // ********************************************************************
0031 //
0032 /// \file hadronic/Hadr02/include/G4UrQMD1_3Model.hh
0033 /// \brief Definition of the G4UrQMD1_3Model class
0034 //
0035 //
0036 
0037 #ifndef G4UrQMD1_3Model_hh
0038 #define G4UrQMD1_3Model_hh
0039 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0040 //
0041 // MODULE:           G4UrQMD1_3Model.hh
0042 //
0043 // Version:          0.B
0044 // Date:             20/10/12
0045 // Author:           Kh. Abdel-Waged and Nuha Felemban
0046 // Revised by:       V.V. Uzhinskii
0047 //                   SPONSERED BY
0048 // Customer:         KAUST/NCMP
0049 // Contract:         31-465
0050 //
0051 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0052 //
0053 // Class Description
0054 //
0055 //
0056 // Class Description - End
0057 //
0058 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0059 ///////////////////////////////////////////////////////////////////////////////
0060 
0061 #include "G4FragmentVector.hh"
0062 #include "G4IntraNucleiCascader.hh"
0063 #include "G4KineticTrackVector.hh"
0064 #include "G4Nucleon.hh"
0065 #include "G4Nucleus.hh"
0066 #include "G4ParticleChange.hh"
0067 #include "G4ReactionProduct.hh"
0068 #include "G4ReactionProductVector.hh"
0069 #include "G4Track.hh"
0070 #include "G4VIntraNuclearTransportModel.hh"
0071 
0072 #include <fstream>
0073 #include <string>
0074 
0075 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0076 class G4UrQMD1_3Model : public G4VIntraNuclearTransportModel
0077 {
0078   public:
0079     G4UrQMD1_3Model(const G4String& name = "UrQMD1_3");
0080 
0081     virtual ~G4UrQMD1_3Model();
0082 
0083     G4ReactionProductVector* Propagate(G4KineticTrackVector* theSecondaries,
0084                                        G4V3DNucleus* theTarget);
0085 
0086     virtual G4HadFinalState* ApplyYourself(const G4HadProjectile&, G4Nucleus&);
0087 
0088   private:
0089     G4bool operator==(G4UrQMD1_3Model& right);
0090     G4bool operator!=(G4UrQMD1_3Model& right);
0091 
0092     void InitialiseDataTables();
0093 
0094     void WelcomeMessage() const;
0095 
0096     G4int CurrentEvent;
0097     G4int verbose;
0098 
0099     G4HadFinalState theResult;
0100 };
0101 
0102 #endif