Project
Loading...
Searching...
No Matches
tpc-dcs-config-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
16using namespace o2::framework;
17using namespace o2::tpc;
18
19// we need to add workflow options before including Framework/runDataProcessing
20void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
21{
22 // option allowing to set parameters
23 std::vector<ConfigParamSpec> options{
24 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings (e.g.: 'TPCCalibPedestal.FirstTimeBin=10;...')"}},
25 {"configFile", VariantType::String, "", {"configuration file for configurable parameters"}},
26 };
27
28 std::swap(workflowOptions, options);
29}
30
31// ------------------------------------------------------------------
32
34
36{
37 // set up configuration
38 o2::conf::ConfigurableParam::updateFromFile(config.options().get<std::string>("configFile"));
39 o2::conf::ConfigurableParam::updateFromString(config.options().get<std::string>("configKeyValues"));
40
41 WorkflowSpec specs;
42 specs.emplace_back(getDCSConfigSpec());
43 return specs;
44}
DCS configuration processing.
static void updateFromFile(std::string const &, std::string const &paramsList="", bool unchangedOnly=false)
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
Global TPC definitions and constants.
Definition SimTraits.h:167
DataProcessorSpec getDCSConfigSpec()
create DCS processor
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.