Project
Loading...
Searching...
No Matches
mft-calib-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/ConfigParamSpec.h
"
13
#include "
CommonUtils/ConfigurableParam.h
"
14
15
using namespace
o2::framework
;
16
17
// we need to add workflow options before including Framework/runDataProcessing
18
void
customize
(std::vector<ConfigParamSpec>& workflowOptions)
19
{
20
// option allowing to set parameters
21
workflowOptions.push_back(
ConfigParamSpec
{
"useDigits"
, VariantType::Bool,
false
, {
"Use decoded digits"
}});
22
workflowOptions.push_back(
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings"
}});
23
}
24
25
// ------------------------------------------------------------------
26
27
#include "
Framework/runDataProcessing.h
"
28
#include "
MFTCalibration/NoiseCalibratorSpec.h
"
29
#include "
MFTCalibration/NoiseCalibrator.h
"
30
31
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& cfgc)
32
{
33
WorkflowSpec
specs;
34
o2::conf::ConfigurableParam::updateFromString
(cfgc.
options
().
get
<std::string>(
"configKeyValues"
));
35
auto
useDigits = cfgc.
options
().
get
<
bool
>(
"useDigits"
);
36
37
LOG
(info) <<
"MFT calibration workflow options"
;
38
LOG
(info) <<
"Use Digits: "
<< useDigits;
39
40
specs.emplace_back(
o2::mft::getNoiseCalibratorSpec
(useDigits));
41
42
return
specs;
43
}
ConfigParamSpec.h
ConfigurableParam.h
NoiseCalibratorSpec.h
NoiseCalibrator.h
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
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
Definition
mft-calib-workflow.cxx:31
customize
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Definition
mft-calib-workflow.cxx:18
o2::framework
Defining PrimaryVertex explicitly as messageable.
Definition
TFIDInfo.h:20
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::mft::getNoiseCalibratorSpec
DataProcessorSpec getNoiseCalibratorSpec(bool useDigits)
Definition
NoiseCalibratorSpec.cxx:421
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
LOG
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
Detectors
ITSMFT
MFT
calibration
testWorkflow
mft-calib-workflow.cxx
Generated on Fri Apr 11 2025 11:41:30 for Project by
1.9.8