11 #ifndef QC_INPUT_UTILS_H 12 #define QC_INPUT_UTILS_H 19 #include <Framework/DataProcessorSpec.h> 20 #include <Framework/DataSpecUtils.h> 22 inline std::vector<std::string> stringifyInput(o2::framework::Inputs& inputs)
24 std::vector<std::string> vec;
25 for (
auto& input : inputs) {
26 vec.push_back(o2::framework::DataSpecUtils::describe(input));