diff --git a/PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx b/PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx index fe589cbb06e..28f32417010 100644 --- a/PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx +++ b/PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx @@ -51,6 +51,7 @@ #include #include +#include #include #include #include @@ -58,7 +59,6 @@ #include #include #include -#include using namespace o2; using namespace o2::framework; @@ -235,7 +235,7 @@ struct flowDirectedFlowTask { template bool eventSelected(TCollision collision) - { + { if (!collision.sel8()) { return 0; } @@ -244,7 +244,7 @@ struct flowDirectedFlowTask { } if (!collision.selection_bit(aod::evsel::kNoSameBunchPileup)) { return 0; - } + } if (cfgPVSel && std::abs(collision.posZ()) > cfgCutVertex) { return 0; } @@ -418,8 +418,8 @@ struct flowDirectedFlowTask { ROOT::Math::PxPyPzMVector daughter; ROOT::Math::PxPyPzMVector pion; float mass = 0.0; - - if (isLambda) { + + if (isLambda) { daughter = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPr); pion = ROOT::Math::PxPyPzMVector(v0.pxneg(), v0.pyneg(), v0.pzneg(), massPi); mass = v0.mLambda(); @@ -428,7 +428,7 @@ struct flowDirectedFlowTask { pion = ROOT::Math::PxPyPzMVector(v0.pxpos(), v0.pypos(), v0.pzpos(), massPi); mass = v0.mAntiLambda(); } - + const auto hyperon = daughter + pion; ROOT::Math::Boost boostToRest(hyperon.BoostToCM()); const auto daughterStar = boostToRest(daughter);