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

Last change on this file since 835 was 824, checked in by garnier, 16 years ago

import all except CVS

File size: 3.3 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.14 2006/06/29 19:23:54 gunter Exp $
28// GEANT4 tag $Name:  $
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
56
57public: 
58
59  // Destructor
60  ~G4NucleiProperties() { };
61
62  // Default constructor ()
63  G4NucleiProperties(){};
64
65
66public:  // With Description
67
68        // Calculate Mass Excess of nucleus A,Z
69        static G4double GetMassExcess(const G4int A, const G4int Z);
70
71        static G4double GetAtomicMass(const G4double A, const G4double Z);
72       
73        static G4double GetBindingEnergy(const G4int A, const G4int Z);
74       
75        static G4double GetNuclearMass(const G4double A, const G4double Z);
76
77private:
78
79        // Calculate Mass Excess according to Cameron's liquid drop formula
80//      static G4double CameronMassExcess(const G4int A, const G4int Z);
81
82        static G4double  AtomicMass(G4double A, G4double Z);
83       
84        static G4double BindingEnergy(G4double A, G4double Z);
85
86        static G4double MassExcess(G4double A, G4double Z);
87       
88       
89};
90
91
92
93#endif
94
95
96
97
98
99
100
101
Note: See TracBrowser for help on using the repository browser.