From 89f8f587158320e5f313dd667910629e238b6972 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, 3 Sep 2026 18:10:24 +0200 Subject: [PATCH] Compile header Provides missing compile commands needed by Clang-Tidy. --- PWGLF/Utils/CMakeLists.txt | 4 ++++ PWGLF/Utils/cascadeMlResponse.cxx | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 PWGLF/Utils/cascadeMlResponse.cxx diff --git a/PWGLF/Utils/CMakeLists.txt b/PWGLF/Utils/CMakeLists.txt index 8971e4a1597..b81a6eb7198 100644 --- a/PWGLF/Utils/CMakeLists.txt +++ b/PWGLF/Utils/CMakeLists.txt @@ -36,3 +36,7 @@ o2physics_add_library(LfStrangenessBuilderHelper o2physics_add_library(LfStrangenessBuilderModule SOURCES strangenessBuilderModule.cxx PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore KFParticle::KFParticle) + +o2physics_add_library(LfCascadeMlResponse + SOURCES cascadeMlResponse.cxx + PUBLIC_LINK_LIBRARIES O2Physics::MLCore) diff --git a/PWGLF/Utils/cascadeMlResponse.cxx b/PWGLF/Utils/cascadeMlResponse.cxx new file mode 100644 index 00000000000..43cb3236f9b --- /dev/null +++ b/PWGLF/Utils/cascadeMlResponse.cxx @@ -0,0 +1,18 @@ +// 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 cascadeMlResponse.cxx +/// \brief Helper file providing the compilation command for the CascadeMlResponse header. +/// +/// \author ALICE Collaboration + +// o2-linter: disable=name/workflow-file (not a workflow file) +#include "CascadeMlResponse.h" // IWYU pragma: keep