Project
Loading...
Searching...
No Matches
aod-mc-producer-workflow.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
17
18using namespace o2::framework;
19
20void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
21{
23}
24
25void customize(std::vector<ConfigParamSpec>& workflowOptions)
26{
27 // option allowing to set parameters
28 std::vector<o2::framework::ConfigParamSpec> options{
29 {"disable-root-input", o2::framework::VariantType::Bool, false, {"disable root-files input reader"}},
30 {"disable-root-output", o2::framework::VariantType::Bool, false, {"disable root-files output writer"}},
31 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings ..."}}};
32 std::swap(workflowOptions, options);
33}
34
36
38{
39 o2::conf::ConfigurableParam::updateFromString(configcontext.options().get<std::string>("configKeyValues"));
40 WorkflowSpec wf;
42 return std::move(wf);
43}
44//
45// EOF
46//
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
framework::DataProcessorSpec getAODMcProducerWorkflowSpec()
create a processor spec
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
static void addNewTimeSliceCallback(std::vector< o2::framework::CallbacksPolicy > &policies)