Project
Loading...
Searching...
No Matches
mft-dcs-data-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
15#include <unordered_map>
16namespace o2::framework
17{
18template <>
19struct has_root_dictionary<std::unordered_map<o2::dcs::DataPointIdentifier, o2::dcs::DataPointValue>, void> : std::true_type {
20};
21} // namespace o2::framework
24
25using namespace o2::framework;
26
27// we need to add workflow options before including Framework/runDataProcessing
28void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
29{
30 // option allowing to set parameters
31 std::vector<o2::framework::ConfigParamSpec> options{
32 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings"}}};
33 std::swap(workflowOptions, options);
34}
35
36// ------------------------------------------------------------------
37
39
41{
42 WorkflowSpec specs;
43 o2::conf::ConfigurableParam::updateFromString(configcontext.options().get<std::string>("configKeyValues"));
44 specs.emplace_back(getMFTDCSDataProcessorSpec());
45 return specs;
46}
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
Defining DataPointCompositeObject explicitly as copiable.