Skip to content

Commit 115a53c

Browse files
committed
format
1 parent 0734484 commit 115a53c

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
#include "Framework/Traits.h"
2626

2727
#include <string>
28-
namespace o2::framework {
28+
namespace o2::framework
29+
{
2930
/// Structure to contain mapping between matchers and process functions.
3031
/// Process function is identified by hash, each matcher has associated
3132
/// argument position for that process function; single argument can have
@@ -34,7 +35,7 @@ struct InputInfo {
3435
uint32_t hash;
3536
std::vector<std::pair<int, ConcreteDataMatcher>> matchers;
3637
};
37-
}
38+
} // namespace o2::framework
3839

3940
namespace o2::soa
4041
{

Framework/Core/include/Framework/GroupSlicer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
#include <arrow/util/key_value_metadata.h>
2121
#include <type_traits>
2222
#include <string>
23-
namespace {
23+
namespace
24+
{
2425
template <typename T>
2526
auto getMatcherFor(std::string const& columnName, o2::header::DataOrigin newOrigin = o2::header::DataOrigin{"AOD"})
2627
{
@@ -30,8 +31,7 @@ auto getMatcherFor(std::string const& columnName, o2::header::DataOrigin newOrig
3031
}
3132
return matcher;
3233
}
33-
}
34-
34+
} // namespace
3535

3636
namespace o2::framework
3737
{
@@ -113,7 +113,7 @@ struct GroupSlicer {
113113
/// to grouping table
114114
/// extract selections from filtered associated tables
115115

116-
[this]<size_t... Is>(std::tuple<A...>& at, std::index_sequence<Is...>){
116+
[this]<size_t... Is>(std::tuple<A...>& at, std::index_sequence<Is...>) {
117117
(splittingFunction(std::get<Is>(at)), ...);
118118
(extractingFunction(std::get<Is>(at)), ...);
119119
}(*mAt, std::make_index_sequence<sizeof...(A)>());

0 commit comments

Comments
 (0)