Geant4-11
G4LevelReader.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: G4LevelReader
32//
33// Author: V.Ivanchenko
34//
35// Creation date: 4 January 2012
36//
37// Modifications:
38//
39// -------------------------------------------------------------------
40//
41// Helper class to read Geant4 nuclear level data
42//
43
44#ifndef G4LEVELREADER_HH
45#define G4LEVELREADER_HH 1
46
47#include "globals.hh"
48#include "G4LevelManager.hh"
49#include <iosfwd>
50
53
55{
56
57public:
58
60
61 // create run manager using G4LEVELGAMMADATA data for Z and A
63
64 // create run manager using whatever data
66 const G4String& filename);
67
68 inline void SetVerbose(G4int val);
69
70private:
71
72 G4bool ReadData(std::istringstream& dataFile, G4double& x);
73
74 G4bool ReadDataItem(std::istream& dataFile, G4double& x);
75
76 G4bool ReadDataItem(std::istream& dataFile, G4float& x);
77
78 G4bool ReadDataItem(std::istream& dataFile, G4int& x);
79
80 G4bool ReadDataItem(std::istream& dataFile, G4String& x);
81
82 const std::vector<G4float>* NormalizedICCProbability(G4int Z);
83
85 std::ifstream& infile);
86
87 G4LevelReader(const G4LevelReader & right) = delete;
88 const G4LevelReader& operator=(const G4LevelReader &right) = delete;
89 G4bool operator==(const G4LevelReader &right) const = delete;
90 G4bool operator!=(const G4LevelReader &right) const = delete;
91
94
99
102
109
110 static const G4int nfloting = 13;
112
115
116 static const G4int nbufmax = 20;
117 static const G4int nbuf1 = 14;
118 static const G4int nbuf2 = 8;
119
123 char bufp[3];
124
129
131
132 std::vector<G4double> vEnergy;
133 std::vector<G4int> vSpin;
134 std::vector<const G4NucLevel*> vLevel;
135
136 std::vector<G4int> vTrans;
137 std::vector<G4float> vRatio;
138 std::vector<G4float> vGammaCumProbability;
139 std::vector<G4float> vGammaProbability;
140 std::vector<const std::vector<G4float>*> vShellProbability;
141};
142
144{
145 fVerbose = val;
146}
147
148#endif
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]
static const G4int nfloting
G4bool operator==(const G4LevelReader &right) const =delete
std::vector< const std::vector< G4float > * > vShellProbability
G4DeexPrecoParameters * fParam
static const G4int nbufmax
G4bool operator!=(const G4LevelReader &right) const =delete
std::vector< G4float > vRatio
G4double fTimeFactor
char buff1[nbuf1]
const G4LevelManager * MakeLevelManager(G4int Z, G4int A, const G4String &filename)
const G4LevelManager * LevelManager(G4int Z, G4int A, G4int nlev, std::ifstream &infile)
G4String fDirectory
void SetVerbose(G4int val)
std::vector< G4float > vGammaProbability
G4LevelReader(const G4LevelReader &right)=delete
std::vector< const G4NucLevel * > vLevel
static const G4int nbuf2
const std::vector< G4float > * NormalizedICCProbability(G4int Z)
std::vector< G4float > vGammaCumProbability
std::vector< G4int > vSpin
const G4LevelReader & operator=(const G4LevelReader &right)=delete
static const G4int nbuf1
G4double fEnergy
const G4LevelManager * CreateLevelManager(G4int Z, G4int A)
G4double fCurrEnergy
G4bool ReadDataItem(std::istream &dataFile, G4double &x)
G4double tener
char buffer[nbufmax]
static G4String fFloatingLevels[nfloting]
G4LevelReader(G4NuclearLevelData *)
G4double fTrEnergy
std::vector< G4int > vTrans
G4float fICC[10]
G4bool ReadData(std::istringstream &dataFile, G4double &x)
char buff2[nbuf2]
std::vector< G4double > vEnergy
G4NuclearLevelData * fData