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
14
15using namespace o2::framework;
16
17// we need to add workflow options before including Framework/runDataProcessing
18void 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
30
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}
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
void customize(std::vector< ConfigParamSpec > &workflowOptions)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
DataProcessorSpec getNoiseCalibratorSpec(bool useDigits)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"