Skip to content

Commit 53cd0b4

Browse files
authored
Moving StepTHn to Framework (#5034)
1 parent 79e18c1 commit 53cd0b4

File tree

8 files changed

+9
-39
lines changed

8 files changed

+9
-39
lines changed

Analysis/Core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ o2_add_library(AnalysisCore
1717
src/AnalysisCompositeCut.cxx
1818
src/TriggerAliases.cxx
1919
src/HFConfigurables.cxx
20-
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisTools)
20+
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel)
2121

2222
o2_target_root_dictionary(AnalysisCore
2323
HEADERS include/AnalysisCore/CorrelationContainer.h

Framework/AnalysisTools/CMakeLists.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

Framework/AnalysisTools/src/AnalysisToolsLinkDef.h

Lines changed: 0 additions & 19 deletions
This file was deleted.

Framework/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ add_subdirectory(Core)
1717
add_subdirectory(Utils)
1818

1919
add_subdirectory(TestWorkflows)
20-
21-
add_subdirectory(AnalysisTools)

Framework/Core/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ o2_add_library(Framework
104104
src/runDataProcessing.cxx
105105
src/ExternalFairMQDeviceProxy.cxx
106106
src/HistogramRegistry.cxx
107+
src/StepTHn.cxx
107108
test/TestClasses.cxx
108109
PRIVATE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/src
109110
PUBLIC_LINK_LIBRARIES ${DEBUGGUI_TARGET}
@@ -132,6 +133,7 @@ o2_add_library(Framework
132133

133134
o2_target_root_dictionary(Framework
134135
HEADERS test/TestClasses.h
136+
include/Framework/StepTHn.h
135137
LINKDEF test/FrameworkCoreTestLinkDef.h)
136138

137139
foreach(t
File renamed without changes.

Framework/Core/test/FrameworkCoreTestLinkDef.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@
1818
#pragma link C++ class o2::test::SimplePODClass + ;
1919
#pragma link C++ class std::vector < o2::test::TriviallyCopyable > +;
2020
#pragma link C++ class std::vector < o2::test::Polymorphic > +;
21+
22+
#pragma link C++ class StepTHn + ;
23+
#pragma link C++ class StepTHnT < TArrayF> + ;
24+
#pragma link C++ class StepTHnT < TArrayD> + ;
25+
#pragma link C++ typedef StepTHnF;
26+
#pragma link C++ typedef StepTHnD;

0 commit comments

Comments
 (0)