source: trunk/source/particles/management/include/G4NucleiProperties.hh@ 1192

Last change on this file since 1192 was 992, checked in by garnier, 17 years ago

fichiers oublies

File size: 3.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: G4NucleiProperties.hh,v 1.18 2008/10/28 07:12:31 kurasige Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30//
31// ------------------------------------------------------------
32// GEANT 4 class header file
33//
34// ------------------------------------------------------------
35// Hadronic Process: Nuclear De-excitations by V. Lara (Oct 1998)
36// Migrate into particles category by H.Kurashige (17 Nov. 98)
37// Added Shell-Pairing corrections to the Cameron mass
38// excess formula by V.Lara (9 May 99)
39//
40
41#ifndef G4NucleiProperties_h
42#define G4NucleiProperties_h 1
43
44#include "globals.hh"
45#include "G4ios.hh"
46#include "G4NucleiPropertiesTable.hh"
47#include "G4NucleiPropertiesTheoreticalTable.hh"
48#include "G4ParticleTable.hh"
49
50class G4NucleiProperties
51{
52 // Class Description
53 // G4NucleiProperties is an utility class to provide mass formula of nuclei
54 // (i.e. it has static member function only)
55
56public:
57
58 // Destructor
59 ~G4NucleiProperties() { };
60
61 // Default constructor ()
62 G4NucleiProperties(){};
63
64
65public: // With Description
66
67 // Give mass of nucleus A,Z
68 static G4double GetNuclearMass(const G4double A, const G4double Z);
69
70 // return 'true' if the nucleus in the stable table
71 // (i.e.in G4NucleiPropertiesTable)
72 static bool IsInStableTable(const G4double A, const G4double Z);
73
74 // Give binding energy
75 static G4double GetBindingEnergy(const G4int A, const G4int Z);
76 static G4double GetBindingEnergy(const G4double A, const G4double Z);
77
78 // Calculate Mass Excess of nucleus A,Z
79 static G4double GetMassExcess(const G4int A, const G4int Z);
80 static G4double GetMassExcess(const G4double A, const G4double Z);
81
82private:
83 // hidie methods to enforce using GetNuclearMass
84 // Give mass of Atom A,Z
85 static G4double GetAtomicMass(const G4double A, const G4double Z);
86
87private:
88
89 static G4double AtomicMass(G4double A, G4double Z);
90
91 static G4double BindingEnergy(G4double A, G4double Z);
92
93 static G4double MassExcess(G4double A, G4double Z);
94
95private:
96 // table of orbit electrons mass - binding energy
97 enum {MaxZ = 120};
98 static G4double electronMass[MaxZ];
99
100private:
101 static G4bool isIntialized;
102 static G4double mass_proton;
103 static G4double mass_neutron;
104 static G4double mass_deuteron;
105 static G4double mass_triton;
106 static G4double mass_alpha;
107 static G4double mass_He3;
108
109};
110
111
112
113#endif
114
115
116
117
118
119
120
121
Note: See TracBrowser for help on using the repository browser.