QualityControl  1.5.1
O2 Data Quality Control Framework
TaskRunnerFactory.h
Go to the documentation of this file.
1 // Copyright CERN and copyright holders of ALICE O2. This software is
2 // distributed under the terms of the GNU General Public License v3 (GPL
3 // Version 3), copied verbatim in the file "COPYING".
4 //
5 // See http://alice-o2.web.cern.ch/license for full licensing information.
6 //
7 // In applying this license CERN does not waive the privileges and immunities
8 // granted to it by virtue of its status as an Intergovernmental Organization
9 // or submit itself to any jurisdiction.
10 
15 
16 #ifndef QC_CORE_TASKFACTORY_H
17 #define QC_CORE_TASKFACTORY_H
18 
19 #include <string>
20 #include <vector>
21 
22 #include <Framework/DataProcessorSpec.h>
23 
24 namespace o2::framework
25 {
26 class CompletionPolicy;
27 }
28 
30 {
31 
34 {
35  public:
36  TaskRunnerFactory() = default;
37  virtual ~TaskRunnerFactory() = default;
38 
45  o2::framework::DataProcessorSpec
46  create(std::string taskName, std::string configurationSource, size_t id = 0, bool resetAfterPublish = false);
47 
53  static void customizeInfrastructure(std::vector<framework::CompletionPolicy>& policies);
54 };
55 
56 } // namespace o2::quality_control::core
57 
58 #endif // QC_CORE_TASKFACTORY_H
Definition: AggregatorRunner.h:27
Factory in charge of creating DataProcessorSpec of QC task.
Definition: TaskRunnerFactory.h:33
These methods can be used to build a complex processing topology. It spawns 3 separate dummy processi...
Definition: Activity.h:19