12#ifndef ALICEO2_HISTOSTOPOLOGYCOMMON_H_
13#define ALICEO2_HISTOSTOPOLOGYCOMMON_H_
19#include <fairlogger/Logger.h>
34void customize(std::vector<o2::framework::CompletionPolicy>& policies)
46template <
size_t HistoSize>
49 static constexpr const char origin[] = {
"TST"};
50 static constexpr const char description[] = {
"HISTO"};
54 : mExpectedResult{expectedResult}, mHistoBinsCount{histoBinsCount}, mHistoMin{histoMin}, mHistoMax{histoMax}
61 for (
size_t producerIdx = 1; producerIdx != numberOfProducers + 1; ++producerIdx) {
62 inputs.push_back({
"mo", origin, description,
static_cast<SubSpecificationType>(producerIdx), Lifetime::Sporadic});
69 TH1F& histo = processingContext.outputs().make<TH1F>(
71 "histo",
"histo", histoBinsCount, histoMin, histoMax);
73 histo.Fill(producerIdx);
83 using namespace mergers;
85 MergerInfrastructureBuilder mergersBuilder;
86 mergersBuilder.setInfrastructureName(
"histos");
87 mergersBuilder.setInputSpecs(producerInputs);
88 mergersBuilder.setOutputSpec({{
"main"}, origin, description, 0});
90 config.inputObjectTimespan = {mergerType};
91 std::vector<std::pair<size_t, size_t>>
param = {{5, 1}};
92 config.publicationDecision = {PublicationDecision::EachNSeconds,
param};
93 config.mergedObjectTimespan = {MergedObjectTimespan::FullHistory};
94 config.topologySize = {TopologySize::NumberOfLayers, 2};
95 mergersBuilder.setConfig(config);
97 mergersBuilder.generateInfrastructure(specs);
104 Inputs{{
"histo", origin, description, 0, Lifetime::Sporadic}},
108 auto success = std::make_shared<bool>(
false);
114 const auto histo = processingContext.inputs().get<TH1F*>(
"histo");
117 if (std::equal(expectedResult.begin(), expectedResult.end(), histo->GetArray(), histo->GetArray() + histo->GetSize())) {
118 LOG(info) <<
"Received the expected object, test successful";
124 if (retryNumber++ >= retries) {
133 std::array<float, HistoSize> mExpectedResult;
134 size_t mHistoBinsCount;
o2::framework::DataAllocator::SubSpecificationType SubSpecificationType
Definition of O2 MergerInfrastructureBuilder, v0.1.
Inputs generateHistoProducers(WorkflowSpec &specs, size_t numberOfProducers)
void generateMergers(WorkflowSpec &specs, const Inputs &producerInputs, mergers::InputObjectsTimespan mergerType)
HistosMergerTestGenerator(std::array< float, HistoSize > &&expectedResult, size_t histoBinsCount, double histoMin, double histoMax)
void generateChecker(WorkflowSpec &specs)
static void customizeInfrastructure(std::vector< framework::CompletionPolicy > &)
Configures mergers to consume any data immediately.
void customize(std::vector< o2::framework::CompletionPolicy > &policies)
Defining PrimaryVertex explicitly as messageable.
std::vector< DataProcessorSpec > WorkflowSpec
@ Me
Only quit this data processor.
@ All
Quit all data processor, regardless of their state.
header::DataHeader::SubSpecificationType SubSpecificationType
std::vector< InputSpec > Inputs
std::vector< OutputSpec > Outputs
void registerCallbacksForTestFailure(framework::CallbackService &cb, std::shared_ptr< bool > success)
std::string to_string(gsl::span< T, Size > span)
std::function< ProcessCallback(InitContext &)> InitCallback
std::function< void(ProcessingContext &)> ProcessCallback
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"