We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e24e0d commit ee7b8dbCopy full SHA for ee7b8db
1 file changed
Framework/src/TaskDPL.cxx
@@ -35,8 +35,9 @@ using namespace o2::framework;
35
using namespace o2::quality_control::core;
36
using namespace std::chrono;
37
38
-void defineDataProcessing(std::vector<DataProcessorSpec>& specs)
+WorkflowSpec defineDataProcessing(ConfigContext const&)
39
{
40
+ WorkflowSpec specs;
41
DataProcessorSpec producer{
42
"producer",
43
Inputs{},
@@ -102,4 +103,6 @@ void defineDataProcessing(std::vector<DataProcessorSpec>& specs)
102
103
104
LOG(INFO) << "Using config file '" << qcConfigurationSource << "'";
105
o2::framework::DataSampling::GenerateInfrastructure(specs, qcConfigurationSource);
106
+
107
+ return specs;
108
}
0 commit comments