Geant4  10.00.p01
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: G4VFermiBreakUp.cc,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"
41 #include <vector>
42 
44 {
45 public:
46 
48 
50 
51  const std::vector<G4FermiConfiguration*>*
53 
55 
56  inline G4int GetMaxZ() const;
57 
58  inline G4int GetMaxA() const;
59 
60 private:
61 
63 
64  void Initialise();
65 
66  G4bool IsExist(G4int Z, G4int A, std::vector<const G4VFermiFragment*>&);
67 
68  inline G4bool IsAvailable(G4int Z, G4int A);
69 
71 
72  std::vector<const G4VFermiFragment*> fragment_pool;
73 
77 
78  // list of configuration sorted by A for 1, 2, 3, 4 final fragments
79  std::vector<G4FermiConfiguration*> list1[17];
80  std::vector<G4FermiConfiguration*> list2[17];
81  std::vector<G4FermiConfiguration*> list3[17];
82  std::vector<G4FermiConfiguration*> list4[17];
83  // list of exotic configurations
84  std::vector<G4FermiConfiguration*> listextra;
85 };
86 
88 {
89  G4bool res = true;
90  if (2 == Z && 5 == A) { res = false; }
91  else if(3 == Z && 5 == A) { res = false; }
92  else if(4 == Z && 8 == A) { res = false; }
93  else if(5 == Z && 9 == A) { res = false; }
94  return res;
95 }
96 
98 {
99  return maxZ;
100 }
101 
103 {
104  return maxA;
105 }
106 
107 #endif
108 
std::vector< G4FermiConfiguration * > list4[17]
std::vector< G4FermiConfiguration * > list1[17]
G4bool IsAvailable(G4int Z, G4int A)
static G4FermiFragmentsPool * theInstance
G4bool IsExist(G4int Z, G4int A, std::vector< const G4VFermiFragment * > &)
int G4int
Definition: G4Types.hh:78
bool G4bool
Definition: G4Types.hh:79
std::vector< G4FermiConfiguration * > listextra
std::vector< const G4VFermiFragment * > fragment_pool
static const G4double A[nN]
std::vector< G4FermiConfiguration * > list3[17]
const G4VFermiFragment * GetFragment(G4int Z, G4int A)
const std::vector< G4FermiConfiguration * > * GetConfigurationList(G4int Z, G4int A, G4double mass)
double G4double
Definition: G4Types.hh:76
static G4FermiFragmentsPool * Instance()
std::vector< G4FermiConfiguration * > list2[17]