Skip to content
Open
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
6 changes: 4 additions & 2 deletions PWGLF/Tasks/GlobalEventProperties/dndetaHi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ constexpr int ProcIdDD2 = 106;

// Scoped-enum → int helper
template <typename E>
constexpr int toInt(E e) { return static_cast<int>(e); }
constexpr int toInt(E e)
{
return static_cast<int>(e);
}

// Weights and Fill values magic numbers
constexpr float W1 = -10.0f;
Expand Down Expand Up @@ -888,7 +891,6 @@ struct DndetaHi {
continue;
if (!collision.has_mcCollision()) // check mc particle
continue;

}
}
PROCESS_SWITCH(DndetaHi, processMCV0Counting, "MC V0Count tracks without Centrality", false);
Expand Down
Loading