Import Geant4 11.4.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2025-06-26 09:17:29 +02:00
parent 20a218bbe1
commit a499fb82e9
1941 changed files with 203285 additions and 95593 deletions
+4
View File
@@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2025-06-13 Witek Pokorski (gdml-V11-03-00)
- Fixing the Problem 2322 by explicitely adding '0x' string before the address
in case of WIN32 platform.
## 2024-06-20 Gabriele Cosmo (gdml-V11-02-04, 03)
- Disabled schema validation by default, as XercesC currently does
support only 'http' (see: https://issues.apache.org/jira/browse/XERCESC-2220).
@@ -136,6 +136,9 @@ G4String G4GDMLWrite::GenerateName(const G4String& name, const void* const ptr)
stream << name;
if(addPointerToName)
{
#ifdef WIN32
stream << "0x";
#endif
stream << ptr;
};