Please fill out the following information to help in answering your question, and also see tips for posting code snippets. If you don’t provide this information it will take more time to help with your problem!
Geant4 Version: 11-03-01
Operating System: Windows 10
Compiler/Version: VS2022
CMake Version: 4
I have installed Geant4 on a windows10 computer using VS 2022, QT6 (shouldn’t matter for this issue). I have run geant4.bat, and even manually set the environment variables (for running .exe from file explorer).
I have a base application I have used that compiles fine on Mac and Linux, but when I run it I get the warning that the Nistmanager->FindOrBuildMaterial material <> is not found. Looking in the source code, it seems this should return whatever G4string I passed to FindOrBuildMaterial().
In my code I have nman->FindOrBuildMaterial(“G4_N”);
I have tried first creating a G4String name = “G4_N” and get the same issue.
What could be causing my nistmanager to initialize, and run its function, but not get the string I pass to it?