Import Geant4 10.7.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2020-06-26 10:23:25 +02:00
parent c02c370437
commit 67ba86d073
1871 changed files with 174422 additions and 131884 deletions
@@ -13,6 +13,9 @@ code and to keep track of all tags.
* Please list in reverse chronological order (last date on top)
---------------------------------------------------------------
10-Mar-2020, Vladimir Ivanchenko had-binary-V10-06-00
- G4BinaryCascade: fixed memory leak at exit
06-Nov-2019, Alberto Ribon had-binary-V10-05-01
- G4GeneratorPrecompoundInterface: trivial fix.
@@ -179,13 +179,6 @@ G4VIntraNuclearTransportModel("Binary Cascade", ptr)
}
/*
G4BinaryCascade::G4BinaryCascade(const G4BinaryCascade& )
: G4VIntraNuclearTransportModel("Binary Cascade")
{
}
*/
G4BinaryCascade::~G4BinaryCascade()
{
ClearAndDestroy(&theTargetList);
@@ -193,9 +186,9 @@ G4BinaryCascade::~G4BinaryCascade()
ClearAndDestroy(&theCapturedList);
delete thePropagator;
delete theCollisionMgr;
std::for_each(theImR.begin(), theImR.end(), Delete<G4BCAction>());
for(auto & ptr : theImR) { delete ptr; }
theImR.clear();
delete theLateParticle;
//delete theExcitationHandler;
delete theH1Scatterer;
}