Import Geant4 11.3.0 source tree
This commit is contained in:
@@ -6,6 +6,12 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-09-02 Gabriele Cosmo (hadr-abla-V11-02-06)
|
||||
- Fixed reported Coverity defects for uninitialised data in G4Abla.
|
||||
|
||||
## 2024-08-21 Gabriele Cosmo (hadr-abla-V11-02-05)
|
||||
- Fixed reported Coverity defects for uninitialised data in G4VarNtp.
|
||||
|
||||
## 2024-04-29 Jose Luis Rodriguez Sanchez (hadr-abla-V11-02-04)
|
||||
- Added the dissipation parameter for heavy hypernuclei
|
||||
|
||||
|
||||
@@ -198,17 +198,17 @@ public:
|
||||
/**
|
||||
* Excit energy at fis.
|
||||
*/
|
||||
G4double estfis;
|
||||
G4double estfis = 0.;
|
||||
|
||||
/**
|
||||
* Z of fiss nucleus.
|
||||
*/
|
||||
G4int izfis;
|
||||
G4int izfis = 0;
|
||||
|
||||
/**
|
||||
* A of fiss nucleus.
|
||||
*/
|
||||
G4int iafis;
|
||||
G4int iafis = 0;
|
||||
|
||||
/**
|
||||
* Number of particles.
|
||||
@@ -221,7 +221,7 @@ public:
|
||||
* true = do fermi break-up (and skip ABLA part)
|
||||
* false = use ABLA
|
||||
*/
|
||||
G4bool needsFermiBreakup;
|
||||
G4bool needsFermiBreakup = false;
|
||||
|
||||
/**
|
||||
* emitted in cascade (0) or evaporation (1).
|
||||
|
||||
@@ -49,10 +49,11 @@ G4Abla::G4Abla(G4VarNtp* aVarntp)
|
||||
|
||||
verboseLevel = 0;
|
||||
gammaemission = 0; // 0 presaddle, 1 postsaddle
|
||||
T_freeze_out = 0.;
|
||||
T_freeze_out_in = T_freeze_out = 0.;
|
||||
Ainit = 0;
|
||||
Zinit = 0;
|
||||
Sinit = 0;
|
||||
IEV_TAB_SSC = 0;
|
||||
|
||||
ald = std::make_unique<G4Ald>();
|
||||
ec2sub = std::make_unique<G4Ec2sub>();
|
||||
|
||||
Reference in New Issue
Block a user