Project
Loading...
Searching...
No Matches
tpc-scaler.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
14
15
#include "
TPCWorkflow/TPCScalerSpec.h
"
16
#include "
CommonUtils/ConfigurableParam.h
"
17
#include "
Framework/ConfigParamSpec.h
"
18
#include "
TPCCalibration/CorrectionMapsOptions.h
"
19
20
using namespace
o2::framework
;
21
22
void
customize
(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
23
{
24
// option allowing to set parameters
25
std::vector<ConfigParamSpec> options{
26
ConfigParamSpec
{
"configKeyValues"
, VariantType::String,
""
, {
"Semicolon separated key=value strings"
}},
27
{
"enable-M-shape-correction"
, VariantType::Bool,
false
, {
"Enable M-shape distortion correction"
}},
28
{
"disable-IDC-scalers"
, VariantType::Bool,
false
, {
"Disable TPC scalers for space-charge distortion fluctuation correction"
}}};
29
o2::tpc::CorrectionMapsOptions::addGlobalOptions
(options);
30
std::swap(workflowOptions, options);
31
}
32
33
#include "
Framework/runDataProcessing.h
"
34
35
WorkflowSpec
defineDataProcessing
(
ConfigContext
const
& config)
36
{
37
WorkflowSpec
workflow;
38
o2::conf::ConfigurableParam::updateFromString
(config.
options
().
get
<std::string>(
"configKeyValues"
));
39
const
auto
enableMShape = config.
options
().
get
<
bool
>(
"enable-M-shape-correction"
);
40
const
auto
enableIDCs = !config.
options
().
get
<
bool
>(
"disable-IDC-scalers"
);
41
auto
sclOpt =
o2::tpc::CorrectionMapsOptions::parseGlobalOptions
(config.
options
());
42
workflow.emplace_back(
o2::tpc::getTPCScalerSpec
(enableIDCs, enableMShape, sclOpt));
43
return
workflow;
44
}
ConfigParamSpec.h
ConfigurableParam.h
CorrectionMapsOptions.h
Helper class to parse options for correction maps.
TPCScalerSpec.h
o2::conf::ConfigurableParam::updateFromString
static void updateFromString(std::string const &)
Definition
ConfigurableParam.cxx:506
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::tpc::CorrectionMapsOptions::addGlobalOptions
static void addGlobalOptions(std::vector< o2::framework::ConfigParamSpec > &options)
Definition
CorrectionMapsOptions.cxx:44
o2::tpc::CorrectionMapsOptions::parseGlobalOptions
static CorrectionMapsGloOpts parseGlobalOptions(const o2::framework::ConfigParamRegistry &opts)
Definition
CorrectionMapsOptions.cxx:20
o2::framework
Defining ITS Vertex explicitly as messageable.
Definition
Cartesian.h:288
o2::framework::WorkflowSpec
std::vector< DataProcessorSpec > WorkflowSpec
Definition
HBFUtilsInitializer.h:39
o2::tpc::getTPCScalerSpec
o2::framework::DataProcessorSpec getTPCScalerSpec(bool enableIDCs, bool enableMShape, const o2::tpc::CorrectionMapsGloOpts &sclOpts)
Definition
TPCScalerSpec.cxx:305
runDataProcessing.h
o2::framework::ConfigParamSpec
Definition
ConfigParamSpec.h:31
customize
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
Definition
tpc-scaler.cxx:22
defineDataProcessing
WorkflowSpec defineDataProcessing(ConfigContext const &config)
This function hooks up the the workflow specifications into the DPL driver.
Definition
tpc-scaler.cxx:35
Detectors
TPC
workflow
src
tpc-scaler.cxx
Generated on Fri May 15 2026 09:12:35 for Project by
1.9.8