Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Getting Started with SiD DD4HEP | ||||||||
Changed: | ||||||||
< < | At the moment, our code is committed to the DESY SVN repository, where the core DD4hep software and the CLIC and ILD models are stored as well. This is to make it easier to include SiD in the standard tests. The latest/work version is labelled SiD _o1_v01. The XML configuration is located in lcgeo/SiD/compact/SiD_o1_v01 and the C++ drivers are located in lcgeo/detector/ Browse or check out the code via https://svnsrv.desy.de/websvn/wsvn/General.ddsim/lcgeo ![]() If needed for read access, a new basic account can be registered for anyone, by anyone else who has a grid certificate, at: https://svnsrv.desy.de/admin/svn Build example: | |||||||
> > | At the moment, our code is committed to the DESY SVN repository, where the core DD4hep software and the CLIC and ILD models are stored as well. This is to make it easier to include SiD in the standard tests. The latest/work version is labelled SiD_o1_v01. The XML configuration is located in lcgeo/SiD/compact/SiD_o1_v01 and the C++ drivers are located in lcgeo/detector/ Browse or check out the code via https://svnsrv.desy.de/websvn/wsvn/General.ddsim/lcgeo ![]() If needed for read access, a new basic account can be registered for anyone, by anyone else who has a grid certificate, at: https://svnsrv.desy.de/admin/svn | |||||||
Changed: | ||||||||
< < | svn co https://svnsrv.desy.de/basic/ddsim/lcgeo/trunk lcgeo | |||||||
> > | We are running on SL6 machines and haven't tried other architectures. Note that you must have cvmfs installed (ask your local sysadmin). Build example: # [first five steps are one-time only] svn co https://svnsrv.desy.de/basic/ddsim/lcgeo/trunk lcgeo rm lcgeo/detector/calorimeter/SHcal* rm lcgeo/detector/calorimeter/SEcal* rm lcgeo/detector/CaloTB/CaloPrototype* mkdir lcgeo/build # [setups you do every time: ] | |||||||
source /cvmfs/sft.cern.ch/lcg/releases/gcc/4.8.4/x86_64-slc6/setup.sh source /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/v01-17-09/init_ilcsoft.sh | ||||||||
Changed: | ||||||||
< < | cd lcgeo/ rm detector/detector/calorimeter/SHcal* rm detector/detector/calorimeter/SEcal* rm detector/detector/CaloTB/CaloPrototype* mkdir build cd build | |||||||
> > | cd lcgeo/build # [cmake you only need do after you have added/removed/moved files from the directories] | |||||||
cmake -DCMAKE_CXX_COMPILER=`which g++` -DCMAKE_C_COMPILER=`which gcc` -C /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/ILCSoft.cmake .. | ||||||||
Added: | ||||||||
> > | # [make you only need to do after you have changed files] | |||||||
make -j4 make install | ||||||||
Added: | ||||||||
> > | # [setup you need to do every time: ] | |||||||
source ../bin/thislcgeo.sh Run example for ddsim: | ||||||||
Line: 19 to 25 | ||||||||
source ../bin/thislcgeo.sh Run example for ddsim: | ||||||||
Deleted: | ||||||||
< < | ||||||||
Added: | ||||||||
> > | # [assuming you are in the lcgeo directory you created above, but these instructions are for a clean login] | |||||||
source /cvmfs/sft.cern.ch/lcg/releases/gcc/4.8.4/x86_64-slc6/setup.sh source /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/v01-17-09/init_ilcsoft.sh export LCGRELEASES=/cvmfs/sft.cern.ch/lcg/releases/LCG_84 | ||||||||
Line: 32 to 38 | ||||||||
export PATH=$PYTOOLSDIR/bin:$PATH source bin/thislcgeo.sh python example/lcio_particle_gun.py | ||||||||
Changed: | ||||||||
< < | ddsim --compactFile=SiD/compact/SiD_o1_v01.xml --runType=batch --inputFile mcparticles.slcio -N=1 --outputFile=testSiD_o1_v01.slcio | |||||||
> > | ddsim --compactFile=SiD/compact/SiD_o1_v01/SiD_o1_v01.xml --runType=batch --inputFile mcparticles.slcio -N=1 --outputFile=testSiD_o1_v01.slcio | |||||||
Then to look at the output: | ||||||||
Deleted: | ||||||||
< < | ||||||||
dumpevent testSiD_o1_v01.slcio 1or |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Getting Started with SiD DD4HEPAt the moment, our code is committed to the DESY SVN repository, where the core DD4hep software and the CLIC and ILD models are stored as well. This is to make it easier to include SiD in the standard tests. The latest/work version is labelled SiD _o1_v01. The XML configuration is located in lcgeo/SiD/compact/SiD_o1_v01 and the C++ drivers are located in lcgeo/detector/ Browse or check out the code via https://svnsrv.desy.de/websvn/wsvn/General.ddsim/lcgeo ![]() If needed for read access, a new basic account can be registered for anyone, by anyone else who has a grid certificate, at: https://svnsrv.desy.de/admin/svn Build example: svn co https://svnsrv.desy.de/basic/ddsim/lcgeo/trunk lcgeo source /cvmfs/sft.cern.ch/lcg/releases/gcc/4.8.4/x86_64-slc6/setup.sh source /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/v01-17-09/init_ilcsoft.sh cd lcgeo/ rm detector/detector/calorimeter/SHcal* rm detector/detector/calorimeter/SEcal* rm detector/detector/CaloTB/CaloPrototype* mkdir build cd build cmake -DCMAKE_CXX_COMPILER=`which g++` -DCMAKE_C_COMPILER=`which gcc` -C /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/ILCSoft.cmake .. make -j4 make install source ../bin/thislcgeo.shRun example for ddsim: source /cvmfs/sft.cern.ch/lcg/releases/gcc/4.8.4/x86_64-slc6/setup.sh source /cvmfs/ilc.desy.de/sw/x86_64_gcc48_sl6/v01-17-09/init_ilcsoft.sh export LCGRELEASES=/cvmfs/sft.cern.ch/lcg/releases/LCG_84 export PYTHONDIR=/cvmfs/sft.cern.ch/lcg/releases/LCG_84/Python/2.7.10/x86_64-slc6-gcc48-opt export PATH=/cvmfs/sft.cern.ch/lcg/releases/LCG_84/Python/2.7.10/x86_64-slc6-gcc48-opt/bin:$PATH export LD_LIBRARY_PATH=$PYTHONDIR/lib:$LD_LIBRARY_PATH export PYTOOLSDIR=/cvmfs/sft.cern.ch/lcg/releases/LCG_84/pytools/1.9_python2.7/x86_64-slc6-gcc48-opt export PYTHONPATH=/cvmfs/sft.cern.ch/lcg/releases/LCG_84/pytools/1.9_python2.7/x86_64-slc6-gcc48-opt/lib/python2.7/site-packages:$PYTHONPATH export PATH=$PYTOOLSDIR/bin:$PATH source bin/thislcgeo.sh python example/lcio_particle_gun.py ddsim --compactFile=SiD/compact/SiD_o1_v01.xml --runType=batch --inputFile mcparticles.slcio -N=1 --outputFile=testSiD_o1_v01.slcio Then to look at the output: dumpevent testSiD_o1_v01.slcio 1or anajob testSiD_o1_v01.slcio-- ![]() Comments |