Skip to content

Commit 447f8eb

Browse files
authored
Fixing PR error in FemtoUniversePairSHCentMultKt.h
1 parent 9084eaf commit 447f8eb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

PWGCF/FemtoUniverse/Core/FemtoUniversePairSHCentMultKt.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
// In applying this license CERN does not waive the privileges and immunities
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
11+
12+
/// \file FemtoUniversePairSHCentMultKt.h
13+
/// \brief FemtoUniversePairSHCentMultKt - Spherical Harmonics in mult, kT bins
1114
/// \author Pritam Chakraborty, WUT, [email protected]
1215

1316
#ifndef PWGCF_FEMTOUNIVERSE_CORE_FEMTOUNIVERSEPAIRSHCENTMULTKT_H_
@@ -69,8 +72,8 @@ class PairSHCentMultKt {
6972

7073
fels[il] = el;
7174
fems[il] = em;
72-
felsi[il] = static_cast<int> el;
73-
femsi[il] = static_cast<int> em;
75+
felsi[il] = static_cast<int>(el);
76+
femsi[il] = static_cast<int>(em);
7477
em++;
7578
il++;
7679
if (em > el) {

0 commit comments

Comments
 (0)