Skip to content

Commit f89cb99

Browse files
authored
Merge pull request #32 from alibuild/alibot-cleanup-15098
[PWGDQ] Please consider the following formatting changes to #15098
2 parents f1076b5 + 7bd835e commit f89cb99

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

PWGDQ/Core/VarManager.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ std::tuple<float, float, float, float, float, int> VarManager::BimodalityCoeffic
469469
}
470470
localPeakCount += counts[j];
471471
}
472-
if (localPeakCount < (1.0 / std::abs(trim))*data.size()) {
472+
if (localPeakCount < (1.0 / std::abs(trim)) * data.size()) {
473473
// set all bins belonging to this local peak to zero
474474
for (int j = i; j >= 0; --j) {
475475
if (counts[j] == 0) {

PWGDQ/Core/VarManager.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,8 @@ void VarManager::FillEvent(T const& event, float* values)
23982398
}
23992399

24002400
template <typename T>
2401-
void VarManager::FillEventTracks(T const& tracks, float* values) {
2401+
void VarManager::FillEventTracks(T const& tracks, float* values)
2402+
{
24022403
if (!values) {
24032404
values = fgValues;
24042405
}

0 commit comments

Comments
 (0)