Skip to content

Commit 1b4ee87

Browse files
authored
Merge pull request #33 from alibuild/alibot-cleanup-8322
2 parents b230ed4 + a6adcfd commit 1b4ee87

File tree

6 files changed

+228
-227
lines changed

6 files changed

+228
-227
lines changed

EventFiltering/cefpTask.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ static const float defaultDownscaling[128][1]{
200200
{1.f},
201201
{1.f}}; /// Max number of columns for triggers is 128 (extendible)
202202

203-
#define FILTER_CONFIGURABLE(_TYPE_) \
204-
Configurable<LabeledArray<float>> cfg##_TYPE_ \
205-
{ \
206-
#_TYPE_, {defaultDownscaling[0], NumberOfColumns(typename _TYPE_::table_t::persistent_columns_t{}), 1, ColumnsNames(typename _TYPE_::table_t::persistent_columns_t{}), downscalingName }, #_TYPE_ " downscalings" \
203+
#define FILTER_CONFIGURABLE(_TYPE_) \
204+
Configurable<LabeledArray<float>> cfg##_TYPE_ \
205+
{ \
206+
#_TYPE_, {defaultDownscaling[0], NumberOfColumns(typename _TYPE_::table_t::persistent_columns_t{}), 1, ColumnsNames(typename _TYPE_::table_t::persistent_columns_t{}), downscalingName}, #_TYPE_ " downscalings" \
207207
}
208208
} // namespace
209209

EventFiltering/filterTables.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
#include <string>
1717
#include <vector>
1818

19-
namespace o2::aod {
19+
namespace o2::aod
20+
{
2021
template <uint32_t T>
2122
struct Hash;
2223
}
@@ -26,19 +27,19 @@ struct Hash;
2627
namespace o2::soa
2728
{
2829
template <typename T>
29-
requires (!std::same_as<typename o2::aod::MetadataTrait<std::decay_t<T>>::metadata, void>)
30+
requires(!std::same_as<typename o2::aod::MetadataTrait<std::decay_t<T>>::metadata, void>)
3031
const char* getTableLabel()
3132
{
32-
return o2::aod::MetadataTrait<std::decay_t<T>>::metadata::tableLabel();
33+
return o2::aod::MetadataTrait<std::decay_t<T>>::metadata::tableLabel();
3334
}
3435

3536
template <typename T>
36-
requires requires {T::ref.label_hash;}
37+
requires requires { T::ref.label_hash; }
3738
const char* getTableLabel()
3839
{
3940
return o2::aod::Hash<T::ref.label_hash>::str;
4041
}
41-
}
42+
} // namespace o2::soa
4243

4344
namespace o2::aod
4445
{

0 commit comments

Comments
 (0)