Skip to content
Snippets Groups Projects
Commit 08b99cdc authored by Andre Sailer's avatar Andre Sailer
Browse files

DDG4: initAClick: give explicit location of DD4hep libraries so we don't pick...

DDG4: initAClick: give explicit location of DD4hep libraries so we don't pick them up from some other location
parent 280c7d74
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,6 @@ int initAClick(const char* command=0) { ...@@ -63,7 +63,6 @@ int initAClick(const char* command=0) {
std::string defs = ""; std::string defs = "";
std::string libs = " -L"+rootsys+"/lib"; std::string libs = " -L"+rootsys+"/lib";
std::string inc = " -I"+dd4hep+"/examples/DDG4/examples -I"+dd4hep + " -I"+dd4hep+"/include"; std::string inc = " -I"+dd4hep+"/examples/DDG4/examples -I"+dd4hep + " -I"+dd4hep+"/include";
libs += " -L"+dd4hep+"/lib -lDD4hepGaudiPluginMgr -lDDCore -lDDG4";
if ( !geant4.empty() ) { if ( !geant4.empty() ) {
inc += " -I"+geant4+"/include/Geant4"; inc += " -I"+geant4+"/include/Geant4";
#ifdef __APPLE__ #ifdef __APPLE__
...@@ -83,7 +82,10 @@ int initAClick(const char* command=0) { ...@@ -83,7 +82,10 @@ int initAClick(const char* command=0) {
#ifndef __APPLE__ #ifndef __APPLE__
libs += " -lCore -lMathCore -pthread -lm -ldl -rdynamic"; libs += " -lCore -lMathCore -pthread -lm -ldl -rdynamic";
#endif #endif
gSystem->Load("libDD4hepGaudiPluginMgr"); libs += " " +dd4hep+"/lib/libDD4hepGaudiPluginMgr.so";
libs += " " +dd4hep+"/lib/libDDCore.so";
libs += " " +dd4hep+"/lib/libDDG4.so";
gSystem->Load("libDD4hepGaudiPluginMgr.so");
gSystem->AddIncludePath(inc.c_str()); gSystem->AddIncludePath(inc.c_str());
gSystem->AddLinkedLibs(libs.c_str()); gSystem->AddLinkedLibs(libs.c_str());
std::cout << "+++ Includes: " << gSystem->GetIncludePath() << std::endl; std::cout << "+++ Includes: " << gSystem->GetIncludePath() << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment