From e0e775411ccc91a1b6bccf1b94aba90efcf5ac5e Mon Sep 17 00:00:00 2001 From: Evgeny Kryshen Date: Mon, 17 Jul 2023 23:57:19 +0300 Subject: [PATCH] Move eventSelectionQa to DPG/Tasks/AOTEvent (#3090) --- Common/Tasks/CMakeLists.txt | 5 ----- DPG/Tasks/AOTEvent/CMakeLists.txt | 15 +++++++++++++++ .../Tasks/AOTEvent}/eventSelectionQa.cxx | 0 DPG/Tasks/CMakeLists.txt | 1 + 4 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 DPG/Tasks/AOTEvent/CMakeLists.txt rename {Common/Tasks => DPG/Tasks/AOTEvent}/eventSelectionQa.cxx (100%) diff --git a/Common/Tasks/CMakeLists.txt b/Common/Tasks/CMakeLists.txt index 66c0a370181..d6972a1c44a 100644 --- a/Common/Tasks/CMakeLists.txt +++ b/Common/Tasks/CMakeLists.txt @@ -29,11 +29,6 @@ o2physics_add_dpl_workflow(validation PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsBase COMPONENT_NAME Analysis) -o2physics_add_dpl_workflow(event-selection-qa - SOURCES eventSelectionQa.cxx - PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::AnalysisCCDB O2::DetectorsBase - COMPONENT_NAME Analysis) - o2physics_add_dpl_workflow(multiplicity-qa SOURCES multiplicityQa.cxx PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2::DetectorsBase diff --git a/DPG/Tasks/AOTEvent/CMakeLists.txt b/DPG/Tasks/AOTEvent/CMakeLists.txt new file mode 100644 index 00000000000..18ff8a6e5bc --- /dev/null +++ b/DPG/Tasks/AOTEvent/CMakeLists.txt @@ -0,0 +1,15 @@ +# 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_dpl_workflow(event-selection-qa + SOURCES eventSelectionQa.cxx + PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::AnalysisCCDB O2::DetectorsBase + COMPONENT_NAME Analysis) diff --git a/Common/Tasks/eventSelectionQa.cxx b/DPG/Tasks/AOTEvent/eventSelectionQa.cxx similarity index 100% rename from Common/Tasks/eventSelectionQa.cxx rename to DPG/Tasks/AOTEvent/eventSelectionQa.cxx diff --git a/DPG/Tasks/CMakeLists.txt b/DPG/Tasks/CMakeLists.txt index fba7aae0174..551a2462144 100644 --- a/DPG/Tasks/CMakeLists.txt +++ b/DPG/Tasks/CMakeLists.txt @@ -10,6 +10,7 @@ # or submit itself to any jurisdiction. add_subdirectory(AOTTrack) +add_subdirectory(AOTEvent) add_subdirectory(TPC) add_subdirectory(TOF) add_subdirectory(FDD)