Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Detectors/AOD/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ target_link_libraries(
O2::FDDWorkflow
O2::FV0Workflow
O2::Framework
O2::FrameworkAnalysisSupport
O2::GlobalTracking
O2::GlobalTrackingWorkflow
O2::ITSMFTWorkflow
Expand Down Expand Up @@ -75,6 +76,7 @@ o2_add_executable(
O2::DataFormatsFT0
O2::Steer
O2::ZDCBase
O2::FrameworkAnalysisSupport
nlohmann_json::nlohmann_json
)

Expand Down
7 changes: 7 additions & 0 deletions Framework/AnalysisSupport/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ endif()
o2_add_library(FrameworkAnalysisSupport
SOURCES src/Plugin.cxx
src/DataInputDirector.cxx
src/TableTreeHelpers.cxx
src/AODJAlienReaderHelpers.cxx
src/AODWriterHelpers.cxx
PRIVATE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/src
Expand All @@ -39,3 +40,9 @@ o2_add_test(DataInputDirector NAME test_Framework_test_DataInputDirector
COMPONENT_NAME Framework
LABELS framework
PUBLIC_LINK_LIBRARIES O2::FrameworkAnalysisSupport)

o2_add_test(TableToTree NAME benchmark_TableToTree
SOURCES test/benchmark_TableToTree.cxx
COMPONENT_NAME Framework
LABELS framework
PUBLIC_LINK_LIBRARIES O2::FrameworkAnalysisSupport benchmark::benchmark)
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "TTreeReader.h"
#include "TTreeReaderValue.h"
#include "TTreeReaderArray.h"
#include "TableBuilder.h"
#include "Framework/TableBuilder.h"
#include <arrow/dataset/file_base.h>
#include <memory>

Expand Down
2 changes: 0 additions & 2 deletions Framework/Core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ o2_add_library(Framework
src/TMessageSerializer.cxx
src/TableBuilder.cxx
src/TableConsumer.cxx
src/TableTreeHelpers.cxx
src/TopologyPolicy.cxx
src/TopologyPolicyHelpers.cxx
src/TextDriverClient.cxx
Expand Down Expand Up @@ -349,7 +348,6 @@ foreach(b
ASoAHelpers
EventMixing
HistogramRegistry
TableToTree
ExternalFairMQDeviceProxies
)
o2_add_executable(benchmark-${b}
Expand Down