Geant4
11.1.1
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
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
// G4NucleiPropertiesTableAME12
27
//
28
// Class description:
29
//
30
// Data updated to AME2012
31
// "The Ame2012 atomic mass evaluation (I)"
32
// by G.Audi, M.Wang, A.H.Wapstra, F.G.Kondev,
33
// M.MacCormick, X.Xu, and B.Pfeiffer
34
// Chinese Physics C36 p. 1287-1602, December 2012.
35
// "The Ame2012 atomic mass evaluation (II)"
36
// by M.Wang, G.Audi, A.H.Wapstra, F.G.Kondev,
37
// M.MacCormick, X.Xu, and B.Pfeiffer
38
// Chinese Physics C36 p. 1603-2014, December 2012.
39
40
// Author: Tatsumi Koi, SLAC - August 2016
41
// --------------------------------------------------------------------
42
#ifndef G4NucleiPropertiesTableAME12_hh
43
#define G4NucleiPropertiesTableAME12_hh 1
44
45
#include <cmath>
46
47
#include "
globals.hh
"
48
49
class
G4NucleiProperties
;
50
51
class
G4NucleiPropertiesTableAME12
52
{
53
public
:
54
55
~G4NucleiPropertiesTableAME12
() {}
56
// Destructor
57
58
enum
{
nEntries
= 3353,
MaxA
= 295,
ZMax
= 120};
59
// Values migrated to AME12
60
61
friend
class
G4NucleiProperties
;
62
// All methods are private and can be used only by G4NucleiProperties
63
64
private
:
65
66
G4NucleiPropertiesTableAME12
();
67
// Default constructor - this class should only be created once!
68
69
static
G4double
GetMassExcess(
G4int
Z
,
G4int
A
);
70
// Values imported from The Ame2003 atomic mass evaluation (II)
71
72
static
G4double
GetAtomicMass(
G4int
Z
,
G4int
A
);
73
// GetAtomicMass .. in Geant4 Energy units!
74
// Atomic_Mass = MassExcess + A*amu_c2
75
76
static
G4double
GetNuclearMass(
G4int
Z
,
G4int
A
);
77
// Nuclear_Mass = Atomic_Mass - electronMass
78
79
static
G4double
GetBindingEnergy(
G4int
Z
,
G4int
A
);
80
81
static
G4double
GetBetaDecayEnergy(
G4int
Z
,
G4int
A
);
82
83
static
G4bool
IsInTable(
G4int
Z
,
G4int
A
);
84
// Is the nucleus (A,Z) in table?
85
86
static
G4int
MaxZ(
G4int
A
);
87
static
G4int
MinZ(
G4int
A
);
88
89
static
G4int
GetIndex(
G4int
Z
,
G4int
A
);
90
91
// Data Members for Class Attributes
92
//----------------------------------
93
94
// The following arrays are static to allow initialization.
95
// Initialization is done in source file
96
97
static
const
G4double
MassExcess[
nEntries
];
98
// Mass Excess
99
100
static
const
G4double
BetaEnergy[
nEntries
];
101
// Beta Decay Energy
102
103
104
static
const
G4int
indexArray[2][
nEntries
];
105
// Table of Z (number of protons) and A (number of nucleons)
106
// indexArray[0][ ] --> Z
107
// indexArray[1][ ] --> A
108
109
static
const
G4int
shortTable[
MaxA
+1];
110
// Reduced Table of A for shorter index search.
111
// The index in this table coincide with A-1
112
// For each A value shortTable[A-1] has the index of the 1st occurrence
113
// in the indexArray[][]
114
115
static
G4ThreadLocal
G4double
electronMass[
ZMax
];
116
// Electrom mass
117
118
static
G4ThreadLocal
G4bool
isIntialized;
119
};
120
121
#endif
G4double
double G4double
Definition:
G4Types.hh:83
G4bool
bool G4bool
Definition:
G4Types.hh:86
G4int
int G4int
Definition:
G4Types.hh:85
Z
const G4int Z[17]
Definition:
G4WaterStopping.cc:51
A
const G4double A[17]
Definition:
G4WaterStopping.cc:53
G4NucleiPropertiesTableAME12
Definition:
G4NucleiPropertiesTableAME12.hh:52
G4NucleiPropertiesTableAME12::MaxA
@ MaxA
Definition:
G4NucleiPropertiesTableAME12.hh:58
G4NucleiPropertiesTableAME12::nEntries
@ nEntries
Definition:
G4NucleiPropertiesTableAME12.hh:58
G4NucleiPropertiesTableAME12::ZMax
@ ZMax
Definition:
G4NucleiPropertiesTableAME12.hh:58
G4NucleiPropertiesTableAME12::~G4NucleiPropertiesTableAME12
~G4NucleiPropertiesTableAME12()
Definition:
G4NucleiPropertiesTableAME12.hh:55
G4NucleiProperties
Definition:
G4NucleiProperties.hh:45
globals.hh
G4ThreadLocal
#define G4ThreadLocal
Definition:
tls.hh:77
geant4-v11.1.1
source
particles
management
include
G4NucleiPropertiesTableAME12.hh
Generated by
1.9.6