Skip to content

Commit

Permalink
Fixing PR error in FemtoUniverseSHContainer.h
Browse files Browse the repository at this point in the history
  • Loading branch information
prchakra authored Jun 17, 2024
1 parent 803e34e commit 9084eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PWGCF/FemtoUniverse/Core/FemtoUniverseSHContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

/// \file FEMTOUNIVERSESHCONTAINER.h
/// \brief Definition of the FEMTOUNIVERSESHCONTAINER
/// \file FemtoUniverseSHContainer..h
/// \brief FemtoUniverseSHContainer - Fills the Spherical Harmonics components
/// \remark This file is inherited from ~/FemtoUniverse/Core/FemtoUniverse3DContainer.h on 17/06/2024
/// \author Pritam Chakraborty, WUT Warsaw, [email protected]

Expand Down Expand Up @@ -85,8 +85,8 @@ class FemtoUniverseSHContainer

fels[il] = el;
fems[il] = em;
felsi[il] = static_cast<int>el;
femsi[il] = static_cast<int>em;
felsi[il] = static_cast<int>(el);
femsi[il] = static_cast<int>(em);
em++;
il++;
if (em > el) {
Expand Down

0 comments on commit 9084eaf

Please sign in to comment.