Skip to content

Commit 650154c

Browse files
committed
Fix misplaced include and using directive
1 parent 2e71dc1 commit 650154c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/Tasks/checkDataModel.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
#include <Framework/AnalysisDataModel.h>
1717
#include <Framework/AnalysisHelpers.h>
18+
#include <Framework/AnalysisTask.h>
1819
#include <Framework/ConfigParamSpec.h>
1920
#include <Framework/Variant.h>
2021

@@ -24,6 +25,7 @@
2425

2526
using namespace o2;
2627
using namespace o2::framework;
28+
using namespace o2::framework::expressions;
2729

2830
// custom configurable for switching between run2 and run3 selection types
2931
void customize(std::vector<ConfigParamSpec>& workflowOptions)
@@ -32,9 +34,7 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
3234
// workflowOptions.push_back(ConfigParamSpec{"isMC", VariantType::Bool, false, {"Check also MC tables if set"}});
3335
}
3436

35-
#include <Framework/AnalysisTask.h>
3637
#include <Framework/runDataProcessing.h>
37-
using namespace o2::framework::expressions;
3838

3939
template <typename Table>
4040
struct LoadTable {

0 commit comments

Comments
 (0)