From 420667f9838a1c2b5f98840c449277b36af8469c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= <26327373+vkucera@users.noreply.github.com> Date: Thu, 9 Jul 2026 17:32:17 +0200 Subject: [PATCH] Compile headers Provides missing compile commands needed by Clang-Tidy. --- ALICE3/CMakeLists.txt | 1 + ALICE3/ML/CMakeLists.txt | 14 ++++++++++++++ ALICE3/ML/HfMlResponse3Prong.cxx | 17 +++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 ALICE3/ML/CMakeLists.txt create mode 100644 ALICE3/ML/HfMlResponse3Prong.cxx diff --git a/ALICE3/CMakeLists.txt b/ALICE3/CMakeLists.txt index 469091ed219..ab5b6f1e78a 100644 --- a/ALICE3/CMakeLists.txt +++ b/ALICE3/CMakeLists.txt @@ -12,6 +12,7 @@ add_subdirectory(Core) # add_subdirectory(DataModel) +add_subdirectory(ML) add_subdirectory(Tasks) add_subdirectory(TableProducer) add_subdirectory(Macros) diff --git a/ALICE3/ML/CMakeLists.txt b/ALICE3/ML/CMakeLists.txt new file mode 100644 index 00000000000..5753ff2f23e --- /dev/null +++ b/ALICE3/ML/CMakeLists.txt @@ -0,0 +1,14 @@ +# Copyright 2019-2020 CERN and copyright holders of ALICE O2. +# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. +# All rights not expressly granted are reserved. +# +# This software is distributed under the terms of the GNU General Public +# License v3 (GPL Version 3), copied verbatim in the file "COPYING". +# +# In applying this license CERN does not waive the privileges and immunities +# granted to it by virtue of its status as an Intergovernmental Organization +# or submit itself to any jurisdiction. + +o2physics_add_library(A3HfMlCore + SOURCES HfMlResponse3Prong.cxx + PUBLIC_LINK_LIBRARIES O2Physics::MLCore) diff --git a/ALICE3/ML/HfMlResponse3Prong.cxx b/ALICE3/ML/HfMlResponse3Prong.cxx new file mode 100644 index 00000000000..9e2fa0c458a --- /dev/null +++ b/ALICE3/ML/HfMlResponse3Prong.cxx @@ -0,0 +1,17 @@ +// Copyright 2019-2020 CERN and copyright holders of ALICE O2. +// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. +// All rights not expressly granted are reserved. +// +// This software is distributed under the terms of the GNU General Public +// License v3 (GPL Version 3), copied verbatim in the file "COPYING". +// +// In applying this license CERN does not waive the privileges and immunities +// granted to it by virtue of its status as an Intergovernmental Organization +// or submit itself to any jurisdiction. + +/// \file HfMlResponse3Prong.cxx +/// \brief Helper file to provide compilation command for headers. +/// +/// \author Vít Kučera , Inha University + +#include "HfMlResponse3Prong.h" // IWYU pragma: keep