Skip to content
Snippets Groups Projects
Commit 2f5208c0 authored by MarkusFrankATcernch's avatar MarkusFrankATcernch Committed by GitHub
Browse files

Merge pull request #6 from vvolkl/ddeve_fix

Fix DDEve header files.
parents 8bd6e70e a0a45b2c
No related branches found
No related tags found
No related merge requests found
...@@ -40,10 +40,10 @@ ...@@ -40,10 +40,10 @@
#include "DDEve/DDG4EventHandler.h" #include "DDEve/DDG4EventHandler.h"
namespace DD4hep { namespace DD4hep {
void EveDisplay(const char* xmlFile); void EveDisplay(const char* xmlFile, const char* eventFileName);
struct DDEve { struct DDEve {
static void run(const char* xmlFile) { static void run(const char* xmlFile) {
EveDisplay(xmlFile); EveDisplay(xmlFile, nullptr);
} }
}; };
} }
...@@ -55,7 +55,7 @@ namespace DD4hep { ...@@ -55,7 +55,7 @@ namespace DD4hep {
#pragma link C++ namespace DD4hep; #pragma link C++ namespace DD4hep;
#pragma link C++ function DD4hep::EveDisplay(const char* xmlFile); #pragma link C++ function DD4hep::EveDisplay(const char* xmlFile, const char* eventFileName);
#pragma link C++ class DD4hep::DDEve; #pragma link C++ class DD4hep::DDEve;
......
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