/Users/proj/soft/ilcsoft/v02-02-03/DD4hep/tmp diff -uNr v01-11-02.ORIG/DDCore/src/RootDictionary.h v01-11-02/DDCore/src/RootDictionary.h --- v01-11-02.ORIG/DDCore/src/RootDictionary.h 2020-03-06 19:45:44.000000000 +0900 +++ v01-11-02/DDCore/src/RootDictionary.h 2022-03-02 07:51:32.000000000 +0900 @@ -49,7 +49,7 @@ namespace align {} namespace detail {} void run_interpreter(const std::string& name) { - pair a(0,0); + std::pair a(0,0); TRint app(name.c_str(), &a.first, a.second); app.Run(); } diff -uNr v01-11-02.ORIG/DDEve/src/Utilities.cpp v01-11-02/DDEve/src/Utilities.cpp --- v01-11-02.ORIG/DDEve/src/Utilities.cpp 2020-03-06 19:45:44.000000000 +0900 +++ v01-11-02/DDEve/src/Utilities.cpp 2022-03-02 09:42:12.000000000 +0900 @@ -29,6 +29,7 @@ #include "TEveGeoNode.h" #include "TEveElement.h" #include "TEveTrans.h" +#include "TEveGeoShape.h" using namespace dd4hep; using namespace dd4hep::detail; diff -uNr v01-11-02.ORIG/DDG4/python/DDG4Dict.C v01-11-02/DDG4/python/DDG4Dict.C --- v01-11-02.ORIG/DDG4/python/DDG4Dict.C 2020-03-06 19:45:44.000000000 +0900 +++ v01-11-02/DDG4/python/DDG4Dict.C 2022-03-02 09:48:51.000000000 +0900 @@ -194,12 +194,12 @@ }; /// Container definitions for Geant4Vertex - typedef vector Geant4VertexVector; - typedef map Geant4VertexIntMap; + typedef std::vector Geant4VertexVector; + typedef std::map Geant4VertexIntMap; /// Container definitions for Geant4Particle - typedef vector Geant4ParticleVector; - typedef map Geant4ParticleIntMap; + typedef std::vector Geant4ParticleVector; + typedef std::map Geant4ParticleIntMap; } }