Geant4  10.02
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 // $Id: G4NuclearLevelData.hh 86536 2014-11-13 19:05:21Z vnivanch $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 header file
31 //
32 // File name: G4NuclearLevelData
33 //
34 // Author: V.Ivanchenko
35 //
36 // Creation date: 9 February 2014
37 //
38 // Modifications:
39 //
40 // -------------------------------------------------------------------
41 //
42 // Nuclear level data uploaded at initialisation of Geant4 from
43 // data files of the G4LEVELGAMMADATA
44 //
45 
46 #ifndef G4NUCLEARLEVELDATA_HH
47 #define G4NUCLEARLEVELDATA_HH 1
48 
49 #include "globals.hh"
50 #include "G4Threading.hh"
51 #include <vector>
52 
53 class G4LevelReader;
54 class G4LevelManager;
55 
57 {
58 private:
59 
61 
63 
64 public:
65 
67 
69 
70  // run time call to access or to create level manager
72 
73  // add private data to isotope from master thread
74  G4bool AddPrivateData(G4int Z, G4int A, const G4String& filename);
75 
76 private:
77 
79 
82 
84 
85  static const G4int ZMAX = 103;
86  static const G4int AMIN[ZMAX];
87  static const G4int AMAX[ZMAX];
88 
89  std::vector<const G4LevelManager*> fLevelManagers[ZMAX];
90  std::vector<G4bool> fLevelManagerFlags[ZMAX];
91 
92 #ifdef G4MULTITHREADED
93 public:
94  static G4Mutex nuclearLevelDataMutex;
95 #endif
96 };
97 
98 #endif
const G4LevelManager * GetLevelManager(G4int Z, G4int A)
G4LevelReader * fLevelReader
void InitialiseForIsotope(G4int Z, G4int A)
G4NuclearLevelData & operator=(const G4NuclearLevelData &right)
std::vector< G4bool > fLevelManagerFlags[ZMAX]
G4bool AddPrivateData(G4int Z, G4int A, const G4String &filename)
std::vector< const G4LevelManager * > fLevelManagers[ZMAX]
int G4int
Definition: G4Types.hh:78
static const G4int AMAX[ZMAX]
double A(double temperature)
bool G4bool
Definition: G4Types.hh:79
static G4NuclearLevelData * theInstance
G4int G4Mutex
Definition: G4Threading.hh:173
static const G4int AMIN[ZMAX]
static const G4int ZMAX
static G4NuclearLevelData * GetInstance()