QualityControl  1.5.1
O2 Data Quality Control Framework
HistoProducer.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_HISTOPRODUCER_H
17 #define QUALITYCONTROL_HISTOPRODUCER_H
18 
19 #include <Framework/DataProcessorSpec.h>
20 
22 {
23 
28 framework::DataProcessorSpec getHistoProducerSpec(size_t index, size_t nbHistograms, bool noTobjArray);
29 
37 framework::AlgorithmSpec getHistoProducerAlgorithm(framework::ConcreteDataMatcher output, size_t nbHistograms, bool noTobjArray);
38 
43 framework::DataProcessorSpec getHistoPrinterSpec(size_t index);
44 
48 framework::AlgorithmSpec getHistoPrinterAlgorithm();
49 
50 } // namespace o2::quality_control::core
51 
52 #endif //QUALITYCONTROL_HISTOPRODUCER_H
framework::DataProcessorSpec getHistoProducerSpec(size_t index, size_t nbHistograms, bool noTobjArray)
Returns an histogram producer specification which publishes on {"TST", "HISTO", <index>}.
Definition: HistoProducer.cxx:33
framework::DataProcessorSpec getHistoPrinterSpec(size_t index)
Returns a printer that prints histograms coming from {"TST", "HISTO", <index>}.
Definition: HistoProducer.cxx:92
framework::AlgorithmSpec getHistoPrinterAlgorithm()
Returns an algorithm printing histograms.
Definition: HistoProducer.cxx:112
framework::AlgorithmSpec getHistoProducerAlgorithm(framework::ConcreteDataMatcher output, size_t nbHistograms, bool noTobjArray)
Returns an algorithm generating histograms randomly filled. The histograms have 100 bins and are name...
Definition: HistoProducer.cxx:44
These methods can be used to build a complex processing topology. It spawns 3 separate dummy processi...
Definition: Activity.h:19