Import Geant4 10.5.0.beta source tree
This commit is contained in:
@@ -14,6 +14,11 @@ code and to keep track of all tags.
|
||||
* Please list in reverse chronological order (last date on top)
|
||||
---------------------------------------------------------------
|
||||
|
||||
09 May 2018 A. Ribon (hadr-stopping-V10-04-00)
|
||||
--------------------------------------------------------------------
|
||||
- G4HadronStoppingProcess, G4MuonicAtomDecay : fixed warnings in gcc 8
|
||||
regarding catching polymorphic type by value, instead of by reference.
|
||||
|
||||
23 October 2017 K.L. Genser (hadr-stopping-V10-03-02)
|
||||
--------------------------------------------------------------------
|
||||
- G4MuonicAtomDecay fixed verbosity
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4HadronStoppingProcess.cc 94351 2015-11-12 15:35:32Z gcosmo $
|
||||
// $Id: G4HadronStoppingProcess.cc 109781 2018-05-09 08:10:16Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------
|
||||
//
|
||||
@@ -212,7 +212,7 @@ G4VParticleChange* G4HadronStoppingProcess::AtRestDoIt(const G4Track& track,
|
||||
resultNuc = model->ApplyYourself(thePro, *nucleus);
|
||||
++reentryCount;
|
||||
}
|
||||
catch(G4HadronicException aR) {
|
||||
catch(G4HadronicException & aR) {
|
||||
G4ExceptionDescription ed;
|
||||
ed << "Call for " << model->GetModelName() << G4endl;
|
||||
ed << "Target element "<<elm->GetName()<<" Z= "
|
||||
|
||||
@@ -384,7 +384,7 @@ G4VParticleChange* G4MuonicAtomDecay::DecayIt(const G4Track& aTrack,
|
||||
result = cmptr->ApplyYourself(theMuPro, nucleus); // muon and muonic atom nucleus
|
||||
++reentryCount;
|
||||
}
|
||||
catch(G4HadronicException aR) {
|
||||
catch(G4HadronicException & aR) {
|
||||
G4ExceptionDescription ed;
|
||||
ed << "Call for " << cmptr->GetModelName() << G4endl;
|
||||
ed << " Z= "
|
||||
|
||||
Reference in New Issue
Block a user