Project
Loading...
Searching...
No Matches
RecoWorkflow.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
17
18#include <string>
19
21{
22
24 bool upstreamDigits,
25 bool upstreamClusters,
26 bool disableRootOutput)
27{
29
30 if (!(upstreamDigits || upstreamClusters)) {
31 specs.emplace_back(o2::trk::getTRKDigitReaderSpec(useMC, false, "trkdigits.root"));
32 }
33 if (!upstreamClusters) {
34 specs.emplace_back(o2::trk::getClustererSpec(useMC));
35 }
36
37 if (!disableRootOutput) {
38 specs.emplace_back(o2::trk::getClusterWriterSpec(useMC));
39 }
40
41 return specs;
42}
43
44} // namespace o2::trk::reco_workflow
std::vector< DataProcessorSpec > WorkflowSpec
o2::framework::WorkflowSpec getWorkflow(bool useMC, bool upstreamDigits=false, bool upstreamClusters=false, bool disableRootOutput=false)
o2::framework::DataProcessorSpec getClustererSpec(bool useMC)
framework::DataProcessorSpec getClusterWriterSpec(bool useMC)
framework::DataProcessorSpec getTRKDigitReaderSpec(bool useMC=true, bool useCalib=false, std::string defname="trkdigits.root")