QualityControl  1.5.1
O2 Data Quality Control Framework
PID.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_MODULE_TPC_PID_H
17 #define QC_MODULE_TPC_PID_H
18 
19 // O2 includes
20 #include "TPCQC/PID.h"
21 
22 // QC includes
24 
25 class TH1F;
26 
27 using namespace o2::quality_control::core;
28 
30 {
31 
35 class PID final : public TaskInterface
36 {
37  public:
39  PID();
41  ~PID() override;
42 
43  // Definition of the methods for the template method pattern
44  void initialize(o2::framework::InitContext& ctx) override;
45  void startOfActivity(Activity& activity) override;
46  void startOfCycle() override;
47  void monitorData(o2::framework::ProcessingContext& ctx) override;
48  void endOfCycle() override;
49  void endOfActivity(Activity& activity) override;
50  void reset() override;
51 
52  private:
53  o2::tpc::qc::PID mQCPID{};
54 };
55 
56 } // namespace o2::quality_control_modules::tpc
57 
58 #endif // QC_MODULE_TPC_PID_H
TPC PID QC Task It is final because there is no reason to derive from it. Just remove it if needed...
Definition: PID.h:35
Definition: Clusters.h:31
Skeleton of a QC task.
Definition: TaskInterface.h:53
Dummy class that should be removed when there is the official one. This corresponds to a Run1/2 "run"...
Definition: Activity.h:25
These methods can be used to build a complex processing topology. It spawns 3 separate dummy processi...
Definition: Activity.h:19