tutorial:madgraph

This is an old revision of the document!


You have to install MG5 in your home directory.

Initial setup - install CMSSW and MG5 from launchpad

mkdir -p ~/work/MG5
cd ~/work/MG5
wget https://launchpad.net/mg5amcnlo/2.0/2.6.x/+download/MG5_aMC_v2.6.0.tar.gz
tar xzf MG5_aMC_v2.6.0.tar.gz

Setup the devtoolset to use updated gcc and python.

# source /opt/rh/devtoolset-4/enable
# source /opt/rh/python27/enable
cd MG5_aMC_v2_6_0

Install missing tools.

bin/mg5_aMC
#MG5_aMC> install update
MG5_aMC> install zlib; install boost;
MG5_aMC> install lhapdf6; install hepmc;
MG5_aMC> install oneloop; install ninja;
MG5_aMC> install pythia8
MG5_aMC> install collier
MG5_aMC> quit

Open the fortran source code HEPTools/oneloop/OneLOop-3.6/src/avh_olo_print.f90 and modify the line 61, replace real(kindr2) to double precision (in the printr function). This is because of a gfortran bug. See https://bugs.launchpad.net/mg5amcnlo/+bug/1631604 and https://answers.launchpad.net/mg5amcnlo/+question/268548#16

  double precision :: xx     !|RCTYPE=intrinsic
!  real(kindr2) :: xx     !|RCTYPE=intrinsic

and compile the package

cd HEPTools/oneloop/OneLOop-3.6
./clean.sh
./create.py
\cp libavh_olo.a ../

First step is to build missing library boost-iostreams.

if [ ! -f HEPTools/lib/libboost_iostreams.so ]; then
  cd HEPTools/boost/boost_1_59_0
  ./bootstrap.sh --with-libraries=iostreams
  ./b2
  \cp stage/lib/* ../lib/
  cd ../..
  cd lib
  for i in ../boost/lib/libboost_iostreams*; do ln -s $i; done
  cd ../..
fi

Then add the following lines to fix build flags https://answers.launchpad.net/mg5amcnlo/+question/659847

sed -i "s;PYTHIA8_PATH=NotInstalled;PYTHIA8_PATH=`pwd`/HEPTools/pythia8;g" Template/LO/Source/make_opts
sed -i 's;OUT+=" -ld";OUT+=" --libs";g' HEPTools/bin/pythia8-config
sed -i 's;OUT+=" -ld";OUT+=" --libs";g' HEPTools/pythia8/bin/pythia8-config

enable lhapdf6 for all of your generation (download other PDFSets depending on your needs)

cd HEPTools/lhapdf6
bin/lhapdf get NNPDF23_lo_as_0130_qed

Then you will be able to start the generation.

./bin/mg5_aMC
MG5_aMC> generate p p > t t~ [QCD]
MG5_aMC> output ttNLO
MG5_aMC> launch
  • tutorial/madgraph.1544522507.txt.gz
  • Last modified: 2023/03/06 13:44
  • (external edit)