29std::string
getString(std::string_view baseName, std::string_view suffix)
31 return std::string(baseName) + std::string(suffix);
54std::string
buildSelector(std::string_view bind, std::string_view description,
int subSpec = -1)
56 std::string sbind(bind.data());
59 sbind += fmt::format(
"_{}", subSpec);
60 suffix += fmt::format(
"/{}", subSpec);
62 return fmt::format(
"{}:MID/{}{}", sbind, description, suffix);
65std::string
buildSelectors(std::string_view dataBind, std::string_view dataDesc, std::string_view rofDesc, std::string_view labelsDesc,
bool useMC,
int subSpec = -1)
68 if (!dataDesc.empty()) {
71 if (!rofDesc.empty()) {
72 if (!selector.empty()) {
77 if (useMC && !labelsDesc.empty()) {
78 if (!selector.empty()) {
86std::vector<framework::InputSpec>
buildInputSpecs(std::string_view dataBind, std::string_view dataDesc,
bool useMC)
91std::vector<framework::InputSpec>
buildInputSpecs(std::string_view dataBind, std::string_view dataDesc, std::string_view rofDesc, std::string_view labelsDesc,
bool useMC)
93 std::string selector =
buildSelectors(dataBind, dataDesc, rofDesc, labelsDesc, useMC);
97std::vector<framework::OutputSpec>
buildOutputSpecs(std::string_view bind, std::string_view description)
100 for (
size_t ievt = 0; ievt <
NEvTypes; ++ievt) {
101 if (!selector.empty()) {
107 std::vector<framework::OutputSpec> outputSpecs;
108 for (
auto& matcher : matchers) {
118 std::vector<framework::OutputSpec> outputSpecs;
119 for (
auto& matcher : matchers) {
125std::vector<framework::Output>
buildOutputs(std::vector<framework::OutputSpec> outputSpecs)
127 std::vector<framework::Output> outputs;
128 for (
auto& outSpec : outputSpecs) {
137 return getInput<ColumnData>(pc, dataBind);
142 auto idx =
static_cast<size_t>(eventType);
143 return getData(pc, dataBind)[idx];
148 return getInput<ROFRecord>(pc,
getROFBind(dataBind));
153 auto idx =
static_cast<size_t>(eventType);
154 return getRofs(pc, dataBind)[idx];
Utilities for MID Column Data Specs.
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
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