Skip to content

Commit fd5c488

Browse files
authored
Merge pull request #189 from alibuild/alibot-cleanup-16342
Please consider the following formatting changes to #16342
2 parents 963811d + 9094546 commit fd5c488

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151
#include <TProfile2D.h>
5252
#include <TRandom3.h>
5353

54+
#include <algorithm>
5455
#include <chrono>
5556
#include <cmath>
5657
#include <cstdint>
5758
#include <cstdlib>
5859
#include <string>
5960
#include <utility>
6061
#include <vector>
61-
#include <algorithm>
6262

6363
using namespace o2;
6464
using namespace o2::framework;
@@ -235,7 +235,7 @@ struct flowDirectedFlowTask {
235235

236236
template <typename TCollision>
237237
bool eventSelected(TCollision collision)
238-
{
238+
{
239239
if (!collision.sel8()) {
240240
return 0;
241241
}
@@ -244,7 +244,7 @@ struct flowDirectedFlowTask {
244244
}
245245
if (!collision.selection_bit(aod::evsel::kNoSameBunchPileup)) {
246246
return 0;
247-
}
247+
}
248248
if (cfgPVSel && std::abs(collision.posZ()) > cfgCutVertex) {
249249
return 0;
250250
}
@@ -418,8 +418,8 @@ struct flowDirectedFlowTask {
418418
ROOT::Math::PxPyPzMVector daughter;
419419
ROOT::Math::PxPyPzMVector pion;
420420
float mass = 0.0;
421-
422-
if (isLambda) {
421+
422+
if (isLambda) {
423423
daughter = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPr);
424424
pion = ROOT::Math::PxPyPzMVector(v0.pxneg(), v0.pyneg(), v0.pzneg(), massPi);
425425
mass = v0.mLambda();
@@ -428,7 +428,7 @@ struct flowDirectedFlowTask {
428428
pion = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPi);
429429
mass = v0.mAntiLambda();
430430
}
431-
431+
432432
const auto hyperon = daughter + pion;
433433
ROOT::Math::Boost boostToRest(hyperon.BoostToCM());
434434
const auto daughterStar = boostToRest(daughter);

0 commit comments

Comments
 (0)