diff --git a/PWGHF/CMakeLists.txt b/PWGHF/CMakeLists.txt index 5bb211e6f56..add3997939e 100644 --- a/PWGHF/CMakeLists.txt +++ b/PWGHF/CMakeLists.txt @@ -9,7 +9,7 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -# add_subdirectory(Core) +add_subdirectory(Core) # add_subdirectory(DataModel) add_subdirectory(TableProducer) add_subdirectory(Tasks) diff --git a/PWGHF/Core/CMakeLists.txt b/PWGHF/Core/CMakeLists.txt new file mode 100644 index 00000000000..cb84e8bb00c --- /dev/null +++ b/PWGHF/Core/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(HfMlCore + SOURCES HfMlResponse.cxx + PUBLIC_LINK_LIBRARIES O2Physics::MLCore) diff --git a/PWGHF/Core/HfMlResponse.cxx b/PWGHF/Core/HfMlResponse.cxx new file mode 100644 index 00000000000..d0413658618 --- /dev/null +++ b/PWGHF/Core/HfMlResponse.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 HfMlResponse.cxx +/// \brief Helper file to provide compilation command for headers. +/// +/// \author Vít Kučera , Inha University + +#include "HfMlResponse.h" // IWYU pragma: keep diff --git a/PWGHF/D2H/CMakeLists.txt b/PWGHF/D2H/CMakeLists.txt index a842726759f..a40839d4f22 100644 --- a/PWGHF/D2H/CMakeLists.txt +++ b/PWGHF/D2H/CMakeLists.txt @@ -9,5 +9,6 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. +add_subdirectory(Core) add_subdirectory(TableProducer) add_subdirectory(Tasks) diff --git a/PWGHF/D2H/Core/CMakeLists.txt b/PWGHF/D2H/Core/CMakeLists.txt new file mode 100644 index 00000000000..813de3e001e --- /dev/null +++ b/PWGHF/D2H/Core/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(HfDataCreationCharmReso + SOURCES DataCreationCharmReso.cxx + PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore KFParticle::KFParticle) diff --git a/PWGHF/D2H/Core/DataCreationCharmReso.cxx b/PWGHF/D2H/Core/DataCreationCharmReso.cxx new file mode 100644 index 00000000000..b6e4345ebc3 --- /dev/null +++ b/PWGHF/D2H/Core/DataCreationCharmReso.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 DataCreationCharmReso.cxx +/// \brief Helper file to provide compilation command for headers. +/// +/// \author Vít Kučera , Inha University + +#include "DataCreationCharmReso.h" // IWYU pragma: keep