Skip to content

Commit 3692790

Browse files
committed
Feat: fix linter/include warnings
1 parent 4c059fa commit 3692790

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

PWGCF/Femto/Core/pairHistManager.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include <Framework/HistogramSpec.h>
2929
#include <Framework/Logger.h>
3030

31-
#include <Math/GenVector/Boost.h>
3231
#include <Math/Vector4D.h> // IWYU pragma: keep (do not replace with Math/Vector4Dfwd.h)
3332
#include <Math/Vector4Dfwd.h>
3433

@@ -969,9 +968,9 @@ class PairHistManager
969968
const double tPt = std::sqrt(tPx * tPx + tPy * tPy);
970969
const double tMt = std::sqrt(tE * tE - tPz * tPz);
971970

972-
static constexpr double kMinTransverseMomentum = 1e-9;
973-
if (tPt < kMinTransverseMomentum || tMt < kMinTransverseMomentum) {
974-
return {0.0, 0.0, 0.0};
971+
static constexpr double MinTransverseMomentum = 1e-9;
972+
if (tPt < MinTransverseMomentum || tMt < MinTransverseMomentum) {
973+
return {0.0f, 0.0f, 0.0f};
975974
}
976975

977976
const double betaL = tPz / tE;

0 commit comments

Comments
 (0)