File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ o2physics_add_dpl_workflow(flow-directed-flow-task
120120 COMPONENT_NAME Analysis )
121121
122122o2physics_add_dpl_workflow (flow-deltav1-sp
123- SOURCES flowDeltav1Sp .cxx
123+ SOURCES flowDeltav1SP .cxx
124124 PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::GFWCore
125125 COMPONENT_NAME Analysis )
126126
Original file line number Diff line number Diff line change 5353#include < TProfile2D.h>
5454#include < TProfile3D.h>
5555
56+ #include < algorithm>
5657#include < chrono>
5758#include < cmath>
5859#include < cstdint>
@@ -899,7 +900,7 @@ struct FlowDeltav1SP {
899900 if (p < pBoundary) {
900901 // Only require TPC
901902 return std::abs (nSigmaTPC) < NSigmaTPC_Species;
902- } else if (p >= pBoundary) {
903+ } else {
903904 // Require TPC and TOF
904905 return hasTOF && std::abs (nSigmaTPC) < NSigmaTPC_Species && std::abs (nSigmaTOF) < NSigmaTOF_Species;
905906 }
@@ -2397,4 +2398,4 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
23972398{
23982399 return WorkflowSpec{
23992400 adaptAnalysisTask<FlowDeltav1SP>(cfgc)};
2400- }
2401+ }
You can’t perform that action at this time.
0 commit comments