Project
Loading...
Searching...
No Matches
ColumnDataSpecsUtils.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
16
18
21#include "Headers/DataHeader.h"
22
23namespace o2
24{
25namespace mid
26{
27namespace specs
28{
29std::string getString(std::string_view baseName, std::string_view suffix)
30{
31 return std::string(baseName) + std::string(suffix);
32}
33
34std::string getROFBind(std::string_view baseName)
35{
36 return getString(baseName, "_rof");
37}
38
39std::string getLabelsBind(std::string_view baseName)
40{
41 return getString(baseName, "_labels");
42}
43
44std::string getROFDescription(std::string_view description)
45{
46 return getString(description, "ROF");
47}
48
49std::string getLabelsDescription(std::string_view description)
50{
51 return getString(description, "LABELS");
52}
53
54std::string buildSelector(std::string_view bind, std::string_view description, int subSpec = -1)
55{
56 std::string sbind(bind.data());
57 std::string suffix;
58 if (subSpec >= 0) {
59 sbind += fmt::format("_{}", subSpec);
60 suffix += fmt::format("/{}", subSpec);
61 }
62 return fmt::format("{}:MID/{}{}", sbind, description, suffix);
63}
64
65std::string buildSelectors(std::string_view dataBind, std::string_view dataDesc, std::string_view rofDesc, std::string_view labelsDesc, bool useMC, int subSpec = -1)
66{
67 std::string selector;
68 if (!dataDesc.empty()) {
69 selector += buildSelector(dataBind, dataDesc, subSpec);
70 }
71 if (!rofDesc.empty()) {
72 if (!selector.empty()) {
73 selector += ";";
74 }
75 selector += buildSelector(getROFBind(dataBind), rofDesc, subSpec);
76 }
77 if (useMC && !labelsDesc.empty()) {
78 if (!selector.empty()) {
79 selector += ";";
80 }
81 selector += buildSelector(getLabelsBind(dataBind), labelsDesc, subSpec);
82 }
83 return selector;
84}
85
86std::vector<framework::InputSpec> buildInputSpecs(std::string_view dataBind, std::string_view dataDesc, bool useMC)
87{
88 return buildInputSpecs(dataBind, dataDesc, getROFDescription(dataDesc), getLabelsDescription(dataDesc), useMC);
89}
90
91std::vector<framework::InputSpec> buildInputSpecs(std::string_view dataBind, std::string_view dataDesc, std::string_view rofDesc, std::string_view labelsDesc, bool useMC)
92{
93 std::string selector = buildSelectors(dataBind, dataDesc, rofDesc, labelsDesc, useMC);
94 return framework::select(selector.c_str());
95}
96
97std::vector<framework::OutputSpec> buildOutputSpecs(std::string_view bind, std::string_view description)
98{
99 std::string selector;
100 for (size_t ievt = 0; ievt < NEvTypes; ++ievt) {
101 if (!selector.empty()) {
102 selector += ";";
103 }
104 selector += buildSelector(bind, description, ievt);
105 }
106 auto matchers = framework::select(selector.c_str());
107 std::vector<framework::OutputSpec> outputSpecs;
108 for (auto& matcher : matchers) {
109 outputSpecs.emplace_back(framework::DataSpecUtils::asOutputSpec(matcher));
110 }
111 return outputSpecs;
112}
113
114std::vector<framework::OutputSpec> buildStandardOutputSpecs(std::string_view dataBind, std::string_view dataDesc, bool useMC)
115{
116 auto selector = buildSelectors(dataBind, dataDesc, getROFDescription(dataDesc), getLabelsDescription(dataDesc), useMC, 0);
117 auto matchers = framework::select(selector.data());
118 std::vector<framework::OutputSpec> outputSpecs;
119 for (auto& matcher : matchers) {
120 outputSpecs.emplace_back(framework::DataSpecUtils::asOutputSpec(matcher));
121 }
122 return outputSpecs;
123}
124
125std::vector<framework::Output> buildOutputs(std::vector<framework::OutputSpec> outputSpecs)
126{
127 std::vector<framework::Output> outputs;
128 for (auto& outSpec : outputSpecs) {
130 outputs.emplace_back(framework::Output{matcher.origin, matcher.description, matcher.subSpec});
131 }
132 return outputs;
133}
134
135std::array<gsl::span<const ColumnData>, NEvTypes> getData(framework::ProcessingContext& pc, std::string_view dataBind)
136{
137 return getInput<ColumnData>(pc, dataBind);
138}
139
140gsl::span<const ColumnData> getData(framework::ProcessingContext& pc, std::string_view dataBind, EventType eventType)
141{
142 auto idx = static_cast<size_t>(eventType);
143 return getData(pc, dataBind)[idx];
144}
145
146std::array<gsl::span<const ROFRecord>, NEvTypes> getRofs(framework::ProcessingContext& pc, std::string_view dataBind)
147{
148 return getInput<ROFRecord>(pc, getROFBind(dataBind));
149}
150
151gsl::span<const ROFRecord> getRofs(framework::ProcessingContext& pc, std::string_view dataBind, EventType eventType)
152{
153 auto idx = static_cast<size_t>(eventType);
154 return getRofs(pc, dataBind)[idx];
155}
156
157std::unique_ptr<const o2::dataformats::MCTruthContainer<MCLabel>> getLabels(framework::ProcessingContext& pc, std::string_view dataBind)
158{
159 return pc.inputs().get<const o2::dataformats::MCTruthContainer<MCLabel>*>(getLabelsBind(dataBind).data());
160}
161
162} // namespace specs
163} // namespace mid
164} // namespace o2
Utilities for MID Column Data Specs.
const auto & getData()
A container to hold and manage MC truth information/labels.
decltype(auto) get(R binding, int part=0) const
InputRecord & inputs()
The inputs associated with this processing context.
std::vector< InputSpec > select(char const *matcher="")
std::string getROFDescription(std::string_view description)
std::string getLabelsBind(std::string_view baseName)
std::string getLabelsDescription(std::string_view description)
std::string getString(std::string_view baseName, std::string_view suffix)
std::vector< framework::InputSpec > buildInputSpecs(std::string_view dataBind, std::string_view dataDesc, bool useMC)
std::vector< framework::OutputSpec > buildStandardOutputSpecs(std::string_view dataBind, std::string_view dataDesc, bool useMC)
std::vector< framework::Output > buildOutputs(std::vector< framework::OutputSpec > outputSpecs)
std::string buildSelectors(std::string_view dataBind, std::string_view dataDesc, std::string_view rofDesc, std::string_view labelsDesc, bool useMC, int subSpec=-1)
std::unique_ptr< const o2::dataformats::MCTruthContainer< MCLabel > > getLabels(framework::ProcessingContext &pc, std::string_view dataBind)
std::vector< framework::OutputSpec > buildOutputSpecs(std::string_view bind, std::string_view description)
std::string getROFBind(std::string_view baseName)
std::string buildSelector(std::string_view bind, std::string_view description, int subSpec=-1)
std::array< gsl::span< const ROFRecord >, NEvTypes > getRofs(framework::ProcessingContext &pc, std::string_view dataBind)
constexpr uint32_t NEvTypes
Definition ROFRecord.h:37
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static ConcreteDataMatcher asConcreteDataMatcher(InputSpec const &input)
static OutputSpec asOutputSpec(InputSpec const &spec)
header::DataOrigin origin
Definition Output.h:28