QualityControl  1.5.1
O2 Data Quality Control Framework
ITSFhrCheck.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 
16 
17 #ifndef QC_MODULE_ITS_ITSFHRCHECK_H
18 #define QC_MODULE_ITS_ITSFHRCHECK_H
19 
21 
23 {
24 
26 
28 {
29 
30  public:
32  ITSFhrCheck() = default;
34  ~ITSFhrCheck() override = default;
35 
36  // Override interface
37  void configure(std::string name) override;
38  Quality check(std::map<std::string, std::shared_ptr<MonitorObject>>* moMap) override;
39  void beautify(std::shared_ptr<MonitorObject> mo, Quality checkResult = Quality::Null) override;
40  std::string getAcceptedType() override;
41 
42  private:
43  ClassDefOverride(ITSFhrCheck, 1);
44 };
45 
46 } // namespace o2::quality_control_modules::its
47 
48 #endif // QC_MODULE_ITS_ITSFhrCheck_H
std::string getAcceptedType() override
Returns the name of the class that can be treated by this check.
Definition: ITSFhrCheck.cxx:49
void beautify(std::shared_ptr< MonitorObject > mo, Quality checkResult=Quality::Null) override
Modify the aspect of the plot.
Definition: ITSFhrCheck.cxx:51
Quality check(std::map< std::string, std::shared_ptr< MonitorObject >> *moMap) override
Returns the quality associated with these objects.
Definition: ITSFhrCheck.cxx:31
Definition: ITSClusterTask.h:31
Class representing the quality of a MonitorObject.
Definition: Quality.h:29
~ITSFhrCheck() override=default
Destructor.
ITSFhrCheck()=default
Default constructor.
Skeleton of a check.
Definition: CheckInterface.h:32
Check the sensor occupancy and raw data formatting errors.
Definition: ITSFhrCheck.h:27
void configure(std::string name) override
Configure the check based on its name.
Definition: ITSFhrCheck.cxx:29