Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Framework/Core/include/Framework/AnalysisHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
#include "Framework/Traits.h"

#include <string>
namespace o2::framework {
namespace o2::framework
{
/// Structure to contain mapping between matchers and process functions.
/// Process function is identified by hash, each matcher has associated
/// argument position for that process function; single argument can have
Expand All @@ -34,7 +35,7 @@ struct InputInfo {
uint32_t hash;
std::vector<std::pair<int, ConcreteDataMatcher>> matchers;
};
}
} // namespace o2::framework

namespace o2::soa
{
Expand Down
8 changes: 4 additions & 4 deletions Framework/Core/include/Framework/GroupSlicer.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#include <arrow/util/key_value_metadata.h>
#include <type_traits>
#include <string>
namespace {
namespace
{
template <typename T>
auto getMatcherFor(std::string const& columnName, o2::header::DataOrigin newOrigin = o2::header::DataOrigin{"AOD"})
{
Expand All @@ -30,8 +31,7 @@ auto getMatcherFor(std::string const& columnName, o2::header::DataOrigin newOrig
}
return matcher;
}
}

} // namespace

namespace o2::framework
{
Expand Down Expand Up @@ -113,7 +113,7 @@ struct GroupSlicer {
/// to grouping table
/// extract selections from filtered associated tables

[this]<size_t... Is>(std::tuple<A...>& at, std::index_sequence<Is...>){
[this]<size_t... Is>(std::tuple<A...>& at, std::index_sequence<Is...>) {
(splittingFunction(std::get<Is>(at)), ...);
(extractingFunction(std::get<Is>(at)), ...);
}(*mAt, std::make_index_sequence<sizeof...(A)>());
Expand Down