Import Geant4 11.3.1 source tree

This commit is contained in:
Gabriele Cosmo
2025-03-24 16:45:22 +01:00
parent 32390e802b
commit df176550b3
388 changed files with 29491 additions and 29435 deletions
+4
View File
@@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2025-02-11 Ben Morgan (materials-V11-02-09)
- Make ios flags for Store/Retrieve of G4ExtDEDXTable consistent to avoid
issues on Windows platforms.
## 2024-11-04 Philippe Canal (materials-V11-02-08)
- Improve stability of static initialization: simplified G4NistManager
singleton initialization; migrated Isotopes, Materials, Elements's table
+1 -1
View File
@@ -320,7 +320,7 @@ G4bool G4ExtDEDXTable::StorePhysicsTable(const G4String& fileName // File name
G4bool G4ExtDEDXTable::RetrievePhysicsTable(const G4String& fileName)
{
std::ifstream ifilestream;
ifilestream.open(fileName, std::ios::in | std::ios::binary);
ifilestream.open(fileName, std::ios::in);
if (! ifilestream) {
G4ExceptionDescription ed;
ed << "Cannot open file " << fileName;