QualityControl  1.5.1
O2 Data Quality Control Framework
SkeletonAggregator.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_SKELETONAGGREGATOR_H
17 #define QUALITYCONTROL_SKELETONAGGREGATOR_H
18 
19 // ROOT
20 #include <Rtypes.h>
21 // QC
23 
25 {
26 
30 {
31  public:
32  // Override interface
33  void configure(std::string name) override;
34  std::map<std::string, o2::quality_control::core::Quality> aggregate(o2::quality_control::core::QualityObjectsMapType& qoMap) override;
35 
36  ClassDefOverride(SkeletonAggregator, 1);
37 };
38 
39 } // namespace o2::quality_control_modules::skeleton
40 
41 #endif //QUALITYCONTROL_SKELETONAGGREGATOR_H
Skeleton of a quality aggregator user algorithm.
Definition: AggregatorInterface.h:31
Example QC quality aggregator.
Definition: SkeletonAggregator.h:29
void configure(std::string name) override
Configure the aggregator based on its name.
Definition: SkeletonAggregator.cxx:27
Definition: SkeletonAggregator.h:24