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