Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fastNLO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
qcd-public
fastNLO
Commits
2511a64f
Commit
2511a64f
authored
6 years ago
by
Klaus Rabbertz
Browse files
Options
Downloads
Patches
Plain Diff
Install script update
parent
7ac5ef93
Branches
Branches containing commit
Tags
2652
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/fnlosrc_install.csh
+27
-11
27 additions, 11 deletions
tools/fnlosrc_install.csh
with
27 additions
and
11 deletions
tools/fnlosrc_install.csh
+
27
−
11
View file @
2511a64f
...
...
@@ -576,18 +576,31 @@ if ( $withroot == 5 ) then
mv root ${arc}
endif
else if ( $withroot == 6 ) then
set arc="root-6.08.06" # OK for gcc >= 5. Needs CMake >= 3.4.3!
#
set arc="root-6.1
0
.06"
# Don't use this one! Buggy -lImt library dependence ...
#
set arc="root-6.08.06" # OK for gcc >= 5. Needs CMake >= 3.4.3!
set arc="root-6.1
4
.06"
if ( ! -e ${arc}_installed ) then
tar xzf ${arc}.tar.gz
endif
endif
if (
($withroot == 5 || $withroot == 6) &&
! -e ${arc}_installed
) then
if ( ! -e ${arc}_installed ) then
cd ${arc}
./configure --prefix=${base} --etcdir=${base}/etc ${pythonopt} --enable-minuit2 --disable-xrootd
make -j${cores} install
cd ..
touch ${arc}_installed
if ( $withroot == 5 ) then
./configure --prefix=${base} --etcdir=${base}/etc ${pythonopt} --enable-minuit2 --disable-xrootd
make -j${cores} install
cd ..
touch ${arc}_installed
else if ( $withroot == 6 ) then
mkdir mybuild
cd mybuild
cmake ..
cmake --build . -- -j${cores}
cmake -DCMAKE_INSTALL_PREFIX=${base} -DCMAKE_INSTALL_DATAROOTDIR=${base}/share -P cmake_install.cmake
cd ..
cd ..
touch ${arc}_installed
else
cd ..
endif
endif
#
...
...
@@ -650,9 +663,11 @@ if ( $withoptional ) then
# fastNLO comes already with alpha_s evolutions from GRV or CRunDec, or
# uses the one from the PDFs in LHAPDF
#
set arc="hoppet-1.1.5"
# set arc="hoppet-1.1.5"
set arc="hoppet-1.2.0"
if ( ! -e ${arc}_installed ) then
tar xzf ${arc}-patched.tar.gz # Need patched version on newer systems like Ubuntu 16.04
# tar xzf ${arc}-patched.tar.gz # Need patched version on newer systems like Ubuntu 16.04
tar xzf ${arc}.tar.gz
cd ${arc}
./configure --prefix=${base}
make -j${cores} install
...
...
@@ -885,12 +900,13 @@ if ( $withsherpa ) then
# Sherpa for use with MCgrid & fastNLO:
# Version >= 2.2.0 is required!
# For use of MPI with Sherpa corresponding system packages are required (MPICH, OpenMPI).
# (Repacked version required for compatibility with C++11 standard enforcement.)
# (Repacked version required for compatibility with C++11 standard enforcement.
# Plus additional patch in ./ATOOLS/Org/Gzip_Stream.C)
#------------------------------------------------------------------------------
set arc="SHERPA-MC-2.2.4"
# set arc="SHERPA-MC-2.2.5" # Does not work, not even after repacking
if ( ! -e ${arc}_installed ) then
tar xzf ${arc}-
repack
ed.tar.gz
tar xzf ${arc}-
patch
ed.tar.gz
# tar xzf ${arc}.tar.gz
cd ${arc}
./configure --prefix=${base} --with-sqlite3=install --enable-gzip --enable-lhole --enable-fastjet=${base} --enable-lhapdf=${lhapdfbasepath} --enable-hepmc2=${base} --enable-rivet=${base} ${rootenablepath} --enable-openloops=${base}/src/OpenLoops-1.3.1 ${mpiopt} --enable-blackhat=${base}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment