Skip to content

Commit 579ad46

Browse files
committed
Please consider the following formatting changes
1 parent 379233b commit 579ad46

2 files changed

Lines changed: 160 additions & 157 deletions

File tree

Common/Tools/TListHandler.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
#ifndef FRAMEWORK_TLISTHANDLER_H_
1919
#define FRAMEWORK_TLISTHANDLER_H_
2020

21-
#include "Framework/HistogramSpec.h"
2221
#include "Framework/AnalysisTask.h"
22+
#include "Framework/HistogramSpec.h"
23+
2324
#include <TObjString.h>
25+
2426
#include <regex>
2527

2628
namespace o2::framework
@@ -168,7 +170,7 @@ class TListHandler
168170

169171
// To Do - make templated class with bitmask --> static constexpr uint32_t kTListBitmask = BitMask;.
170172
// {0x1FF = 511}; {0x3FF = 1023}; {0x7FF = 2047}; {0xFFF = 4095}
171-
static constexpr uint32_t kTListBitmask{0x7FF}; // o2-linter: disable=name/constexpr-constant,name/function-variable
173+
static constexpr uint32_t kTListBitmask{0x7FF}; // o2-linter: disable=name/constexpr-constant,name/function-variable
172174
static constexpr uint32_t kMaxTListSize{kTListBitmask + 1}; // o2-linter: disable=name/constexpr-constant,name/function-variable
173175
static_assert((kMaxTListSize & (kMaxTListSize - 1)) == 0, "BitMask must be a power of 2^(n)-1");
174176
std::array<uint32_t, kMaxTListSize> mTListKey{};

0 commit comments

Comments
 (0)