Project
Loading...
Searching...
No Matches
its-reco-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
19
20#include <vector>
21
22using namespace o2::framework;
23
24void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
25{
27}
28
29void customize(std::vector<o2::framework::CompletionPolicy>& policies)
30{
31 // ordered policies for the writers
32 policies.push_back(CompletionPolicyHelpers::consumeWhenAllOrdered(".*(?:ITS|its).*[W,w]riter.*"));
33 policies.push_back(CompletionPolicyHelpers::consumeWhenAllOrdered(".*irframe-writer.*"));
34}
35
36void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
37{
38 // option allowing to set parameters
39 std::vector<o2::framework::ConfigParamSpec> options{
40 {"digits-from-upstream", o2::framework::VariantType::Bool, false, {"digits will be provided from upstream, skip digits reader"}},
41 {"clusters-from-upstream", o2::framework::VariantType::Bool, false, {"clusters will be provided from upstream, skip clusterizer"}},
42 {"disable-root-output", o2::framework::VariantType::Bool, false, {"do not write output root files"}},
43 {"disable-mc", o2::framework::VariantType::Bool, false, {"disable MC propagation even if available"}},
44 {"trackerCA", o2::framework::VariantType::Bool, false, {"use trackerCA (default: trackerCM)"}},
45 {"ccdb-meanvertex-seed", o2::framework::VariantType::Bool, false, {"use MeanVertex from CCDB if available to provide beam position seed (default: false)"}},
46 {"select-with-triggers", o2::framework::VariantType::String, "none", {"use triggers to prescale processed ROFs: phys, trd, none"}},
47 {"tracking-mode", o2::framework::VariantType::String, "sync", {"sync,async,cosmics,unset,off"}},
48 {"disable-tracking", o2::framework::VariantType::Bool, false, {"disable tracking step"}},
49 {"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings"}},
50 {"use-full-geometry", o2::framework::VariantType::Bool, false, {"use full geometry instead of the light-weight ITS part"}},
51 {"use-gpu-workflow", o2::framework::VariantType::Bool, false, {"use GPU workflow (default: false)"}},
52 {"gpu-device", o2::framework::VariantType::Int, 1, {"use gpu device: CPU=1,CUDA=2,HIP=3 (default: CPU)"}}};
54 std::swap(workflowOptions, options);
55}
56
57// ------------------------------------------------------------------
58
60#include "Framework/Logger.h"
61
63{
64 // Update the (declared) parameters if changed from the command line
65 auto useMC = !configcontext.options().get<bool>("disable-mc");
66 auto beamPosOVerride = configcontext.options().get<bool>("ccdb-meanvertex-seed");
67 auto useCAtracker = configcontext.options().get<bool>("trackerCA");
68 auto trmode = configcontext.options().get<std::string>("tracking-mode");
69 auto selTrig = configcontext.options().get<std::string>("select-with-triggers");
70 auto useGpuWF = configcontext.options().get<bool>("use-gpu-workflow");
71 auto gpuDevice = static_cast<o2::gpu::GPUDataTypes::DeviceType>(configcontext.options().get<int>("gpu-device"));
72 auto extDigits = configcontext.options().get<bool>("digits-from-upstream");
73 auto extClusters = configcontext.options().get<bool>("clusters-from-upstream");
74 auto disableRootOutput = configcontext.options().get<bool>("disable-root-output");
75 auto useGeom = configcontext.options().get<bool>("use-full-geometry");
76 if (configcontext.options().get<bool>("disable-tracking")) {
77 trmode = "off";
78 }
79
80 o2::conf::ConfigurableParam::updateFromString(configcontext.options().get<std::string>("configKeyValues"));
81 int trType = 0;
82 if (!selTrig.empty() && selTrig != "none") {
83 if (selTrig == "phys") {
84 trType = 1;
85 } else if (selTrig == "trd") {
86 trType = 2;
87 } else {
88 LOG(fatal) << "Unknown trigger type requested for events prescaling: " << selTrig;
89 }
90 }
92 useCAtracker,
94 beamPosOVerride,
95 extDigits,
96 extClusters,
97 disableRootOutput,
98 useGeom,
99 trType,
100 useGpuWF,
101 gpuDevice);
102
103 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
104 o2::raw::HBFUtilsInitializer hbfIni(configcontext, wf);
105
106 // write the configuration used for the reco workflow
107 o2::conf::ConfigurableParam::writeINI("o2itsrecoflow_configuration.ini");
108
109 return std::move(wf);
110}
static void writeINI(std::string const &filename, std::string const &keyOnly="")
static void updateFromString(std::string const &)
ConfigParamRegistry & options() const
WorkflowSpec defineDataProcessing(ConfigContext const &configcontext)
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
Type fromString(std::string_view str)
framework::WorkflowSpec getWorkflow(bool useMC, bool useCAtracker, TrackingMode::Type trmode, const bool overrideBeamPosition=false, bool upstreamDigits=false, bool upstreamClusters=false, bool disableRootOutput=false, bool useGeom=false, int useTrig=0, bool useGPUWF=false, o2::gpu::GPUDataTypes::DeviceType dType=o2::gpu::GPUDataTypes::DeviceType::CPU)
static CompletionPolicy consumeWhenAllOrdered(const char *name, CompletionPolicy::Matcher matcher)
as consumeWhenAll, but ensures that records are processed with incremental timeSlice (DataHeader::sta...
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))
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"