Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4StatMFMacroTemperature.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 G4StatMFMacroTemperature_h
32#define G4StatMFMacroTemperature_h 1
33
34#include <vector>
35#include "globals.hh"
37#include "G4FunctionSolver.hh"
38
40
42
43public:
44
47
48 void Initialise(const G4int anA, const G4int aZ,
49 const G4double ExEnergy, const G4double FreeE0,
50 const G4double kappa,
51 std::vector<G4VStatMFMacroCluster*>* ClusterVector);
52
53
55 { return (fExEnergy - FragsExcitEnergy(T)); }
56
57 // copy constructor
60 (const G4StatMFMacroTemperature& right) = delete;
61 G4bool operator==(const G4StatMFMacroTemperature& right) const = delete;
62 G4bool operator!=(const G4StatMFMacroTemperature& right) const = delete;
63
64 G4double GetMeanMultiplicity(void) const {return fMeanMultiplicity;}
65
66 G4double GetChemicalPotentialMu(void) const {return fChemPotentialMu;}
67
68 G4double GetChemicalPotentialNu(void) const {return fChemPotentialNu;}
69
70 G4double GetTemperature(void) const {return fMeanTemperature;}
71
72 G4double GetEntropy(void) const {return fMeanEntropy;}
73
75
76private:
77
78 G4double FragsExcitEnergy(const G4double T);
79
80 void CalcChemicalPotentialNu(const G4double T);
81
84
85 G4int theA{0};
86 G4int theZ{0};
87 G4double fExEnergy{0.0};
88 G4double fFreeInternalE0{0.0};
89 G4double fKappa{0.0};
90 G4double fMeanMultiplicity{0.0};
91 G4double fMeanTemperature{0.0};
92 G4double fChemPotentialMu{0.0};
93 G4double fChemPotentialNu{0.0};
94 G4double fMeanEntropy{0.0};
95
96 std::vector<G4VStatMFMacroCluster*>* fClusters{nullptr};
97};
98
99#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4bool operator==(const G4StatMFMacroTemperature &right) const =delete
void Initialise(const G4int anA, const G4int aZ, const G4double ExEnergy, const G4double FreeE0, const G4double kappa, std::vector< G4VStatMFMacroCluster * > *ClusterVector)
G4bool operator!=(const G4StatMFMacroTemperature &right) const =delete
G4StatMFMacroTemperature(const G4StatMFMacroTemperature &)=delete
G4double GetChemicalPotentialMu(void) const
G4double GetChemicalPotentialNu(void) const
G4double GetMeanMultiplicity(void) const