Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4FermiFragmentsPool.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: G4FermiFragmentsPool.hh,v 1.5 2006-06-29 20:13:13 gunter Exp $
27 //
28 // Hadronic Process: Nuclear De-excitations
29 // by V. Lara
30 //
31 // Modifications:
32 // 01.04.2011 General cleanup by V.Ivanchenko - more clean usage of static
33 
34 
35 #ifndef G4FermiFragmentsPool_hh
36 #define G4FermiFragmentsPool_hh 1
37 
38 #include "globals.hh"
39 #include "G4VFermiFragment.hh"
40 #include "G4FermiConfiguration.hh"
42 #include <vector>
43 
45 {
46 public:
47 
49 
51 
52  G4bool IsApplicable(G4int Z, G4int A, G4double mass) const;
53 
54  const std::vector<const G4FermiConfiguration*>*
55  GetConfigurationList(G4int Z, G4int A, G4double mass) const;
56 
57  const G4VFermiFragment* GetFragment(G4int Z, G4int A) const;
58 
60 
61  G4int GetMaxZ() const;
62 
63  G4int GetMaxA() const;
64 
65  void DumpFragment(const G4VFermiFragment* f) const;
66 
67  void Dump() const;
68 
69 private:
70 
72 
73  void Initialise();
74 
75  G4bool IsExist(G4int Z, G4int A, std::vector<const G4VFermiFragment*>&) const;
76 
77  G4bool IsAvailable(G4int Z, G4int A) const;
78 
79  static G4FermiFragmentsPool* theInstance;
80 
81  std::vector<const G4VFermiFragment*> fragment_pool;
82 
83  G4int maxZ;
84  G4int maxA;
85  G4int verbose;
86 
87  // list of configuration sorted by A for 1, 2, 3, 4 final fragments
88  std::vector<const G4FermiConfiguration*> list1[17];
89  std::vector<const G4FermiConfiguration*> list2[17];
90  std::vector<const G4FermiConfiguration*> list3[17];
91  std::vector<const G4FermiConfiguration*> list4[17];
92 
93  G4FermiPhaseSpaceDecay thePhaseSpace;
94 };
95 
96 #endif
97 
int G4int
Definition: G4Types.hh:78
const G4VFermiFragment * GetFragment(G4int Z, G4int A) const
G4bool IsApplicable(G4int Z, G4int A, G4double mass) const
double A(double temperature)
bool G4bool
Definition: G4Types.hh:79
void DumpFragment(const G4VFermiFragment *f) const
double G4double
Definition: G4Types.hh:76
static G4FermiFragmentsPool * Instance()
const std::vector< const G4FermiConfiguration * > * GetConfigurationList(G4int Z, G4int A, G4double mass) const
const G4FermiPhaseSpaceDecay * GetFermiPhaseSpaceDecay() const