Project
Loading...
Searching...
No Matches
recpoints-reader-workflow.cxx
Go to the documentation of this file.
1// Copyright 2019-2024 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
18
23#include "Framework/Variant.h"
24
25#include <vector>
26
27using namespace o2::framework;
28
29void customize(std::vector<CallbacksPolicy>& policies)
30{
32}
33
34// we need to add workflow options before including Framework/runDataProcessing
35void customize(std::vector<ConfigParamSpec>& workflowOptions)
36{
37 std::vector<ConfigParamSpec> options{
38 {"disable-mc", VariantType::Bool, false, {"disable MC propagation even if available"}},
39 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings"}}};
41 std::swap(workflowOptions, options);
42}
43
45
47{
48 o2::conf::ConfigurableParam::updateFromString(ctx.options().get<std::string>("configKeyValues"));
49 bool disableMC = ctx.options().get<bool>("disable-mc");
50 WorkflowSpec specs;
52 specs.push_back(producer);
53
54 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
55 o2::raw::HBFUtilsInitializer hbfIni(ctx, specs);
56 return specs;
57}
WorkflowSpec defineDataProcessing(const ConfigContext &ctx)
void customize(std::vector< CallbacksPolicy > &policies)
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
framework::DataProcessorSpec getFDDRecPointReaderSpec(bool useMC)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
static void addNewTimeSliceCallback(std::vector< o2::framework::CallbacksPolicy > &policies)
static void addConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts, const std::string &defOpt=std::string(o2::base::NameConf::DIGITIZATIONCONFIGFILE))