source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundParameters.hh @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 2.9 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4PreCompoundParameters.hh,v 1.5 2008/05/08 10:34:25 quesada Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30// by V. Lara
31//
32//J. M. Quesada (Apr. 2008) Level density set to A/10 at preequilibrium
33
34
35#ifndef G4PreCompoundParameters_h
36#define G4PreCompoundParameters_h 1
37
38#include "globals.hh"
39
40class G4PreCompoundParameters
41{
42private:
43    static G4PreCompoundParameters thePreCompoundParameters;
44
45    // default constructor
46//    G4PreCompoundParameters() : theLevelDensity(0.125/MeV),
47//JMQ level density parameter  set to  A/10 at preequilibrium
48    G4PreCompoundParameters() : theLevelDensity(0.10/MeV),
49      r0(1.5*fermi),Transitions_r0(0.6*fermi),FermiEnergy(35.0*MeV) 
50        {}
51
52public:
53
54    ~G4PreCompoundParameters() {};
55 
56    static G4PreCompoundParameters * GetAddress();
57
58    G4double GetLevelDensity()
59        { return theLevelDensity; }
60 
61
62    G4double Getr0()
63        { return r0; }
64
65    G4double GetTransitionsr0()
66        { return Transitions_r0; }
67
68
69    G4double GetFermiEnergy()
70        { return FermiEnergy; }
71
72private:
73    // Level density parameter
74    const G4double theLevelDensity;
75
76    // Nuclear radius r0
77    const G4double r0;
78       
79    // Nuclear radius r0 for transitions
80    const G4double Transitions_r0;
81
82    // Fermi energy level
83    const G4double FermiEnergy;
84 
85};
86
87#endif
Note: See TracBrowser for help on using the repository browser.