125 lines
4.2 KiB
C++
125 lines
4.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// -------------------------------------------------------------------
|
|
// GEANT4 Class file
|
|
//
|
|
//
|
|
// File name: G4LightIonQMDParameters.hh
|
|
//
|
|
// Author: Koi, Tatsumi (tkoi@slac.stanford.edu)
|
|
//
|
|
// Creation date: 12 May 2007
|
|
// -----------------------------------------------------------------------------
|
|
// 230307 Skyrme-QMD parameters added by Y-H. Sato and A. Haga
|
|
|
|
#ifndef G4LightIonQMDParameters_hh
|
|
#define G4LightIonQMDParameters_hh
|
|
|
|
#include "globals.hh"
|
|
|
|
class G4LightIonQMDParameters
|
|
{
|
|
static G4ThreadLocal G4LightIonQMDParameters* parameters;
|
|
|
|
G4LightIonQMDParameters();
|
|
public:
|
|
~G4LightIonQMDParameters();
|
|
static G4LightIonQMDParameters* GetInstance()
|
|
{
|
|
if ( parameters == NULL ) parameters = new G4LightIonQMDParameters();
|
|
return parameters;
|
|
}
|
|
|
|
|
|
// GroundStateNucleus
|
|
G4double Get_wl() { return wl; };
|
|
G4double Get_cl() { return cl; };
|
|
G4double Get_hbc() { return hbc; };
|
|
G4double Get_rho0() { return rho0; };
|
|
G4double Get_gamm() { return gamm; };
|
|
G4double Get_cpw() { return cpw; };
|
|
G4double Get_cph() { return cph; };
|
|
G4double Get_epsx() { return epsx; };
|
|
G4double Get_cpc() { return cpc; };
|
|
G4double Get_cs() { return cs; };
|
|
G4double Get_c0() { return c0; };
|
|
G4double Get_c0p() { return c0p; };
|
|
G4double Get_clp() { return clp; };
|
|
G4double Get_c3() { return c3; };
|
|
G4double Get_c3p() { return c3p; };
|
|
G4double Get_csp() { return csp; };
|
|
G4double Get_cdp() { return cdp; };
|
|
|
|
G4double Get_g0p() { return g0p; }; // Skyrme-QMD
|
|
G4double Get_g0isop() { return g0isop; }; // Skyrme-QMD
|
|
G4double Get_gtau0p() { return gtau0p; };// Skyrme-QMD
|
|
|
|
G4double Get_eta() { return eta; }; // Skyrme-QMD
|
|
G4double Get_kappas() { return kappas; }; // Skyrme-QMD
|
|
G4double Get_g0() { return g0; }; // Skyrme-QMD
|
|
G4double Get_g0iso() { return g0iso; }; // Skyrme-QMD
|
|
G4double Get_gtau0() { return gtau0; }; // Skyrme-QMD
|
|
|
|
|
|
protected:
|
|
G4double wl;
|
|
G4double cl;
|
|
G4double hbc;
|
|
G4double rho0;
|
|
G4double gamm;
|
|
|
|
/*
|
|
G4double rho0;
|
|
G4double t0;
|
|
|
|
G4double aaa;
|
|
|
|
*/
|
|
|
|
// Skyrme-QMD
|
|
G4double gtau0;
|
|
G4double g0;
|
|
G4double g0iso;
|
|
G4double eta;
|
|
G4double kappas;
|
|
|
|
G4double g0p;
|
|
G4double g0isop;
|
|
G4double gtau0p;
|
|
// MeanField
|
|
G4double c0, c3, cs;
|
|
|
|
// GroundStateNucleus
|
|
G4double cpw;
|
|
G4double cph;
|
|
G4double epsx;
|
|
G4double cpc;
|
|
G4double c0p , clp , c3p , csp , cdp;
|
|
|
|
};
|
|
|
|
#endif
|