Import Geant4 9.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:58:43 +02:00
parent 96c8bcd0af
commit b79225fb37
7544 changed files with 245407 additions and 91099 deletions
@@ -14,6 +14,10 @@ code and to keep track of all tags.
* Please list in reverse chronological order (last date on top)
---------------------------------------------------------------
09 July 2008 Dennis Wright (hadr-lllfis-V09-01-00)
--------------------------------------------------
- Replace exit() with G4Exception() in G4fissionerr.
27 June 2007 Gabriele Cosmo (hadr-lllfis-V08-03-07)
---------------------------------------------------
- Replace NeutronHPCrossSections with G4NEUTRONHPDATA variable.
@@ -24,7 +24,7 @@
// ********************************************************************
//
// $Id: G4FissLib.hh,v 1.2 2007/06/01 13:46:53 gcosmo Exp $
// GEANT4 tag $Name: geant4-09-01 $
// GEANT4 tag $Name: geant4-09-02 $
//
// ********************************************************************
// ! A neutron-induced fission package !
@@ -53,7 +53,7 @@
// UCRL-CODE-224807
//
// $Id: G4FissionLibrary.hh,v 1.4 2007/06/01 14:02:08 gcosmo Exp $
// GEANT4 tag $Name: geant4-09-01 $
// GEANT4 tag $Name: geant4-09-02 $
//
#ifndef G4FissionLibrary_h
@@ -53,7 +53,7 @@
// UCRL-CODE-224807
//
//
// $Id: G4fissionerr.cc,v 1.2 2007/06/01 13:46:53 gcosmo Exp $
// $Id: G4fissionerr.cc,v 1.3 2008/07/09 21:04:57 dennis Exp $
//
#include <iostream>
@@ -94,12 +94,13 @@ void G4fissionEvent::G4fissionerr(G4int iSever, std::string chSubNam, std::strin
ExitMsg = "Error in Function "+chSubNam+", Severity=" + itoa(iSever) + " : "+chMsg;
std::cerr << "Fission " << ExitMsg << std::endl;
if (doExit == 1) exit(iSever);
if (doExit == 1) G4Exception("G4fissionEvent::G4fissionerr()", "601",
FatalException, "Fatal Error");
return;
}
std::string itoa(const G4int& x)
{
std::ostringstream o;