diff --git a/doc/DD4hepStartersGuide.pdf b/doc/DD4hepStartersGuide.pdf new file mode 100644 index 0000000000000000000000000000000000000000..222d61c139534a8ca26d3193a0f96d00b8005c6b Binary files /dev/null and b/doc/DD4hepStartersGuide.pdf differ diff --git a/doc/example_build_script.sh b/doc/example_build_script.sh new file mode 100755 index 0000000000000000000000000000000000000000..acf067fd981fc8795e86a140a9b5db4d0bbc8343 --- /dev/null +++ b/doc/example_build_script.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# +# ==== User configuration ========================================= +# Set here the proper installation directories of the pre-requisites +# ================================================================== +SW=~/SW +MY_ROOT=${SW}/root_v5.34.25_dbg +MY_GEANT4=${SW}/g4_10.01.p02_dbg +MY_LCIO=${SW}/lcio/v02-04-03 +MY_XERCES=${SW}/xerces-c-3.1.1 +MY_DD4HEP=`pwd`/DD4hep_tmp2 +# ================================================================== +# From here on all should be box-standard +# ================================================================== +. ${MY_ROOT}/bin/thisroot.sh +. ${MY_GEANT4}/bin/geant4.sh # Remove line if no DDG4 + +mkdir -p ${MY_DD4HEP}/build +mkdir -p ${MY_DD4HEP}/install +cd ${MY_DD4HEP} +svn co https://svnsrv.desy.de/basic/aidasoft/DD4hep/trunk + +cd build +cmake -DCMAKE_BUILD_TYPE=Debug \ + -DCMAKE_INSTALL_PREFIX=${MY_DD4HEP}/install \ + -DCMAKE_MODULE_PATH=${MY_DD4HEP}/install \ + -DDD4HEP_USE_XERCESC=ON -DXERCESC_ROOT_DIR=${MY_XERCES} \ + -DDD4HEP_USE_BOOST=ON -DDD4HEP_USE_GEANT4=ON -DGeant4_ROOT=${MY_GEANT4} \ + -DDD4HEP_USE_LCIO=ON -DLCIO_DIR=${MY_LCIO} \ + ../trunk + +# Build and install +make -j 6 install + +# Move to installation and setup runtime environment +cd ${MY_DD4HEP}/install +. bin/thisdd4hep.sh +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${MY_LCIO}/lib + +# Run Example... +python examples/DDG4/examples/CLICSidSimu.py