Project
Loading...
Searching...
No Matches
its3-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 "GPUO2Interface.h"
21#include "GPUReconstruction.h"
22#include "GPUChainITS.h"
23
24using namespace o2::framework;
25
26void customize(std::vector<o2::framework::CallbacksPolicy>& policies)
27{
29}
30
31void customize(std::vector<o2::framework::CompletionPolicy>& policies)
32{
33 // ordered policies for the writers
34 policies.push_back(CompletionPolicyHelpers::consumeWhenAllOrdered(".*(?:ITS|its)3.*[W,w]riter.*"));
35}
36
37// we need to add workflow options before including Framework/runDataProcessing
38void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
39{
40 // option allowing to set parameters
41 std::vector<o2::framework::ConfigParamSpec> options{
42 {"digits-from-upstream", o2::framework::VariantType::Bool, false, {"digits will be provided from upstream, skip digits reader"}},
43 {"clusters-from-upstream", o2::framework::VariantType::Bool, false, {"clusters will be provided from upstream, skip clusterizer"}},
44 {"disable-root-output", o2::framework::VariantType::Bool, false, {"do not write output root files"}},
45 {"disable-mc", o2::framework::VariantType::Bool, false, {"disable MC propagation even if available"}},
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, "off", {"off,sync,async,cosmics"}},
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 IT3 part"}},
51 {"gpu-device", o2::framework::VariantType::Int, 1, {"use gpu device: CPU=1,CUDA=2,HIP=3 (default: CPU)"}}};
53 std::swap(workflowOptions, options);
54}
55
57
59{
60 // Update the (declared) parameters if changed from the command line
61 auto useMC = !configcontext.options().get<bool>("disable-mc");
62 auto beamPosOVerride = configcontext.options().get<bool>("ccdb-meanvertex-seed");
63 auto trmode = configcontext.options().get<std::string>("tracking-mode");
64 auto selTrig = configcontext.options().get<std::string>("select-with-triggers");
65 auto gpuDevice = static_cast<o2::gpu::GPUDataTypes::DeviceType>(configcontext.options().get<int>("gpu-device"));
66 auto extDigits = configcontext.options().get<bool>("digits-from-upstream");
67 auto extClusters = configcontext.options().get<bool>("clusters-from-upstream");
68 auto disableRootOutput = configcontext.options().get<bool>("disable-root-output");
69 auto useGeom = configcontext.options().get<bool>("use-full-geometry");
70 std::transform(trmode.begin(), trmode.end(), trmode.begin(), [](unsigned char c) { return std::tolower(c); });
71
72 o2::conf::ConfigurableParam::updateFromString(configcontext.options().get<std::string>("configKeyValues"));
73 int trType = 0;
74 if (!selTrig.empty() && selTrig != "none") {
75 if (selTrig == "phys") {
76 trType = 1;
77 } else if (selTrig == "trd") {
78 trType = 2;
79 } else {
80 LOG(fatal) << "Unknown trigger type requested for events prescaling: " << selTrig;
81 }
82 }
83 auto wf = o2::its3::reco_workflow::getWorkflow(useMC, trmode, gpuDevice, extDigits, extClusters, disableRootOutput, useGeom, trType, beamPosOVerride);
84
85 // configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
86 o2::raw::HBFUtilsInitializer hbfIni(configcontext, wf);
87
88 // write the configuration used for the reco workflow
89 o2::conf::ConfigurableParam::writeINI("o2its3recoflow_configuration.ini");
90
91 return wf;
92}
uint32_t c
Definition RawData.h:2
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)
This function hooks up the the workflow specifications into the DPL driver.
void customize(std::vector< o2::framework::CallbacksPolicy > &policies)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< DataProcessorSpec > WorkflowSpec
framework::WorkflowSpec getWorkflow(bool useMC, const std::string &trmode, o2::gpu::GPUDataTypes::DeviceType dtype, bool upstreamDigits, bool upstreamClusters, bool disableRootOutput, bool useGeom, int useTrig, bool overrideBeamPosition)
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"