Geant4 Cross Reference |
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 // 27 // FermiBreakUp de-excitation model 28 // by V. Ivanchenko (July 2016) 29 // 30 31 #ifndef G4FermiFragmentsPoolVI_hh 32 #define G4FermiFragmentsPoolVI_hh 1 33 34 #include "globals.hh" 35 #include "G4FermiFragment.hh" 36 #include "G4FermiPair.hh" 37 #include "G4FermiChannels.hh" 38 39 #include <vector> 40 41 class G4FermiFragmentsPoolVI 42 { 43 public: 44 45 G4FermiFragmentsPoolVI(); 46 47 ~G4FermiFragmentsPoolVI(); 48 49 void Initialise(); 50 51 const G4FermiChannels* ClosestChannels(const G4int Z, const G4int A, 52 const G4double mass) const; 53 54 void DumpFragment(const G4FermiFragment*) const; 55 56 void Dump() const; 57 58 G4bool HasDecay(const G4int Z, const G4int A, const G4double eexc) const; 59 60 G4bool IsInitialized() const { return isInitialized; }; 61 62 G4FermiFragmentsPoolVI(const G4FermiFragmentsPoolVI &right) = delete; 63 const G4FermiFragmentsPoolVI & operator= 64 (const G4FermiFragmentsPoolVI &right) = delete; 65 G4bool operator==(const G4FermiFragmentsPoolVI &right) const = delete; 66 G4bool operator!=(const G4FermiFragmentsPoolVI &right) const = delete; 67 68 private: 69 70 G4bool IsInThePool(const G4int Z, const G4int A, const G4double exc) const; 71 72 G4double fTolerance{0.0}; 73 G4double fElim{0.0}; 74 75 const G4int maxZ{9}; 76 const G4int maxA{17}; 77 78 G4bool isInitialized{false}; 79 80 // pool 81 std::vector<const G4FermiFragment*> fragment_pool; 82 83 // list of channels sorted by Z and A 84 std::vector<G4FermiChannels*>* list_c[9][17] = {{nullptr}}; 85 }; 86 87 #endif 88