Skip to content

Commit b00c291

Browse files
committed
Compile headers
Provides missing compile commands needed by Clang-Tidy.
1 parent a8eefb5 commit b00c291

6 files changed

Lines changed: 64 additions & 1 deletion

File tree

PWGHF/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# granted to it by virtue of its status as an Intergovernmental Organization
1010
# or submit itself to any jurisdiction.
1111

12-
# add_subdirectory(Core)
12+
add_subdirectory(Core)
1313
# add_subdirectory(DataModel)
1414
add_subdirectory(TableProducer)
1515
add_subdirectory(Tasks)

PWGHF/Core/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
# All rights not expressly granted are reserved.
4+
#
5+
# This software is distributed under the terms of the GNU General Public
6+
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
#
8+
# In applying this license CERN does not waive the privileges and immunities
9+
# granted to it by virtue of its status as an Intergovernmental Organization
10+
# or submit itself to any jurisdiction.
11+
12+
o2physics_add_library(HfMlCore
13+
SOURCES HfMlResponse.cxx
14+
PUBLIC_LINK_LIBRARIES O2Physics::MLCore)

PWGHF/Core/HfMlResponse.cxx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
// All rights not expressly granted are reserved.
4+
//
5+
// This software is distributed under the terms of the GNU General Public
6+
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
//
8+
// In applying this license CERN does not waive the privileges and immunities
9+
// granted to it by virtue of its status as an Intergovernmental Organization
10+
// or submit itself to any jurisdiction.
11+
12+
/// \file HfMlResponse.cxx
13+
/// \brief Helper file to provide compilation command for headers.
14+
///
15+
/// \author Vít Kučera <vit.kucera@cern.ch>, Inha University
16+
17+
#include "HfMlResponse.h" // IWYU pragma: keep

PWGHF/D2H/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
# granted to it by virtue of its status as an Intergovernmental Organization
1010
# or submit itself to any jurisdiction.
1111

12+
add_subdirectory(Core)
1213
add_subdirectory(TableProducer)
1314
add_subdirectory(Tasks)

PWGHF/D2H/Core/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
# All rights not expressly granted are reserved.
4+
#
5+
# This software is distributed under the terms of the GNU General Public
6+
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
#
8+
# In applying this license CERN does not waive the privileges and immunities
9+
# granted to it by virtue of its status as an Intergovernmental Organization
10+
# or submit itself to any jurisdiction.
11+
12+
o2physics_add_library(HfDataCreationCharmReso
13+
SOURCES DataCreationCharmReso.cxx
14+
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore KFParticle::KFParticle)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
// All rights not expressly granted are reserved.
4+
//
5+
// This software is distributed under the terms of the GNU General Public
6+
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
//
8+
// In applying this license CERN does not waive the privileges and immunities
9+
// granted to it by virtue of its status as an Intergovernmental Organization
10+
// or submit itself to any jurisdiction.
11+
12+
/// \file DataCreationCharmReso.cxx
13+
/// \brief Helper file to provide compilation command for headers.
14+
///
15+
/// \author Vít Kučera <vit.kucera@cern.ch>, Inha University
16+
17+
#include "DataCreationCharmReso.h" // IWYU pragma: keep

0 commit comments

Comments
 (0)