Import Geant4 10.7.0.beta source tree
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user