Geant4  10.01.p03
G4FermiBreakUp.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: G4FermiBreakUp.hh 85443 2014-10-29 14:35:57Z gcosmo $
27 //
28 // Hadronic Process: Nuclear De-excitations
29 // by V. Lara (Nov 1998)
30 
31 #ifndef G4FermiBreakUp_h
32 #define G4FermiBreakUp_h 1
33 
34 #include "G4VFermiBreakUp.hh"
35 #include "globals.hh"
36 #include "G4FermiConfiguration.hh"
37 #include "G4VFermiFragment.hh"
39 #include <vector>
40 
42 class G4Pow;
43 
45 {
46 public:
47 
49  virtual ~G4FermiBreakUp();
50 
51  // primary fragment is copied to the new instance, the copy is deleted
52  // or is added to the list of products
53  G4FragmentVector * BreakItUp(const G4Fragment &theNucleus);
54 
55  // new interface - vector of products is added to the provided vector
56  // primary fragment is deleted or is modified and added to the list
57  // of products
58  void BreakFragment(G4FragmentVector*, G4Fragment* theNucleus);
59 
60 private:
61 
62  G4double CoulombBarrier(const std::vector<const G4VFermiFragment*>* v);
63 
65 
66  const std::vector<const G4VFermiFragment*>*
68 
70  const G4FermiBreakUp & operator=(const G4FermiBreakUp &right);
71  G4bool operator==(const G4FermiBreakUp &right) const;
72  G4bool operator!=(const G4FermiBreakUp &right) const;
73 
75 
76  std::vector<G4double> NormalizedWeights;
77 
80  size_t nmax;
81 
83 
85  std::vector<G4double> massRes;
86  std::vector<const G4VFermiFragment*> frag;
87 };
88 
89 
90 #endif
91 
92 
Definition: G4Pow.hh:56
const G4FermiBreakUp & operator=(const G4FermiBreakUp &right)
int G4int
Definition: G4Types.hh:78
G4double CoulombBarrier(const std::vector< const G4VFermiFragment * > *v)
G4bool operator==(const G4FermiBreakUp &right) const
bool G4bool
Definition: G4Types.hh:79
const G4FermiPhaseSpaceDecay * thePhaseSpace
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:65
std::vector< G4double > NormalizedWeights
virtual ~G4FermiBreakUp()
void BreakFragment(G4FragmentVector *, G4Fragment *theNucleus)
G4FermiFragmentsPool * thePool
G4bool operator!=(const G4FermiBreakUp &right) const
static const G4double A[nN]
const std::vector< const G4VFermiFragment * > * SelectConfiguration(G4int Z, G4int A, G4double mass)
std::vector< const G4VFermiFragment * > frag
std::vector< G4double > massRes
G4double ConstCoeff
double G4double
Definition: G4Types.hh:76
G4FragmentVector * BreakItUp(const G4Fragment &theNucleus)
G4double DecayProbability(G4int A, G4double TotalE, const G4FermiConfiguration *)