Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions PWGCF/Flow/Tasks/flowSP.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ struct FlowSP {
}

registry.addClone("QA/after/", "QA/before/");

if (cfgFillChargeDependence) {
registry.addClone("incl/", "pos/");
registry.addClone("incl/", "neg/");
Expand Down Expand Up @@ -999,7 +999,7 @@ struct FlowSP {
}
}

template < ModeType md, typename McParticleObject>
template <ModeType md, typename McParticleObject>
inline void fillPrimaryHistos(McParticleObject mcparticle)
{
static constexpr std::string_view Time[] = {"before/", "after/"};
Expand All @@ -1009,7 +1009,6 @@ struct FlowSP {
} else {
registry.fill(HIST("trackMCReco") + HIST() + HIST("/hIsPhysicalPrimary"), 1);
}

}

void processData(UsedCollisions::iterator const& collision, aod::BCsWithTimestamps const&, UsedTracks const& tracks)
Expand Down Expand Up @@ -1078,11 +1077,11 @@ struct FlowSP {
}

if (centrality > cfgCentMax || centrality < cfgCentMin)
return;
return;

registry.fill(HIST("hEventCount"), evSel_CentCuts);

if (cfgFillQAHistos)
if (cfgFillQAHistos)
fillEventQA<kAfter>(collision, tracks);

double corrQQ = 1., corrQQx = 1., corrQQy = 1.;
Expand Down
Loading