Skip to content

Commit 3e062a0

Browse files
authored
[PWGCF] calculate and apply V0s and cascades local density efficiency
calculate and apply V0s and cascades local density efficiency
1 parent 8488054 commit 3e062a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGCF/Flow/Tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ o2physics_add_dpl_workflow(flow-pbpb-pikp
5454
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::GFWCore
5555
COMPONENT_NAME Analysis)
5656

57-
o2physics_add_dpl_workflow(flow-g-f-w-omegaxi
57+
o2physics_add_dpl_workflow(flow-g-f-w-omega-xi
5858
SOURCES flowGFWOmegaXi.cxx
5959
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore O2Physics::GFWCore
6060
COMPONENT_NAME Analysis)

PWGCF/Flow/Tasks/flowEfficiencyCasc.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ struct FlowEfficiencyCasc {
110110
if (!collision.sel8())
111111
return;
112112
int rectracknum = collision.multNTracksGlobal();
113-
for (auto& casc : Cascades) {
113+
for (const auto& casc : Cascades) {
114114
if (!casc.has_cascMCCore())
115115
continue;
116116
auto negdau = casc.negTrackExtra_as<DaughterTracks>();
@@ -164,7 +164,7 @@ struct FlowEfficiencyCasc {
164164
}
165165
}
166166

167-
for (auto& v0 : V0s) {
167+
for (const auto& v0 : V0s) {
168168
if (!v0.has_v0MCCore())
169169
continue;
170170
auto v0negdau = v0.negTrackExtra_as<DaughterTracks>();

0 commit comments

Comments
 (0)