File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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;
You can’t perform that action at this time.
0 commit comments