Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:22

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 //
0027 // Geant4 header G4HadronicBuilder
0028 //
0029 // Author V.Ivanchenko 14.05.2020
0030 //
0031 // Build hadronic physics 
0032 //
0033 
0034 #ifndef G4HadronicBuilder_h
0035 #define G4HadronicBuilder_h 1
0036 
0037 #include "globals.hh"
0038 #include <vector>
0039 
0040 #include "G4VComponentCrossSection.hh"
0041 #include "G4VCrossSectionDataSet.hh"
0042 
0043 class G4HadronicBuilder
0044 {
0045 private:
0046 
0047   // generic methods, Glauber-Gribov cross sections are used.
0048   // if the boolean "bert" is true (false) then Bertini cascade is (not) built;
0049   // when "bert" is false, then FTFP is used down to zero kinetic energy.
0050   
0051   static void BuildFTFP_BERT(const std::vector<G4int>& particleList, 
0052                              G4bool bert, const G4String& xsName);
0053 
0054   static void BuildFTFQGSP_BERT(const std::vector<G4int>& particleList, 
0055                                 G4bool bert, const G4String& xsName);
0056 
0057   static void BuildQGSP_FTFP_BERT(const std::vector<G4int>& particleList, 
0058                                   G4bool bert, G4bool quasiElastic,
0059                                   const G4String& xsName);
0060 
0061   static void BuildINCLXX(const std::vector<G4int>& particleList, 
0062                              G4bool bert, const G4String& xsName);
0063 
0064 
0065 public:
0066 
0067   // methods to build elastic and inelastic physics per particle category
0068   static void BuildElastic(const std::vector<G4int>& particleList);
0069 
0070   static void BuildHyperonsFTFP_BERT();
0071 
0072   static void BuildHyperonsFTFQGSP_BERT();
0073 
0074   static void BuildHyperonsQGSP_FTFP_BERT(G4bool quasiElastic);
0075 
0076   static void BuildKaonsFTFP_BERT();
0077 
0078   static void BuildKaonsFTFQGSP_BERT();
0079 
0080   static void BuildKaonsQGSP_FTFP_BERT(G4bool quasiElastic);
0081 
0082   static void BuildAntiLightIonsFTFP();
0083 
0084   static void BuildAntiLightIonsINCLXX();
0085 
0086   //static void BuildAntiLightIonsQGSP_FTFP(G4bool quasiElastic);
0087 
0088   static void BuildBCHadronsFTFP_BERT();
0089 
0090   static void BuildBCHadronsFTFQGSP_BERT();
0091 
0092   static void BuildBCHadronsQGSP_FTFP_BERT(G4bool quasiElastic);
0093 
0094   // method to create some decays for heavy hadrons
0095   static void BuildDecayTableForBCHadrons();
0096 
0097   // methods for nuclear interactions of light hypernuclei and anti-hypernuclei projectiles
0098   // (note that: QGS cannot handle nuclei projectiles of any kind; INCLXX is currently
0099   // the only intra-nuclear cascade model capable of handling light hypernuclei - but not
0100   // light anti-hypernuclei - so only the two reference physics lists FTFP_BERT and 
0101   // FTFP_INCLXX are able to simulate nuclear interactions of light hypernuclei and
0102   //  anti-hypernuclei).
0103   static void BuildHyperNucleiFTFP_BERT();
0104   static void BuildHyperAntiNucleiFTFP_BERT();
0105   static void BuildHyperNucleiFTFP_INCLXX();
0106   static void BuildFTFP_INCLXX( const std::vector< G4int >& partList, const G4String& xsName );
0107 };
0108 
0109 #endif