QualityControl  1.5.1
O2 Data Quality Control Framework
PostProcessingFactory.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 QUALITYCONTROL_POSTPROCESSINGFACTORY_H
17 #define QUALITYCONTROL_POSTPROCESSINGFACTORY_H
18 
20 
22 {
23 
24 class PostProcessingInterface;
25 
31 {
32  public:
33  PostProcessingFactory() = default;
34  virtual ~PostProcessingFactory() = default;
35 
39 };
40 
41 } // namespace o2::quality_control::postprocessing
42 
43 #endif //QUALITYCONTROL_POSTPROCESSINGFACTORY_H
Factory in charge of creating post-processing tasks.
Definition: PostProcessingFactory.h:30
Post-processing configuration structure.
Definition: PostProcessingConfig.h:29
Skeleton of a post-processing task.
Definition: PostProcessingInterface.h:35
PostProcessingInterface * create(const PostProcessingConfig &config)
Create a new instance of a PostProcessingInterface. The PostProcessingInterface actual class is decid...
Definition: PostProcessingFactory.cxx:25
Definition: PostProcessingConfig.h:23