Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // ********************************************************************
0002 // * License and Disclaimer                                           *
0003 // *                                                                  *
0004 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0005 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0006 // * conditions of the Geant4 Software License,  included in the file *
0007 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0008 // * include a list of copyright holders.                             *
0009 // *                                                                  *
0010 // * Neither the authors of this software system, nor their employing *
0011 // * institutes,nor the agencies providing financial support for this *
0012 // * work  make  any representation or  warranty, express or implied, *
0013 // * regarding  this  software system or assume any liability for its *
0014 // * use.  Please see the license in the file  LICENSE  and URL above *
0015 // * for the full disclaimer and the limitation of liability.         *
0016 // *                                                                  *
0017 // * This  code  implementation is the result of  the  scientific and *
0018 // * technical work of the GEANT4 collaboration.                      *
0019 // * By using,  copying,  modifying or  distributing the software (or *
0020 // * any work based  on the software)  you  agree  to acknowledge its *
0021 // * use  in  resulting  scientific  publications,  and indicate your *
0022 // * acceptance of all terms of the Geant4 Software license.          *
0023 // ********************************************************************
0024 //
0025 /// \file hadronic/Hadr02/include/HadronPhysicsCRMC_FTFP_BERT.hh
0026 /// \brief Definition of the HadronPhysicsCRMC_FTFP_BERT class
0027 //
0028 //
0029 //---------------------------------------------------------------------------
0030 //
0031 // ClassName: HadronPhysicsCRMC_FTFP_BERT
0032 //
0033 // Author:    2018 Alberto Ribon
0034 //
0035 // This is a variant of HadronPhysicsFTFP_BERT whereby CRMC is used
0036 // for modeling final-state for pion- , kaon- , proton- and neutron-
0037 // nuclear inelastic interactions at very high energies.
0038 // For other hadron projectile types (e.g. hyperons, antinucleons and
0039 // antihyperons) the usual FTFP_BERT approach is used at all energies.
0040 // The inelastic hadronic cross sections are, for all hadron projectiles
0041 // and energies, the usual ones (exactly as in FTFP_BERT).
0042 //
0043 // Modified:
0044 // -  18-May-2021 Alberto Ribon : Migrated to newer physics constructor
0045 //                                and used the latest Geant4-CRMC interface.
0046 //
0047 //----------------------------------------------------------------------------
0048 //
0049 #ifndef HadronPhysicsCRMC_FTFP_BERT_h
0050 #define HadronPhysicsCRMC_FTFP_BERT_h 1
0051 
0052 #include "G4HadronPhysicsFTFP_BERT.hh"
0053 
0054 class HadronPhysicsCRMC_FTFP_BERT : public G4HadronPhysicsFTFP_BERT
0055 {
0056   public:
0057     HadronPhysicsCRMC_FTFP_BERT(G4int verbose = 1);
0058     HadronPhysicsCRMC_FTFP_BERT(const G4String& name, G4bool quasiElastic = false);
0059     ~HadronPhysicsCRMC_FTFP_BERT() override;
0060 
0061     // copy constructor and hide assignment operator
0062     HadronPhysicsCRMC_FTFP_BERT(HadronPhysicsCRMC_FTFP_BERT&) = delete;
0063     HadronPhysicsCRMC_FTFP_BERT& operator=(const HadronPhysicsCRMC_FTFP_BERT& right) = delete;
0064 
0065   protected:
0066     virtual void Neutron() override;
0067     virtual void Proton() override;
0068     virtual void Pion() override;
0069     virtual void Kaon() override;
0070 
0071   private:
0072     G4int fModel;  // 0:EPOS-LHC, 1:EPOS-1.99, 2:QGSJET:01, 6:SIBYLL-2.3,
0073     static const std::array<std::string, 13>
0074       fModelNames;  // 7:QGSJETII-04, 11:QGSJETII-03, 12:DPMJET-3.06
0075     G4double fMinCRMC;
0076     G4double fMaxFTFP;
0077 };
0078 
0079 #endif