Fork me on GitHub

Ignore:
Timestamp:
Dec 11, 2014, 4:34:30 PM (10 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
14ae668
Parents:
8e602e5
Message:

replace examples by cards

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/ExternalFastJetHepMC.cpp

    r8e602e5 ra8782e8  
    1717 */
    1818
     19/*
     20
     21First, you need to set DELPHES_DIR, FASTJET_DIR and ROOT_DIR:
     22
     23DELPHES_DIR=<path to Delphes installation>
     24FASTJET_DIR=<path to FastJet installation>
     25ROOT_DIR=<path to ROOT installation>
     26
     27Then run the following commands to build ExternalFastJetHepMC:
     28
     29DELPHES_LIB="-L$DELPHES_DIR -lDelphesNoFastJet"
     30
     31FASTJET_INC=`$FASTJET_DIR/bin/fastjet-config --cxxflags`
     32FASTJET_LIB=`$FASTJET_DIR/bin/fastjet-config --libs`
     33
     34ROOT_INC=`$ROOT_DIR/bin/root-config --incdir`
     35ROOT_LIB=`$ROOT_DIR/bin/root-config --libs`
     36
     37CXXFLAGS="$FASTJET_INC -I$ROOT_INC -I$DELPHES_DIR -I$DELPHES_DIR/external"
     38LDFLAGS="$FASTJET_LIB $ROOT_LIB $DELPHES_LIB"
     39
     40g++ $CXXFLAGS $LDFLAGS ExternalFastJetHepMC.cpp -o ExternalFastJetHepMC
     41
     42*/
     43
    1944#include <stdexcept>
    2045#include <iostream>
Note: See TracChangeset for help on using the changeset viewer.