Skip to content

Commit af9bded

Browse files
authored
Merge pull request #191 from alibuild/alibot-cleanup-16366
Please consider the following formatting changes to #16366
2 parents 8d97882 + c72f305 commit af9bded

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;
@@ -223,7 +223,7 @@ struct flowDirectedFlowTask {
223223

224224
template <typename TCollision>
225225
bool eventSelected(TCollision collision)
226-
{
226+
{
227227
if (!collision.sel8()) {
228228
return 0;
229229
}
@@ -232,7 +232,7 @@ struct flowDirectedFlowTask {
232232
}
233233
if (!collision.selection_bit(aod::evsel::kNoSameBunchPileup)) {
234234
return 0;
235-
}
235+
}
236236
if (cfgPVSel && std::abs(collision.posZ()) > cfgCutVertex) {
237237
return 0;
238238
}
@@ -403,8 +403,8 @@ struct flowDirectedFlowTask {
403403
ROOT::Math::PxPyPzMVector daughter;
404404
ROOT::Math::PxPyPzMVector pion;
405405
float mass = 0.0;
406-
407-
if (isLambda) {
406+
407+
if (isLambda) {
408408
daughter = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPr);
409409
pion = ROOT::Math::PxPyPzMVector(v0.pxneg(), v0.pyneg(), v0.pzneg(), massPi);
410410
mass = v0.mLambda();
@@ -413,7 +413,7 @@ struct flowDirectedFlowTask {
413413
pion = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPi);
414414
mass = v0.mAntiLambda();
415415
}
416-
416+
417417
const auto hyperon = daughter + pion;
418418
ROOT::Math::Boost boostToRest(hyperon.BoostToCM());
419419
const auto daughterStar = boostToRest(daughter);

0 commit comments

Comments
 (0)