Skip to content

Commit 8c0bc04

Browse files
committed
Please consider the following formatting changes
1 parent 1a4806d commit 8c0bc04

File tree

10 files changed

+15
-13
lines changed

10 files changed

+15
-13
lines changed

GPU/GPUTracking/Base/GPUReconstructionConvert.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ void zsEncoderDenseLinkBased::decodePage(std::vector<o2::tpc::Digit>& outputBuff
923923
if (decLinkX & 0b00100000) {
924924
bitmaskL2.set();
925925
} else {
926-
bitmaskL2 = std::bitset<10>(((((uint16_t)decLinkX) & 0b11000000) << 2) | (uint16_t)*((const uint8_t*)decPagePtr));
926+
bitmaskL2 = std::bitset<10>(((((uint16_t)decLinkX) & 0b11000000) << 2) | (uint16_t) * ((const uint8_t*)decPagePtr));
927927
decPagePtr += sizeof(uint8_t);
928928
}
929929

GPU/GPUTracking/Base/GPUReconstructionProcessing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace gpu_reconstruction_kernels
2828
{
2929
struct deviceEvent {
3030
constexpr deviceEvent() = default;
31-
constexpr deviceEvent(std::nullptr_t p) : v(nullptr) {};
31+
constexpr deviceEvent(std::nullptr_t p) : v(nullptr){};
3232
template <class T>
3333
void set(T val)
3434
{

GPU/GPUTracking/DataTypes/GPUOutputControl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct GPUTrackingOutputs {
7878
static constexpr size_t count() { return sizeof(GPUTrackingOutputs) / sizeof(GPUOutputControl); }
7979
GPUOutputControl* asArray() { return (GPUOutputControl*)this; }
8080
size_t getIndex(const GPUOutputControl& v) { return &v - (const GPUOutputControl*)this; }
81-
static int32_t getIndex(GPUOutputControl GPUTrackingOutputs::* v) { return &(((GPUTrackingOutputs*)(0x10000))->*v) - (GPUOutputControl*)(0x10000); }
81+
static int32_t getIndex(GPUOutputControl GPUTrackingOutputs::*v) { return &(((GPUTrackingOutputs*)(0x10000))->*v) - (GPUOutputControl*)(0x10000); }
8282
};
8383

8484
} // namespace o2::gpu

GPU/GPUTracking/Interface/GPUO2Interface.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct GPUO2Interface_Internals {
4646
};
4747
} // namespace o2::gpu
4848

49-
GPUO2Interface::GPUO2Interface() : mInternals(new GPUO2Interface_Internals) {};
49+
GPUO2Interface::GPUO2Interface() : mInternals(new GPUO2Interface_Internals){};
5050

5151
GPUO2Interface::~GPUO2Interface() { Deinitialize(); }
5252

GPU/GPUTracking/Interface/GPUO2InterfaceConfigurableParam.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#define AddSubConfig(name, instance)
5151
#define BeginSubConfig(name, instance, parent, preoptname, preoptnameshort, descr, o2prefix) \
5252
struct GPUCA_M_CAT(GPUConfigurableParam, name) : public o2::conf::ConfigurableParamHelper<GPUCA_M_CAT(GPUConfigurableParam, name)> { \
53-
O2ParamDef(GPUCA_M_CAT(GPUConfigurableParam, name), GPUCA_M_STR(GPUCA_M_CAT(GPU_, o2prefix))) public:
53+
O2ParamDef(GPUCA_M_CAT(GPUConfigurableParam, name), GPUCA_M_STR(GPUCA_M_CAT(GPU_, o2prefix))) public:
5454
#define BeginHiddenConfig(name, instance) struct GPUCA_M_CAT(GPUConfigurableParam, name) {
5555
#define EndConfig() \
5656
} \

GPU/GPUTracking/SectorTracker/GPUTPCTracklet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GPUTPCTracklet
3030
{
3131
public:
3232
#if !defined(GPUCA_GPUCODE)
33-
GPUTPCTracklet() : mFirstRow(0), mLastRow(0), mParam(), mHitWeight(0), mFirstHit(0) {};
33+
GPUTPCTracklet() : mFirstRow(0), mLastRow(0), mParam(), mHitWeight(0), mFirstHit(0){};
3434
#endif //! GPUCA_GPUCODE
3535

3636
GPUhd() int32_t FirstRow() const { return mFirstRow; }

GPU/GPUTracking/TRDTracking/GPUTRDInterfaces.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class propagatorInterface<o2::base::Propagator>
4545
{
4646
public:
4747
typedef o2::base::Propagator propagatorParam;
48-
GPUd() propagatorInterface(const propagatorParam* prop) : mProp(prop) {};
48+
GPUd() propagatorInterface(const propagatorParam* prop) : mProp(prop){};
4949
GPUd() propagatorInterface(const propagatorInterface<o2::base::Propagator>&) = delete;
5050
GPUd() propagatorInterface& operator=(const propagatorInterface<o2::base::Propagator>&) = delete;
5151

GPU/GPUTracking/TRDTracking/GPUTRDTrackletWord.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace o2::gpu
8282
class GPUTRDTrackletWord : private o2::trd::Tracklet64
8383
{
8484
public:
85-
GPUd() GPUTRDTrackletWord(uint64_t trackletWord = 0) : o2::trd::Tracklet64(trackletWord) {};
85+
GPUd() GPUTRDTrackletWord(uint64_t trackletWord = 0) : o2::trd::Tracklet64(trackletWord){};
8686
GPUdDefault() GPUTRDTrackletWord(const GPUTRDTrackletWord& rhs) = default;
8787
GPUdDefault() GPUTRDTrackletWord& operator=(const GPUTRDTrackletWord& rhs) = default;
8888
GPUdDefault() ~GPUTRDTrackletWord() = default;

GPU/GPUTracking/qa/GPUQAHelper.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ struct GPUTPCTrkLbl_ret {
133133
template <class T>
134134
GPUTPCTrkLbl_ret(T){};
135135
#ifdef GPUCA_TPC_GEOMETRY_O2
136-
GPUTPCTrkLbl_ret(const MCCompLabel& a) : id(a.getTrackEventSourceID()) {};
136+
GPUTPCTrkLbl_ret(const MCCompLabel& a) : id(a.getTrackEventSourceID()){};
137137
#endif
138138
#ifdef GPUCA_STANDALONE
139-
GPUTPCTrkLbl_ret(const AliHLTTPCClusterMCWeight& a) : id(a.fMCID) {};
139+
GPUTPCTrkLbl_ret(const AliHLTTPCClusterMCWeight& a) : id(a.fMCID){};
140140
#endif
141141
void setFakeFlag()
142142
{

GPU/GPUTracking/utils/qconfig.cxx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@
3232
namespace qConfig
3333
{
3434
#define QCONFIG_SETTING(name, type) \
35-
struct qon_mxcat3(q, name, _t) { \
35+
struct qon_mxcat3(q, name, _t) \
36+
{ \
3637
type v; \
3738
constexpr qon_mxcat3(q, name, _t)(type s) : v(s) {} \
3839
}; \
3940
constexpr qon_mxcat3(q, name, _t) name(type v) { return (qon_mxcat3(q, name, _t)(v)); }
4041

4142
#define QCONFIG_SETTING_TEMPLATE(name) \
4243
template <typename T> \
43-
struct qon_mxcat3(q, name, _t) { \
44+
struct qon_mxcat3(q, name, _t) \
45+
{ \
4446
T v; \
4547
constexpr qon_mxcat3(q, name, _t)(const T& s) : v(s) {} \
4648
}; \
@@ -66,7 +68,7 @@ static inline const char* getOptName(const char** argv, int32_t i)
6668

6769
template <typename T>
6870
struct qConfigSettings {
69-
qConfigSettings() : checkMin(false), checkMax(false), doSet(false), doDefault(false), min(), max(), set(), message(nullptr), allowEmpty(false) {};
71+
qConfigSettings() : checkMin(false), checkMax(false), doSet(false), doDefault(false), min(), max(), set(), message(nullptr), allowEmpty(false){};
7072
template <typename S>
7173
qConfigSettings(const qConfigSettings<S> v) : checkMin(false), checkMax(false), doSet(false), doDefault(false), min(), max(), set(), message(v.message), allowEmpty(v.allowEmpty){};
7274
bool checkMin, checkMax;

0 commit comments

Comments
 (0)