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