Geant4-11
G4NuclearLevelData.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// -------------------------------------------------------------------
28//
29// GEANT4 header file
30//
31// File name: G4NuclearLevelData
32//
33// Author: V.Ivanchenko
34//
35// Creation date: 9 February 2014
36//
37// Modifications:
38//
39// -------------------------------------------------------------------
40//
41// Nuclear level data uploaded at initialisation of Geant4 from
42// data files of the G4LEVELGAMMADATA
43//
44
45#ifndef G4NUCLEARLEVELDATA_HH
46#define G4NUCLEARLEVELDATA_HH 1
47
48#include "globals.hh"
50#include "G4Threading.hh"
51#include <vector>
52#include <iostream>
53
54class G4LevelReader;
55class G4LevelManager;
58class G4Pow;
59
61{
62private:
63
65
67
68public:
69
71
73
74 // run time call to access or to create level manager
75 // if data are not yet uploaded then lazy initialisation is used
77
78 // add private data to isotope from master thread
79 G4bool AddPrivateData(G4int Z, G4int A, const G4String& filename);
80
81 // access to min/max A in the level DB
82 G4int GetMinA(G4int Z) const;
83 G4int GetMaxA(G4int Z) const;
84
85 // check max energy of a level without upload of the data
88
89 // check closest level if the energy is below the max level energy
91
92 // check closest level below given energy
94
95 // check if residual excitation energy corresponding to
96 // discrete level and if it is the case select closest level
98 G4double partMass, G4double T);
99
100 // access to all model parameters
104
105 // access to correction values
108
109 // enable uploading of data for all Z < maxZ
111
112 // stream only existing levels
113 void StreamLevels(std::ostream& os, G4int Z, G4int A);
114
117
118private:
119
126
127 static const G4int ZMAX = 118;
128 static const G4int AMIN[ZMAX];
129 static const G4int AMAX[ZMAX];
130 static const G4int LEVELIDX[ZMAX];
131
132 std::vector<const G4LevelManager*> fLevelManagers[ZMAX];
133 std::vector<G4bool> fLevelManagerFlags[ZMAX];
134
135#ifdef G4MULTITHREADED
136 static G4Mutex nuclearLevelDataMutex;
137#endif
138};
139
140#endif
std::mutex G4Mutex
Definition: G4Threading.hh:81
float G4float
Definition: G4Types.hh:84
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
const G4int Z[17]
const G4double A[17]
std::vector< G4bool > fLevelManagerFlags[ZMAX]
G4float MaxLevelEnergy(G4int Z, G4int A) const
G4double GetLevelDensity(G4int Z, G4int A, G4double U)
G4double GetLevelEnergy(G4int Z, G4int A, G4double energy)
G4double FindLevel(G4int Z, G4int A, G4double resMass, G4double Mass, G4double partMass, G4double T)
G4DeexPrecoParameters * GetParameters()
G4DeexPrecoParameters * fDeexPrecoParameters
G4bool AddPrivateData(G4int Z, G4int A, const G4String &filename)
G4NuclearLevelData(G4NuclearLevelData &)=delete
G4int GetMinA(G4int Z) const
std::vector< const G4LevelManager * > fLevelManagers[ZMAX]
G4ShellCorrection * fShellCorrection
G4NuclearLevelData & operator=(const G4NuclearLevelData &right)=delete
static const G4int AMAX[ZMAX]
static const G4int ZMAX
static const G4int LEVELIDX[ZMAX]
G4double GetLowEdgeLevelEnergy(G4int Z, G4int A, G4double energy)
static const G4int AMIN[ZMAX]
static G4NuclearLevelData * theInstance
G4ShellCorrection * GetShellCorrection()
void UploadNuclearLevelData(G4int Z)
const G4LevelManager * GetLevelManager(G4int Z, G4int A)
G4PairingCorrection * fPairingCorrection
G4LevelReader * fLevelReader
G4PairingCorrection * GetPairingCorrection()
static G4NuclearLevelData * GetInstance()
G4double GetMaxLevelEnergy(G4int Z, G4int A) const
void StreamLevels(std::ostream &os, G4int Z, G4int A)
G4int GetMaxA(G4int Z) const
Definition: G4Pow.hh:49
G4double energy(const ThreeVector &p, const G4double m)