Skip to content

Commit 16a5b73

Browse files
knopers8Barthelemy
authored andcommitted
Expose runnerUtils and ExamplePrinterSpec in include (#202)
1 parent 9c2cfaf commit 16a5b73

6 files changed

Lines changed: 6 additions & 7 deletions

File tree

Framework/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ set(
1818
src/RepositoryBenchmark.cxx
1919
src/HistoMerger.cxx
2020
src/InfrastructureGenerator.cxx
21-
src/runnerUtils.h
2221
src/ServiceDiscovery.cxx
2322
)
2423

File renamed without changes.

Framework/src/runnerUtils.h renamed to Framework/include/QualityControl/runnerUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ std::string getFirstTaskName(std::string configurationSource)
3939
throw;
4040
}
4141

42-
} // o2::quality_control::core
42+
} // namespace o2::quality_control::core
4343

4444
#endif //QUALITYCONTROL_RUNNERUTILS_H

Framework/src/runBasic.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
6767

6868
#include "QualityControl/Checker.h"
6969
#include "QualityControl/InfrastructureGenerator.h"
70-
#include "runnerUtils.h"
71-
#include "ExamplePrinterSpec.h"
70+
#include "QualityControl/runnerUtils.h"
71+
#include "QualityControl/ExamplePrinterSpec.h"
7272

7373
std::string getConfigPath(const ConfigContext& config);
7474

Framework/src/runReadout.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
6161
#include "Framework/runDataProcessing.h"
6262

6363
#include "QualityControl/Checker.h"
64-
#include "runnerUtils.h"
65-
#include "ExamplePrinterSpec.h"
64+
#include "QualityControl/runnerUtils.h"
65+
#include "QualityControl/ExamplePrinterSpec.h"
6666

6767
#include <iostream>
6868
#include <string>

Framework/test/testWorkflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#include "QualityControl/Checker.h"
1717
#include "QualityControl/InfrastructureGenerator.h"
18-
#include "../src/runnerUtils.h"
18+
#include "QualityControl/runnerUtils.h"
1919
#include <Framework/runDataProcessing.h>
2020
#include <Framework/ControlService.h>
2121
#include <Framework/DataSampling.h>

0 commit comments

Comments
 (0)