Back to home page

EIC code displayed by LXR

 
 

    


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

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 // INCL++ intra-nuclear cascade model
0027 // Alain Boudard, CEA-Saclay, France
0028 // Joseph Cugnon, University of Liege, Belgium
0029 // Jean-Christophe David, CEA-Saclay, France
0030 // Pekka Kaitaniemi, CEA-Saclay, France, and Helsinki Institute of Physics, Finland
0031 // Sylvie Leray, CEA-Saclay, France
0032 // Davide Mancusi, CEA-Saclay, France
0033 //
0034 #define INCLXX_IN_GEANT4_MODE 1
0035 
0036 #include "globals.hh"
0037 
0038 #ifndef G4INCLConfigEnums_hh
0039 #define G4INCLConfigEnums_hh
0040 
0041 namespace G4INCL {
0042 
0043   // Enumerator for Pauli-blocking algorithms
0044   enum PauliType {
0045     StatisticalPauli,
0046     StrictPauli,
0047     StrictStatisticalPauli,
0048     GlobalPauli,
0049     NoPauli
0050   };
0051 
0052   // Enumerator for Coulomb-distortion algorithms
0053   enum CoulombType {
0054     NonRelativisticCoulomb,
0055     NoCoulomb
0056   };
0057 
0058   // Enumerator for potential types
0059   enum PotentialType {
0060     IsospinEnergySmoothPotential,
0061     IsospinEnergyPotential,
0062     IsospinPotential,
0063     ConstantPotential
0064   };
0065 
0066   // Enumerator for local-energy types
0067   enum LocalEnergyType {
0068     AlwaysLocalEnergy,
0069     FirstCollisionLocalEnergy,
0070     NeverLocalEnergy
0071   };
0072 
0073   // Enumerator for de-excitation types
0074   enum DeExcitationType {
0075     DeExcitationNone
0076 #ifdef INCL_DEEXCITATION_ABLAXX
0077     , DeExcitationABLAXX
0078 #endif
0079 #ifdef INCL_DEEXCITATION_ABLA07
0080     , DeExcitationABLA07
0081 #endif
0082 #ifdef INCL_DEEXCITATION_SMM
0083     , DeExcitationSMM
0084 #endif
0085 #ifdef INCL_DEEXCITATION_GEMINIXX
0086     , DeExcitationGEMINIXX
0087 #endif
0088   };
0089 
0090   // Enumerator for cluster-algorithm types
0091   enum ClusterAlgorithmType {
0092     IntercomparisonClusterAlgorithm,
0093     NoClusterAlgorithm
0094   };
0095 
0096   // Enumerator for separation-energy types
0097   enum SeparationEnergyType {
0098     INCLSeparationEnergy,
0099     RealSeparationEnergy,
0100     RealForLightSeparationEnergy
0101   };
0102 
0103   // Enumerator for Fermi-momentum types
0104   enum FermiMomentumType {
0105     ConstantFermiMomentum,
0106     ConstantLightFermiMomentum,
0107     MassDependentFermiMomentum
0108   };
0109 
0110   // Enumerator for RNG
0111   enum RNGType {
0112     RanecuType,
0113     Ranecu3Type
0114   };
0115 
0116   // Enumerator for Cross-Section parametrizations
0117   enum CrossSectionsType {
0118     INCL46CrossSections,
0119     MultiPionsCrossSections,
0120     TruncatedMultiPionsCrossSections,
0121     MultiPionsAndResonancesCrossSections,
0122     StrangenessCrossSections,
0123   AntiparticlesCrossSections
0124   };
0125 
0126   // Enumerator for phase-space generator
0127   enum PhaseSpaceGeneratorType {
0128     KopylovType,
0129     RauboldLynchType
0130   };
0131 
0132   // Enumerator for cascade actions
0133   enum CascadeActionType {
0134     DefaultActionType,
0135     AvatarDumpActionType
0136   };
0137 
0138 }
0139 
0140 #endif