QualityControl  1.5.1
O2 Data Quality Control Framework
RawCheck.h
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 
16 
17 #ifndef QC_MODULE_PHOS_PHOSRAWCHECK_H
18 #define QC_MODULE_PHOS_PHOSRAWCHECK_H
19 
21 
22 class TH1F;
23 
24 using namespace o2::quality_control::core;
25 
27 {
28 
33 {
34  public:
36  RawCheck() = default;
38  ~RawCheck() override = default;
39 
40  // Override interface
41  void configure(std::string name) override;
42  Quality check(std::map<std::string, std::shared_ptr<MonitorObject>>* moMap) override;
43  void beautify(std::shared_ptr<MonitorObject> mo, Quality checkResult = Quality::Null) override;
44  std::string getAcceptedType() override;
45 
46  ClassDefOverride(RawCheck, 1);
47 };
48 
49 } // namespace o2::quality_control_modules::phos
50 
51 #endif // QC_MODULE_PHOS_PHOSRAWCHECK_H
Definition: DigitCheck.h:21
Class representing the quality of a MonitorObject.
Definition: Quality.h:29
PHOS raw data check It is final because there is no reason to derive from it. Just remove it if neede...
Definition: RawCheck.h:32
Skeleton of a check.
Definition: CheckInterface.h:32
These methods can be used to build a complex processing topology. It spawns 3 separate dummy processi...
Definition: Activity.h:19