Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:59:07

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 //
0028 // Hadronic Process: Nuclear De-excitations
0029 // by V. Lara
0030 
0031 #ifndef G4StatMFParameters_h
0032 #define G4StatMFParameters_h 1
0033 
0034 #include "globals.hh"
0035 
0036 class G4StatMFParameters
0037 {
0038 public:
0039   
0040   G4StatMFParameters();
0041 
0042   ~G4StatMFParameters();
0043   
0044   static G4double GetKappa();
0045   
0046   static G4double GetKappaCoulomb(); 
0047   
0048   static G4double GetEpsilon0();
0049   
0050   static G4double GetE0();
0051   
0052   static G4double GetBeta0(); 
0053   
0054   static G4double GetGamma0();
0055   
0056   static G4double GetCriticalTemp();
0057   
0058   static G4double Getr0();
0059 
0060   static G4double GetCoulomb();
0061   
0062   static G4double Beta(G4double T);
0063   
0064   static G4double DBetaDT(G4double T);
0065   
0066   static G4double GetMaxAverageMultiplicity(G4int A);
0067 
0068   // +----------------------+
0069   // | Constant Parameters: |
0070   // +----------------------+
0071   // Kappa is used for calculate volume V_f for translational 
0072   // motion of fragments
0073   static const G4double fKappa;
0074   // KappaCoulomb is used for calculate Coulomb term energy
0075   static const G4double fKappaCoulomb;
0076   // Inverse level density
0077   static const G4double fEpsilon0;
0078   // Bethe-Weizsacker coefficients
0079   static const G4double fE0;
0080   static const G4double fBeta0;
0081   static const G4double fGamma0;
0082   // Critical temperature (for liquid-gas phase transitions)
0083   static const G4double fCriticalTemp;
0084   // Nuclear radius
0085   static const G4double fr0;
0086   // Coulomb 
0087   static const G4double fCoulomb;
0088 
0089 };
0090 
0091 #endif