Changes between Version 30 and Version 31 of WorkBook/LibraryInterface
- Timestamp:
- Nov 22, 2012, 9:49:30 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/LibraryInterface
v30 v31 9 9 Commands to download and build the library: 10 10 {{{ 11 11 setup ROOT environment variables 12 12 13 wget --no-check-certificate https://cp3.irmp.ucl.ac.be/projects/delphes/raw-attachment/wiki/LibraryInterface/ModularDelphes.tar.gz14 tar -zxf ModularDelphes.tar.gz13 wget --no-check-certificate https://cp3.irmp.ucl.ac.be/projects/delphes/raw-attachment/wiki/WikiStart/Delphes_V_3.0.0.tar.gz 14 tar -zxf Delphes_V_3.0.0.tar.gz 15 15 16 cd ModularDelphes 17 16 cd Delphes_V_3.0.0 17 make -j 4 18 18 19 20 19 # library 20 ls libDelphes.so 21 21 22 23 24 25 22 # headers 23 ls modules/Delphes.h 24 ls classes/DelphesClasses.h 25 ls classes/DelphesFactory.h 26 26 27 28 ls etc/delphes_card_CMS.tcl27 # config file 28 ls examples/delphes_card_CMS.tcl 29 29 }}} 30 30 … … 33 33 A fully functional application using the Delphes library can be found in 34 34 {{{ 35 ModularDelphes/readers/DelphesSTDHEP.cpp35 readers/DelphesSTDHEP.cpp 36 36 }}} 37 37