Skip to content

Commit b94ffa3

Browse files
authored
Merge pull request #190 from alibuild/alibot-cleanup-16366
Please consider the following formatting changes to #16366
2 parents ebd23a5 + bf3a6a2 commit b94ffa3

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;
@@ -234,7 +234,7 @@ struct flowDirectedFlowTask {
234234

235235
template <typename TCollision>
236236
bool eventSelected(TCollision collision)
237-
{
237+
{
238238
if (!collision.sel8()) {
239239
return 0;
240240
}
@@ -243,7 +243,7 @@ struct flowDirectedFlowTask {
243243
}
244244
if (!collision.selection_bit(aod::evsel::kNoSameBunchPileup)) {
245245
return 0;
246-
}
246+
}
247247
if (cfgPVSel && std::abs(collision.posZ()) > cfgCutVertex) {
248248
return 0;
249249
}
@@ -417,8 +417,8 @@ struct flowDirectedFlowTask {
417417
ROOT::Math::PxPyPzMVector daughter;
418418
ROOT::Math::PxPyPzMVector pion;
419419
float mass = 0.0;
420-
421-
if (isLambda) {
420+
421+
if (isLambda) {
422422
daughter = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPr);
423423
pion = ROOT::Math::PxPyPzMVector(v0.pxneg(), v0.pyneg(), v0.pzneg(), massPi);
424424
mass = v0.mLambda();
@@ -427,7 +427,7 @@ struct flowDirectedFlowTask {
427427
pion = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPi);
428428
mass = v0.mAntiLambda();
429429
}
430-
430+
431431
const auto hyperon = daughter + pion;
432432
ROOT::Math::Boost boostToRest(hyperon.BoostToCM());
433433
const auto daughterStar = boostToRest(daughter);

0 commit comments

Comments
 (0)