Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4StatMFMicroCanonical.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// Hadronic Process: Nuclear De-excitations
27// by V. Lara
28//
29// Modification: 13.08.2025 V.Ivanchenko rewrite
30
31#ifndef G4StatMFMicroCanonical_h
32#define G4StatMFMicroCanonical_h 1
33
34#include <vector>
35
36#include "globals.hh"
37#include "G4VStatMFEnsemble.hh"
40#include "G4StatMFParameters.hh"
41#include "G4StatMFChannel.hh"
42
43#include "G4Fragment.hh"
45#include "G4FunctionSolver.hh"
46
47class G4Pow;
48
50
51public:
52
54
55 ~G4StatMFMicroCanonical() override;
56
57 // Initialise for a given G4Fragment
58 void Initialise(const G4Fragment& theFragment) override;
59
60 // Choice of the channel
61 G4StatMFChannel* ChooseAandZ(const G4Fragment &theFragment) override;
62
64 { return (fExEnergy + pFreeInternalE0 - CalcFreeInternalEnergy(T)); }
65
66 // copy constructor
69 G4bool operator==(const G4StatMFMicroCanonical& right) const = delete;
70 G4bool operator!=(const G4StatMFMicroCanonical& right) const = delete;
71
72private:
73
74 // Calculate Entropy of Compound Nucleus
75 G4double CalcEntropyOfCompoundNucleus(G4double& T);
76
77 G4double CalcFreeInternalEnergy(G4double T);
78
79 G4int Z{0};
80 G4int A{0};
81
82 // Statistical weight of compound nucleus
83 G4double fWCompoundNucleus{0.0};
84 G4double fExEnergy{0.0};
85
86 G4double A13{0.0};
87 G4double fInvLevelDensity{1.0};
88 G4double fSymmetryTerm{1.0};
89 G4double fCoulombTerm{0.0};
90
91 G4Pow* g4calc;
92 G4FunctionSolver<G4StatMFMicroCanonical>* fSolver;
93 // This is a vector of partitions provided different multiplicities
94 std::vector<G4StatMFMicroManager*> fPartitionManagerVector;
95
96};
97
98#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
const G4double A[17]
Definition G4Pow.hh:49
G4StatMFMicroCanonical(const G4StatMFMicroCanonical &right)=delete
G4bool operator==(const G4StatMFMicroCanonical &right) const =delete
void Initialise(const G4Fragment &theFragment) override
G4StatMFChannel * ChooseAandZ(const G4Fragment &theFragment) override
G4StatMFMicroCanonical & operator=(const G4StatMFMicroCanonical &right)=delete
G4bool operator!=(const G4StatMFMicroCanonical &right) const =delete
G4double Function(G4double T)
G4VStatMFEnsemble()=default