Project
Loading...
Searching...
No Matches
tracks-reader-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
16#include <vector>
17
18using namespace o2::framework;
19
20void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
21{
23}
24
25// we need to add workflow options before including Framework/runDataProcessing
26void customize(std::vector<ConfigParamSpec>& workflowOptions)
27{
28 std::vector<ConfigParamSpec> options{
29 {"enable-mc", VariantType::Bool, false, ConfigParamSpec::HelpString{"Propagate MC info"}},
30 {"digits", VariantType::Bool, false, ConfigParamSpec::HelpString{"Read associated digits"}},
31 {"subspec", VariantType::UInt32, static_cast<uint32_t>(0), ConfigParamSpec::HelpString{"SubSpec of outputs (only needed in workflows reading different mchtracks.root files)"}}};
33 std::swap(workflowOptions, options);
34}
35
37
39{
40 bool useMC = config.options().get<bool>("enable-mc");
41 bool digits = config.options().get<bool>("digits");
42 uint32_t subspec = config.options().get<uint32_t>("subspec");
43 WorkflowSpec specs{o2::mch::getTrackReaderSpec(useMC, "mch-tracks-reader", digits, subspec)};
44 o2::raw::HBFUtilsInitializer hbfIni(config, specs);
45 return specs;
46}
WorkflowSpec defineDataProcessing(const ConfigContext &config)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
ConfigParamRegistry & options() const
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
o2::framework::DataProcessorSpec getTrackReaderSpec(bool useMC, const char *specName="mch-tracks-reader", bool digits=false, uint32_t subspec=0)
static void addNewTimeSliceCallback(std::vector< o2::framework::CallbacksPolicy > &policies)
static void addConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts, const std::string &defOpt=std::string(o2::base::NameConf::DIGITIZATIONCONFIGFILE))
std::vector< Digit > digits