Skip to content

Commit dc0d189

Browse files
authored
Merge 932fee4 into sapling-pr-archive-ktf
2 parents e960619 + 932fee4 commit dc0d189

File tree

7 files changed

+10
-4
lines changed

7 files changed

+10
-4
lines changed

DataFormats/common/include/CommonDataFormat/BunchFilling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ class BunchFilling
107107

108108
ClassDefNV(BunchFilling, 2);
109109
};
110-
} // namespace o2
111110

112111
namespace framework
113112
{
@@ -118,5 +117,6 @@ struct is_messageable<o2::BunchFilling> : std::true_type {
118117
};
119118

120119
} // namespace framework
120+
} // namespace o2
121121

122122
#endif

Detectors/AOD/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ target_link_libraries(
1919
O2::FDDWorkflow
2020
O2::FV0Workflow
2121
O2::Framework
22+
O2::FrameworkAnalysisSupport
2223
O2::GlobalTracking
2324
O2::GlobalTrackingWorkflow
2425
O2::ITSMFTWorkflow

Framework/AnalysisSupport/CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ endif()
1919
o2_add_library(FrameworkAnalysisSupport
2020
SOURCES src/Plugin.cxx
2121
src/DataInputDirector.cxx
22+
src/TableTreeHelpers.cxx
2223
src/AODJAlienReaderHelpers.cxx
2324
src/AODWriterHelpers.cxx
2425
PRIVATE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/src
@@ -39,3 +40,9 @@ o2_add_test(DataInputDirector NAME test_Framework_test_DataInputDirector
3940
COMPONENT_NAME Framework
4041
LABELS framework
4142
PUBLIC_LINK_LIBRARIES O2::FrameworkAnalysisSupport)
43+
44+
o2_add_test(TableToTree NAME benchmark_TableToTree
45+
SOURCES test/benchmark_TableToTree.cxx
46+
COMPONENT_NAME Framework
47+
LABELS framework
48+
PUBLIC_LINK_LIBRARIES O2::FrameworkAnalysisSupport benchmark::benchmark)

Framework/Core/include/Framework/TableTreeHelpers.h renamed to Framework/AnalysisSupport/include/Framework/TableTreeHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "TTreeReader.h"
1919
#include "TTreeReaderValue.h"
2020
#include "TTreeReaderArray.h"
21-
#include "TableBuilder.h"
21+
#include "Framework/TableBuilder.h"
2222
#include <arrow/dataset/file_base.h>
2323
#include <memory>
2424

File renamed without changes.
File renamed without changes.

Framework/Core/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ o2_add_library(Framework
132132
src/TMessageSerializer.cxx
133133
src/TableBuilder.cxx
134134
src/TableConsumer.cxx
135-
src/TableTreeHelpers.cxx
136135
src/TopologyPolicy.cxx
137136
src/TopologyPolicyHelpers.cxx
138137
src/TextDriverClient.cxx
@@ -349,7 +348,6 @@ foreach(b
349348
ASoAHelpers
350349
EventMixing
351350
HistogramRegistry
352-
TableToTree
353351
ExternalFairMQDeviceProxies
354352
)
355353
o2_add_executable(benchmark-${b}

0 commit comments

Comments
 (0)