Skip to content

Commit 9b01022

Browse files
Revise to use casting style
1 parent 20be42f commit 9b01022

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGJE/Tasks/jetShape.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ struct JetShapeTask {
7676
Configurable<float> tpcNSigmaPrMax{"tpcNSigmaPrMax", 0.5f, "Max value of tpcNsigmaProton"};
7777
Configurable<float> tpcNSigmaPiMin{"tpcNSigmaPiMin", -0.5f, "Min value of tpcNsigmaPion"};
7878
Configurable<float> tpcNSigmaPiMax{"tpcNSigmaPiMax", 3.5f, "Max value of tpcNsigmaPion"};
79-
Configurable<float> randomConeDeltaPhiMin{"randomConeDeltaPhiMin", float(o2::constants::math::PIThird), "Minimum delta phi for random cone"};
80-
Configurable<float> randomConeDeltaPhiMax{"randomConeDeltaPhiMax", float(2.0f * o2::constants::math::PIThird), "Maximum delta phi for random cone"};
79+
Configurable<float> randomConeDeltaPhiMin{"randomConeDeltaPhiMin", static_cast<float>(o2::constants::math::PIThird), "Minimum delta phi for random cone"};
80+
Configurable<float> randomConeDeltaPhiMax{"randomConeDeltaPhiMax", static_cast<float>(2.0f * o2::constants::math::PIThird), "Maximum delta phi for random cone"};
8181

8282
Configurable<float> vertexZCut{"vertexZCut", 10.0f, "Accepted z-vertex range"};
8383

0 commit comments

Comments
 (0)