Building DD4hep on a linux box with ILCSoft already installed
Ingredients
- CMake
- Xerces-C
- expat-devel
- Geant4
- DD4hep
Problems
- Need CMake 2.8 or newer
- Geant4 must be compiled with GDML and needs expat-devel
- Downloaded root binary needs libpcre.dylib
- DD4hep needs libssl.1.0.0.dylib
Installation Steps
Would be great if this could have been done simpler, but after a lot of frustrating trial and error I collected this list of must do’s:
CMake:
- get cmake-2.8.12.2 from http://www.cmake.org
- unpack
- cd cmake-2.8.12.2/
- ./bootstrap --prefix=~/Utils4DD4hep/packages/cmake
- make
- make install
- export PATH=~/Utils4DD4hep/packages/cmake/bin:$PATH
Xerces-C:
- get Xerces-C from http://xerces.apache.org/xerces-c
- unpack
- cd xerces-c-3.1.1/
- set ac_default_prefix=~/Utils4DD4hep/packages/xercesc in the configure script
- ./configure
- make
- make install
Expat:
- install expat-devel on the machine via yum
Geant4:
- get geant4.9.5.p02 source from http://geant4.web.cern.ch/geant4/support/source_archive.shtml
- unpack
- cd geant4.9.5.p02/
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=~/Utils4DD4hep/packages/Geant4 -DGEANT4_USE_GDML=ON -DXERCESC_INCLUDE_DIR=~/Utils4DD4hep/packages/xercesc/include -DXERCESC_LIBRARY=~/Utils4DD4hep/packages/xercesc/lib/libxerces-c.so -DEXPAT_INCLUDE_DIR=/usr/include -DEXPAT_LIBRARY=/lib64/libexpat.so.0 ..
- make
- make install
DD4hep itself:
- get DD4hep from https://svnsrv.desy.de/viewvc/aidasoft/DD4hep/?view=tar
- cd DD4hep
- edit DDG4/src/Geant4UIManager.cpp and change line 55 to ui = new G4UIExecutive(1,(char**)args);//,m_sessionType.c_str());
- mkdir build
- cd build/
- source /data/ppe01/sl5x/x86_64/root/5.34.07/bin/thisroot.sh
- source ~/Utils4DD4hep/packages/Geant4/bin/geant4.sh
- cmake -DCMAKE_INSTALL_PREFIX=~/DD4hep -DDD4HEP_WITH_GEANT4=on -DGeant4_DIR=~/Utils4DD4hep/packages/Geant4/lib64/Geant4-9.5.2 -DDD4HEP_USE_XERCESC=ON -DXERCESC_ROOT_DIR=~/Utils4DD4hep/packages/xercesc ../trunk/
- make -j install fails because of coding errors in DDRec/src/Surface.cpp
This topic: LinearCollider
> WebHome >
GlaDD4hep > LinuxDD4hep
Topic revision: r2 - 2014-05-12 - DanProtopopescu