Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
#ifndef O2_ITS_TRACKING_MATHUTILS_H_
#define O2_ITS_TRACKING_MATHUTILS_H_

#include <cstdint>

#include "CommonConstants/MathConstants.h"
#include "ITStracking/Constants.h"
#include "MathUtils/Utils.h"
Expand All @@ -27,7 +25,7 @@
namespace o2::its::math_utils
{

GPUhdi() float computePhi(float x, float y)
GPUhdi() constexpr float computePhi(float x, float y)
{
return o2::math_utils::fastATan2(-y, -x) + o2::constants::math::PI;
}
Expand Down
Loading