-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added cepgen to standard CMSSW tools
- cloned from CLHEP spec-file - with interfacing libraries for HepMC2/3 (event output), LHAPDF (partonic photon PDF), and Pythia 6 ("legacy" proton remnant dissociation) - requires GSL, OpenBLAS, bzlib2 - collateral damage: CMake bumped to version 3.25.2
- Loading branch information
1 parent
cdf160d
commit 88e33bf
Showing
4 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
### RPM external cepgen 1.2.1 | ||
|
||
Source: https://github.com/cepgen/cepgen/archive/refs/tags/%{realversion}.tar.gz | ||
|
||
BuildRequires: cmake ninja | ||
Requires: gsl OpenBLAS hepmc hepmc3 lhapdf pythia6 root bz2lib zlib xz | ||
|
||
%prep | ||
%setup -n %{n}-%{realversion} | ||
|
||
%build | ||
rm -rf ../build | ||
mkdir ../build | ||
cd ../build | ||
|
||
export GSL_DIR=${GSL_ROOT} | ||
export OPENBLAS_DIR=${OPENBLAS_ROOT} | ||
export HEPMC_DIR=${HEPMC_ROOT} | ||
export HEPMC3_DIR=${HEPMC3_ROOT} | ||
export LHAPDF_PATH=${LHAPDF_ROOT} | ||
export PYTHIA6_DIR=${PYTHIA6_ROOT} | ||
export ROOTSYS=${ROOT_ROOT} | ||
|
||
cmake ../%{n}-%{realversion} \ | ||
-G Ninja \ | ||
-DCMAKE_INSTALL_PREFIX:PATH="%i" \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_PREFIX_PATH="${BZ2LIB_ROOT};${ZLIB_ROOT};${XZ_ROOT}" | ||
|
||
ninja -v %{makeprocesses} | ||
|
||
%install | ||
cd ../build | ||
ninja %{makeprocesses} install | ||
|
||
case $(uname) in Darwin ) so=dylib ;; * ) so=so ;; esac | ||
rm -f %i/lib/libCepGen*-[A-Z]*-%realversion.$so | ||
|
||
%post | ||
%{relocateConfig}bin/cepgen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<tool name="cepgen" version="@TOOL_VERSION@"> | ||
<info url="https://cepgen.hepforge.org/"/> | ||
<lib name="CepGen"/> | ||
<lib name="CepGenHepMC2"/> | ||
<lib name="CepGenHepMC3"/> | ||
<lib name="CepGenLHAPDF"/> | ||
<lib name="CepGenProcesses"/> | ||
<lib name="CepGenPythia6"/> | ||
<client> | ||
<environment name="CEPGEN_BASE" default="@TOOL_ROOT@"/> | ||
<environment name="LIBDIR" default="$CEPGEN_BASE/lib64"/> | ||
<environment name="INCLUDE" default="$CEPGEN_BASE/include"/> | ||
</client> | ||
<runtime name="PATH" value="$CEPGEN_BASE/bin" type="path"/> | ||
<runtime name="CEPGEN_PATH" value="$CEPGEN_BASE/share/CepGen"/> | ||
<use name="gsl"/> | ||
<use name="OpenBLAS"/> | ||
<use name="hepmc"/> | ||
<use name="hepmc3"/> | ||
<use name="lhapdf"/> | ||
<use name="pythia6"/> | ||
</tool> |