Back to home page

EIC code displayed by LXR

 
 

    


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

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 Class file
0028 //
0029 //
0030 //      File name:    G4QMDParameters.hh 
0031 //
0032 //      Author: Koi, Tatsumi (tkoi@slac.stanford.edu)       
0033 // 
0034 //      Creation date: 12 May 2007
0035 // -----------------------------------------------------------------------------
0036 
0037 #ifndef G4QMDParameters_hh
0038 #define G4QMDParameters_hh
0039 
0040 #include "globals.hh"
0041 
0042 class G4QMDParameters 
0043 {
0044       static G4ThreadLocal G4QMDParameters* parameters;
0045      
0046       G4QMDParameters();
0047    public:
0048       ~G4QMDParameters();
0049       static G4QMDParameters* GetInstance()
0050       {
0051          if ( parameters == NULL ) parameters = new G4QMDParameters(); 
0052          return parameters;
0053       }
0054 
0055 
0056       // GroundStateNucleus
0057       G4double Get_wl() { return wl; };
0058       G4double Get_cl() { return cl; };
0059       G4double Get_hbc() { return hbc; };
0060       G4double Get_rho0() { return rho0; };
0061       G4double Get_gamm() { return gamm; };
0062       G4double Get_cpw() { return cpw; };
0063       G4double Get_cph() { return cph; };
0064       G4double Get_epsx() { return epsx; };
0065       G4double Get_cpc() { return cpc; };
0066       G4double Get_cs() { return cs; };
0067       G4double Get_c0() { return c0; };
0068       G4double Get_c0p() { return c0p; };
0069       G4double Get_clp() { return clp; };
0070       G4double Get_c3() { return c3; };
0071       G4double Get_c3p() { return c3p; };
0072       G4double Get_csp() { return csp; };
0073       G4double Get_cdp() { return cdp; };
0074 
0075    protected:
0076       G4double wl;
0077       G4double cl;
0078       G4double hbc; 
0079       G4double rho0;
0080       G4double gamm; 
0081 
0082 /*
0083       G4double rho0;
0084       G4double t0;
0085 
0086       G4double aaa;
0087 
0088 */
0089       // MeanField 
0090       G4double c0, c3, cs;
0091 
0092       // GroundStateNucleus
0093       G4double cpw; 
0094       G4double cph; 
0095       G4double epsx;
0096       G4double cpc;
0097       G4double c0p , clp , c3p , csp , cdp;
0098 
0099 };
0100 
0101 #endif