Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PreCompoundModel.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// by V. Lara
27//
28// Class Description
29// Model implementation for pre-equilibrium decay models in geant4.
30// To be used in your physics list, in case you neeed this kind of physics.
31// Can be used as a stand-allone model, but also in conjunction with
32// an intra-nuclear transport, or any of the string-parton models.
33// Class Description - End
34//
35// Modified:
36// 03.09.2008 J.M.Quesada added external choice of inverse
37// cross section option.(default OPTxs=3)
38// 06.09.2008 J.M.Quesada external choices have been added for:
39// - superimposed Coulomb barrier (if useSICB=true, default false)
40// - "never go back" hipothesis (if useNGB=true, default false)
41// - soft cutoff from preeq. to equlibrium (if useSCO=true, default false)
42// - CEM transition probabilities (if useCEMtr=true)
43// 30.10.2009 J.M.Quesada CEM transition probabilities are set as default
44// 20.08.2010 V.Ivanchenko Cleanup of the code
45// 03.01.2012 V.Ivanchenko Added pointer to G4ExcitationHandler to the
46// constructor
47
48#ifndef G4PreCompoundModel_h
49#define G4PreCompoundModel_h 1
50
52#include "G4Fragment.hh"
54#include "G4ReactionProduct.hh"
56
63
65{
66public:
67
68 explicit G4PreCompoundModel(G4ExcitationHandler* ptr = nullptr);
69
70 ~G4PreCompoundModel() override;
71
73 G4Nucleus& theNucleus) override;
74
75 G4ReactionProductVector* DeExcite(G4Fragment& aFragment) override;
76
77 void BuildPhysicsTable(const G4ParticleDefinition&) override;
78
79 void InitialiseModel() override;
80
81 void ModelDescription(std::ostream& outFile) const override;
82 void DeExciteModelDescription(std::ostream& outFile) const override;
83
85 const G4PreCompoundModel& operator=(const G4PreCompoundModel &right) = delete;
86 G4bool operator==(const G4PreCompoundModel &right) const = delete;
87 G4bool operator!=(const G4PreCompoundModel &right) const = delete;
88
89private:
90
91 void DoIt(G4ReactionProductVector* result, G4Fragment&);
92
93 inline
94 void PerformEquilibriumEmission(const G4Fragment& aFragment,
95 G4ReactionProductVector* result) const;
96
97 G4PreCompoundInterface* fInterface{nullptr};
98 G4PreCompoundEmission* theEmission{nullptr};
99 G4VPreCompoundTransitions* theTransition{nullptr};
100 G4NuclearLevelData* fNuclData{nullptr};
101 G4VMultiFragmentation* theMultiFrag{nullptr};
102
103 const G4ParticleDefinition* proton;
104 const G4ParticleDefinition* neutron;
105
106 G4double fLowLimitExc{0.0};
107 G4double fHighLimitExc{0.0};
108 G4double fFermiBreakUpExc{DBL_MAX};
109 G4double fMinEForMultiFrag{DBL_MAX};
110
111 G4bool useSCO{false};
112 G4bool isInitialised{false};
113 G4bool isActive{true};
114 G4bool usePrecoInterface{false};
115
116 G4int minZ{3};
117 G4int minA{5};
118 G4int modelID{-1};
119 G4int fVerbose{1};
120
121 G4HadFinalState theResult;
122};
123
124inline void G4PreCompoundModel::PerformEquilibriumEmission(
125 const G4Fragment& aFragment,
126 G4ReactionProductVector* result) const
127{
128 auto deexResult = GetExcitationHandler()->BreakItUp(aFragment);
129 for (auto & frag : *deexResult) { result->push_back(std::move(frag)); }
130 delete deexResult;
131}
132
133#endif
134
std::vector< G4ReactionProduct * > G4ReactionProductVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4ReactionProductVector * BreakItUp(const G4Fragment &theInitialState)
G4bool operator!=(const G4PreCompoundModel &right) const =delete
void InitialiseModel() override
G4PreCompoundModel(const G4PreCompoundModel &)=delete
const G4PreCompoundModel & operator=(const G4PreCompoundModel &right)=delete
void ModelDescription(std::ostream &outFile) const override
G4HadFinalState * ApplyYourself(const G4HadProjectile &thePrimary, G4Nucleus &theNucleus) override
G4ReactionProductVector * DeExcite(G4Fragment &aFragment) override
void DeExciteModelDescription(std::ostream &outFile) const override
G4PreCompoundModel(G4ExcitationHandler *ptr=nullptr)
G4bool operator==(const G4PreCompoundModel &right) const =delete
void BuildPhysicsTable(const G4ParticleDefinition &) override
G4ExcitationHandler * GetExcitationHandler() const
G4VPreCompoundModel(G4ExcitationHandler *ptr=nullptr, const G4String &modelName="PrecompoundModel")
#define DBL_MAX
Definition templates.hh:62