Project
Loading...
Searching...
No Matches
mft-cluster-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
15
16using namespace o2::framework;
17
18void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
19{
21}
22
23void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
24{
25 workflowOptions.push_back(
27 "suppress-triggers-output",
29 false,
30 {"suppress dummy triggers output"}});
31 workflowOptions.push_back(
33 "with-mc",
35 false,
36 {"propagate MC labels"}});
37 workflowOptions.push_back(
39 "without-patterns",
41 false,
42 {"do not propagate pixel patterns"}});
43 workflowOptions.push_back(ConfigParamSpec{"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings ..."}});
45}
46
49
51{
52 WorkflowSpec specs;
53 auto withTriggers = !cc.options().get<bool>("suppress-triggers-output");
54 auto withMC = cc.options().get<bool>("with-mc");
55 auto withPatterns = !cc.options().get<bool>("without-patterns");
56 specs.emplace_back(o2::itsmft::getMFTClusterReaderSpec(withMC, withPatterns, withTriggers));
57
58 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
59 o2::raw::HBFUtilsInitializer hbfIni(cc, specs);
60
61 return specs;
62}
WorkflowSpec defineDataProcessing(ConfigContext const &cc)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
framework::DataProcessorSpec getMFTClusterReaderSpec(bool useMC=true, bool usePatterns=true, bool useTriggers=true)
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< o2::mch::ChannelCode > cc