Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4GEMChannelVI.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// GEM de-excitation model
27// by V. Ivanchenko (July 2019)
28//
29
30#ifndef G4GEMChannelVI_h
31#define G4GEMChannelVI_h 1
32
34#include "G4VSIntegration.hh"
35
38class G4LevelManager;
40class G4InterfaceToXS;
42class G4Pow;
43
45{
46public:
47
48 explicit G4GEMChannelVI(G4int theA, G4int theZ);
49
50 ~G4GEMChannelVI() override;
51
52 void Initialise() override;
53
55
56 G4double GetEmissionProbability(G4Fragment* theNucleus) override;
57
58 G4Fragment* EmittedFragment(G4Fragment* theNucleus) override;
59
60 const G4String& ModelName() const override;
61
62 G4double GetCurrentXS() { return recentXS; };
63
64 void Dump() const override;
65
66 G4GEMChannelVI(const G4GEMChannelVI & right) = delete;
67 const G4GEMChannelVI & operator=(const G4GEMChannelVI & right) = delete;
68 G4bool operator==(const G4GEMChannelVI & right) const = delete;
69 G4bool operator!=(const G4GEMChannelVI & right) const = delete;
70
71private:
72
73 G4double CrossSection(G4double ekin);
74
75 G4double CorrectExcitation(G4double energy, const G4LevelManager*);
76
77 G4NuclearLevelData* nData;
78 const G4VCoulombBarrier* cBarrier;
79 const G4PairingCorrection* pairingCorrection;
80 const G4LevelManager* lManagerEvap{nullptr};
81 const G4LevelManager* lManagerRes{nullptr};
82 G4InterfaceToXS* fXSection{nullptr};
83 G4Pow* g4pow;
84 const G4ParticleDefinition* fProton;
85 const G4ParticleDefinition* fNeutron;
86
87 G4double fEvapMass; // ground state mass of the evaporated fragment
88 G4double fEvapMass2; // ground state mass of the evaporated fragment square
89 G4double fMass{0.0}; // mass of the initial fragment
90 G4double fResMass{0.0}; // ground state mass of the residual fragment
91 G4double fResA13{0.0}; //
92 G4double fFragExc{0.0}; // excitation energy of the evaporated fragment
93 G4double fEvapExc{0.0}; // excitation energy of the evaporated fragment
94 G4double fResExc{0.0}; // excitation energy of the residual fragment
95 G4double bCoulomb{0.0};
96 G4double fDeltaEvap{0.0};
97 G4double fE0{0.0};
98 G4double fE1{0.0};
99 G4double a0{0.0};
100 G4double a1{0.0};
101 G4double delta0{0.0};
102 G4double delta1{0.0};
103 G4double recentXS{0.0};
104 G4double fEnergyLimitXS{0.0};
105 G4double xsfactor{1.0};
106 G4double fTolerance;
107 G4double fCoeff;
108
109 G4int evapA;
110 G4int evapZ;
111 G4int resA{0};
112 G4int resZ{0};
113 G4int fragA{0};
114 G4int fragZ{0};
115 G4int fVerbose{1};
116 G4int nProbEvap{1};
117 G4int nProbRes{1};
118 G4int indexC{7};
119 G4int secID;
120
121 G4String fModelName;
122};
123
124#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4GEMChannelVI(G4int theA, G4int theZ)
void Dump() const override
const G4GEMChannelVI & operator=(const G4GEMChannelVI &right)=delete
~G4GEMChannelVI() override
G4double ProbabilityDensityFunction(G4double ekin) override
G4double GetEmissionProbability(G4Fragment *theNucleus) override
G4double GetCurrentXS()
void Initialise() override
G4Fragment * EmittedFragment(G4Fragment *theNucleus) override
G4GEMChannelVI(const G4GEMChannelVI &right)=delete
const G4String & ModelName() const override
G4bool operator!=(const G4GEMChannelVI &right) const =delete
G4bool operator==(const G4GEMChannelVI &right) const =delete
Definition G4Pow.hh:49
G4VEvaporationChannel(const G4String &aName="")
G4VSIntegration()=default