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 // const std::string& hitRecoConfig,
25 bool upstreamDigits,
26 bool upstreamClusters,
27 bool disableRootOutput)
28{
30
31 if (!(upstreamDigits || upstreamClusters)) {
32 specs.emplace_back(o2::iotof::getIOTOFDigitReaderSpec(useMC, false, "tf3digits.root"));
33 }
34 if (!upstreamClusters) {
35 specs.emplace_back(o2::iotof::getIOTOFClustererSpec(useMC));
36 }
37
38 if (!disableRootOutput) {
39 specs.emplace_back(o2::iotof::getIOTOFClusterWriterSpec(useMC, false));
40 }
41
42 return specs;
43}
44
45} // namespace o2::iotof::reco_workflow
std::vector< DataProcessorSpec > WorkflowSpec
o2::framework::WorkflowSpec getWorkflow(bool useMC, bool upstreamDigits=false, bool upstreamClusters=false, bool disableRootOutput=false)
o2::framework::DataProcessorSpec getIOTOFDigitReaderSpec(bool useMC=true, bool useCalib=false, std::string defname="iotofdigits.root")
o2::framework::DataProcessorSpec getIOTOFClusterWriterSpec(bool useMC, bool dec)
o2::framework::DataProcessorSpec getIOTOFClustererSpec(bool useMC)