Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4NucleiPropertiesTableAME12.hh
Go to the documentation of this file.
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: G4NucleiPropertiesTableAME12.hh 72955 2013-08-14 14:23:14Z gcosmo $
28 //
29 // -------------------------------------------------------------------
30 //
31 // File name: G4NucleiPropertiesTableAME12.cc
32 //
33 // Authors: Tatsumi Koi (tkoi@slac.stanford.edu)
34 //
35 // Data are update to AME2012
36 // "The Ame2012 atomic mass evaluation (I)"
37 // by G.Audi, M.Wang, A.H.Wapstra, F.G.Kondev, M.MacCormick, X.Xu, and B.~Pfeiffer
38 // Chinese Physics C36 p. 1287-1602, December 2012.
39 // "The Ame2012 atomic mass evaluation (II)"
40 // by M.Wang, G.Audi, A.H.Wapstra, F.G.Kondev, M.MacCormick, X.Xu, and B.~Pfeiffer
41 // Chinese Physics C36 p. 1603-2014, December 2012.
42 //
43 // Creation date: Aug. 2016
44 // based on G4NucleiPropertiesTableAME03
45 //
46 // Modifications:
47 //
48 
49 #ifndef G4NucleiPropertiesTableAME12_h
50 #define G4NucleiPropertiesTableAME12_h 1
51 
52 #include <cmath>
53 #include "globals.hh"
54 //
55 class G4NucleiProperties;
56 
58 {
59 private:
60 
61  // Default constructor - this class should exist only once!
63 
64 public:
65 
66  // Destructor (generated)
68 
69  // Following values migrate to AME12
70  enum {nEntries = 3353,MaxA = 295, ZMax = 120};
71 
72  // Other Operations
73  // all methods are private and can be used only by G4NucleiProperties
74 
75  friend class G4NucleiProperties;
76 
77 private:
78 
79  // Operation: GetMassExcess
80  // values imported from The Ame2003 atomic mass evaluation (II)
81  static G4double GetMassExcess(G4int Z, G4int A);
82 
83  // Operation: GetAtomicMass .. in Geant4 Energy units!
84  // Atomic_Mass = MassExcess + A*amu_c2
85  static G4double GetAtomicMass(G4int Z, G4int A);
86 
87  // Operation: GetNuclearMass
88  // Nuclear_Mass = Atomic_Mass - electronMass
90 
91  // Operation: GetBindingEnergy
93 
94  // Operation: GetBetaDecayEnergy
95  static G4double GetBetaDecayEnergy(G4int Z, G4int A);
96 
97  // Is the nucleus (A,Z) in table?
98  static G4bool IsInTable(G4int Z, G4int A);
99 
100  static G4int MaxZ(G4int A);
101  static G4int MinZ(G4int A);
102 
103 
104 private:
105 
106  // Operation: GetIndex
107  static G4int GetIndex(G4int Z, G4int A);
108 
109 
110  // Data Members for Class Attributes
111  //----------------------------------
112 
113  // The following arrays are static for allow inicialization.
114  // The inicialization is Done in G4NucleiPropertiesTableAME12.cc
115 
116  // Mass Excess
117  static const G4double MassExcess[nEntries];
118 
119 
120  // Beta Decay Energy
121  static const G4double BetaEnergy[nEntries];
122 
123 
124  // Table of Z (number of protons) and A (number of nucleons)
125  // indexArray[0][ ] --> Z
126  // indexArray[1][ ] --> A
127  static const G4int indexArray[2][nEntries];
128 
129  // Reduced Table of A for shorter index search.
130  // The index in this table coincide with A-1
131  // For each A value shortTable[A-1] has the index of the 1st occurrence in
132  // the indexArray[][]
133  static const G4int shortTable[MaxA+1];
134 
135  // electrom mass
136  static G4ThreadLocal G4double electronMass[ZMax];
137  static G4ThreadLocal G4bool isIntialized;
138 
139 };
140 
141 
142 #endif
143 
144 
145 
146 
147 
148 
static G4double GetNuclearMass(const G4double A, const G4double Z)
#define G4ThreadLocal
Definition: tls.hh:89
int G4int
Definition: G4Types.hh:78
static G4double GetMassExcess(const G4int A, const G4int Z)
double A(double temperature)
bool G4bool
Definition: G4Types.hh:79
static G4double GetBindingEnergy(const G4int A, const G4int Z)
double G4double
Definition: G4Types.hh:76