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
16
17using namespace o2::framework;
18
19void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
20{
22}
23
24void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
25{
26 workflowOptions.push_back(
28 "suppress-triggers-output",
30 false,
31 {"suppress dummy triggers output"}});
32 workflowOptions.push_back(
34 "with-mc",
36 false,
37 {"propagate MC labels"}});
38 workflowOptions.push_back(
40 "without-patterns",
42 false,
43 {"do not propagate pixel patterns"}});
44 workflowOptions.push_back(ConfigParamSpec{"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings ..."}});
47}
48
51
53{
54 WorkflowSpec specs;
55 auto withTriggers = !cc.options().get<bool>("suppress-triggers-output");
56 auto withMC = cc.options().get<bool>("with-mc");
57 auto withPatterns = !cc.options().get<bool>("without-patterns");
59 specs.emplace_back(o2::itsmft::getMFTClusterReaderSpec(withMC, doStag, withPatterns, withTriggers));
60
61 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
62 o2::raw::HBFUtilsInitializer hbfIni(cc, specs);
63
64 return specs;
65}
WorkflowSpec defineDataProcessing(ConfigContext const &cc)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Defining ITS Vertex explicitly as messageable.
Definition Cartesian.h:288
std::vector< DataProcessorSpec > WorkflowSpec
framework::DataProcessorSpec getMFTClusterReaderSpec(bool useMC=true, bool doStag=false, bool usePatterns=true, bool useTriggers=true)
static void addMFTConfigOption(std::vector< o2::framework::ConfigParamSpec > &opts)
static bool isMFTStaggeringEnabled(o2::framework::ConfigContext const &cfgc)
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