Import Geant4 11.1.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2022-07-01 10:44:02 +02:00
parent b3bf75a2a1
commit c07cea1fe0
2172 changed files with 183300 additions and 123938 deletions
+17 -18
View File
@@ -1,31 +1,30 @@
-------------------------------------------------------------------
# Category hadr-abla History
==========================================================
Geant4 - an Object-Oriented Toolkit for Physics Simulation
==========================================================
---------------------------------------------------------------------
See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
which **must** added in reverse chronological order (newest at the top).
It must **not** be used as a substitute for writing good git commit messages!
History file for the ABLA evaporation/fission model
---------------------------------------------------
-------------------------------------------------------------------------------
This file should be used to summarize modifications introduced in the
code and to keep track of all tags.
## 2022-04-25 Ben Morgan (hadr-abla-V11-00-03)
- Add needed dependencies
---------------------------------------------------------------
* Please list in reverse chronological order (last date on top)
---------------------------------------------------------------
20 April 2022 - Alberto Ribon (hadr-abla-V10-07-06)
---------------------------------------------------
## 2022-04-20 Alberto Ribon (hadr-abla-V11-00-02)
- G4Abla.cc : fixed compilation warnings for 'may be used uninitialized'
variables.
9 February 2022 - Gabriele Cosmo
--------------------------------
## 2022-02-09 Gabriele Cosmo (hadr-abla-V11-00-01)
- Fixed compilation warnings on Intel compilers for unused variables.
## 2021-12-10 Ben Morgan (hadr-abla-V11-00-00)
- Change to new Markdown History format.
---
# History entries prior to 11.0
8 November 2021 - Jose Luis Rodriguez Sanchez (hadr-abla-V10-07-05)
-------------------------------------------------------------------
-----------------------------------------------------
- Update of G4Abla for hypernuclei.
27 October 2021 - Alberto Ribon (hadr-abla-V10-07-04)
@@ -23,5 +23,7 @@ geant4_module_link_libraries(G4hadronic_abla
G4hadronic_mgt
G4hadronic_util
PRIVATE
G4hadronic_deex_handler
G4heprandom
G4ions
G4partman)
@@ -68,7 +68,7 @@ G4AblaDataFile::~G4AblaDataFile()
bool G4AblaDataFile::readData()
{
#ifdef ABLAXX_IN_GEANT4_MODE
if(!std::getenv("G4ABLADATA")) {
if(!G4FindDataDir("G4ABLADATA")) {
// throw G4HadronicException(__FILE__, __LINE__, "ERROR: Data
// missing. Set environment variable G4ABLA3.0 to point to the
// directory containing data files needed by INCL and ABLA
@@ -85,7 +85,7 @@ bool G4AblaDataFile::readData()
G4Exception("G4AblaDataFile::readData()","ABLA_001",
FatalException, ed);
}
G4String dataPath(std::getenv("G4ABLADATA"));
G4String dataPath(G4FindDataDir("G4ABLADATA"));
#else
G4String dataPath(theConfig->getABLAXXDataFilePath().c_str());
#endif