Changeset a8782e8 in git for examples/ExternalFastJetBasic.cpp
- Timestamp:
- Dec 11, 2014, 4:34:30 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 14ae668
- Parents:
- 8e602e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/ExternalFastJetBasic.cpp
r8e602e5 ra8782e8 17 17 */ 18 18 19 /* 20 21 First, you need to set DELPHES_DIR, FASTJET_DIR and ROOT_DIR: 22 23 DELPHES_DIR=<path to Delphes installation> 24 FASTJET_DIR=<path to FastJet installation> 25 ROOT_DIR=<path to ROOT installation> 26 27 Then run the following commands to build ExternalFastJetBasic: 28 29 DELPHES_LIB="-L$DELPHES_DIR -lDelphesNoFastJet" 30 31 FASTJET_INC=`$FASTJET_DIR/bin/fastjet-config --cxxflags` 32 FASTJET_LIB=`$FASTJET_DIR/bin/fastjet-config --libs` 33 34 ROOT_INC=`$ROOT_DIR/bin/root-config --incdir` 35 ROOT_LIB=`$ROOT_DIR/bin/root-config --libs` 36 37 CXXFLAGS="$FASTJET_INC -I$ROOT_INC -I$DELPHES_DIR -I$DELPHES_DIR/external" 38 LDFLAGS="$FASTJET_LIB $ROOT_LIB $DELPHES_LIB" 39 40 g++ $CXXFLAGS $LDFLAGS ExternalFastJetBasic.cpp -o ExternalFastJetBasic 41 42 */ 43 19 44 #include <stdexcept> 20 45 #include <iostream>
Note:
See TracChangeset
for help on using the changeset viewer.