Import Geant4 11.2.2 source tree

This commit is contained in:
Gabriele Cosmo
2024-06-21 15:46:33 +02:00
parent dda54bbdcf
commit f7b23877ed
411 changed files with 22817 additions and 21317 deletions
+4
View File
@@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2024-03-13 Gabriele Cosmo (visQt3D-V11-01-08)
- Fixed compilation error on Windows for ambiguous string assignment in
G4Qt3DSceneHandler::CreateNewNode().
## 2023-10-14 John Allison (visQt3D-V11-01-07)
- G4Qt3DSceneHandler.cc: Add dummy normal line attributes - Qt6 seems to require!!
- I am puzzled - why do lines need normals?
@@ -149,7 +149,7 @@ G4Qt3DQEntity* G4Qt3DSceneHandler::CreateNewNode()
if (fReadyForTransients) { // All transients hang from this node
newNode = new G4Qt3DQEntity(fpTransientObjects);
G4String name = fpModel? fpModel->GetGlobalTag(): "User";
G4String name = fpModel? fpModel->GetGlobalTag(): G4String("User");
newNode->setObjectName(name.c_str());
return newNode;
}