Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4LevelReader.hh
이 파일의 문서화 페이지로 가기
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: G4LevelReader.hh 88382 2015-02-17 10:49:24Z vnivanch $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 header file
31 //
32 // File name: G4LevelReader
33 //
34 // Author: V.Ivanchenko
35 //
36 // Creation date: 4 January 2012
37 //
38 // Modifications:
39 //
40 // -------------------------------------------------------------------
41 //
42 // Helper class to read Geant4 nuclear level data
43 //
44 
45 #ifndef G4LEVELREADER_HH
46 #define G4LEVELREADER_HH 1
47 
48 #include "globals.hh"
49 #include "G4LevelManager.hh"
50 #include <iosfwd>
51 
52 class G4NuclearLevelData;
54 
56 {
57 
58 public:
59 
61 
62  // create run manager using G4LEVELGAMMADATA data for Z and A
64 
65  // create run manager using whatever data
67  const G4String& filename);
68 
69  inline void SetVerbose(G4int val);
70 
71 private:
72 
73  G4bool ReadData(std::istringstream& dataFile, G4double& x);
74 
75  G4bool ReadDataItem(std::istream& dataFile, G4double& x);
76 
77  G4bool ReadDataItem(std::istream& dataFile, G4float& x);
78 
79  G4bool ReadDataItem(std::istream& dataFile, G4int& x);
80 
81  G4bool ReadDataItem(std::istream& dataFile, G4String& x);
82 
83  const std::vector<G4float>* NormalizedICCProbability(G4int Z);
84 
85  const G4LevelManager* LevelManager(G4int Z, G4int A, G4int nlev,
86  std::ifstream& infile);
87 
88  G4LevelReader(const G4LevelReader & right) = delete;
89  const G4LevelReader& operator=(const G4LevelReader &right) = delete;
90  G4bool operator==(const G4LevelReader &right) const = delete;
91  G4bool operator!=(const G4LevelReader &right) const = delete;
92 
95 
99 
102 
109 
110  static const G4int nfloting = 13;
112 
116 
117  static const G4int nbufmax = 20;
118  static const G4int nbuf1 = 14;
119  static const G4int nbuf2 = 8;
120 
122  char buff1[nbuf1];
123  char buff2[nbuf2];
124  char bufp[3];
125 
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_t x
Definition: compare.C:6
G4double fCurrEnergy
G4double fEnergy
std::vector< G4float > vGammaProbability
const G4LevelReader & operator=(const G4LevelReader &right)=delete
const G4LevelManager * MakeLevelManager(G4int Z, G4int A, const G4String &filename)
G4DeexPrecoParameters * fParam
const std::vector< G4float > * NormalizedICCProbability(G4int Z)
float G4float
Definition: G4Types.hh:77
G4bool ReadDataItem(std::istream &dataFile, G4double &x)
G4double fTrEnergy
static const G4int nfloting
static const G4int nbuf2
Float_t Z
std::vector< G4int > vTrans
static const G4int nbufmax
std::vector< G4double > vEnergy
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
const G4LevelManager * CreateLevelManager(G4int Z, G4int A)
std::vector< G4float > vRatio
const G4LevelManager * LevelManager(G4int Z, G4int A, G4int nlev, std::ifstream &infile)
char buff2[nbuf2]
char buff1[nbuf1]
static const G4int nbuf1
double A(double temperature)
G4bool operator!=(const G4LevelReader &right) const =delete
char buffer[nbufmax]
G4bool operator==(const G4LevelReader &right) const =delete
G4LevelReader(G4NuclearLevelData *)
int G4int
Definition: G4Types.hh:78
void SetVerbose(G4int val)
G4NuclearLevelData * fData
std::vector< G4int > vSpin
G4double fTimeFactor
std::vector< G4float > vGammaCumProbability
std::vector< const std::vector< G4float > * > vShellProbability
G4String fDirectory
static G4String fFloatingLevels[nfloting]
G4float fICC[10]
G4bool ReadData(std::istringstream &dataFile, G4double &x)
std::vector< const G4NucLevel * > vLevel