Skip to content

Commit 13ec00a

Browse files
authored
[PWGCF] flowMc, flowTask: small fix (#9841)
1 parent 85512fc commit 13ec00a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGCF/Flow/Tasks/flowMc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ struct FlowMc {
149149

150150
using RecoTracks = soa::Join<aod::TracksIU, aod::TracksExtra>;
151151

152-
void process(aod::McCollision const& mcCollision, soa::Join<aod::McParticles, aod::ParticlesToTracks> const& mcParticles, RecoTracks const&)
152+
void process(aod::McCollision const& mcCollision, aod::BCsWithTimestamps const&, soa::Join<aod::McParticles, aod::ParticlesToTracks> const& mcParticles, RecoTracks const&)
153153
{
154154

155155
float imp = mcCollision.impactParameter();

PWGCF/Flow/Tasks/flowTask.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ struct FlowTask {
368368
fGFW->AddRegion("poiN", -0.8, -0.4, 1 + fPtAxis->GetNbins(), 2);
369369
fGFW->AddRegion("poiN10", -0.8, -0.5, 1 + fPtAxis->GetNbins(), 2);
370370
fGFW->AddRegion("poifull", -0.8, 0.8, 1 + fPtAxis->GetNbins(), 2);
371-
fGFW->AddRegion("olN", -0.8, -0.4, 1, 4);
372-
fGFW->AddRegion("olN10", -0.8, -0.5, 1, 4);
371+
fGFW->AddRegion("olN", -0.8, -0.4, 1 + fPtAxis->GetNbins(), 4);
372+
fGFW->AddRegion("olN10", -0.8, -0.5, 1 + fPtAxis->GetNbins(), 4);
373373
fGFW->AddRegion("olfull", -0.8, 0.8, 1 + fPtAxis->GetNbins(), 4);
374374

375375
corrconfigs.push_back(fGFW->GetCorrelatorConfig("full {2 -2}", "ChFull22", kFALSE));

0 commit comments

Comments
 (0)