From 2a4db9e52593f26375e17c2802bc1f7a695ede84 Mon Sep 17 00:00:00 2001 From: James Richard Catmore Date: Sun, 26 May 2019 23:07:13 +0200 Subject: [PATCH 1/2] Adding new package DerivationFrameworkHDBS This is a new package DerivationFrameworkHDBS for the newly formed group Higgs and Diboson Searches. There is currently no content. --- .../DerivationFrameworkHDBS/CMakeLists.txt | 30 +++++++++++++++++++ .../python/__init__.py | 0 2 files changed, 30 insertions(+) create mode 100644 PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt create mode 100644 PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/python/__init__.py diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt new file mode 100644 index 00000000000..3a2e3658b44 --- /dev/null +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt @@ -0,0 +1,30 @@ +################################################################################ +# Package: DerivationFrameworkHDBS +################################################################################ + +# Declare the package name: +atlas_subdir( DerivationFrameworkHDBS ) + +# Declare the package's dependencies: +atlas_depends_on_subdirs( PUBLIC + Control/AthenaBaseComps + GaudiKernel + PhysicsAnalysis/DerivationFramework/DerivationFrameworkInterfaces + PRIVATE + Control/AthenaKernel ) + +# Component(s) in the package: +atlas_add_library( DerivationFrameworkHDBSLib + src/*.cxx + PUBLIC_HEADERS DerivationFrameworkHDBS + LINK_LIBRARIES AthenaBaseComps GaudiKernel + PRIVATE_LINK_LIBRARIES AthenaKernel ) + +atlas_add_component( DerivationFrameworkHDBS + src/components/*.cxx + LINK_LIBRARIES AthenaBaseComps GaudiKernel AthenaKernel DerivationFrameworkHDBSLib ) + +# Install files from the package: +atlas_install_python_modules( python/*.py ) +atlas_install_joboptions( share/*.py ) + diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/python/__init__.py b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/python/__init__.py new file mode 100644 index 00000000000..e69de29bb2d -- GitLab From 598f55539b3520d2d6d0697bcc49c65830298fe2 Mon Sep 17 00:00:00 2001 From: James Richard Catmore Date: Mon, 27 May 2019 09:37:50 +0200 Subject: [PATCH 2/2] Updating CMakeLists.txt file --- .../DerivationFrameworkHDBS/CMakeLists.txt | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt index 3a2e3658b44..c84656403b6 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHDBS/CMakeLists.txt @@ -5,25 +5,6 @@ # Declare the package name: atlas_subdir( DerivationFrameworkHDBS ) -# Declare the package's dependencies: -atlas_depends_on_subdirs( PUBLIC - Control/AthenaBaseComps - GaudiKernel - PhysicsAnalysis/DerivationFramework/DerivationFrameworkInterfaces - PRIVATE - Control/AthenaKernel ) - -# Component(s) in the package: -atlas_add_library( DerivationFrameworkHDBSLib - src/*.cxx - PUBLIC_HEADERS DerivationFrameworkHDBS - LINK_LIBRARIES AthenaBaseComps GaudiKernel - PRIVATE_LINK_LIBRARIES AthenaKernel ) - -atlas_add_component( DerivationFrameworkHDBS - src/components/*.cxx - LINK_LIBRARIES AthenaBaseComps GaudiKernel AthenaKernel DerivationFrameworkHDBSLib ) - # Install files from the package: atlas_install_python_modules( python/*.py ) atlas_install_joboptions( share/*.py ) -- GitLab