Project
Loading...
Searching...
No Matches
emc-offline-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
15
16using namespace o2::framework;
17
18// ------------------------------------------------------------------
19
20// we need to add workflow options before including Framework/runDataProcessing
21void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
22{
23 // option allowing to set parameters
24 std::vector<ConfigParamSpec> options{{"makeCellIDTimeEnergy", VariantType::Bool, false, {"list whether or not to make the cell ID, time, energy THnSparse"}},
25 {"no-rejectCalibTrigg", VariantType::Bool, false, {"if set to true, all events, including calibration triggered events, will be accepted"}},
26 {"input-subspec", VariantType::UInt32, 0U, {"Subspecification for input objects"}},
27 {"applyGainCalib", VariantType::Bool, false, {"Apply the gain calibration parameters for the bad channel calibration"}},
28 {"rejectL0Trigger", VariantType::Bool, false, {"Reject all emcal triggers except the minimum bias trigger"}},
29 {"ctpconfig-run-independent", VariantType::Bool, false, {"Use CTP config w/o runNumber tag"}},
30 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings"}}};
31 workflowOptions.insert(workflowOptions.end(), options.begin(), options.end());
32}
33
34// ------------------------------------------------------------------
35
37
39{
40 WorkflowSpec wf;
41 // Update the (declared) parameters if changed from the command line
42 bool makeCellIDTimeEnergy = cfgc.options().get<bool>("makeCellIDTimeEnergy");
43 bool rejectCalibTrigg = !cfgc.options().get<bool>("no-rejectCalibTrigg");
44 bool doApplyGainCalib = cfgc.options().get<bool>("applyGainCalib");
45 bool doRejectL0Trigger = cfgc.options().get<bool>("rejectL0Trigger");
46 bool ctpcfgperrun = !cfgc.options().get<bool>("ctpconfig-run-independent");
47
48 // subpsecs for input
49 auto inputsubspec = cfgc.options().get<uint32_t>("input-subspec");
50
51 o2::conf::ConfigurableParam::updateFromString(cfgc.options().get<std::string>("configKeyValues"));
52 wf.emplace_back(o2::emcal::getEmcalOfflineCalibSpec(makeCellIDTimeEnergy, rejectCalibTrigg, doRejectL0Trigger, inputsubspec, doApplyGainCalib, ctpcfgperrun));
53 return wf;
54}
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
void customize(std::vector< o2::framework::ConfigParamSpec > &workflowOptions)
WorkflowSpec defineDataProcessing(ConfigContext const &cfgc)
o2::framework::DataProcessorSpec getEmcalOfflineCalibSpec(bool makeCellIDTimeEnergy, bool rejectCalibTriggers, bool rejectL0Trigger, uint32_t inputsubspec, bool enableGainCalib, bool ctpcfgperrun)
Creating offline calib spec.
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec