Import Geant4 11.4.1 source tree
This commit is contained in:
@@ -6,9 +6,16 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2026-02-04 Gabriele Cosmo (had-binary-V11-03-00)
|
||||
- Fixed reported Coverity defects to avoid parameter string copy in
|
||||
G4BinaryCascade.
|
||||
|
||||
## 2025-12-23 Vladimir Ivantchenko
|
||||
- G4GeneratorPrecompoundInterface - added G4HadronicException header.
|
||||
|
||||
## 2024-08-19 Gabriele Cosmo (had-binary-V11-02-01)
|
||||
- Fixed reported Coverity defects for use of std::move() in G4BinaryCascade.
|
||||
Minor code optimisation (use of nullptr, use of const iterators and pre-increment)
|
||||
Minor code optimisation (use of nullptr, use of const iterators and pre-increment).
|
||||
|
||||
## 2024-05-22 Gunter Folger (had-binary-V11-02-00)
|
||||
- Address problem reported by Atlas of throwing execption if momentum cannot
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
//
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
#ifndef G4BinaryCascade_hh
|
||||
#define G4BinaryCascade_hh
|
||||
#ifndef G4BINARYCASCADE_HH
|
||||
#define G4BINARYCASCADE_HH
|
||||
|
||||
#include "G4VIntraNuclearTransportModel.hh"
|
||||
#include "G4ReactionProductVector.hh"
|
||||
@@ -172,8 +172,8 @@ private:
|
||||
|
||||
G4ReactionProductVector * ProductsAddFakeGamma(G4ReactionProductVector * products );
|
||||
|
||||
void PrintKTVector(G4KineticTrackVector * ktv, std::string comment=std::string(""));
|
||||
void PrintKTVector(G4KineticTrack* kt, std::string comment=std::string(""));
|
||||
void PrintKTVector(G4KineticTrackVector * ktv, const G4String& comment=G4String(""));
|
||||
void PrintKTVector(G4KineticTrack* kt, const G4String& comment=G4String(""));
|
||||
void DebugApplyCollisionFail(G4CollisionInitialState * collision,
|
||||
G4KineticTrackVector * products);
|
||||
void DebugApplyCollision(G4CollisionInitialState * collision,
|
||||
|
||||
@@ -2785,7 +2785,7 @@ void G4BinaryCascade::ClearAndDestroy(G4ReactionProductVector * rpv)
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
void G4BinaryCascade::PrintKTVector(G4KineticTrackVector * ktv, std::string comment)
|
||||
void G4BinaryCascade::PrintKTVector(G4KineticTrackVector * ktv, const G4String& comment)
|
||||
//----------------------------------------------------------------------------
|
||||
{
|
||||
if (comment.size() > 0 ) G4cout << "G4BinaryCascade::PrintKTVector() " << comment << G4endl;
|
||||
@@ -2806,7 +2806,7 @@ void G4BinaryCascade::PrintKTVector(G4KineticTrackVector * ktv, std::string comm
|
||||
}
|
||||
}
|
||||
//----------------------------------------------------------------------------
|
||||
void G4BinaryCascade::PrintKTVector(G4KineticTrack * kt, std::string comment)
|
||||
void G4BinaryCascade::PrintKTVector(G4KineticTrack * kt, const G4String& comment)
|
||||
//----------------------------------------------------------------------------
|
||||
{
|
||||
if (comment.size() > 0 ) G4cout << "G4BinaryCascade::PrintKTVector() "<< comment << G4endl;
|
||||
|
||||
@@ -92,6 +92,7 @@
|
||||
#include "G4PhysicsModelCatalog.hh"
|
||||
#include "G4HyperNucleiProperties.hh"
|
||||
//---------------------------------------------------------------------
|
||||
#include "G4HadronicException.hh"
|
||||
#include "Randomize.hh"
|
||||
#include "G4Log.hh"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user