Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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// $Id$
27//
28// -------------------------------------------------------------------
29//
30// GEANT4 header file
31//
32// File name: G4NucLevel
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 database ignoring
43// information on electron internal conversion probabilities
44//
45
46#ifndef G4LEVELREADER_HH
47#define G4LEVELREADER_HH 1
48
49#include "globals.hh"
50#include "G4NucLevel.hh"
51#include <vector>
52#include <fstream>
53
55{
56
57public:
58
60
62
63 void FillLevels(G4int Z, G4int A,
64 std::vector<G4NucLevel*>* levels,
65 const G4String& filename);
66
67 inline void SetVerbose(G4int val);
68
69private:
70
71 G4bool Read(std::ifstream& aDataFile);
72
73 G4bool ReadDataItem(std::istream& dataFile, G4double& x);
74
75 void MakeNewLevel(std::vector<G4NucLevel*>* levels);
76
77 G4LevelReader(const G4LevelReader & right);
78 const G4LevelReader& operator=(const G4LevelReader &right);
79 G4bool operator==(const G4LevelReader &right) const;
80 G4bool operator!=(const G4LevelReader &right) const;
81
82 size_t nLevels;
83 size_t nLevelMax;
84 G4int fVerbose;
85 G4double fMinProbability;
86 G4double fLevelEnergy;
87 G4double fNewEnergy;
88 G4double fDeltaEnergy;
89 G4double fNewTime;
90 G4double fHalfLifeTime;
91 G4double fProbability;
92 G4double fICC;
93 G4double fx;
94
95 std::vector<G4double> eGamma;
96 std::vector<G4double> wGamma;
97 std::vector<G4double> kICC;
98
99 // Buffers for reading data file
100 char buffer[30];
101
102};
103
105{
106 fVerbose = val;
107}
108
109
110#endif
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
void FillLevels(G4int Z, G4int A, std::vector< G4NucLevel * > *levels, const G4String &filename)
void SetVerbose(G4int val)