We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e314db commit 57321cdCopy full SHA for 57321cd
PWGCF/Flow/Tasks/flowEseCorre.cxx
@@ -178,7 +178,7 @@ struct FlowEseCorre {
178
if (!selectEvent(collision)) {
179
return;
180
}
181
- for (auto const& mod : *cfgNmods) {
+ for (const auto& mod : cfgNmods->at(i)) {
182
fillHistosQvec(collision, mod);
183
fillHistosFlow(collision, tracks, mod);
184
@@ -187,6 +187,8 @@ struct FlowEseCorre {
187
188
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
189
{
190
- return WorkflowSpec{
191
- adaptAnalysisTask<FlowEseCorre>(cfgc)};
192
-}
+ return WorkflowSpec{ return WorkflowSpec{
+ adaptAnalysisTask<FlowEseCorre>(cfgc)}; adaptAnalysisTask<FlowEseCorre>(cfgc)};
+}
193
+
194
0 commit comments