Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion PWGDQ/Core/VarManager.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ std::tuple<float, float, float, float, float, int> VarManager::BimodalityCoeffic
}
localPeakCount += counts[j];
}
if (localPeakCount < (1.0 / std::abs(trim))*data.size()) {
if (localPeakCount < (1.0 / std::abs(trim)) * data.size()) {
// set all bins belonging to this local peak to zero
for (int j = i; j >= 0; --j) {
if (counts[j] == 0) {
Expand Down
3 changes: 2 additions & 1 deletion PWGDQ/Core/VarManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -2398,7 +2398,8 @@ void VarManager::FillEvent(T const& event, float* values)
}

template <typename T>
void VarManager::FillEventTracks(T const& tracks, float* values) {
void VarManager::FillEventTracks(T const& tracks, float* values)
{
if (!values) {
values = fgValues;
}
Expand Down
Loading