Project
Loading...
Searching...
No Matches
test_AlgorithmSpec.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16#include <catch_amalgamated.hpp>
17#include <vector>
18
19using namespace o2::framework;
20
21TEST_CASE("TestAlgorithmSpec")
22{
23 using namespace o2::framework;
25 AlgorithmSpec::InitCallback bar = [&foo](InitContext&) { return foo; };
26 AlgorithmSpec spec1{bar};
29 return foo;
30 }}};
32 return [](ProcessingContext&) {};
33 }}};
35 return [](ProcessingContext&) {};
36 }},
38 AlgorithmSpec spec6{{[&foo](InitContext&) {
39 return [](ProcessingContext&) {};
40 }},
42
44 int i = 0;
46}
int32_t i
The input API of the Data Processing Layer This class holds the inputs which are valid for processing...
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
AlgorithmSpec::ProcessCallback adaptStateless(LAMBDA l)
std::function< ProcessCallback(InitContext &)> InitCallback
std::function< void(ProcessingContext &)> ProcessCallback
static ErrorCallback & emptyErrorCallback()
TEST_CASE("TestAlgorithmSpec")
HistogramRegistry foo()