Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Gaudi
Gaudi
Commits
f5a9d864
Commit
f5a9d864
authored
1 year ago
by
Marco Clemencic
Browse files
Options
Downloads
Plain Diff
Added support for the HepPDT vesion 3
See merge request
!1488
parents
05bc5f44
1994e6c0
No related branches found
No related tags found
1 merge request
!1488
Added support for the HepPDT vesion 3
Pipeline
#6185882
failed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiExamples/src/PartProp/PartPropExa.h
+9
-1
9 additions, 1 deletion
GaudiExamples/src/PartProp/PartPropExa.h
cmake/modules/FindHepPDT.cmake
+20
-4
20 additions, 4 deletions
cmake/modules/FindHepPDT.cmake
with
29 additions
and
5 deletions
GaudiExamples/src/PartProp/PartPropExa.h
+
9
−
1
View file @
f5a9d864
...
@@ -12,7 +12,15 @@
...
@@ -12,7 +12,15 @@
#define GAUDIEXAMPLES_PARTPROPEXA_H 1
#define GAUDIEXAMPLES_PARTPROPEXA_H 1
#include
"GaudiKernel/Algorithm.h"
#include
"GaudiKernel/Algorithm.h"
#include
"HepPDT/CommonParticleData.hh"
#if HEPPDT_VERSION_MAJOR == 2
# include "HepPDT/CommonParticleData.hh"
#endif
#if HEPPDT_VERSION_MAJOR == 3
# include "HepPDT/ParticleData.hh"
namespace
HepPDT
{
using
CommonParticleData
=
ParticleData
;
}
#endif
#include
"HepPDT/ProcessUnknownID.hh"
#include
"HepPDT/ProcessUnknownID.hh"
class
IPartPropSvc
;
class
IPartPropSvc
;
...
...
This diff is collapsed.
Click to expand it.
cmake/modules/FindHepPDT.cmake
+
20
−
4
View file @
f5a9d864
...
@@ -31,10 +31,20 @@ endif()
...
@@ -31,10 +31,20 @@ endif()
find_path
(
HEPPDT_INCLUDE_DIR HepPDT/ParticleData.hh
find_path
(
HEPPDT_INCLUDE_DIR HepPDT/ParticleData.hh
HINTS $ENV{HEPPDT_ROOT_DIR}/include
${
HEPPDT_ROOT_DIR
}
/include
)
HINTS $ENV{HEPPDT_ROOT_DIR}/include
${
HEPPDT_ROOT_DIR
}
/include
)
set
(
HEPPDT_VERSION 0.0.0
)
if
(
HEPPDT_INCLUDE_DIR
)
if
(
EXISTS
${
HEPPDT_INCLUDE_DIR
}
/HepPDT/defs.h
)
file
(
STRINGS
${
HEPPDT_INCLUDE_DIR
}
/HepPDT/defs.h HEPPDT_VERSION_STRING_CONTENT REGEX
"^#define[ ]+PACKAGE_VERSION[ ]+
\"
"
)
if
(
HEPPDT_VERSION_STRING_CONTENT
)
string
(
REGEX MATCH
"[1234567890\.]+[a-zA-Z]*"
HEPPDT_VERSION
${
HEPPDT_VERSION_STRING_CONTENT
}
)
endif
()
endif
()
endif
()
find_library
(
HEPPDT_PDT_LIBRARY NAMES HepPDT
find_library
(
HEPPDT_PDT_LIBRARY NAMES HepPDT
HINTS $ENV{HEPPDT_ROOT_DIR}/lib
${
HEPPDT_ROOT_DIR
}
/lib
)
HINTS $ENV{HEPPDT_ROOT_DIR}/lib
HINTS $ENV{HEPPDT_ROOT_DIR}/lib64
${
HEPPDT_ROOT_DIR
}
/lib
${
HEPPDT_ROOT_DIR
}
/lib64
)
find_library
(
HEPPDT_PID_LIBRARY NAMES HepPID
find_library
(
HEPPDT_PID_LIBRARY NAMES HepPID
HINTS $ENV{HEPPDT_ROOT_DIR}/lib
${
HEPPDT_ROOT_DIR
}
/lib
)
HINTS $ENV{HEPPDT_ROOT_DIR}/lib $
ENV
{HEPPDT_ROOT_DIR}/lib
64
${
HEPPDT_ROOT_DIR
}
/lib
${
HEPPDT_ROOT_DIR
}
/lib64
)
set
(
HEPPDT_LIBRARIES
${
HEPPDT_PDT_LIBRARY
}
${
HEPPDT_PID_LIBRARY
}
)
set
(
HEPPDT_LIBRARIES
${
HEPPDT_PDT_LIBRARY
}
${
HEPPDT_PID_LIBRARY
}
)
...
@@ -43,10 +53,11 @@ set(HEPPDT_INCLUDE_DIRS ${HEPPDT_INCLUDE_DIR})
...
@@ -43,10 +53,11 @@ set(HEPPDT_INCLUDE_DIRS ${HEPPDT_INCLUDE_DIR})
# handle the QUIETLY and REQUIRED arguments and set HEPPDT_FOUND to TRUE if
# handle the QUIETLY and REQUIRED arguments and set HEPPDT_FOUND to TRUE if
# all listed variables are TRUE
# all listed variables are TRUE
INCLUDE
(
FindPackageHandleStandardArgs
)
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
HepPDT DEFAULT_MSG HEPPDT_INCLUDE_DIR HEPPDT_LIBRARIES
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
HepPDT REQUIRED_VARS HEPPDT_INCLUDE_DIR HEPPDT_LIBRARIES
VERSION_VAR HEPPDT_VERSION
)
mark_as_advanced
(
HEPPDT_FOUND HEPPDT_INCLUDE_DIR HEPPDT_LIBRARIES
mark_as_advanced
(
HEPPDT_FOUND HEPPDT_INCLUDE_DIR HEPPDT_LIBRARIES
HEPPDT_PDT_LIBRARY HEPPDT_PID_LIBRARY
)
HEPPDT_PDT_LIBRARY HEPPDT_PID_LIBRARY
HEPPDT_VERSION
)
# Modernisation: create an interface target to link against
# Modernisation: create an interface target to link against
if
(
TARGET HepPDT::heppdt
)
if
(
TARGET HepPDT::heppdt
)
...
@@ -56,6 +67,11 @@ if(HEPPDT_FOUND)
...
@@ -56,6 +67,11 @@ if(HEPPDT_FOUND)
add_library
(
HepPDT::heppdt IMPORTED INTERFACE
)
add_library
(
HepPDT::heppdt IMPORTED INTERFACE
)
target_include_directories
(
HepPDT::heppdt SYSTEM INTERFACE
"
${
HEPPDT_INCLUDE_DIRS
}
"
)
target_include_directories
(
HepPDT::heppdt SYSTEM INTERFACE
"
${
HEPPDT_INCLUDE_DIRS
}
"
)
target_link_libraries
(
HepPDT::heppdt INTERFACE
"
${
HEPPDT_LIBRARIES
}
"
)
target_link_libraries
(
HepPDT::heppdt INTERFACE
"
${
HEPPDT_LIBRARIES
}
"
)
if
(
${
HEPPDT_VERSION
}
VERSION_GREATER_EQUAL
"3"
)
set_property
(
TARGET HepPDT::heppdt APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS HEPPDT_VERSION_MAJOR=3
)
else
()
set_property
(
TARGET HepPDT::heppdt APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS HEPPDT_VERSION_MAJOR=2
)
endif
()
# Display the imported target for the user to know
# Display the imported target for the user to know
if
(
NOT
${
CMAKE_FIND_PACKAGE_NAME
}
_FIND_QUIETLY
)
if
(
NOT
${
CMAKE_FIND_PACKAGE_NAME
}
_FIND_QUIETLY
)
message
(
STATUS
" Import target: HepPDT::heppdt"
)
message
(
STATUS
" Import target: HepPDT::heppdt"
)
...
...
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