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
12
#include "
Framework/DataProcessorSpec.h
"
13
#include "
TPCdcs/DCSConfigSpec.h
"
14
#include "
CommonUtils/ConfigurableParam.h
"
15
16
using namespace
o2::framework
;
17
using namespace
o2::tpc
;
18
19
// we need to add workflow options before including Framework/runDataProcessing
20
void
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
33
#include "
Framework/runDataProcessing.h
"
34
35
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& config)
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
}
ConfigurableParam.h
DCSConfigSpec.h
DCS configuration processing.
DataProcessorSpec.h
o2::conf::ConfigurableParam::updateFromFile
static void updateFromFile(std::string const &, std::string const ¶msList="", bool unchangedOnly=false)
Definition
ConfigurableParam.cxx:367
o2::conf::ConfigurableParam::updateFromString
static void updateFromString(std::string const &)
Definition
ConfigurableParam.cxx:433
o2::framework::ConfigContext
Definition
ConfigContext.h:24
o2::framework::ConfigContext::options
ConfigParamRegistry & options() const
Definition
ConfigContext.h:28
o2::framework::ConfigParamRegistry::get
T get(const char *key) const
Definition
ConfigParamRegistry.h:98
o2::framework
Defining PrimaryVertex explicitly as messageable.
Definition
TFIDInfo.h:20
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::tpc
Global TPC definitions and constants.
Definition
SimTraits.h:167
o2::tpc::getDCSConfigSpec
DataProcessorSpec getDCSConfigSpec()
create DCS processor
Definition
DCSConfigSpec.cxx:452
runDataProcessing.h
customize
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
Definition
tpc-dcs-config-workflow.cxx:20
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.
Definition
tpc-dcs-config-workflow.cxx:35
Detectors
TPC
dcs
src
tpc-dcs-config-workflow.cxx
Generated on Fri Apr 4 2025 16:08:47 for Project by
1.9.8